You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
wanglinchun 518de57123
将参赛作品编辑更新后的提示语修改为汉语
11 years ago
.metadata
app 将参赛作品编辑更新后的提示语修改为汉语 11 years ago
config 将参赛作品编辑更新后的提示语修改为汉语 11 years ago
db 竞赛页面我要参赛中添加判断,当用户未登录时提示登录后参赛 11 years ago
doc
extra
files
lib 初步增加了新建参赛作品中参赛作品所属的托管项目列表 11 years ago
public 调整参赛作品编辑页面中托管项目列表的显示宽度 11 years ago
script
test Merge branch 'crawl' into develop 11 years ago
tmp/plugins
.gitignore Merge branch 'develop' 11 years ago
Client.html
Gemfile gemfile 11 years ago
Gemfile.lock
README.rdoc
Rakefile
ReadMe.txt
config.ru

ReadMe.txt

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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
================================================================================