ossean/trustie2
zhanyun c028943de6 trutie2 tags_name @tags.nil? 2016-11-27 22:42:48 +08:00
..
.metadata first commit 2015-11-29 11:11:27 +08:00
app trutie2 tags_name @tags.nil? 2016-11-27 22:42:48 +08:00
config trustie2 removed some files and some needless loads 2016-11-18 13:49:05 +08:00
db for merge 2016-11-17 03:49:54 +08:00
doc trustie2 relative_memos subject -> title 2016-08-29 08:51:49 +08:00
extra first commit 2015-11-29 11:11:27 +08:00
lib trustie2 removed User related in time_tag 2016-11-27 20:56:51 +08:00
public for merge 2016-11-17 03:49:54 +08:00
script first commit 2015-11-29 11:11:27 +08:00
solr trustie2 solr config 2016-11-22 12:18:45 +08:00
test change trustie 2016-09-06 23:27:14 +08:00
.DS_Store annotate update_column in open_source_projects show function 2016-03-05 10:50:47 +08:00
Client.html first commit 2015-11-29 11:11:27 +08:00
Gemfile trustie2 Gemfile 2016-11-17 03:59:41 +08:00
README.rdoc first commit 2015-11-29 11:11:27 +08:00
Rakefile first commit 2015-11-29 11:11:27 +08:00
ReadMe.txt first commit 2015-11-29 11:11:27 +08:00
config.ru first commit 2015-11-29 11:11:27 +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
================================================================================