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
yanxd 3081bff9f4
test emtry directory
11 years ago
app test emtry directory 11 years ago
config 压缩文件 11 years ago
db 修复项目列表分数显示不一致的问题,修改用户列表显示不一致的问题,修改作业中项目显示分数和项目内部分数不一致的问题 11 years ago
doc first commit 12 years ago
extra first commit 12 years ago
files add the project what one watch 12 years ago
lib fix courselist 11 years ago
public button加作用域 11 years ago
script first commit 12 years ago
test 创建课程处添加了学校 11 years ago
tmp/plugins modify show of some style 12 years ago
.gitignore 导航栏防止意外http参数不全的错误 11 years ago
Client.html 添加app\controllers\shares_controller.rb及相关文件用来作为api演示的小例子,Client.html放在根目录下作为演示客户端 12 years ago
Gemfile new version 12 years ago
Gemfile.lock 修正 注册 12 years ago
README.rdoc first commit 12 years ago
Rakefile first commit 12 years ago
ReadMe.txt redme 11 years ago
config.ru 新改 12 years ago

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