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
nwb 095cb7fc32
加强对chrome浏览器文件上传的支持
11 years ago
.metadata 创新竞赛添加删除功能 11 years ago
app 加强对chrome浏览器文件上传的支持 11 years ago
config 修复当作业附件列表为空时,点击打包下载会报500错的BUG 11 years ago
db 更改项目文档按作者排序 11 years ago
doc 自动化测试环境 11 years ago
extra first commit 12 years ago
files add the project what one watch 12 years ago
lib course class period 11 years ago
plugins commit 11 years ago
public 加强对chrome浏览器文件上传的支持 11 years ago
script first commit 12 years ago
test 删除project多余导致删除项目失败的关联关系 11 years ago
tmp/plugins modify show of some style 12 years ago
.gitignore wiki_format更新 11 years ago
Client.html edit 图标丢失 11 years ago
Gemfile 竞赛首页修改 11 years ago
Gemfile.lock 竞赛首页修改 11 years ago
Guardfile 自动化测试环境 11 years ago
README.rdoc first commit 12 years ago
Rakefile first commit 12 years ago
ReadMe.txt 竞赛通知鼠标悬停 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.

patch: 
用户姓名的部分根据issues#655。
为了修改方便
alias
方法     之前显示            调整之后
name     firstname+lastname  login
nickname xxx                 login
realname xxx                 firstname+lastname

User model经过修改已经完全集成了user_extensions的功能
例如
user.gender=1
user.save
user_extensions字段会自动保存
不必要每次user.user_extensions.xxx以及判断是否为空
================================================================================
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
================================================================================

================================================================================
0606新坑
user_scores表结构有问题需要运行
bundle exec rake db:migrate:down VERSION=20140410021724
bundle exec rake db:migrate:up VERSION=20140410021724
===============================================================================
0708CKEditor插件加载方法
1.把插件文件夹拷入plugins文件夹确保文件夹名为redmine_ckeditor
2.运行 bundle install --without development test
3.运行 rake redmine:plugins:migrate RAILS_ENV=production
4.启动服务器
5.把文本格式 (Administration > Settings > General > Text formatting)改为CKEditor
6.配置CKEditor插件(Administration > Plugins > Configure)

某些情况数据库未插入插件配置值解决方案:
1 复制plugins
2 启动rails
3 运行migrate
3 打开admin配置插件http://127.0.0.1:3000/settings/plugin/redmine_ckeditor
4 点击“查询”(就是确定的功能)
===============================================================================
0719若遇到首页定制报错问题请尝试如下操作
如果运行迁移文件有报错与sort_type相关 先运行 bundle exec rake db:migrate:down version=20140716021202 bundle exec rake db:migrate:up version=20140716021202
在按如下步骤执行,未报与之相关的则直接按如下步骤执行
1.运行 bundle exec rake db:migrate:down version=20140719080032
2.运行 bundle exec rake db:migrate:up version=20140719080032