Go to file
guange 221e70d648 gemfile 更新 2015-03-21 09:28:43 +08:00
.metadata 创新竞赛添加删除功能 2014-04-21 18:13:57 +08:00
app Merge tag 'V20140708' of http://repository.trustie.net/xianbo/trustie2 2014-07-11 10:13:50 +08:00
config Merge remote-tracking branch 'remotes/origin/szzh' into develop 2014-07-07 16:27:49 +08:00
db 留言发送邮件优化 2014-07-04 15:41:26 +08:00
doc 1.添加文档 2014-07-05 13:31:32 +08:00
extra first commit 2013-08-01 10:33:49 +08:00
files add the project what one watch 2013-10-24 08:24:56 +08:00
lib 去除绝对网址 2014-07-05 11:00:01 +08:00
plugins/redmine_code_review 1.添加代码评审(CodeReview)插件 2014-06-24 15:42:28 +08:00
public Signed-off-by: alan <547533434@qq.com> 2014-10-21 15:13:18 +08:00
script Signed-off-by: alan <547533434@qq.com> 2014-10-21 15:13:18 +08:00
test Signed-off-by: alan <547533434@qq.com> 2014-10-21 15:13:18 +08:00
tmp/plugins Signed-off-by: alan <547533434@qq.com> 2014-10-21 15:13:18 +08:00
.gitignore wiki_format更新 2014-06-24 16:26:29 +08:00
Client.html edit 图标丢失 2014-05-17 15:26:08 +08:00
Gemfile gemfile 更新 2015-03-21 09:28:43 +08:00
Gemfile.lock 修改资源文件测试用例 2014-06-25 16:26:19 +08:00
README.rdoc first commit 2013-08-01 10:33:49 +08:00
Rakefile first commit 2013-08-01 10:33:49 +08:00
ReadMe.txt 打分初步 2014-06-06 17:33:42 +08:00
config.ru 新改 2013-08-15 18:50:44 +08:00

ReadMe.txt

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

patch: 
用户姓名的部分根据issues#655。
为了修改方便
alias
方法     之前显示            调整之后
name     firstname+lastname  login
nickname xxx                 login
realname xxx                 firstname+lastname

User model经过修改已经完全集成了user_extensions的功能
例如
user.gender=1
user.save
user_extensions字段会自动保存
不必要每次user.user_extensions.xxx以及判断是否为空
================================================================================
app/models/setting.rb :165
  # fixed domain url in development. tantantan's bug
  if Rails.env.development?
    methods.map do |m|
      define_singleton_method m do; nil; end if m.to_s =~ /([a-zA-Z]+_domain)$/
    end
  end
  程序部分链接中制定了subdomain参数使链接在二级域名中来回跳转。
  为了开发方便使之功能在development模式下失效。 
  # => nyan
================================================================================
app/controller/projects_controller.rb ===> projects#fake
  fake filter: 修改了传到页面中的Count后缀的数量
  改为正确的数量删掉fake过滤器即可
================================================================================
#导航栏匹配域名显示和改变
app\helper\application_helper.rb
# rewrite navigation 

app\views\layouts\_base_header.html.erb
# reset navigation by domain name and url through regular match
================================================================================
#首页根据域名匹配进入不同的页面
app\controller\welcome_controller.rb
  def entry_select_user
    if request.original_url.match(/user\.trustie\.net/)
      redirect_to(:controller => "users", :action => "index")
      return 0
    end
  end
================================================================================

================================================================================
0606新坑
user_scores表结构有问题需要运行
bundle exec rake db:migrate:down VERSION=20140410021724
bundle exec rake db:migrate:up VERSION=20140410021724