2014-05-22 19:58:13 +08:00
|
|
|
|
patch:
|
2014-06-03 16:42:55 +08:00
|
|
|
|
用户姓名的部分,根据issues#655。
|
|
|
|
|
为了修改方便
|
|
|
|
|
alias:
|
|
|
|
|
方法 之前显示 调整之后
|
2014-05-22 19:58:13 +08:00
|
|
|
|
name firstname+lastname login
|
|
|
|
|
nickname xxx login
|
|
|
|
|
realname xxx firstname+lastname
|
2014-06-03 16:41:12 +08:00
|
|
|
|
|
2014-06-03 16:42:55 +08:00
|
|
|
|
User model经过修改,已经完全集成了user_extensions的功能
|
|
|
|
|
例如
|
2014-06-03 16:41:12 +08:00
|
|
|
|
user.gender=1
|
|
|
|
|
user.save
|
2014-06-03 16:42:55 +08:00
|
|
|
|
user_extensions字段会自动保存
|
|
|
|
|
不必要每次user.user_extensions.xxx以及判断是否为空
|
2014-05-22 19:58:13 +08:00
|
|
|
|
================================================================================
|
2014-04-10 08:52:59 +08:00
|
|
|
|
app/models/setting.rb :165
|
2014-04-01 20:05:14 +08:00
|
|
|
|
# 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
|
2014-06-03 16:42:55 +08:00
|
|
|
|
程序部分链接中制定了subdomain参数,使链接在二级域名中来回跳转。
|
|
|
|
|
为了开发方便,使之功能在development模式下失效。
|
2014-04-01 20:05:14 +08:00
|
|
|
|
# => nyan
|
|
|
|
|
================================================================================
|
2014-04-10 08:52:59 +08:00
|
|
|
|
app/controller/projects_controller.rb ===> projects#fake
|
2014-06-03 16:42:55 +08:00
|
|
|
|
fake filter: 修改了传到页面中的Count后缀的数量
|
|
|
|
|
改为正确的数量,删掉fake过滤器即可
|
2014-04-10 08:52:59 +08:00
|
|
|
|
================================================================================
|
2014-06-03 16:42:55 +08:00
|
|
|
|
#导航栏匹配域名显示和改变
|
2014-04-04 15:24:42 +08:00
|
|
|
|
app\helper\application_helper.rb
|
|
|
|
|
# rewrite navigation
|
|
|
|
|
|
|
|
|
|
app\views\layouts\_base_header.html.erb
|
|
|
|
|
# reset navigation by domain name and url through regular match
|
|
|
|
|
================================================================================
|
2014-06-03 16:42:55 +08:00
|
|
|
|
#首页根据域名匹配进入不同的页面
|
2014-04-04 15:24:42 +08:00
|
|
|
|
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
|
|
|
|
|
================================================================================
|