Go to file
yanxd 3e1a674ed9 fix 3 2014-04-11 10:57:12 +08:00
app fix 3 2014-04-11 10:57:12 +08:00
config 列表上提交作业,大概好了吧 2014-04-09 11:06:13 +08:00
db 修复项目列表分数显示不一致的问题,修改用户列表显示不一致的问题,修改作业中项目显示分数和项目内部分数不一致的问题 2014-04-11 10:53:51 +08:00
doc first commit 2013-08-01 10:33:49 +08:00
extra first commit 2013-08-01 10:33:49 +08:00
files add the project what one watch 2013-10-24 08:24:56 +08:00
lib #b2896c16453fc51 2014-04-10 08:21:43 +08:00
public button加作用域 2014-04-09 17:23:56 +08:00
script first commit 2013-08-01 10:33:49 +08:00
test 创建课程处添加了学校 2014-03-21 18:02:55 +08:00
tmp/plugins modify show of some style 2013-11-08 15:49:08 +08:00
.gitignore 导航栏防止意外http参数不全的错误 2014-02-17 15:37:04 +08:00
Client.html 添加app\controllers\shares_controller.rb及相关文件用来作为api演示的小例子,Client.html放在根目录下作为演示客户端 2013-08-01 20:26:19 +08:00
Gemfile Gem re 2014-01-16 17:11:12 +08:00
Gemfile.lock Gem re 2014-01-16 17:11:12 +08:00
README.rdoc first commit 2013-08-01 10:33:49 +08:00
Rakefile first commit 2013-08-01 10:33:49 +08:00
ReadMe.txt redme 2014-04-10 08:52:59 +08:00
config.ru 新改 2013-08-15 18:50:44 +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.

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