Go to file
z9hang 21e58ce3df 课程列表中课程成员数量显示n+(不显示精确数)
只有课程成员能点击教师数量学生数量的链接和查看已提交作业的列表
2014-05-21 17:33:02 +08:00
.metadata 创新竞赛添加删除功能 2014-04-21 18:13:57 +08:00
app 课程列表中课程成员数量显示n+(不显示精确数) 2014-05-21 17:33:02 +08:00
config Merge branch 'szzh' into develop 2014-05-20 14:33:50 +08:00
db Merge branch 'szzh' into develop 2014-05-20 14:33:50 +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 Merge branch 'szzh' into develop 2014-05-15 09:46:38 +08:00
public issues#575 2014-05-20 09:50:28 +08:00
script first commit 2013-08-01 10:33:49 +08:00
test 1.增加作业参与人员类homework_users及相关代码 2014-05-19 17:44:36 +08:00
tmp/plugins modify show of some style 2013-11-08 15:49:08 +08:00
.gitignore Merge branch 'develop' 2014-05-05 10:05:10 +08:00
Client.html edit 图标丢失 2014-05-17 15:26:08 +08:00
Gemfile gemfile 2014-04-25 09:03:19 +08:00
Gemfile.lock sdfsd 2014-04-23 17:33:32 +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
================================================================================