ossean/trustie2
ronger b9e3c56fb5 update ossean web-front 2017-10-16 13:05:36 +08:00
..
.metadata update ossean web-front 2017-10-16 13:05:36 +08:00
app update ossean web-front 2017-10-16 13:05:36 +08:00
config update ossean web-front 2017-10-16 13:05:36 +08:00
db update ossean web-front 2017-10-16 13:05:36 +08:00
doc update ossean web-front 2017-10-16 13:05:36 +08:00
extra update ossean web-front 2017-10-16 13:05:36 +08:00
lib update ossean web-front 2017-10-16 13:05:36 +08:00
public update ossean web-front 2017-10-16 13:05:36 +08:00
script update ossean web-front 2017-10-16 13:05:36 +08:00
test update ossean web-front 2017-10-16 13:05:36 +08:00
.DS_Store update ossean web-front 2017-10-16 13:05:36 +08:00
Client.html update ossean web-front 2017-10-16 13:05:36 +08:00
Gemfile update ossean web-front 2017-10-16 13:05:36 +08:00
README.rdoc update ossean web-front 2017-10-16 13:05:36 +08:00
Rakefile update ossean web-front 2017-10-16 13:05:36 +08:00
ReadMe.txt update ossean web-front 2017-10-16 13:05:36 +08:00
config.ru update ossean web-front 2017-10-16 13:05:36 +08:00
nohup.out update ossean web-front 2017-10-16 13:05:36 +08:00
puma_back.rb update ossean web-front 2017-10-16 13:05:36 +08:00
restart_puma update ossean web-front 2017-10-16 13:05:36 +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
================================================================================
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
================================================================================