最近Redmine出了点问题,简单查了一下,是ruby的本地冲突包i18n导致的,先到redmine中跑命令:
gem list --local, 查出本地ruby安装的所有的包这里可以看到i18n有两个版本,导致了这个问题。卸载掉0.5.0解决这个问题。命令: gem
uninstall i18n...
分类:
其他好文 时间:
2014-05-01 00:07:54
阅读次数:
475
在日常工作中,经常要查询分组的前几名.oracle中可以通过row_num来支持查询,mysql暂时不支持row_num.那么如何来完成这个需求呢?
例如:表中的数据:+--------+-------+-----+| Person | Group | Age |+--------+-------+...
分类:
数据库 时间:
2014-04-30 17:56:57
阅读次数:
497
一、{ } 大括号,表示定义一个对象,大部分情况下要有成对的属性和值,或是函数。如:var
LangShen =
{"Name":"Langshen","AGE":"28"};上面声明了一个名为“LangShen”的对象,多个属性或函数用,(逗号)隔开,因为是对象的属性,所以访问时,应该用.(点)来...
分类:
Web程序 时间:
2014-04-30 01:22:02
阅读次数:
563
Mrs Little likes digits most of all. Every year she tries to make the best number of the year. She tries to become more and more intelligent and every year studies a new digit. And the number she make...
分类:
其他好文 时间:
2014-04-29 13:13:21
阅读次数:
309
1 #include 2 #include 3 using namespace std; 4
class people 5 { 6 public: 7 string name; 8 int age; 9 virtual void print();10
};11 12...
分类:
其他好文 时间:
2014-04-28 09:04:54
阅读次数:
690