##// END OF EJS Templates
Merged r4052 from trunk....
Eric Davis -
r4008:973c54d49b44
parent child
Show More
@@ -1,22 +1,37
1 class FilesController < ApplicationController
1 class FilesController < ApplicationController
2 menu_item :files
2 menu_item :files
3
3
4 before_filter :find_project
4 before_filter :find_project
5 before_filter :authorize
5 before_filter :authorize
6
6
7 helper :sort
7 helper :sort
8 include SortHelper
8 include SortHelper
9
9
10 def index
10 def index
11 sort_init 'filename', 'asc'
11 sort_init 'filename', 'asc'
12 sort_update 'filename' => "#{Attachment.table_name}.filename",
12 sort_update 'filename' => "#{Attachment.table_name}.filename",
13 'created_on' => "#{Attachment.table_name}.created_on",
13 'created_on' => "#{Attachment.table_name}.created_on",
14 'size' => "#{Attachment.table_name}.filesize",
14 'size' => "#{Attachment.table_name}.filesize",
15 'downloads' => "#{Attachment.table_name}.downloads"
15 'downloads' => "#{Attachment.table_name}.downloads"
16
16
17 @containers = [ Project.find(@project.id, :include => :attachments, :order => sort_clause)]
17 @containers = [ Project.find(@project.id, :include => :attachments, :order => sort_clause)]
18 @containers += @project.versions.find(:all, :include => :attachments, :order => sort_clause).sort.reverse
18 @containers += @project.versions.find(:all, :include => :attachments, :order => sort_clause).sort.reverse
19 render :layout => !request.xhr?
19 render :layout => !request.xhr?
20 end
20 end
21
21
22 # TODO: split method into new (GET) and create (POST)
23 def new
24 if request.post?
25 container = (params[:version_id].blank? ? @project : @project.versions.find_by_id(params[:version_id]))
26 attachments = Attachment.attach_files(container, params[:attachments])
27 render_attachment_warning_if_needed(container)
28
29 if !attachments.empty? && Setting.notified_events.include?('file_added')
30 Mailer.deliver_attachments_added(attachments[:files])
31 end
32 redirect_to :controller => 'files', :action => 'index', :id => @project
33 return
34 end
35 @versions = @project.versions.sort
36 end
22 end
37 end
@@ -1,301 +1,285
1 # Redmine - project management software
1 # Redmine - project management software
2 # Copyright (C) 2006-2009 Jean-Philippe Lang
2 # Copyright (C) 2006-2009 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18 class ProjectsController < ApplicationController
18 class ProjectsController < ApplicationController
19 menu_item :overview
19 menu_item :overview
20 menu_item :roadmap, :only => :roadmap
20 menu_item :roadmap, :only => :roadmap
21 menu_item :files, :only => [:add_file]
22 menu_item :settings, :only => :settings
21 menu_item :settings, :only => :settings
23
22
24 before_filter :find_project, :except => [ :index, :list, :add, :copy ]
23 before_filter :find_project, :except => [ :index, :list, :add, :copy ]
25 before_filter :authorize, :except => [ :index, :list, :add, :copy, :archive, :unarchive, :destroy]
24 before_filter :authorize, :except => [ :index, :list, :add, :copy, :archive, :unarchive, :destroy]
26 before_filter :authorize_global, :only => :add
25 before_filter :authorize_global, :only => :add
27 before_filter :require_admin, :only => [ :copy, :archive, :unarchive, :destroy ]
26 before_filter :require_admin, :only => [ :copy, :archive, :unarchive, :destroy ]
28 accept_key_auth :index
27 accept_key_auth :index
29
28
30 after_filter :only => [:add, :edit, :archive, :unarchive, :destroy] do |controller|
29 after_filter :only => [:add, :edit, :archive, :unarchive, :destroy] do |controller|
31 if controller.request.post?
30 if controller.request.post?
32 controller.send :expire_action, :controller => 'welcome', :action => 'robots.txt'
31 controller.send :expire_action, :controller => 'welcome', :action => 'robots.txt'
33 end
32 end
34 end
33 end
35
34
36 helper :sort
35 helper :sort
37 include SortHelper
36 include SortHelper
38 helper :custom_fields
37 helper :custom_fields
39 include CustomFieldsHelper
38 include CustomFieldsHelper
40 helper :issues
39 helper :issues
41 helper :queries
40 helper :queries
42 include QueriesHelper
41 include QueriesHelper
43 helper :repositories
42 helper :repositories
44 include RepositoriesHelper
43 include RepositoriesHelper
45 include ProjectsHelper
44 include ProjectsHelper
46
45
47 # Lists visible projects
46 # Lists visible projects
48 def index
47 def index
49 respond_to do |format|
48 respond_to do |format|
50 format.html {
49 format.html {
51 @projects = Project.visible.find(:all, :order => 'lft')
50 @projects = Project.visible.find(:all, :order => 'lft')
52 }
51 }
53 format.xml {
52 format.xml {
54 @projects = Project.visible.find(:all, :order => 'lft')
53 @projects = Project.visible.find(:all, :order => 'lft')
55 }
54 }
56 format.atom {
55 format.atom {
57 projects = Project.visible.find(:all, :order => 'created_on DESC',
56 projects = Project.visible.find(:all, :order => 'created_on DESC',
58 :limit => Setting.feeds_limit.to_i)
57 :limit => Setting.feeds_limit.to_i)
59 render_feed(projects, :title => "#{Setting.app_title}: #{l(:label_project_latest)}")
58 render_feed(projects, :title => "#{Setting.app_title}: #{l(:label_project_latest)}")
60 }
59 }
61 end
60 end
62 end
61 end
63
62
64 # Add a new project
63 # Add a new project
65 def add
64 def add
66 @issue_custom_fields = IssueCustomField.find(:all, :order => "#{CustomField.table_name}.position")
65 @issue_custom_fields = IssueCustomField.find(:all, :order => "#{CustomField.table_name}.position")
67 @trackers = Tracker.all
66 @trackers = Tracker.all
68 @project = Project.new(params[:project])
67 @project = Project.new(params[:project])
69 if request.get?
68 if request.get?
70 @project.identifier = Project.next_identifier if Setting.sequential_project_identifiers?
69 @project.identifier = Project.next_identifier if Setting.sequential_project_identifiers?
71 @project.trackers = Tracker.all
70 @project.trackers = Tracker.all
72 @project.is_public = Setting.default_projects_public?
71 @project.is_public = Setting.default_projects_public?
73 @project.enabled_module_names = Setting.default_projects_modules
72 @project.enabled_module_names = Setting.default_projects_modules
74 else
73 else
75 @project.enabled_module_names = params[:enabled_modules]
74 @project.enabled_module_names = params[:enabled_modules]
76 if validate_parent_id && @project.save
75 if validate_parent_id && @project.save
77 @project.set_allowed_parent!(params[:project]['parent_id']) if params[:project].has_key?('parent_id')
76 @project.set_allowed_parent!(params[:project]['parent_id']) if params[:project].has_key?('parent_id')
78 # Add current user as a project member if he is not admin
77 # Add current user as a project member if he is not admin
79 unless User.current.admin?
78 unless User.current.admin?
80 r = Role.givable.find_by_id(Setting.new_project_user_role_id.to_i) || Role.givable.first
79 r = Role.givable.find_by_id(Setting.new_project_user_role_id.to_i) || Role.givable.first
81 m = Member.new(:user => User.current, :roles => [r])
80 m = Member.new(:user => User.current, :roles => [r])
82 @project.members << m
81 @project.members << m
83 end
82 end
84 respond_to do |format|
83 respond_to do |format|
85 format.html {
84 format.html {
86 flash[:notice] = l(:notice_successful_create)
85 flash[:notice] = l(:notice_successful_create)
87 redirect_to :controller => 'projects', :action => 'settings', :id => @project
86 redirect_to :controller => 'projects', :action => 'settings', :id => @project
88 }
87 }
89 format.xml { head :created, :location => url_for(:controller => 'projects', :action => 'show', :id => @project.id) }
88 format.xml { head :created, :location => url_for(:controller => 'projects', :action => 'show', :id => @project.id) }
90 end
89 end
91 else
90 else
92 respond_to do |format|
91 respond_to do |format|
93 format.html
92 format.html
94 format.xml { render :xml => @project.errors, :status => :unprocessable_entity }
93 format.xml { render :xml => @project.errors, :status => :unprocessable_entity }
95 end
94 end
96 end
95 end
97 end
96 end
98 end
97 end
99
98
100 def copy
99 def copy
101 @issue_custom_fields = IssueCustomField.find(:all, :order => "#{CustomField.table_name}.position")
100 @issue_custom_fields = IssueCustomField.find(:all, :order => "#{CustomField.table_name}.position")
102 @trackers = Tracker.all
101 @trackers = Tracker.all
103 @root_projects = Project.find(:all,
102 @root_projects = Project.find(:all,
104 :conditions => "parent_id IS NULL AND status = #{Project::STATUS_ACTIVE}",
103 :conditions => "parent_id IS NULL AND status = #{Project::STATUS_ACTIVE}",
105 :order => 'name')
104 :order => 'name')
106 @source_project = Project.find(params[:id])
105 @source_project = Project.find(params[:id])
107 if request.get?
106 if request.get?
108 @project = Project.copy_from(@source_project)
107 @project = Project.copy_from(@source_project)
109 if @project
108 if @project
110 @project.identifier = Project.next_identifier if Setting.sequential_project_identifiers?
109 @project.identifier = Project.next_identifier if Setting.sequential_project_identifiers?
111 else
110 else
112 redirect_to :controller => 'admin', :action => 'projects'
111 redirect_to :controller => 'admin', :action => 'projects'
113 end
112 end
114 else
113 else
115 Mailer.with_deliveries(params[:notifications] == '1') do
114 Mailer.with_deliveries(params[:notifications] == '1') do
116 @project = Project.new(params[:project])
115 @project = Project.new(params[:project])
117 @project.enabled_module_names = params[:enabled_modules]
116 @project.enabled_module_names = params[:enabled_modules]
118 if validate_parent_id && @project.copy(@source_project, :only => params[:only])
117 if validate_parent_id && @project.copy(@source_project, :only => params[:only])
119 @project.set_allowed_parent!(params[:project]['parent_id']) if params[:project].has_key?('parent_id')
118 @project.set_allowed_parent!(params[:project]['parent_id']) if params[:project].has_key?('parent_id')
120 flash[:notice] = l(:notice_successful_create)
119 flash[:notice] = l(:notice_successful_create)
121 redirect_to :controller => 'admin', :action => 'projects'
120 redirect_to :controller => 'admin', :action => 'projects'
122 elsif !@project.new_record?
121 elsif !@project.new_record?
123 # Project was created
122 # Project was created
124 # But some objects were not copied due to validation failures
123 # But some objects were not copied due to validation failures
125 # (eg. issues from disabled trackers)
124 # (eg. issues from disabled trackers)
126 # TODO: inform about that
125 # TODO: inform about that
127 redirect_to :controller => 'admin', :action => 'projects'
126 redirect_to :controller => 'admin', :action => 'projects'
128 end
127 end
129 end
128 end
130 end
129 end
131 rescue ActiveRecord::RecordNotFound
130 rescue ActiveRecord::RecordNotFound
132 redirect_to :controller => 'admin', :action => 'projects'
131 redirect_to :controller => 'admin', :action => 'projects'
133 end
132 end
134
133
135 # Show @project
134 # Show @project
136 def show
135 def show
137 if params[:jump]
136 if params[:jump]
138 # try to redirect to the requested menu item
137 # try to redirect to the requested menu item
139 redirect_to_project_menu_item(@project, params[:jump]) && return
138 redirect_to_project_menu_item(@project, params[:jump]) && return
140 end
139 end
141
140
142 @users_by_role = @project.users_by_role
141 @users_by_role = @project.users_by_role
143 @subprojects = @project.children.visible
142 @subprojects = @project.children.visible
144 @news = @project.news.find(:all, :limit => 5, :include => [ :author, :project ], :order => "#{News.table_name}.created_on DESC")
143 @news = @project.news.find(:all, :limit => 5, :include => [ :author, :project ], :order => "#{News.table_name}.created_on DESC")
145 @trackers = @project.rolled_up_trackers
144 @trackers = @project.rolled_up_trackers
146
145
147 cond = @project.project_condition(Setting.display_subprojects_issues?)
146 cond = @project.project_condition(Setting.display_subprojects_issues?)
148
147
149 @open_issues_by_tracker = Issue.visible.count(:group => :tracker,
148 @open_issues_by_tracker = Issue.visible.count(:group => :tracker,
150 :include => [:project, :status, :tracker],
149 :include => [:project, :status, :tracker],
151 :conditions => ["(#{cond}) AND #{IssueStatus.table_name}.is_closed=?", false])
150 :conditions => ["(#{cond}) AND #{IssueStatus.table_name}.is_closed=?", false])
152 @total_issues_by_tracker = Issue.visible.count(:group => :tracker,
151 @total_issues_by_tracker = Issue.visible.count(:group => :tracker,
153 :include => [:project, :status, :tracker],
152 :include => [:project, :status, :tracker],
154 :conditions => cond)
153 :conditions => cond)
155
154
156 TimeEntry.visible_by(User.current) do
155 TimeEntry.visible_by(User.current) do
157 @total_hours = TimeEntry.sum(:hours,
156 @total_hours = TimeEntry.sum(:hours,
158 :include => :project,
157 :include => :project,
159 :conditions => cond).to_f
158 :conditions => cond).to_f
160 end
159 end
161 @key = User.current.rss_key
160 @key = User.current.rss_key
162
161
163 respond_to do |format|
162 respond_to do |format|
164 format.html
163 format.html
165 format.xml
164 format.xml
166 end
165 end
167 end
166 end
168
167
169 def settings
168 def settings
170 @issue_custom_fields = IssueCustomField.find(:all, :order => "#{CustomField.table_name}.position")
169 @issue_custom_fields = IssueCustomField.find(:all, :order => "#{CustomField.table_name}.position")
171 @issue_category ||= IssueCategory.new
170 @issue_category ||= IssueCategory.new
172 @member ||= @project.members.new
171 @member ||= @project.members.new
173 @trackers = Tracker.all
172 @trackers = Tracker.all
174 @repository ||= @project.repository
173 @repository ||= @project.repository
175 @wiki ||= @project.wiki
174 @wiki ||= @project.wiki
176 end
175 end
177
176
178 # Edit @project
177 # Edit @project
179 def edit
178 def edit
180 if request.get?
179 if request.get?
181 else
180 else
182 @project.attributes = params[:project]
181 @project.attributes = params[:project]
183 if validate_parent_id && @project.save
182 if validate_parent_id && @project.save
184 @project.set_allowed_parent!(params[:project]['parent_id']) if params[:project].has_key?('parent_id')
183 @project.set_allowed_parent!(params[:project]['parent_id']) if params[:project].has_key?('parent_id')
185 respond_to do |format|
184 respond_to do |format|
186 format.html {
185 format.html {
187 flash[:notice] = l(:notice_successful_update)
186 flash[:notice] = l(:notice_successful_update)
188 redirect_to :action => 'settings', :id => @project
187 redirect_to :action => 'settings', :id => @project
189 }
188 }
190 format.xml { head :ok }
189 format.xml { head :ok }
191 end
190 end
192 else
191 else
193 respond_to do |format|
192 respond_to do |format|
194 format.html {
193 format.html {
195 settings
194 settings
196 render :action => 'settings'
195 render :action => 'settings'
197 }
196 }
198 format.xml { render :xml => @project.errors, :status => :unprocessable_entity }
197 format.xml { render :xml => @project.errors, :status => :unprocessable_entity }
199 end
198 end
200 end
199 end
201 end
200 end
202 end
201 end
203
202
204 def modules
203 def modules
205 @project.enabled_module_names = params[:enabled_modules]
204 @project.enabled_module_names = params[:enabled_modules]
206 flash[:notice] = l(:notice_successful_update)
205 flash[:notice] = l(:notice_successful_update)
207 redirect_to :action => 'settings', :id => @project, :tab => 'modules'
206 redirect_to :action => 'settings', :id => @project, :tab => 'modules'
208 end
207 end
209
208
210 def archive
209 def archive
211 if request.post?
210 if request.post?
212 unless @project.archive
211 unless @project.archive
213 flash[:error] = l(:error_can_not_archive_project)
212 flash[:error] = l(:error_can_not_archive_project)
214 end
213 end
215 end
214 end
216 redirect_to(url_for(:controller => 'admin', :action => 'projects', :status => params[:status]))
215 redirect_to(url_for(:controller => 'admin', :action => 'projects', :status => params[:status]))
217 end
216 end
218
217
219 def unarchive
218 def unarchive
220 @project.unarchive if request.post? && !@project.active?
219 @project.unarchive if request.post? && !@project.active?
221 redirect_to(url_for(:controller => 'admin', :action => 'projects', :status => params[:status]))
220 redirect_to(url_for(:controller => 'admin', :action => 'projects', :status => params[:status]))
222 end
221 end
223
222
224 # Delete @project
223 # Delete @project
225 def destroy
224 def destroy
226 @project_to_destroy = @project
225 @project_to_destroy = @project
227 if request.get?
226 if request.get?
228 # display confirmation view
227 # display confirmation view
229 else
228 else
230 if params[:format] == 'xml' || params[:confirm]
229 if params[:format] == 'xml' || params[:confirm]
231 @project_to_destroy.destroy
230 @project_to_destroy.destroy
232 respond_to do |format|
231 respond_to do |format|
233 format.html { redirect_to :controller => 'admin', :action => 'projects' }
232 format.html { redirect_to :controller => 'admin', :action => 'projects' }
234 format.xml { head :ok }
233 format.xml { head :ok }
235 end
234 end
236 end
235 end
237 end
236 end
238 # hide project in layout
237 # hide project in layout
239 @project = nil
238 @project = nil
240 end
239 end
241
240
242 def add_file
243 if request.post?
244 container = (params[:version_id].blank? ? @project : @project.versions.find_by_id(params[:version_id]))
245 attachments = Attachment.attach_files(container, params[:attachments])
246 render_attachment_warning_if_needed(container)
247
248 if !attachments.empty? && Setting.notified_events.include?('file_added')
249 Mailer.deliver_attachments_added(attachments[:files])
250 end
251 redirect_to :controller => 'files', :action => 'index', :id => @project
252 return
253 end
254 @versions = @project.versions.sort
255 end
256
257 def save_activities
241 def save_activities
258 if request.post? && params[:enumerations]
242 if request.post? && params[:enumerations]
259 Project.transaction do
243 Project.transaction do
260 params[:enumerations].each do |id, activity|
244 params[:enumerations].each do |id, activity|
261 @project.update_or_create_time_entry_activity(id, activity)
245 @project.update_or_create_time_entry_activity(id, activity)
262 end
246 end
263 end
247 end
264 flash[:notice] = l(:notice_successful_update)
248 flash[:notice] = l(:notice_successful_update)
265 end
249 end
266
250
267 redirect_to :controller => 'projects', :action => 'settings', :tab => 'activities', :id => @project
251 redirect_to :controller => 'projects', :action => 'settings', :tab => 'activities', :id => @project
268 end
252 end
269
253
270 def reset_activities
254 def reset_activities
271 @project.time_entry_activities.each do |time_entry_activity|
255 @project.time_entry_activities.each do |time_entry_activity|
272 time_entry_activity.destroy(time_entry_activity.parent)
256 time_entry_activity.destroy(time_entry_activity.parent)
273 end
257 end
274 flash[:notice] = l(:notice_successful_update)
258 flash[:notice] = l(:notice_successful_update)
275 redirect_to :controller => 'projects', :action => 'settings', :tab => 'activities', :id => @project
259 redirect_to :controller => 'projects', :action => 'settings', :tab => 'activities', :id => @project
276 end
260 end
277
261
278 private
262 private
279 def find_optional_project
263 def find_optional_project
280 return true unless params[:id]
264 return true unless params[:id]
281 @project = Project.find(params[:id])
265 @project = Project.find(params[:id])
282 authorize
266 authorize
283 rescue ActiveRecord::RecordNotFound
267 rescue ActiveRecord::RecordNotFound
284 render_404
268 render_404
285 end
269 end
286
270
287 # Validates parent_id param according to user's permissions
271 # Validates parent_id param according to user's permissions
288 # TODO: move it to Project model in a validation that depends on User.current
272 # TODO: move it to Project model in a validation that depends on User.current
289 def validate_parent_id
273 def validate_parent_id
290 return true if User.current.admin?
274 return true if User.current.admin?
291 parent_id = params[:project] && params[:project][:parent_id]
275 parent_id = params[:project] && params[:project][:parent_id]
292 if parent_id || @project.new_record?
276 if parent_id || @project.new_record?
293 parent = parent_id.blank? ? nil : Project.find_by_id(parent_id.to_i)
277 parent = parent_id.blank? ? nil : Project.find_by_id(parent_id.to_i)
294 unless @project.allowed_parents.include?(parent)
278 unless @project.allowed_parents.include?(parent)
295 @project.errors.add :parent_id, :invalid
279 @project.errors.add :parent_id, :invalid
296 return false
280 return false
297 end
281 end
298 end
282 end
299 true
283 true
300 end
284 end
301 end
285 end
@@ -1,46 +1,46
1 <div class="contextual">
1 <div class="contextual">
2 <%= link_to_if_authorized l(:label_attachment_new), {:controller => 'projects', :action => 'add_file', :id => @project}, :class => 'icon icon-add' %>
2 <%= link_to_if_authorized l(:label_attachment_new), {:controller => 'files', :action => 'new', :id => @project}, :class => 'icon icon-add' %>
3 </div>
3 </div>
4
4
5 <h2><%=l(:label_attachment_plural)%></h2>
5 <h2><%=l(:label_attachment_plural)%></h2>
6
6
7 <% delete_allowed = User.current.allowed_to?(:manage_files, @project) %>
7 <% delete_allowed = User.current.allowed_to?(:manage_files, @project) %>
8
8
9 <table class="list files">
9 <table class="list files">
10 <thead><tr>
10 <thead><tr>
11 <%= sort_header_tag('filename', :caption => l(:field_filename)) %>
11 <%= sort_header_tag('filename', :caption => l(:field_filename)) %>
12 <%= sort_header_tag('created_on', :caption => l(:label_date), :default_order => 'desc') %>
12 <%= sort_header_tag('created_on', :caption => l(:label_date), :default_order => 'desc') %>
13 <%= sort_header_tag('size', :caption => l(:field_filesize), :default_order => 'desc') %>
13 <%= sort_header_tag('size', :caption => l(:field_filesize), :default_order => 'desc') %>
14 <%= sort_header_tag('downloads', :caption => l(:label_downloads_abbr), :default_order => 'desc') %>
14 <%= sort_header_tag('downloads', :caption => l(:label_downloads_abbr), :default_order => 'desc') %>
15 <th>MD5</th>
15 <th>MD5</th>
16 <th></th>
16 <th></th>
17 </tr></thead>
17 </tr></thead>
18 <tbody>
18 <tbody>
19 <% @containers.each do |container| %>
19 <% @containers.each do |container| %>
20 <% next if container.attachments.empty? -%>
20 <% next if container.attachments.empty? -%>
21 <% if container.is_a?(Version) -%>
21 <% if container.is_a?(Version) -%>
22 <tr>
22 <tr>
23 <th colspan="6" align="left">
23 <th colspan="6" align="left">
24 <%= link_to(h(container), {:controller => 'versions', :action => 'show', :id => container}, :class => "icon icon-package") %>
24 <%= link_to(h(container), {:controller => 'versions', :action => 'show', :id => container}, :class => "icon icon-package") %>
25 </th>
25 </th>
26 </tr>
26 </tr>
27 <% end -%>
27 <% end -%>
28 <% container.attachments.each do |file| %>
28 <% container.attachments.each do |file| %>
29 <tr class="file <%= cycle("odd", "even") %>">
29 <tr class="file <%= cycle("odd", "even") %>">
30 <td class="filename"><%= link_to_attachment file, :download => true, :title => file.description %></td>
30 <td class="filename"><%= link_to_attachment file, :download => true, :title => file.description %></td>
31 <td class="created_on"><%= format_time(file.created_on) %></td>
31 <td class="created_on"><%= format_time(file.created_on) %></td>
32 <td class="filesize"><%= number_to_human_size(file.filesize) %></td>
32 <td class="filesize"><%= number_to_human_size(file.filesize) %></td>
33 <td class="downloads"><%= file.downloads %></td>
33 <td class="downloads"><%= file.downloads %></td>
34 <td class="digest"><%= file.digest %></td>
34 <td class="digest"><%= file.digest %></td>
35 <td align="center">
35 <td align="center">
36 <%= link_to(image_tag('delete.png'), {:controller => 'attachments', :action => 'destroy', :id => file},
36 <%= link_to(image_tag('delete.png'), {:controller => 'attachments', :action => 'destroy', :id => file},
37 :confirm => l(:text_are_you_sure), :method => :post) if delete_allowed %>
37 :confirm => l(:text_are_you_sure), :method => :post) if delete_allowed %>
38 </td>
38 </td>
39 </tr>
39 </tr>
40 <% end
40 <% end
41 reset_cycle %>
41 reset_cycle %>
42 <% end %>
42 <% end %>
43 </tbody>
43 </tbody>
44 </table>
44 </table>
45
45
46 <% html_title(l(:label_attachment_plural)) -%>
46 <% html_title(l(:label_attachment_plural)) -%>
@@ -1,16 +1,16
1 <h2><%=l(:label_attachment_new)%></h2>
1 <h2><%=l(:label_attachment_new)%></h2>
2
2
3 <%= error_messages_for 'attachment' %>
3 <%= error_messages_for 'attachment' %>
4 <div class="box">
4 <div class="box">
5 <% form_tag({ :action => 'add_file', :id => @project }, :multipart => true, :class => "tabular") do %>
5 <% form_tag({ :action => 'new', :id => @project }, :multipart => true, :class => "tabular") do %>
6
6
7 <% if @versions.any? %>
7 <% if @versions.any? %>
8 <p><label for="version_id"><%=l(:field_version)%></label>
8 <p><label for="version_id"><%=l(:field_version)%></label>
9 <%= select_tag "version_id", content_tag('option', '') +
9 <%= select_tag "version_id", content_tag('option', '') +
10 options_from_collection_for_select(@versions, "id", "name") %></p>
10 options_from_collection_for_select(@versions, "id", "name") %></p>
11 <% end %>
11 <% end %>
12
12
13 <p><label><%=l(:label_attachment_plural)%></label><%= render :partial => 'attachments/form' %></p>
13 <p><label><%=l(:label_attachment_plural)%></label><%= render :partial => 'attachments/form' %></p>
14 </div>
14 </div>
15 <%= submit_tag l(:button_add) %>
15 <%= submit_tag l(:button_add) %>
16 <% end %>
16 <% end %>
@@ -1,301 +1,301
1 ActionController::Routing::Routes.draw do |map|
1 ActionController::Routing::Routes.draw do |map|
2 # Add your own custom routes here.
2 # Add your own custom routes here.
3 # The priority is based upon order of creation: first created -> highest priority.
3 # The priority is based upon order of creation: first created -> highest priority.
4
4
5 # Here's a sample route:
5 # Here's a sample route:
6 # map.connect 'products/:id', :controller => 'catalog', :action => 'view'
6 # map.connect 'products/:id', :controller => 'catalog', :action => 'view'
7 # Keep in mind you can assign values other than :controller and :action
7 # Keep in mind you can assign values other than :controller and :action
8
8
9 map.home '', :controller => 'welcome'
9 map.home '', :controller => 'welcome'
10
10
11 map.signin 'login', :controller => 'account', :action => 'login'
11 map.signin 'login', :controller => 'account', :action => 'login'
12 map.signout 'logout', :controller => 'account', :action => 'logout'
12 map.signout 'logout', :controller => 'account', :action => 'logout'
13
13
14 map.connect 'roles/workflow/:id/:role_id/:tracker_id', :controller => 'roles', :action => 'workflow'
14 map.connect 'roles/workflow/:id/:role_id/:tracker_id', :controller => 'roles', :action => 'workflow'
15 map.connect 'help/:ctrl/:page', :controller => 'help'
15 map.connect 'help/:ctrl/:page', :controller => 'help'
16
16
17 map.connect 'time_entries/:id/edit', :action => 'edit', :controller => 'timelog'
17 map.connect 'time_entries/:id/edit', :action => 'edit', :controller => 'timelog'
18 map.connect 'projects/:project_id/time_entries/new', :action => 'edit', :controller => 'timelog'
18 map.connect 'projects/:project_id/time_entries/new', :action => 'edit', :controller => 'timelog'
19 map.connect 'projects/:project_id/issues/:issue_id/time_entries/new', :action => 'edit', :controller => 'timelog'
19 map.connect 'projects/:project_id/issues/:issue_id/time_entries/new', :action => 'edit', :controller => 'timelog'
20
20
21 map.with_options :controller => 'timelog' do |timelog|
21 map.with_options :controller => 'timelog' do |timelog|
22 timelog.connect 'projects/:project_id/time_entries', :action => 'details'
22 timelog.connect 'projects/:project_id/time_entries', :action => 'details'
23
23
24 timelog.with_options :action => 'details', :conditions => {:method => :get} do |time_details|
24 timelog.with_options :action => 'details', :conditions => {:method => :get} do |time_details|
25 time_details.connect 'time_entries'
25 time_details.connect 'time_entries'
26 time_details.connect 'time_entries.:format'
26 time_details.connect 'time_entries.:format'
27 time_details.connect 'issues/:issue_id/time_entries'
27 time_details.connect 'issues/:issue_id/time_entries'
28 time_details.connect 'issues/:issue_id/time_entries.:format'
28 time_details.connect 'issues/:issue_id/time_entries.:format'
29 time_details.connect 'projects/:project_id/time_entries.:format'
29 time_details.connect 'projects/:project_id/time_entries.:format'
30 time_details.connect 'projects/:project_id/issues/:issue_id/time_entries'
30 time_details.connect 'projects/:project_id/issues/:issue_id/time_entries'
31 time_details.connect 'projects/:project_id/issues/:issue_id/time_entries.:format'
31 time_details.connect 'projects/:project_id/issues/:issue_id/time_entries.:format'
32 end
32 end
33 timelog.connect 'projects/:project_id/time_entries/report', :action => 'report'
33 timelog.connect 'projects/:project_id/time_entries/report', :action => 'report'
34 timelog.with_options :action => 'report',:conditions => {:method => :get} do |time_report|
34 timelog.with_options :action => 'report',:conditions => {:method => :get} do |time_report|
35 time_report.connect 'time_entries/report'
35 time_report.connect 'time_entries/report'
36 time_report.connect 'time_entries/report.:format'
36 time_report.connect 'time_entries/report.:format'
37 time_report.connect 'projects/:project_id/time_entries/report.:format'
37 time_report.connect 'projects/:project_id/time_entries/report.:format'
38 end
38 end
39
39
40 timelog.with_options :action => 'edit', :conditions => {:method => :get} do |time_edit|
40 timelog.with_options :action => 'edit', :conditions => {:method => :get} do |time_edit|
41 time_edit.connect 'issues/:issue_id/time_entries/new'
41 time_edit.connect 'issues/:issue_id/time_entries/new'
42 end
42 end
43
43
44 timelog.connect 'time_entries/:id/destroy', :action => 'destroy', :conditions => {:method => :post}
44 timelog.connect 'time_entries/:id/destroy', :action => 'destroy', :conditions => {:method => :post}
45 end
45 end
46
46
47 map.connect 'projects/:id/wiki', :controller => 'wikis', :action => 'edit', :conditions => {:method => :post}
47 map.connect 'projects/:id/wiki', :controller => 'wikis', :action => 'edit', :conditions => {:method => :post}
48 map.connect 'projects/:id/wiki/destroy', :controller => 'wikis', :action => 'destroy', :conditions => {:method => :get}
48 map.connect 'projects/:id/wiki/destroy', :controller => 'wikis', :action => 'destroy', :conditions => {:method => :get}
49 map.connect 'projects/:id/wiki/destroy', :controller => 'wikis', :action => 'destroy', :conditions => {:method => :post}
49 map.connect 'projects/:id/wiki/destroy', :controller => 'wikis', :action => 'destroy', :conditions => {:method => :post}
50 map.with_options :controller => 'wiki' do |wiki_routes|
50 map.with_options :controller => 'wiki' do |wiki_routes|
51 wiki_routes.with_options :conditions => {:method => :get} do |wiki_views|
51 wiki_routes.with_options :conditions => {:method => :get} do |wiki_views|
52 wiki_views.connect 'projects/:id/wiki/:page', :action => 'special', :page => /page_index|date_index|export/i
52 wiki_views.connect 'projects/:id/wiki/:page', :action => 'special', :page => /page_index|date_index|export/i
53 wiki_views.connect 'projects/:id/wiki/:page', :action => 'index', :page => nil
53 wiki_views.connect 'projects/:id/wiki/:page', :action => 'index', :page => nil
54 wiki_views.connect 'projects/:id/wiki/:page/edit', :action => 'edit'
54 wiki_views.connect 'projects/:id/wiki/:page/edit', :action => 'edit'
55 wiki_views.connect 'projects/:id/wiki/:page/rename', :action => 'rename'
55 wiki_views.connect 'projects/:id/wiki/:page/rename', :action => 'rename'
56 wiki_views.connect 'projects/:id/wiki/:page/history', :action => 'history'
56 wiki_views.connect 'projects/:id/wiki/:page/history', :action => 'history'
57 wiki_views.connect 'projects/:id/wiki/:page/diff/:version/vs/:version_from', :action => 'diff'
57 wiki_views.connect 'projects/:id/wiki/:page/diff/:version/vs/:version_from', :action => 'diff'
58 wiki_views.connect 'projects/:id/wiki/:page/annotate/:version', :action => 'annotate'
58 wiki_views.connect 'projects/:id/wiki/:page/annotate/:version', :action => 'annotate'
59 end
59 end
60
60
61 wiki_routes.connect 'projects/:id/wiki/:page/:action',
61 wiki_routes.connect 'projects/:id/wiki/:page/:action',
62 :action => /edit|rename|destroy|preview|protect/,
62 :action => /edit|rename|destroy|preview|protect/,
63 :conditions => {:method => :post}
63 :conditions => {:method => :post}
64 end
64 end
65
65
66 map.with_options :controller => 'messages' do |messages_routes|
66 map.with_options :controller => 'messages' do |messages_routes|
67 messages_routes.with_options :conditions => {:method => :get} do |messages_views|
67 messages_routes.with_options :conditions => {:method => :get} do |messages_views|
68 messages_views.connect 'boards/:board_id/topics/new', :action => 'new'
68 messages_views.connect 'boards/:board_id/topics/new', :action => 'new'
69 messages_views.connect 'boards/:board_id/topics/:id', :action => 'show'
69 messages_views.connect 'boards/:board_id/topics/:id', :action => 'show'
70 messages_views.connect 'boards/:board_id/topics/:id/edit', :action => 'edit'
70 messages_views.connect 'boards/:board_id/topics/:id/edit', :action => 'edit'
71 end
71 end
72 messages_routes.with_options :conditions => {:method => :post} do |messages_actions|
72 messages_routes.with_options :conditions => {:method => :post} do |messages_actions|
73 messages_actions.connect 'boards/:board_id/topics/new', :action => 'new'
73 messages_actions.connect 'boards/:board_id/topics/new', :action => 'new'
74 messages_actions.connect 'boards/:board_id/topics/:id/replies', :action => 'reply'
74 messages_actions.connect 'boards/:board_id/topics/:id/replies', :action => 'reply'
75 messages_actions.connect 'boards/:board_id/topics/:id/:action', :action => /edit|destroy/
75 messages_actions.connect 'boards/:board_id/topics/:id/:action', :action => /edit|destroy/
76 end
76 end
77 end
77 end
78
78
79 map.with_options :controller => 'boards' do |board_routes|
79 map.with_options :controller => 'boards' do |board_routes|
80 board_routes.with_options :conditions => {:method => :get} do |board_views|
80 board_routes.with_options :conditions => {:method => :get} do |board_views|
81 board_views.connect 'projects/:project_id/boards', :action => 'index'
81 board_views.connect 'projects/:project_id/boards', :action => 'index'
82 board_views.connect 'projects/:project_id/boards/new', :action => 'new'
82 board_views.connect 'projects/:project_id/boards/new', :action => 'new'
83 board_views.connect 'projects/:project_id/boards/:id', :action => 'show'
83 board_views.connect 'projects/:project_id/boards/:id', :action => 'show'
84 board_views.connect 'projects/:project_id/boards/:id.:format', :action => 'show'
84 board_views.connect 'projects/:project_id/boards/:id.:format', :action => 'show'
85 board_views.connect 'projects/:project_id/boards/:id/edit', :action => 'edit'
85 board_views.connect 'projects/:project_id/boards/:id/edit', :action => 'edit'
86 end
86 end
87 board_routes.with_options :conditions => {:method => :post} do |board_actions|
87 board_routes.with_options :conditions => {:method => :post} do |board_actions|
88 board_actions.connect 'projects/:project_id/boards', :action => 'new'
88 board_actions.connect 'projects/:project_id/boards', :action => 'new'
89 board_actions.connect 'projects/:project_id/boards/:id/:action', :action => /edit|destroy/
89 board_actions.connect 'projects/:project_id/boards/:id/:action', :action => /edit|destroy/
90 end
90 end
91 end
91 end
92
92
93 map.with_options :controller => 'documents' do |document_routes|
93 map.with_options :controller => 'documents' do |document_routes|
94 document_routes.with_options :conditions => {:method => :get} do |document_views|
94 document_routes.with_options :conditions => {:method => :get} do |document_views|
95 document_views.connect 'projects/:project_id/documents', :action => 'index'
95 document_views.connect 'projects/:project_id/documents', :action => 'index'
96 document_views.connect 'projects/:project_id/documents/new', :action => 'new'
96 document_views.connect 'projects/:project_id/documents/new', :action => 'new'
97 document_views.connect 'documents/:id', :action => 'show'
97 document_views.connect 'documents/:id', :action => 'show'
98 document_views.connect 'documents/:id/edit', :action => 'edit'
98 document_views.connect 'documents/:id/edit', :action => 'edit'
99 end
99 end
100 document_routes.with_options :conditions => {:method => :post} do |document_actions|
100 document_routes.with_options :conditions => {:method => :post} do |document_actions|
101 document_actions.connect 'projects/:project_id/documents', :action => 'new'
101 document_actions.connect 'projects/:project_id/documents', :action => 'new'
102 document_actions.connect 'documents/:id/:action', :action => /destroy|edit/
102 document_actions.connect 'documents/:id/:action', :action => /destroy|edit/
103 end
103 end
104 end
104 end
105
105
106 map.resources :issue_moves, :only => [:new, :create], :path_prefix => '/issues', :as => 'move'
106 map.resources :issue_moves, :only => [:new, :create], :path_prefix => '/issues', :as => 'move'
107 map.auto_complete_issues '/issues/auto_complete', :controller => 'auto_completes', :action => 'issues'
107 map.auto_complete_issues '/issues/auto_complete', :controller => 'auto_completes', :action => 'issues'
108 # TODO: would look nicer as /issues/:id/preview
108 # TODO: would look nicer as /issues/:id/preview
109 map.preview_issue '/issues/preview/:id', :controller => 'previews', :action => 'issue'
109 map.preview_issue '/issues/preview/:id', :controller => 'previews', :action => 'issue'
110 map.issues_context_menu '/issues/context_menu', :controller => 'context_menus', :action => 'issues'
110 map.issues_context_menu '/issues/context_menu', :controller => 'context_menus', :action => 'issues'
111 map.issue_changes '/issues/changes', :controller => 'journals', :action => 'index'
111 map.issue_changes '/issues/changes', :controller => 'journals', :action => 'index'
112
112
113 map.with_options :controller => 'issues' do |issues_routes|
113 map.with_options :controller => 'issues' do |issues_routes|
114 issues_routes.with_options :conditions => {:method => :get} do |issues_views|
114 issues_routes.with_options :conditions => {:method => :get} do |issues_views|
115 issues_views.connect 'issues', :action => 'index'
115 issues_views.connect 'issues', :action => 'index'
116 issues_views.connect 'issues.:format', :action => 'index'
116 issues_views.connect 'issues.:format', :action => 'index'
117 issues_views.connect 'projects/:project_id/issues', :action => 'index'
117 issues_views.connect 'projects/:project_id/issues', :action => 'index'
118 issues_views.connect 'projects/:project_id/issues.:format', :action => 'index'
118 issues_views.connect 'projects/:project_id/issues.:format', :action => 'index'
119 issues_views.connect 'projects/:project_id/issues/new', :action => 'new'
119 issues_views.connect 'projects/:project_id/issues/new', :action => 'new'
120 issues_views.connect 'projects/:project_id/issues/gantt', :controller => 'gantts', :action => 'show'
120 issues_views.connect 'projects/:project_id/issues/gantt', :controller => 'gantts', :action => 'show'
121 issues_views.connect 'projects/:project_id/issues/calendar', :controller => 'calendars', :action => 'show'
121 issues_views.connect 'projects/:project_id/issues/calendar', :controller => 'calendars', :action => 'show'
122 issues_views.connect 'projects/:project_id/issues/:copy_from/copy', :action => 'new'
122 issues_views.connect 'projects/:project_id/issues/:copy_from/copy', :action => 'new'
123 issues_views.connect 'issues/:id', :action => 'show', :id => /\d+/
123 issues_views.connect 'issues/:id', :action => 'show', :id => /\d+/
124 issues_views.connect 'issues/:id.:format', :action => 'show', :id => /\d+/
124 issues_views.connect 'issues/:id.:format', :action => 'show', :id => /\d+/
125 issues_views.connect 'issues/:id/edit', :action => 'edit', :id => /\d+/
125 issues_views.connect 'issues/:id/edit', :action => 'edit', :id => /\d+/
126 end
126 end
127 issues_routes.with_options :conditions => {:method => :post} do |issues_actions|
127 issues_routes.with_options :conditions => {:method => :post} do |issues_actions|
128 issues_actions.connect 'issues', :action => 'index'
128 issues_actions.connect 'issues', :action => 'index'
129 issues_actions.connect 'projects/:project_id/issues', :action => 'create'
129 issues_actions.connect 'projects/:project_id/issues', :action => 'create'
130 issues_actions.connect 'projects/:project_id/issues/gantt', :controller => 'gantts', :action => 'show'
130 issues_actions.connect 'projects/:project_id/issues/gantt', :controller => 'gantts', :action => 'show'
131 issues_actions.connect 'projects/:project_id/issues/calendar', :controller => 'calendars', :action => 'show'
131 issues_actions.connect 'projects/:project_id/issues/calendar', :controller => 'calendars', :action => 'show'
132 issues_actions.connect 'issues/:id/quoted', :controller => 'journals', :action => 'new', :id => /\d+/
132 issues_actions.connect 'issues/:id/quoted', :controller => 'journals', :action => 'new', :id => /\d+/
133 issues_actions.connect 'issues/:id/:action', :action => /edit|destroy/, :id => /\d+/
133 issues_actions.connect 'issues/:id/:action', :action => /edit|destroy/, :id => /\d+/
134 issues_actions.connect 'issues.:format', :action => 'create', :format => /xml/
134 issues_actions.connect 'issues.:format', :action => 'create', :format => /xml/
135 issues_actions.connect 'issues/bulk_edit', :action => 'bulk_update'
135 issues_actions.connect 'issues/bulk_edit', :action => 'bulk_update'
136 end
136 end
137 issues_routes.with_options :conditions => {:method => :put} do |issues_actions|
137 issues_routes.with_options :conditions => {:method => :put} do |issues_actions|
138 issues_actions.connect 'issues/:id/edit', :action => 'update', :id => /\d+/
138 issues_actions.connect 'issues/:id/edit', :action => 'update', :id => /\d+/
139 issues_actions.connect 'issues/:id.:format', :action => 'update', :id => /\d+/, :format => /xml/
139 issues_actions.connect 'issues/:id.:format', :action => 'update', :id => /\d+/, :format => /xml/
140 end
140 end
141 issues_routes.with_options :conditions => {:method => :delete} do |issues_actions|
141 issues_routes.with_options :conditions => {:method => :delete} do |issues_actions|
142 issues_actions.connect 'issues/:id.:format', :action => 'destroy', :id => /\d+/, :format => /xml/
142 issues_actions.connect 'issues/:id.:format', :action => 'destroy', :id => /\d+/, :format => /xml/
143 end
143 end
144 issues_routes.connect 'issues/gantt', :controller => 'gantts', :action => 'show'
144 issues_routes.connect 'issues/gantt', :controller => 'gantts', :action => 'show'
145 issues_routes.connect 'issues/calendar', :controller => 'calendars', :action => 'show'
145 issues_routes.connect 'issues/calendar', :controller => 'calendars', :action => 'show'
146 issues_routes.connect 'issues/:action'
146 issues_routes.connect 'issues/:action'
147 end
147 end
148
148
149 map.with_options :controller => 'issue_relations', :conditions => {:method => :post} do |relations|
149 map.with_options :controller => 'issue_relations', :conditions => {:method => :post} do |relations|
150 relations.connect 'issues/:issue_id/relations/:id', :action => 'new'
150 relations.connect 'issues/:issue_id/relations/:id', :action => 'new'
151 relations.connect 'issues/:issue_id/relations/:id/destroy', :action => 'destroy'
151 relations.connect 'issues/:issue_id/relations/:id/destroy', :action => 'destroy'
152 end
152 end
153
153
154 map.with_options :controller => 'reports', :conditions => {:method => :get} do |reports|
154 map.with_options :controller => 'reports', :conditions => {:method => :get} do |reports|
155 reports.connect 'projects/:id/issues/report', :action => 'issue_report'
155 reports.connect 'projects/:id/issues/report', :action => 'issue_report'
156 reports.connect 'projects/:id/issues/report/:detail', :action => 'issue_report_details'
156 reports.connect 'projects/:id/issues/report/:detail', :action => 'issue_report_details'
157 end
157 end
158
158
159 map.with_options :controller => 'news' do |news_routes|
159 map.with_options :controller => 'news' do |news_routes|
160 news_routes.with_options :conditions => {:method => :get} do |news_views|
160 news_routes.with_options :conditions => {:method => :get} do |news_views|
161 news_views.connect 'news', :action => 'index'
161 news_views.connect 'news', :action => 'index'
162 news_views.connect 'projects/:project_id/news', :action => 'index'
162 news_views.connect 'projects/:project_id/news', :action => 'index'
163 news_views.connect 'projects/:project_id/news.:format', :action => 'index'
163 news_views.connect 'projects/:project_id/news.:format', :action => 'index'
164 news_views.connect 'news.:format', :action => 'index'
164 news_views.connect 'news.:format', :action => 'index'
165 news_views.connect 'projects/:project_id/news/new', :action => 'new'
165 news_views.connect 'projects/:project_id/news/new', :action => 'new'
166 news_views.connect 'news/:id', :action => 'show'
166 news_views.connect 'news/:id', :action => 'show'
167 news_views.connect 'news/:id/edit', :action => 'edit'
167 news_views.connect 'news/:id/edit', :action => 'edit'
168 end
168 end
169 news_routes.with_options do |news_actions|
169 news_routes.with_options do |news_actions|
170 news_actions.connect 'projects/:project_id/news', :action => 'new'
170 news_actions.connect 'projects/:project_id/news', :action => 'new'
171 news_actions.connect 'news/:id/edit', :action => 'edit'
171 news_actions.connect 'news/:id/edit', :action => 'edit'
172 news_actions.connect 'news/:id/destroy', :action => 'destroy'
172 news_actions.connect 'news/:id/destroy', :action => 'destroy'
173 end
173 end
174 end
174 end
175
175
176 map.connect 'projects/:id/members/new', :controller => 'members', :action => 'new'
176 map.connect 'projects/:id/members/new', :controller => 'members', :action => 'new'
177
177
178 map.with_options :controller => 'users' do |users|
178 map.with_options :controller => 'users' do |users|
179 users.with_options :conditions => {:method => :get} do |user_views|
179 users.with_options :conditions => {:method => :get} do |user_views|
180 user_views.connect 'users', :action => 'index'
180 user_views.connect 'users', :action => 'index'
181 user_views.connect 'users/:id', :action => 'show', :id => /\d+/
181 user_views.connect 'users/:id', :action => 'show', :id => /\d+/
182 user_views.connect 'users/new', :action => 'add'
182 user_views.connect 'users/new', :action => 'add'
183 user_views.connect 'users/:id/edit/:tab', :action => 'edit', :tab => nil
183 user_views.connect 'users/:id/edit/:tab', :action => 'edit', :tab => nil
184 end
184 end
185 users.with_options :conditions => {:method => :post} do |user_actions|
185 users.with_options :conditions => {:method => :post} do |user_actions|
186 user_actions.connect 'users', :action => 'add'
186 user_actions.connect 'users', :action => 'add'
187 user_actions.connect 'users/new', :action => 'add'
187 user_actions.connect 'users/new', :action => 'add'
188 user_actions.connect 'users/:id/edit', :action => 'edit'
188 user_actions.connect 'users/:id/edit', :action => 'edit'
189 user_actions.connect 'users/:id/memberships', :action => 'edit_membership'
189 user_actions.connect 'users/:id/memberships', :action => 'edit_membership'
190 user_actions.connect 'users/:id/memberships/:membership_id', :action => 'edit_membership'
190 user_actions.connect 'users/:id/memberships/:membership_id', :action => 'edit_membership'
191 user_actions.connect 'users/:id/memberships/:membership_id/destroy', :action => 'destroy_membership'
191 user_actions.connect 'users/:id/memberships/:membership_id/destroy', :action => 'destroy_membership'
192 end
192 end
193 end
193 end
194
194
195 map.with_options :controller => 'projects' do |projects|
195 map.with_options :controller => 'projects' do |projects|
196 projects.with_options :conditions => {:method => :get} do |project_views|
196 projects.with_options :conditions => {:method => :get} do |project_views|
197 project_views.connect 'projects', :action => 'index'
197 project_views.connect 'projects', :action => 'index'
198 project_views.connect 'projects.:format', :action => 'index'
198 project_views.connect 'projects.:format', :action => 'index'
199 project_views.connect 'projects/new', :action => 'add'
199 project_views.connect 'projects/new', :action => 'add'
200 project_views.connect 'projects/:id', :action => 'show'
200 project_views.connect 'projects/:id', :action => 'show'
201 project_views.connect 'projects/:id.:format', :action => 'show'
201 project_views.connect 'projects/:id.:format', :action => 'show'
202 project_views.connect 'projects/:id/:action', :action => /destroy|settings/
202 project_views.connect 'projects/:id/:action', :action => /destroy|settings/
203 project_views.connect 'projects/:id/files', :controller => 'files', :action => 'index'
203 project_views.connect 'projects/:id/files', :controller => 'files', :action => 'index'
204 project_views.connect 'projects/:id/files/new', :action => 'add_file'
204 project_views.connect 'projects/:id/files/new', :controller => 'files', :action => 'new'
205 project_views.connect 'projects/:id/settings/:tab', :action => 'settings'
205 project_views.connect 'projects/:id/settings/:tab', :action => 'settings'
206 end
206 end
207
207
208 projects.with_options :controller => 'activities', :action => 'index', :conditions => {:method => :get} do |activity|
208 projects.with_options :controller => 'activities', :action => 'index', :conditions => {:method => :get} do |activity|
209 activity.connect 'projects/:id/activity'
209 activity.connect 'projects/:id/activity'
210 activity.connect 'projects/:id/activity.:format'
210 activity.connect 'projects/:id/activity.:format'
211 activity.connect 'activity', :id => nil
211 activity.connect 'activity', :id => nil
212 activity.connect 'activity.:format', :id => nil
212 activity.connect 'activity.:format', :id => nil
213 end
213 end
214
214
215 projects.with_options :conditions => {:method => :post} do |project_actions|
215 projects.with_options :conditions => {:method => :post} do |project_actions|
216 project_actions.connect 'projects/new', :action => 'add'
216 project_actions.connect 'projects/new', :action => 'add'
217 project_actions.connect 'projects', :action => 'add'
217 project_actions.connect 'projects', :action => 'add'
218 project_actions.connect 'projects.:format', :action => 'add', :format => /xml/
218 project_actions.connect 'projects.:format', :action => 'add', :format => /xml/
219 project_actions.connect 'projects/:id/:action', :action => /edit|destroy|archive|unarchive/
219 project_actions.connect 'projects/:id/:action', :action => /edit|destroy|archive|unarchive/
220 project_actions.connect 'projects/:id/files/new', :action => 'add_file'
220 project_actions.connect 'projects/:id/files/new', :controller => 'files', :action => 'new'
221 project_actions.connect 'projects/:id/activities/save', :action => 'save_activities'
221 project_actions.connect 'projects/:id/activities/save', :action => 'save_activities'
222 end
222 end
223
223
224 projects.with_options :conditions => {:method => :put} do |project_actions|
224 projects.with_options :conditions => {:method => :put} do |project_actions|
225 project_actions.conditions 'projects/:id.:format', :action => 'edit', :format => /xml/
225 project_actions.conditions 'projects/:id.:format', :action => 'edit', :format => /xml/
226 end
226 end
227
227
228 projects.with_options :conditions => {:method => :delete} do |project_actions|
228 projects.with_options :conditions => {:method => :delete} do |project_actions|
229 project_actions.conditions 'projects/:id.:format', :action => 'destroy', :format => /xml/
229 project_actions.conditions 'projects/:id.:format', :action => 'destroy', :format => /xml/
230 project_actions.conditions 'projects/:id/reset_activities', :action => 'reset_activities'
230 project_actions.conditions 'projects/:id/reset_activities', :action => 'reset_activities'
231 end
231 end
232 end
232 end
233
233
234 map.with_options :controller => 'versions' do |versions|
234 map.with_options :controller => 'versions' do |versions|
235 versions.connect 'projects/:project_id/versions/new', :action => 'new'
235 versions.connect 'projects/:project_id/versions/new', :action => 'new'
236 versions.connect 'projects/:project_id/roadmap', :action => 'index'
236 versions.connect 'projects/:project_id/roadmap', :action => 'index'
237 versions.with_options :conditions => {:method => :post} do |version_actions|
237 versions.with_options :conditions => {:method => :post} do |version_actions|
238 version_actions.connect 'projects/:project_id/versions/close_completed', :action => 'close_completed'
238 version_actions.connect 'projects/:project_id/versions/close_completed', :action => 'close_completed'
239 end
239 end
240 end
240 end
241
241
242 map.with_options :controller => 'issue_categories' do |categories|
242 map.with_options :controller => 'issue_categories' do |categories|
243 categories.connect 'projects/:project_id/issue_categories/new', :action => 'new'
243 categories.connect 'projects/:project_id/issue_categories/new', :action => 'new'
244 end
244 end
245
245
246 map.with_options :controller => 'repositories' do |repositories|
246 map.with_options :controller => 'repositories' do |repositories|
247 repositories.with_options :conditions => {:method => :get} do |repository_views|
247 repositories.with_options :conditions => {:method => :get} do |repository_views|
248 repository_views.connect 'projects/:id/repository', :action => 'show'
248 repository_views.connect 'projects/:id/repository', :action => 'show'
249 repository_views.connect 'projects/:id/repository/edit', :action => 'edit'
249 repository_views.connect 'projects/:id/repository/edit', :action => 'edit'
250 repository_views.connect 'projects/:id/repository/statistics', :action => 'stats'
250 repository_views.connect 'projects/:id/repository/statistics', :action => 'stats'
251 repository_views.connect 'projects/:id/repository/revisions', :action => 'revisions'
251 repository_views.connect 'projects/:id/repository/revisions', :action => 'revisions'
252 repository_views.connect 'projects/:id/repository/revisions.:format', :action => 'revisions'
252 repository_views.connect 'projects/:id/repository/revisions.:format', :action => 'revisions'
253 repository_views.connect 'projects/:id/repository/revisions/:rev', :action => 'revision'
253 repository_views.connect 'projects/:id/repository/revisions/:rev', :action => 'revision'
254 repository_views.connect 'projects/:id/repository/revisions/:rev/diff', :action => 'diff'
254 repository_views.connect 'projects/:id/repository/revisions/:rev/diff', :action => 'diff'
255 repository_views.connect 'projects/:id/repository/revisions/:rev/diff.:format', :action => 'diff'
255 repository_views.connect 'projects/:id/repository/revisions/:rev/diff.:format', :action => 'diff'
256 repository_views.connect 'projects/:id/repository/revisions/:rev/raw/*path', :action => 'entry', :format => 'raw', :requirements => { :rev => /[a-z0-9\.\-_]+/ }
256 repository_views.connect 'projects/:id/repository/revisions/:rev/raw/*path', :action => 'entry', :format => 'raw', :requirements => { :rev => /[a-z0-9\.\-_]+/ }
257 repository_views.connect 'projects/:id/repository/revisions/:rev/:action/*path', :requirements => { :rev => /[a-z0-9\.\-_]+/ }
257 repository_views.connect 'projects/:id/repository/revisions/:rev/:action/*path', :requirements => { :rev => /[a-z0-9\.\-_]+/ }
258 repository_views.connect 'projects/:id/repository/raw/*path', :action => 'entry', :format => 'raw'
258 repository_views.connect 'projects/:id/repository/raw/*path', :action => 'entry', :format => 'raw'
259 # TODO: why the following route is required?
259 # TODO: why the following route is required?
260 repository_views.connect 'projects/:id/repository/entry/*path', :action => 'entry'
260 repository_views.connect 'projects/:id/repository/entry/*path', :action => 'entry'
261 repository_views.connect 'projects/:id/repository/:action/*path'
261 repository_views.connect 'projects/:id/repository/:action/*path'
262 end
262 end
263
263
264 repositories.connect 'projects/:id/repository/:action', :conditions => {:method => :post}
264 repositories.connect 'projects/:id/repository/:action', :conditions => {:method => :post}
265 end
265 end
266
266
267 map.connect 'attachments/:id', :controller => 'attachments', :action => 'show', :id => /\d+/
267 map.connect 'attachments/:id', :controller => 'attachments', :action => 'show', :id => /\d+/
268 map.connect 'attachments/:id/:filename', :controller => 'attachments', :action => 'show', :id => /\d+/, :filename => /.*/
268 map.connect 'attachments/:id/:filename', :controller => 'attachments', :action => 'show', :id => /\d+/, :filename => /.*/
269 map.connect 'attachments/download/:id/:filename', :controller => 'attachments', :action => 'download', :id => /\d+/, :filename => /.*/
269 map.connect 'attachments/download/:id/:filename', :controller => 'attachments', :action => 'download', :id => /\d+/, :filename => /.*/
270
270
271 map.resources :groups
271 map.resources :groups
272
272
273 #left old routes at the bottom for backwards compat
273 #left old routes at the bottom for backwards compat
274 map.connect 'projects/:project_id/issues/:action', :controller => 'issues'
274 map.connect 'projects/:project_id/issues/:action', :controller => 'issues'
275 map.connect 'projects/:project_id/documents/:action', :controller => 'documents'
275 map.connect 'projects/:project_id/documents/:action', :controller => 'documents'
276 map.connect 'projects/:project_id/boards/:action/:id', :controller => 'boards'
276 map.connect 'projects/:project_id/boards/:action/:id', :controller => 'boards'
277 map.connect 'boards/:board_id/topics/:action/:id', :controller => 'messages'
277 map.connect 'boards/:board_id/topics/:action/:id', :controller => 'messages'
278 map.connect 'wiki/:id/:page/:action', :page => nil, :controller => 'wiki'
278 map.connect 'wiki/:id/:page/:action', :page => nil, :controller => 'wiki'
279 map.connect 'issues/:issue_id/relations/:action/:id', :controller => 'issue_relations'
279 map.connect 'issues/:issue_id/relations/:action/:id', :controller => 'issue_relations'
280 map.connect 'projects/:project_id/news/:action', :controller => 'news'
280 map.connect 'projects/:project_id/news/:action', :controller => 'news'
281 map.connect 'projects/:project_id/timelog/:action/:id', :controller => 'timelog', :project_id => /.+/
281 map.connect 'projects/:project_id/timelog/:action/:id', :controller => 'timelog', :project_id => /.+/
282 map.with_options :controller => 'repositories' do |omap|
282 map.with_options :controller => 'repositories' do |omap|
283 omap.repositories_show 'repositories/browse/:id/*path', :action => 'browse'
283 omap.repositories_show 'repositories/browse/:id/*path', :action => 'browse'
284 omap.repositories_changes 'repositories/changes/:id/*path', :action => 'changes'
284 omap.repositories_changes 'repositories/changes/:id/*path', :action => 'changes'
285 omap.repositories_diff 'repositories/diff/:id/*path', :action => 'diff'
285 omap.repositories_diff 'repositories/diff/:id/*path', :action => 'diff'
286 omap.repositories_entry 'repositories/entry/:id/*path', :action => 'entry'
286 omap.repositories_entry 'repositories/entry/:id/*path', :action => 'entry'
287 omap.repositories_entry 'repositories/annotate/:id/*path', :action => 'annotate'
287 omap.repositories_entry 'repositories/annotate/:id/*path', :action => 'annotate'
288 omap.connect 'repositories/revision/:id/:rev', :action => 'revision'
288 omap.connect 'repositories/revision/:id/:rev', :action => 'revision'
289 end
289 end
290
290
291 map.with_options :controller => 'sys' do |sys|
291 map.with_options :controller => 'sys' do |sys|
292 sys.connect 'sys/projects.:format', :action => 'projects', :conditions => {:method => :get}
292 sys.connect 'sys/projects.:format', :action => 'projects', :conditions => {:method => :get}
293 sys.connect 'sys/projects/:id/repository.:format', :action => 'create_project_repository', :conditions => {:method => :post}
293 sys.connect 'sys/projects/:id/repository.:format', :action => 'create_project_repository', :conditions => {:method => :post}
294 end
294 end
295
295
296 # Install the default route as the lowest priority.
296 # Install the default route as the lowest priority.
297 map.connect ':controller/:action/:id'
297 map.connect ':controller/:action/:id'
298 map.connect 'robots.txt', :controller => 'welcome', :action => 'robots'
298 map.connect 'robots.txt', :controller => 'welcome', :action => 'robots'
299 # Used for OpenID
299 # Used for OpenID
300 map.root :controller => 'account', :action => 'login'
300 map.root :controller => 'account', :action => 'login'
301 end
301 end
@@ -1,230 +1,230
1 require 'redmine/access_control'
1 require 'redmine/access_control'
2 require 'redmine/menu_manager'
2 require 'redmine/menu_manager'
3 require 'redmine/activity'
3 require 'redmine/activity'
4 require 'redmine/search'
4 require 'redmine/search'
5 require 'redmine/custom_field_format'
5 require 'redmine/custom_field_format'
6 require 'redmine/mime_type'
6 require 'redmine/mime_type'
7 require 'redmine/core_ext'
7 require 'redmine/core_ext'
8 require 'redmine/themes'
8 require 'redmine/themes'
9 require 'redmine/hook'
9 require 'redmine/hook'
10 require 'redmine/plugin'
10 require 'redmine/plugin'
11 require 'redmine/wiki_formatting'
11 require 'redmine/wiki_formatting'
12 require 'redmine/scm/base'
12 require 'redmine/scm/base'
13
13
14 begin
14 begin
15 require_library_or_gem 'RMagick' unless Object.const_defined?(:Magick)
15 require_library_or_gem 'RMagick' unless Object.const_defined?(:Magick)
16 rescue LoadError
16 rescue LoadError
17 # RMagick is not available
17 # RMagick is not available
18 end
18 end
19
19
20 if RUBY_VERSION < '1.9'
20 if RUBY_VERSION < '1.9'
21 require 'faster_csv'
21 require 'faster_csv'
22 else
22 else
23 require 'csv'
23 require 'csv'
24 FCSV = CSV
24 FCSV = CSV
25 end
25 end
26
26
27 Redmine::Scm::Base.add "Subversion"
27 Redmine::Scm::Base.add "Subversion"
28 Redmine::Scm::Base.add "Darcs"
28 Redmine::Scm::Base.add "Darcs"
29 Redmine::Scm::Base.add "Mercurial"
29 Redmine::Scm::Base.add "Mercurial"
30 Redmine::Scm::Base.add "Cvs"
30 Redmine::Scm::Base.add "Cvs"
31 Redmine::Scm::Base.add "Bazaar"
31 Redmine::Scm::Base.add "Bazaar"
32 Redmine::Scm::Base.add "Git"
32 Redmine::Scm::Base.add "Git"
33 Redmine::Scm::Base.add "Filesystem"
33 Redmine::Scm::Base.add "Filesystem"
34
34
35 Redmine::CustomFieldFormat.map do |fields|
35 Redmine::CustomFieldFormat.map do |fields|
36 fields.register Redmine::CustomFieldFormat.new('string', :label => :label_string, :order => 1)
36 fields.register Redmine::CustomFieldFormat.new('string', :label => :label_string, :order => 1)
37 fields.register Redmine::CustomFieldFormat.new('text', :label => :label_text, :order => 2)
37 fields.register Redmine::CustomFieldFormat.new('text', :label => :label_text, :order => 2)
38 fields.register Redmine::CustomFieldFormat.new('int', :label => :label_integer, :order => 3)
38 fields.register Redmine::CustomFieldFormat.new('int', :label => :label_integer, :order => 3)
39 fields.register Redmine::CustomFieldFormat.new('float', :label => :label_float, :order => 4)
39 fields.register Redmine::CustomFieldFormat.new('float', :label => :label_float, :order => 4)
40 fields.register Redmine::CustomFieldFormat.new('list', :label => :label_list, :order => 5)
40 fields.register Redmine::CustomFieldFormat.new('list', :label => :label_list, :order => 5)
41 fields.register Redmine::CustomFieldFormat.new('date', :label => :label_date, :order => 6)
41 fields.register Redmine::CustomFieldFormat.new('date', :label => :label_date, :order => 6)
42 fields.register Redmine::CustomFieldFormat.new('bool', :label => :label_boolean, :order => 7)
42 fields.register Redmine::CustomFieldFormat.new('bool', :label => :label_boolean, :order => 7)
43 end
43 end
44
44
45 # Permissions
45 # Permissions
46 Redmine::AccessControl.map do |map|
46 Redmine::AccessControl.map do |map|
47 map.permission :view_project, {:projects => [:show], :activities => [:index]}, :public => true
47 map.permission :view_project, {:projects => [:show], :activities => [:index]}, :public => true
48 map.permission :search_project, {:search => :index}, :public => true
48 map.permission :search_project, {:search => :index}, :public => true
49 map.permission :add_project, {:projects => :add}, :require => :loggedin
49 map.permission :add_project, {:projects => :add}, :require => :loggedin
50 map.permission :edit_project, {:projects => [:settings, :edit]}, :require => :member
50 map.permission :edit_project, {:projects => [:settings, :edit]}, :require => :member
51 map.permission :select_project_modules, {:projects => :modules}, :require => :member
51 map.permission :select_project_modules, {:projects => :modules}, :require => :member
52 map.permission :manage_members, {:projects => :settings, :members => [:new, :edit, :destroy, :autocomplete_for_member]}, :require => :member
52 map.permission :manage_members, {:projects => :settings, :members => [:new, :edit, :destroy, :autocomplete_for_member]}, :require => :member
53 map.permission :manage_versions, {:projects => :settings, :versions => [:new, :edit, :close_completed, :destroy]}, :require => :member
53 map.permission :manage_versions, {:projects => :settings, :versions => [:new, :edit, :close_completed, :destroy]}, :require => :member
54 map.permission :add_subprojects, {:projects => :add}, :require => :member
54 map.permission :add_subprojects, {:projects => :add}, :require => :member
55
55
56 map.project_module :issue_tracking do |map|
56 map.project_module :issue_tracking do |map|
57 # Issue categories
57 # Issue categories
58 map.permission :manage_categories, {:projects => :settings, :issue_categories => [:new, :edit, :destroy]}, :require => :member
58 map.permission :manage_categories, {:projects => :settings, :issue_categories => [:new, :edit, :destroy]}, :require => :member
59 # Issues
59 # Issues
60 map.permission :view_issues, {:issues => [:index, :show],
60 map.permission :view_issues, {:issues => [:index, :show],
61 :auto_complete => [:issues],
61 :auto_complete => [:issues],
62 :context_menus => [:issues],
62 :context_menus => [:issues],
63 :versions => [:index, :show, :status_by],
63 :versions => [:index, :show, :status_by],
64 :journals => :index,
64 :journals => :index,
65 :queries => :index,
65 :queries => :index,
66 :reports => [:issue_report, :issue_report_details]}
66 :reports => [:issue_report, :issue_report_details]}
67 map.permission :add_issues, {:issues => [:new, :create, :update_form]}
67 map.permission :add_issues, {:issues => [:new, :create, :update_form]}
68 map.permission :edit_issues, {:issues => [:edit, :update, :bulk_edit, :bulk_update, :update_form], :journals => [:new]}
68 map.permission :edit_issues, {:issues => [:edit, :update, :bulk_edit, :bulk_update, :update_form], :journals => [:new]}
69 map.permission :manage_issue_relations, {:issue_relations => [:new, :destroy]}
69 map.permission :manage_issue_relations, {:issue_relations => [:new, :destroy]}
70 map.permission :manage_subtasks, {}
70 map.permission :manage_subtasks, {}
71 map.permission :add_issue_notes, {:issues => [:edit, :update], :journals => [:new]}
71 map.permission :add_issue_notes, {:issues => [:edit, :update], :journals => [:new]}
72 map.permission :edit_issue_notes, {:journals => :edit}, :require => :loggedin
72 map.permission :edit_issue_notes, {:journals => :edit}, :require => :loggedin
73 map.permission :edit_own_issue_notes, {:journals => :edit}, :require => :loggedin
73 map.permission :edit_own_issue_notes, {:journals => :edit}, :require => :loggedin
74 map.permission :move_issues, {:issue_moves => [:new, :create]}, :require => :loggedin
74 map.permission :move_issues, {:issue_moves => [:new, :create]}, :require => :loggedin
75 map.permission :delete_issues, {:issues => :destroy}, :require => :member
75 map.permission :delete_issues, {:issues => :destroy}, :require => :member
76 # Queries
76 # Queries
77 map.permission :manage_public_queries, {:queries => [:new, :edit, :destroy]}, :require => :member
77 map.permission :manage_public_queries, {:queries => [:new, :edit, :destroy]}, :require => :member
78 map.permission :save_queries, {:queries => [:new, :edit, :destroy]}, :require => :loggedin
78 map.permission :save_queries, {:queries => [:new, :edit, :destroy]}, :require => :loggedin
79 # Watchers
79 # Watchers
80 map.permission :view_issue_watchers, {}
80 map.permission :view_issue_watchers, {}
81 map.permission :add_issue_watchers, {:watchers => :new}
81 map.permission :add_issue_watchers, {:watchers => :new}
82 map.permission :delete_issue_watchers, {:watchers => :destroy}
82 map.permission :delete_issue_watchers, {:watchers => :destroy}
83 end
83 end
84
84
85 map.project_module :time_tracking do |map|
85 map.project_module :time_tracking do |map|
86 map.permission :log_time, {:timelog => :edit}, :require => :loggedin
86 map.permission :log_time, {:timelog => :edit}, :require => :loggedin
87 map.permission :view_time_entries, :timelog => [:details, :report]
87 map.permission :view_time_entries, :timelog => [:details, :report]
88 map.permission :edit_time_entries, {:timelog => [:edit, :destroy]}, :require => :member
88 map.permission :edit_time_entries, {:timelog => [:edit, :destroy]}, :require => :member
89 map.permission :edit_own_time_entries, {:timelog => [:edit, :destroy]}, :require => :loggedin
89 map.permission :edit_own_time_entries, {:timelog => [:edit, :destroy]}, :require => :loggedin
90 map.permission :manage_project_activities, {:projects => [:save_activities, :reset_activities]}, :require => :member
90 map.permission :manage_project_activities, {:projects => [:save_activities, :reset_activities]}, :require => :member
91 end
91 end
92
92
93 map.project_module :news do |map|
93 map.project_module :news do |map|
94 map.permission :manage_news, {:news => [:new, :edit, :destroy, :destroy_comment]}, :require => :member
94 map.permission :manage_news, {:news => [:new, :edit, :destroy, :destroy_comment]}, :require => :member
95 map.permission :view_news, {:news => [:index, :show]}, :public => true
95 map.permission :view_news, {:news => [:index, :show]}, :public => true
96 map.permission :comment_news, {:news => :add_comment}
96 map.permission :comment_news, {:news => :add_comment}
97 end
97 end
98
98
99 map.project_module :documents do |map|
99 map.project_module :documents do |map|
100 map.permission :manage_documents, {:documents => [:new, :edit, :destroy, :add_attachment]}, :require => :loggedin
100 map.permission :manage_documents, {:documents => [:new, :edit, :destroy, :add_attachment]}, :require => :loggedin
101 map.permission :view_documents, :documents => [:index, :show, :download]
101 map.permission :view_documents, :documents => [:index, :show, :download]
102 end
102 end
103
103
104 map.project_module :files do |map|
104 map.project_module :files do |map|
105 map.permission :manage_files, {:projects => :add_file}, :require => :loggedin
105 map.permission :manage_files, {:files => :new}, :require => :loggedin
106 map.permission :view_files, :files => :index, :versions => :download
106 map.permission :view_files, :files => :index, :versions => :download
107 end
107 end
108
108
109 map.project_module :wiki do |map|
109 map.project_module :wiki do |map|
110 map.permission :manage_wiki, {:wikis => [:edit, :destroy]}, :require => :member
110 map.permission :manage_wiki, {:wikis => [:edit, :destroy]}, :require => :member
111 map.permission :rename_wiki_pages, {:wiki => :rename}, :require => :member
111 map.permission :rename_wiki_pages, {:wiki => :rename}, :require => :member
112 map.permission :delete_wiki_pages, {:wiki => :destroy}, :require => :member
112 map.permission :delete_wiki_pages, {:wiki => :destroy}, :require => :member
113 map.permission :view_wiki_pages, :wiki => [:index, :special]
113 map.permission :view_wiki_pages, :wiki => [:index, :special]
114 map.permission :export_wiki_pages, {}
114 map.permission :export_wiki_pages, {}
115 map.permission :view_wiki_edits, :wiki => [:history, :diff, :annotate]
115 map.permission :view_wiki_edits, :wiki => [:history, :diff, :annotate]
116 map.permission :edit_wiki_pages, :wiki => [:edit, :preview, :add_attachment]
116 map.permission :edit_wiki_pages, :wiki => [:edit, :preview, :add_attachment]
117 map.permission :delete_wiki_pages_attachments, {}
117 map.permission :delete_wiki_pages_attachments, {}
118 map.permission :protect_wiki_pages, {:wiki => :protect}, :require => :member
118 map.permission :protect_wiki_pages, {:wiki => :protect}, :require => :member
119 end
119 end
120
120
121 map.project_module :repository do |map|
121 map.project_module :repository do |map|
122 map.permission :manage_repository, {:repositories => [:edit, :committers, :destroy]}, :require => :member
122 map.permission :manage_repository, {:repositories => [:edit, :committers, :destroy]}, :require => :member
123 map.permission :browse_repository, :repositories => [:show, :browse, :entry, :annotate, :changes, :diff, :stats, :graph]
123 map.permission :browse_repository, :repositories => [:show, :browse, :entry, :annotate, :changes, :diff, :stats, :graph]
124 map.permission :view_changesets, :repositories => [:show, :revisions, :revision]
124 map.permission :view_changesets, :repositories => [:show, :revisions, :revision]
125 map.permission :commit_access, {}
125 map.permission :commit_access, {}
126 end
126 end
127
127
128 map.project_module :boards do |map|
128 map.project_module :boards do |map|
129 map.permission :manage_boards, {:boards => [:new, :edit, :destroy]}, :require => :member
129 map.permission :manage_boards, {:boards => [:new, :edit, :destroy]}, :require => :member
130 map.permission :view_messages, {:boards => [:index, :show], :messages => [:show]}, :public => true
130 map.permission :view_messages, {:boards => [:index, :show], :messages => [:show]}, :public => true
131 map.permission :add_messages, {:messages => [:new, :reply, :quote]}
131 map.permission :add_messages, {:messages => [:new, :reply, :quote]}
132 map.permission :edit_messages, {:messages => :edit}, :require => :member
132 map.permission :edit_messages, {:messages => :edit}, :require => :member
133 map.permission :edit_own_messages, {:messages => :edit}, :require => :loggedin
133 map.permission :edit_own_messages, {:messages => :edit}, :require => :loggedin
134 map.permission :delete_messages, {:messages => :destroy}, :require => :member
134 map.permission :delete_messages, {:messages => :destroy}, :require => :member
135 map.permission :delete_own_messages, {:messages => :destroy}, :require => :loggedin
135 map.permission :delete_own_messages, {:messages => :destroy}, :require => :loggedin
136 end
136 end
137
137
138 map.project_module :calendar do |map|
138 map.project_module :calendar do |map|
139 map.permission :view_calendar, :calendars => :show
139 map.permission :view_calendar, :calendars => :show
140 end
140 end
141
141
142 map.project_module :gantt do |map|
142 map.project_module :gantt do |map|
143 map.permission :view_gantt, :gantts => :show
143 map.permission :view_gantt, :gantts => :show
144 end
144 end
145 end
145 end
146
146
147 Redmine::MenuManager.map :top_menu do |menu|
147 Redmine::MenuManager.map :top_menu do |menu|
148 menu.push :home, :home_path
148 menu.push :home, :home_path
149 menu.push :my_page, { :controller => 'my', :action => 'page' }, :if => Proc.new { User.current.logged? }
149 menu.push :my_page, { :controller => 'my', :action => 'page' }, :if => Proc.new { User.current.logged? }
150 menu.push :projects, { :controller => 'projects', :action => 'index' }, :caption => :label_project_plural
150 menu.push :projects, { :controller => 'projects', :action => 'index' }, :caption => :label_project_plural
151 menu.push :administration, { :controller => 'admin', :action => 'index' }, :if => Proc.new { User.current.admin? }, :last => true
151 menu.push :administration, { :controller => 'admin', :action => 'index' }, :if => Proc.new { User.current.admin? }, :last => true
152 menu.push :help, Redmine::Info.help_url, :last => true
152 menu.push :help, Redmine::Info.help_url, :last => true
153 end
153 end
154
154
155 Redmine::MenuManager.map :account_menu do |menu|
155 Redmine::MenuManager.map :account_menu do |menu|
156 menu.push :login, :signin_path, :if => Proc.new { !User.current.logged? }
156 menu.push :login, :signin_path, :if => Proc.new { !User.current.logged? }
157 menu.push :register, { :controller => 'account', :action => 'register' }, :if => Proc.new { !User.current.logged? && Setting.self_registration? }
157 menu.push :register, { :controller => 'account', :action => 'register' }, :if => Proc.new { !User.current.logged? && Setting.self_registration? }
158 menu.push :my_account, { :controller => 'my', :action => 'account' }, :if => Proc.new { User.current.logged? }
158 menu.push :my_account, { :controller => 'my', :action => 'account' }, :if => Proc.new { User.current.logged? }
159 menu.push :logout, :signout_path, :if => Proc.new { User.current.logged? }
159 menu.push :logout, :signout_path, :if => Proc.new { User.current.logged? }
160 end
160 end
161
161
162 Redmine::MenuManager.map :application_menu do |menu|
162 Redmine::MenuManager.map :application_menu do |menu|
163 # Empty
163 # Empty
164 end
164 end
165
165
166 Redmine::MenuManager.map :admin_menu do |menu|
166 Redmine::MenuManager.map :admin_menu do |menu|
167 menu.push :projects, {:controller => 'admin', :action => 'projects'}, :caption => :label_project_plural
167 menu.push :projects, {:controller => 'admin', :action => 'projects'}, :caption => :label_project_plural
168 menu.push :users, {:controller => 'users'}, :caption => :label_user_plural
168 menu.push :users, {:controller => 'users'}, :caption => :label_user_plural
169 menu.push :groups, {:controller => 'groups'}, :caption => :label_group_plural
169 menu.push :groups, {:controller => 'groups'}, :caption => :label_group_plural
170 menu.push :roles, {:controller => 'roles'}, :caption => :label_role_and_permissions
170 menu.push :roles, {:controller => 'roles'}, :caption => :label_role_and_permissions
171 menu.push :trackers, {:controller => 'trackers'}, :caption => :label_tracker_plural
171 menu.push :trackers, {:controller => 'trackers'}, :caption => :label_tracker_plural
172 menu.push :issue_statuses, {:controller => 'issue_statuses'}, :caption => :label_issue_status_plural,
172 menu.push :issue_statuses, {:controller => 'issue_statuses'}, :caption => :label_issue_status_plural,
173 :html => {:class => 'issue_statuses'}
173 :html => {:class => 'issue_statuses'}
174 menu.push :workflows, {:controller => 'workflows', :action => 'edit'}, :caption => :label_workflow
174 menu.push :workflows, {:controller => 'workflows', :action => 'edit'}, :caption => :label_workflow
175 menu.push :custom_fields, {:controller => 'custom_fields'}, :caption => :label_custom_field_plural,
175 menu.push :custom_fields, {:controller => 'custom_fields'}, :caption => :label_custom_field_plural,
176 :html => {:class => 'custom_fields'}
176 :html => {:class => 'custom_fields'}
177 menu.push :enumerations, {:controller => 'enumerations'}
177 menu.push :enumerations, {:controller => 'enumerations'}
178 menu.push :settings, {:controller => 'settings'}
178 menu.push :settings, {:controller => 'settings'}
179 menu.push :ldap_authentication, {:controller => 'ldap_auth_sources', :action => 'index'},
179 menu.push :ldap_authentication, {:controller => 'ldap_auth_sources', :action => 'index'},
180 :html => {:class => 'server_authentication'}
180 :html => {:class => 'server_authentication'}
181 menu.push :plugins, {:controller => 'admin', :action => 'plugins'}, :last => true
181 menu.push :plugins, {:controller => 'admin', :action => 'plugins'}, :last => true
182 menu.push :info, {:controller => 'admin', :action => 'info'}, :caption => :label_information_plural, :last => true
182 menu.push :info, {:controller => 'admin', :action => 'info'}, :caption => :label_information_plural, :last => true
183 end
183 end
184
184
185 Redmine::MenuManager.map :project_menu do |menu|
185 Redmine::MenuManager.map :project_menu do |menu|
186 menu.push :overview, { :controller => 'projects', :action => 'show' }
186 menu.push :overview, { :controller => 'projects', :action => 'show' }
187 menu.push :activity, { :controller => 'activities', :action => 'index' }
187 menu.push :activity, { :controller => 'activities', :action => 'index' }
188 menu.push :roadmap, { :controller => 'versions', :action => 'index' }, :param => :project_id,
188 menu.push :roadmap, { :controller => 'versions', :action => 'index' }, :param => :project_id,
189 :if => Proc.new { |p| p.shared_versions.any? }
189 :if => Proc.new { |p| p.shared_versions.any? }
190 menu.push :issues, { :controller => 'issues', :action => 'index' }, :param => :project_id, :caption => :label_issue_plural
190 menu.push :issues, { :controller => 'issues', :action => 'index' }, :param => :project_id, :caption => :label_issue_plural
191 menu.push :new_issue, { :controller => 'issues', :action => 'new' }, :param => :project_id, :caption => :label_issue_new,
191 menu.push :new_issue, { :controller => 'issues', :action => 'new' }, :param => :project_id, :caption => :label_issue_new,
192 :html => { :accesskey => Redmine::AccessKeys.key_for(:new_issue) }
192 :html => { :accesskey => Redmine::AccessKeys.key_for(:new_issue) }
193 menu.push :gantt, { :controller => 'gantts', :action => 'show' }, :param => :project_id, :caption => :label_gantt
193 menu.push :gantt, { :controller => 'gantts', :action => 'show' }, :param => :project_id, :caption => :label_gantt
194 menu.push :calendar, { :controller => 'calendars', :action => 'show' }, :param => :project_id, :caption => :label_calendar
194 menu.push :calendar, { :controller => 'calendars', :action => 'show' }, :param => :project_id, :caption => :label_calendar
195 menu.push :news, { :controller => 'news', :action => 'index' }, :param => :project_id, :caption => :label_news_plural
195 menu.push :news, { :controller => 'news', :action => 'index' }, :param => :project_id, :caption => :label_news_plural
196 menu.push :documents, { :controller => 'documents', :action => 'index' }, :param => :project_id, :caption => :label_document_plural
196 menu.push :documents, { :controller => 'documents', :action => 'index' }, :param => :project_id, :caption => :label_document_plural
197 menu.push :wiki, { :controller => 'wiki', :action => 'index', :page => nil },
197 menu.push :wiki, { :controller => 'wiki', :action => 'index', :page => nil },
198 :if => Proc.new { |p| p.wiki && !p.wiki.new_record? }
198 :if => Proc.new { |p| p.wiki && !p.wiki.new_record? }
199 menu.push :boards, { :controller => 'boards', :action => 'index', :id => nil }, :param => :project_id,
199 menu.push :boards, { :controller => 'boards', :action => 'index', :id => nil }, :param => :project_id,
200 :if => Proc.new { |p| p.boards.any? }, :caption => :label_board_plural
200 :if => Proc.new { |p| p.boards.any? }, :caption => :label_board_plural
201 menu.push :files, { :controller => 'files', :action => 'index' }, :caption => :label_file_plural
201 menu.push :files, { :controller => 'files', :action => 'index' }, :caption => :label_file_plural
202 menu.push :repository, { :controller => 'repositories', :action => 'show' },
202 menu.push :repository, { :controller => 'repositories', :action => 'show' },
203 :if => Proc.new { |p| p.repository && !p.repository.new_record? }
203 :if => Proc.new { |p| p.repository && !p.repository.new_record? }
204 menu.push :settings, { :controller => 'projects', :action => 'settings' }, :last => true
204 menu.push :settings, { :controller => 'projects', :action => 'settings' }, :last => true
205 end
205 end
206
206
207 Redmine::Activity.map do |activity|
207 Redmine::Activity.map do |activity|
208 activity.register :issues, :class_name => %w(Issue Journal)
208 activity.register :issues, :class_name => %w(Issue Journal)
209 activity.register :changesets
209 activity.register :changesets
210 activity.register :news
210 activity.register :news
211 activity.register :documents, :class_name => %w(Document Attachment)
211 activity.register :documents, :class_name => %w(Document Attachment)
212 activity.register :files, :class_name => 'Attachment'
212 activity.register :files, :class_name => 'Attachment'
213 activity.register :wiki_edits, :class_name => 'WikiContent::Version', :default => false
213 activity.register :wiki_edits, :class_name => 'WikiContent::Version', :default => false
214 activity.register :messages, :default => false
214 activity.register :messages, :default => false
215 activity.register :time_entries, :default => false
215 activity.register :time_entries, :default => false
216 end
216 end
217
217
218 Redmine::Search.map do |search|
218 Redmine::Search.map do |search|
219 search.register :issues
219 search.register :issues
220 search.register :news
220 search.register :news
221 search.register :documents
221 search.register :documents
222 search.register :changesets
222 search.register :changesets
223 search.register :wiki_pages
223 search.register :wiki_pages
224 search.register :messages
224 search.register :messages
225 search.register :projects
225 search.register :projects
226 end
226 end
227
227
228 Redmine::WikiFormatting.map do |format|
228 Redmine::WikiFormatting.map do |format|
229 format.register :textile, Redmine::WikiFormatting::Textile::Formatter, Redmine::WikiFormatting::Textile::Helper
229 format.register :textile, Redmine::WikiFormatting::Textile::Formatter, Redmine::WikiFormatting::Textile::Helper
230 end
230 end
@@ -1,29 +1,67
1 require File.dirname(__FILE__) + '/../test_helper'
1 require File.dirname(__FILE__) + '/../test_helper'
2
2
3 class FilesControllerTest < ActionController::TestCase
3 class FilesControllerTest < ActionController::TestCase
4 fixtures :all
4 fixtures :all
5
5
6 def setup
6 def setup
7 @controller = FilesController.new
7 @controller = FilesController.new
8 @request = ActionController::TestRequest.new
8 @request = ActionController::TestRequest.new
9 @response = ActionController::TestResponse.new
9 @response = ActionController::TestResponse.new
10 @request.session[:user_id] = nil
10 @request.session[:user_id] = nil
11 Setting.default_language = 'en'
11 Setting.default_language = 'en'
12 end
12 end
13
13
14 def test_index
14 def test_index
15 get :index, :id => 1
15 get :index, :id => 1
16 assert_response :success
16 assert_response :success
17 assert_template 'index'
17 assert_template 'index'
18 assert_not_nil assigns(:containers)
18 assert_not_nil assigns(:containers)
19
19
20 # file attached to the project
20 # file attached to the project
21 assert_tag :a, :content => 'project_file.zip',
21 assert_tag :a, :content => 'project_file.zip',
22 :attributes => { :href => '/attachments/download/8/project_file.zip' }
22 :attributes => { :href => '/attachments/download/8/project_file.zip' }
23
23
24 # file attached to a project's version
24 # file attached to a project's version
25 assert_tag :a, :content => 'version_file.zip',
25 assert_tag :a, :content => 'version_file.zip',
26 :attributes => { :href => '/attachments/download/9/version_file.zip' }
26 :attributes => { :href => '/attachments/download/9/version_file.zip' }
27 end
27 end
28
28
29 def test_add_file
30 set_tmp_attachments_directory
31 @request.session[:user_id] = 2
32 Setting.notified_events = ['file_added']
33 ActionMailer::Base.deliveries.clear
34
35 assert_difference 'Attachment.count' do
36 post :new, :id => 1, :version_id => '',
37 :attachments => {'1' => {'file' => uploaded_test_file('testfile.txt', 'text/plain')}}
38 assert_response :redirect
39 end
40 assert_redirected_to 'projects/ecookbook/files'
41 a = Attachment.find(:first, :order => 'created_on DESC')
42 assert_equal 'testfile.txt', a.filename
43 assert_equal Project.find(1), a.container
44
45 mail = ActionMailer::Base.deliveries.last
46 assert_kind_of TMail::Mail, mail
47 assert_equal "[eCookbook] New file", mail.subject
48 assert mail.body.include?('testfile.txt')
49 end
50
51 def test_add_version_file
52 set_tmp_attachments_directory
53 @request.session[:user_id] = 2
54 Setting.notified_events = ['file_added']
55
56 assert_difference 'Attachment.count' do
57 post :new, :id => 1, :version_id => '2',
58 :attachments => {'1' => {'file' => uploaded_test_file('testfile.txt', 'text/plain')}}
59 assert_response :redirect
60 end
61 assert_redirected_to 'projects/ecookbook/files'
62 a = Attachment.find(:first, :order => 'created_on DESC')
63 assert_equal 'testfile.txt', a.filename
64 assert_equal Version.find(2), a.container
65 end
66
29 end
67 end
@@ -1,616 +1,580
1 # Redmine - project management software
1 # Redmine - project management software
2 # Copyright (C) 2006-2008 Jean-Philippe Lang
2 # Copyright (C) 2006-2008 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18 require File.dirname(__FILE__) + '/../test_helper'
18 require File.dirname(__FILE__) + '/../test_helper'
19 require 'projects_controller'
19 require 'projects_controller'
20
20
21 # Re-raise errors caught by the controller.
21 # Re-raise errors caught by the controller.
22 class ProjectsController; def rescue_action(e) raise e end; end
22 class ProjectsController; def rescue_action(e) raise e end; end
23
23
24 class ProjectsControllerTest < ActionController::TestCase
24 class ProjectsControllerTest < ActionController::TestCase
25 fixtures :projects, :versions, :users, :roles, :members, :member_roles, :issues, :journals, :journal_details,
25 fixtures :projects, :versions, :users, :roles, :members, :member_roles, :issues, :journals, :journal_details,
26 :trackers, :projects_trackers, :issue_statuses, :enabled_modules, :enumerations, :boards, :messages,
26 :trackers, :projects_trackers, :issue_statuses, :enabled_modules, :enumerations, :boards, :messages,
27 :attachments, :custom_fields, :custom_values, :time_entries
27 :attachments, :custom_fields, :custom_values, :time_entries
28
28
29 def setup
29 def setup
30 @controller = ProjectsController.new
30 @controller = ProjectsController.new
31 @request = ActionController::TestRequest.new
31 @request = ActionController::TestRequest.new
32 @response = ActionController::TestResponse.new
32 @response = ActionController::TestResponse.new
33 @request.session[:user_id] = nil
33 @request.session[:user_id] = nil
34 Setting.default_language = 'en'
34 Setting.default_language = 'en'
35 end
35 end
36
36
37 def test_index
37 def test_index
38 get :index
38 get :index
39 assert_response :success
39 assert_response :success
40 assert_template 'index'
40 assert_template 'index'
41 assert_not_nil assigns(:projects)
41 assert_not_nil assigns(:projects)
42
42
43 assert_tag :ul, :child => {:tag => 'li',
43 assert_tag :ul, :child => {:tag => 'li',
44 :descendant => {:tag => 'a', :content => 'eCookbook'},
44 :descendant => {:tag => 'a', :content => 'eCookbook'},
45 :child => { :tag => 'ul',
45 :child => { :tag => 'ul',
46 :descendant => { :tag => 'a',
46 :descendant => { :tag => 'a',
47 :content => 'Child of private child'
47 :content => 'Child of private child'
48 }
48 }
49 }
49 }
50 }
50 }
51
51
52 assert_no_tag :a, :content => /Private child of eCookbook/
52 assert_no_tag :a, :content => /Private child of eCookbook/
53 end
53 end
54
54
55 def test_index_atom
55 def test_index_atom
56 get :index, :format => 'atom'
56 get :index, :format => 'atom'
57 assert_response :success
57 assert_response :success
58 assert_template 'common/feed.atom.rxml'
58 assert_template 'common/feed.atom.rxml'
59 assert_select 'feed>title', :text => 'Redmine: Latest projects'
59 assert_select 'feed>title', :text => 'Redmine: Latest projects'
60 assert_select 'feed>entry', :count => Project.count(:conditions => Project.visible_by(User.current))
60 assert_select 'feed>entry', :count => Project.count(:conditions => Project.visible_by(User.current))
61 end
61 end
62
62
63 context "#index" do
63 context "#index" do
64 context "by non-admin user with view_time_entries permission" do
64 context "by non-admin user with view_time_entries permission" do
65 setup do
65 setup do
66 @request.session[:user_id] = 3
66 @request.session[:user_id] = 3
67 end
67 end
68 should "show overall spent time link" do
68 should "show overall spent time link" do
69 get :index
69 get :index
70 assert_template 'index'
70 assert_template 'index'
71 assert_tag :a, :attributes => {:href => '/time_entries'}
71 assert_tag :a, :attributes => {:href => '/time_entries'}
72 end
72 end
73 end
73 end
74
74
75 context "by non-admin user without view_time_entries permission" do
75 context "by non-admin user without view_time_entries permission" do
76 setup do
76 setup do
77 Role.find(2).remove_permission! :view_time_entries
77 Role.find(2).remove_permission! :view_time_entries
78 Role.non_member.remove_permission! :view_time_entries
78 Role.non_member.remove_permission! :view_time_entries
79 Role.anonymous.remove_permission! :view_time_entries
79 Role.anonymous.remove_permission! :view_time_entries
80 @request.session[:user_id] = 3
80 @request.session[:user_id] = 3
81 end
81 end
82 should "not show overall spent time link" do
82 should "not show overall spent time link" do
83 get :index
83 get :index
84 assert_template 'index'
84 assert_template 'index'
85 assert_no_tag :a, :attributes => {:href => '/time_entries'}
85 assert_no_tag :a, :attributes => {:href => '/time_entries'}
86 end
86 end
87 end
87 end
88 end
88 end
89
89
90 context "#add" do
90 context "#add" do
91 context "by admin user" do
91 context "by admin user" do
92 setup do
92 setup do
93 @request.session[:user_id] = 1
93 @request.session[:user_id] = 1
94 end
94 end
95
95
96 should "accept get" do
96 should "accept get" do
97 get :add
97 get :add
98 assert_response :success
98 assert_response :success
99 assert_template 'add'
99 assert_template 'add'
100 end
100 end
101
101
102 should "accept post" do
102 should "accept post" do
103 post :add, :project => { :name => "blog",
103 post :add, :project => { :name => "blog",
104 :description => "weblog",
104 :description => "weblog",
105 :identifier => "blog",
105 :identifier => "blog",
106 :is_public => 1,
106 :is_public => 1,
107 :custom_field_values => { '3' => 'Beta' }
107 :custom_field_values => { '3' => 'Beta' }
108 }
108 }
109 assert_redirected_to '/projects/blog/settings'
109 assert_redirected_to '/projects/blog/settings'
110
110
111 project = Project.find_by_name('blog')
111 project = Project.find_by_name('blog')
112 assert_kind_of Project, project
112 assert_kind_of Project, project
113 assert_equal 'weblog', project.description
113 assert_equal 'weblog', project.description
114 assert_equal true, project.is_public?
114 assert_equal true, project.is_public?
115 assert_nil project.parent
115 assert_nil project.parent
116 end
116 end
117
117
118 should "accept post with parent" do
118 should "accept post with parent" do
119 post :add, :project => { :name => "blog",
119 post :add, :project => { :name => "blog",
120 :description => "weblog",
120 :description => "weblog",
121 :identifier => "blog",
121 :identifier => "blog",
122 :is_public => 1,
122 :is_public => 1,
123 :custom_field_values => { '3' => 'Beta' },
123 :custom_field_values => { '3' => 'Beta' },
124 :parent_id => 1
124 :parent_id => 1
125 }
125 }
126 assert_redirected_to '/projects/blog/settings'
126 assert_redirected_to '/projects/blog/settings'
127
127
128 project = Project.find_by_name('blog')
128 project = Project.find_by_name('blog')
129 assert_kind_of Project, project
129 assert_kind_of Project, project
130 assert_equal Project.find(1), project.parent
130 assert_equal Project.find(1), project.parent
131 end
131 end
132 end
132 end
133
133
134 context "by non-admin user with add_project permission" do
134 context "by non-admin user with add_project permission" do
135 setup do
135 setup do
136 Role.non_member.add_permission! :add_project
136 Role.non_member.add_permission! :add_project
137 @request.session[:user_id] = 9
137 @request.session[:user_id] = 9
138 end
138 end
139
139
140 should "accept get" do
140 should "accept get" do
141 get :add
141 get :add
142 assert_response :success
142 assert_response :success
143 assert_template 'add'
143 assert_template 'add'
144 assert_no_tag :select, :attributes => {:name => 'project[parent_id]'}
144 assert_no_tag :select, :attributes => {:name => 'project[parent_id]'}
145 end
145 end
146
146
147 should "accept post" do
147 should "accept post" do
148 post :add, :project => { :name => "blog",
148 post :add, :project => { :name => "blog",
149 :description => "weblog",
149 :description => "weblog",
150 :identifier => "blog",
150 :identifier => "blog",
151 :is_public => 1,
151 :is_public => 1,
152 :custom_field_values => { '3' => 'Beta' }
152 :custom_field_values => { '3' => 'Beta' }
153 }
153 }
154
154
155 assert_redirected_to '/projects/blog/settings'
155 assert_redirected_to '/projects/blog/settings'
156
156
157 project = Project.find_by_name('blog')
157 project = Project.find_by_name('blog')
158 assert_kind_of Project, project
158 assert_kind_of Project, project
159 assert_equal 'weblog', project.description
159 assert_equal 'weblog', project.description
160 assert_equal true, project.is_public?
160 assert_equal true, project.is_public?
161
161
162 # User should be added as a project member
162 # User should be added as a project member
163 assert User.find(9).member_of?(project)
163 assert User.find(9).member_of?(project)
164 assert_equal 1, project.members.size
164 assert_equal 1, project.members.size
165 end
165 end
166
166
167 should "fail with parent_id" do
167 should "fail with parent_id" do
168 assert_no_difference 'Project.count' do
168 assert_no_difference 'Project.count' do
169 post :add, :project => { :name => "blog",
169 post :add, :project => { :name => "blog",
170 :description => "weblog",
170 :description => "weblog",
171 :identifier => "blog",
171 :identifier => "blog",
172 :is_public => 1,
172 :is_public => 1,
173 :custom_field_values => { '3' => 'Beta' },
173 :custom_field_values => { '3' => 'Beta' },
174 :parent_id => 1
174 :parent_id => 1
175 }
175 }
176 end
176 end
177 assert_response :success
177 assert_response :success
178 project = assigns(:project)
178 project = assigns(:project)
179 assert_kind_of Project, project
179 assert_kind_of Project, project
180 assert_not_nil project.errors.on(:parent_id)
180 assert_not_nil project.errors.on(:parent_id)
181 end
181 end
182 end
182 end
183
183
184 context "by non-admin user with add_subprojects permission" do
184 context "by non-admin user with add_subprojects permission" do
185 setup do
185 setup do
186 Role.find(1).remove_permission! :add_project
186 Role.find(1).remove_permission! :add_project
187 Role.find(1).add_permission! :add_subprojects
187 Role.find(1).add_permission! :add_subprojects
188 @request.session[:user_id] = 2
188 @request.session[:user_id] = 2
189 end
189 end
190
190
191 should "accept get" do
191 should "accept get" do
192 get :add, :parent_id => 'ecookbook'
192 get :add, :parent_id => 'ecookbook'
193 assert_response :success
193 assert_response :success
194 assert_template 'add'
194 assert_template 'add'
195 # parent project selected
195 # parent project selected
196 assert_tag :select, :attributes => {:name => 'project[parent_id]'},
196 assert_tag :select, :attributes => {:name => 'project[parent_id]'},
197 :child => {:tag => 'option', :attributes => {:value => '1', :selected => 'selected'}}
197 :child => {:tag => 'option', :attributes => {:value => '1', :selected => 'selected'}}
198 # no empty value
198 # no empty value
199 assert_no_tag :select, :attributes => {:name => 'project[parent_id]'},
199 assert_no_tag :select, :attributes => {:name => 'project[parent_id]'},
200 :child => {:tag => 'option', :attributes => {:value => ''}}
200 :child => {:tag => 'option', :attributes => {:value => ''}}
201 end
201 end
202
202
203 should "accept post with parent_id" do
203 should "accept post with parent_id" do
204 post :add, :project => { :name => "blog",
204 post :add, :project => { :name => "blog",
205 :description => "weblog",
205 :description => "weblog",
206 :identifier => "blog",
206 :identifier => "blog",
207 :is_public => 1,
207 :is_public => 1,
208 :custom_field_values => { '3' => 'Beta' },
208 :custom_field_values => { '3' => 'Beta' },
209 :parent_id => 1
209 :parent_id => 1
210 }
210 }
211 assert_redirected_to '/projects/blog/settings'
211 assert_redirected_to '/projects/blog/settings'
212 project = Project.find_by_name('blog')
212 project = Project.find_by_name('blog')
213 end
213 end
214
214
215 should "fail without parent_id" do
215 should "fail without parent_id" do
216 assert_no_difference 'Project.count' do
216 assert_no_difference 'Project.count' do
217 post :add, :project => { :name => "blog",
217 post :add, :project => { :name => "blog",
218 :description => "weblog",
218 :description => "weblog",
219 :identifier => "blog",
219 :identifier => "blog",
220 :is_public => 1,
220 :is_public => 1,
221 :custom_field_values => { '3' => 'Beta' }
221 :custom_field_values => { '3' => 'Beta' }
222 }
222 }
223 end
223 end
224 assert_response :success
224 assert_response :success
225 project = assigns(:project)
225 project = assigns(:project)
226 assert_kind_of Project, project
226 assert_kind_of Project, project
227 assert_not_nil project.errors.on(:parent_id)
227 assert_not_nil project.errors.on(:parent_id)
228 end
228 end
229
229
230 should "fail with unauthorized parent_id" do
230 should "fail with unauthorized parent_id" do
231 assert !User.find(2).member_of?(Project.find(6))
231 assert !User.find(2).member_of?(Project.find(6))
232 assert_no_difference 'Project.count' do
232 assert_no_difference 'Project.count' do
233 post :add, :project => { :name => "blog",
233 post :add, :project => { :name => "blog",
234 :description => "weblog",
234 :description => "weblog",
235 :identifier => "blog",
235 :identifier => "blog",
236 :is_public => 1,
236 :is_public => 1,
237 :custom_field_values => { '3' => 'Beta' },
237 :custom_field_values => { '3' => 'Beta' },
238 :parent_id => 6
238 :parent_id => 6
239 }
239 }
240 end
240 end
241 assert_response :success
241 assert_response :success
242 project = assigns(:project)
242 project = assigns(:project)
243 assert_kind_of Project, project
243 assert_kind_of Project, project
244 assert_not_nil project.errors.on(:parent_id)
244 assert_not_nil project.errors.on(:parent_id)
245 end
245 end
246 end
246 end
247 end
247 end
248
248
249 def test_show_by_id
249 def test_show_by_id
250 get :show, :id => 1
250 get :show, :id => 1
251 assert_response :success
251 assert_response :success
252 assert_template 'show'
252 assert_template 'show'
253 assert_not_nil assigns(:project)
253 assert_not_nil assigns(:project)
254 end
254 end
255
255
256 def test_show_by_identifier
256 def test_show_by_identifier
257 get :show, :id => 'ecookbook'
257 get :show, :id => 'ecookbook'
258 assert_response :success
258 assert_response :success
259 assert_template 'show'
259 assert_template 'show'
260 assert_not_nil assigns(:project)
260 assert_not_nil assigns(:project)
261 assert_equal Project.find_by_identifier('ecookbook'), assigns(:project)
261 assert_equal Project.find_by_identifier('ecookbook'), assigns(:project)
262 end
262 end
263
263
264 def test_show_should_not_fail_when_custom_values_are_nil
264 def test_show_should_not_fail_when_custom_values_are_nil
265 project = Project.find_by_identifier('ecookbook')
265 project = Project.find_by_identifier('ecookbook')
266 project.custom_values.first.update_attribute(:value, nil)
266 project.custom_values.first.update_attribute(:value, nil)
267 get :show, :id => 'ecookbook'
267 get :show, :id => 'ecookbook'
268 assert_response :success
268 assert_response :success
269 assert_template 'show'
269 assert_template 'show'
270 assert_not_nil assigns(:project)
270 assert_not_nil assigns(:project)
271 assert_equal Project.find_by_identifier('ecookbook'), assigns(:project)
271 assert_equal Project.find_by_identifier('ecookbook'), assigns(:project)
272 end
272 end
273
273
274 def test_private_subprojects_hidden
274 def test_private_subprojects_hidden
275 get :show, :id => 'ecookbook'
275 get :show, :id => 'ecookbook'
276 assert_response :success
276 assert_response :success
277 assert_template 'show'
277 assert_template 'show'
278 assert_no_tag :tag => 'a', :content => /Private child/
278 assert_no_tag :tag => 'a', :content => /Private child/
279 end
279 end
280
280
281 def test_private_subprojects_visible
281 def test_private_subprojects_visible
282 @request.session[:user_id] = 2 # manager who is a member of the private subproject
282 @request.session[:user_id] = 2 # manager who is a member of the private subproject
283 get :show, :id => 'ecookbook'
283 get :show, :id => 'ecookbook'
284 assert_response :success
284 assert_response :success
285 assert_template 'show'
285 assert_template 'show'
286 assert_tag :tag => 'a', :content => /Private child/
286 assert_tag :tag => 'a', :content => /Private child/
287 end
287 end
288
288
289 def test_settings
289 def test_settings
290 @request.session[:user_id] = 2 # manager
290 @request.session[:user_id] = 2 # manager
291 get :settings, :id => 1
291 get :settings, :id => 1
292 assert_response :success
292 assert_response :success
293 assert_template 'settings'
293 assert_template 'settings'
294 end
294 end
295
295
296 def test_edit
296 def test_edit
297 @request.session[:user_id] = 2 # manager
297 @request.session[:user_id] = 2 # manager
298 post :edit, :id => 1, :project => {:name => 'Test changed name',
298 post :edit, :id => 1, :project => {:name => 'Test changed name',
299 :issue_custom_field_ids => ['']}
299 :issue_custom_field_ids => ['']}
300 assert_redirected_to 'projects/ecookbook/settings'
300 assert_redirected_to 'projects/ecookbook/settings'
301 project = Project.find(1)
301 project = Project.find(1)
302 assert_equal 'Test changed name', project.name
302 assert_equal 'Test changed name', project.name
303 end
303 end
304
304
305 def test_get_destroy
305 def test_get_destroy
306 @request.session[:user_id] = 1 # admin
306 @request.session[:user_id] = 1 # admin
307 get :destroy, :id => 1
307 get :destroy, :id => 1
308 assert_response :success
308 assert_response :success
309 assert_template 'destroy'
309 assert_template 'destroy'
310 assert_not_nil Project.find_by_id(1)
310 assert_not_nil Project.find_by_id(1)
311 end
311 end
312
312
313 def test_post_destroy
313 def test_post_destroy
314 @request.session[:user_id] = 1 # admin
314 @request.session[:user_id] = 1 # admin
315 post :destroy, :id => 1, :confirm => 1
315 post :destroy, :id => 1, :confirm => 1
316 assert_redirected_to 'admin/projects'
316 assert_redirected_to 'admin/projects'
317 assert_nil Project.find_by_id(1)
317 assert_nil Project.find_by_id(1)
318 end
318 end
319
319
320 def test_add_file
321 set_tmp_attachments_directory
322 @request.session[:user_id] = 2
323 Setting.notified_events = ['file_added']
324 ActionMailer::Base.deliveries.clear
325
326 assert_difference 'Attachment.count' do
327 post :add_file, :id => 1, :version_id => '',
328 :attachments => {'1' => {'file' => uploaded_test_file('testfile.txt', 'text/plain')}}
329 end
330 assert_redirected_to 'projects/ecookbook/files'
331 a = Attachment.find(:first, :order => 'created_on DESC')
332 assert_equal 'testfile.txt', a.filename
333 assert_equal Project.find(1), a.container
334
335 mail = ActionMailer::Base.deliveries.last
336 assert_kind_of TMail::Mail, mail
337 assert_equal "[eCookbook] New file", mail.subject
338 assert mail.body.include?('testfile.txt')
339 end
340
341 def test_add_version_file
342 set_tmp_attachments_directory
343 @request.session[:user_id] = 2
344 Setting.notified_events = ['file_added']
345
346 assert_difference 'Attachment.count' do
347 post :add_file, :id => 1, :version_id => '2',
348 :attachments => {'1' => {'file' => uploaded_test_file('testfile.txt', 'text/plain')}}
349 end
350 assert_redirected_to 'projects/ecookbook/files'
351 a = Attachment.find(:first, :order => 'created_on DESC')
352 assert_equal 'testfile.txt', a.filename
353 assert_equal Version.find(2), a.container
354 end
355
356 def test_archive
320 def test_archive
357 @request.session[:user_id] = 1 # admin
321 @request.session[:user_id] = 1 # admin
358 post :archive, :id => 1
322 post :archive, :id => 1
359 assert_redirected_to 'admin/projects'
323 assert_redirected_to 'admin/projects'
360 assert !Project.find(1).active?
324 assert !Project.find(1).active?
361 end
325 end
362
326
363 def test_unarchive
327 def test_unarchive
364 @request.session[:user_id] = 1 # admin
328 @request.session[:user_id] = 1 # admin
365 Project.find(1).archive
329 Project.find(1).archive
366 post :unarchive, :id => 1
330 post :unarchive, :id => 1
367 assert_redirected_to 'admin/projects'
331 assert_redirected_to 'admin/projects'
368 assert Project.find(1).active?
332 assert Project.find(1).active?
369 end
333 end
370
334
371 def test_project_breadcrumbs_should_be_limited_to_3_ancestors
335 def test_project_breadcrumbs_should_be_limited_to_3_ancestors
372 CustomField.delete_all
336 CustomField.delete_all
373 parent = nil
337 parent = nil
374 6.times do |i|
338 6.times do |i|
375 p = Project.create!(:name => "Breadcrumbs #{i}", :identifier => "breadcrumbs-#{i}")
339 p = Project.create!(:name => "Breadcrumbs #{i}", :identifier => "breadcrumbs-#{i}")
376 p.set_parent!(parent)
340 p.set_parent!(parent)
377 get :show, :id => p
341 get :show, :id => p
378 assert_tag :h1, :parent => { :attributes => {:id => 'header'}},
342 assert_tag :h1, :parent => { :attributes => {:id => 'header'}},
379 :children => { :count => [i, 3].min,
343 :children => { :count => [i, 3].min,
380 :only => { :tag => 'a' } }
344 :only => { :tag => 'a' } }
381
345
382 parent = p
346 parent = p
383 end
347 end
384 end
348 end
385
349
386 def test_copy_with_project
350 def test_copy_with_project
387 @request.session[:user_id] = 1 # admin
351 @request.session[:user_id] = 1 # admin
388 get :copy, :id => 1
352 get :copy, :id => 1
389 assert_response :success
353 assert_response :success
390 assert_template 'copy'
354 assert_template 'copy'
391 assert assigns(:project)
355 assert assigns(:project)
392 assert_equal Project.find(1).description, assigns(:project).description
356 assert_equal Project.find(1).description, assigns(:project).description
393 assert_nil assigns(:project).id
357 assert_nil assigns(:project).id
394 end
358 end
395
359
396 def test_copy_without_project
360 def test_copy_without_project
397 @request.session[:user_id] = 1 # admin
361 @request.session[:user_id] = 1 # admin
398 get :copy
362 get :copy
399 assert_response :redirect
363 assert_response :redirect
400 assert_redirected_to :controller => 'admin', :action => 'projects'
364 assert_redirected_to :controller => 'admin', :action => 'projects'
401 end
365 end
402
366
403 def test_jump_should_redirect_to_active_tab
367 def test_jump_should_redirect_to_active_tab
404 get :show, :id => 1, :jump => 'issues'
368 get :show, :id => 1, :jump => 'issues'
405 assert_redirected_to 'projects/ecookbook/issues'
369 assert_redirected_to 'projects/ecookbook/issues'
406 end
370 end
407
371
408 def test_jump_should_not_redirect_to_inactive_tab
372 def test_jump_should_not_redirect_to_inactive_tab
409 get :show, :id => 3, :jump => 'documents'
373 get :show, :id => 3, :jump => 'documents'
410 assert_response :success
374 assert_response :success
411 assert_template 'show'
375 assert_template 'show'
412 end
376 end
413
377
414 def test_jump_should_not_redirect_to_unknown_tab
378 def test_jump_should_not_redirect_to_unknown_tab
415 get :show, :id => 3, :jump => 'foobar'
379 get :show, :id => 3, :jump => 'foobar'
416 assert_response :success
380 assert_response :success
417 assert_template 'show'
381 assert_template 'show'
418 end
382 end
419
383
420 def test_reset_activities
384 def test_reset_activities
421 @request.session[:user_id] = 2 # manager
385 @request.session[:user_id] = 2 # manager
422 project_activity = TimeEntryActivity.new({
386 project_activity = TimeEntryActivity.new({
423 :name => 'Project Specific',
387 :name => 'Project Specific',
424 :parent => TimeEntryActivity.find(:first),
388 :parent => TimeEntryActivity.find(:first),
425 :project => Project.find(1),
389 :project => Project.find(1),
426 :active => true
390 :active => true
427 })
391 })
428 assert project_activity.save
392 assert project_activity.save
429 project_activity_two = TimeEntryActivity.new({
393 project_activity_two = TimeEntryActivity.new({
430 :name => 'Project Specific Two',
394 :name => 'Project Specific Two',
431 :parent => TimeEntryActivity.find(:last),
395 :parent => TimeEntryActivity.find(:last),
432 :project => Project.find(1),
396 :project => Project.find(1),
433 :active => true
397 :active => true
434 })
398 })
435 assert project_activity_two.save
399 assert project_activity_two.save
436
400
437 delete :reset_activities, :id => 1
401 delete :reset_activities, :id => 1
438 assert_response :redirect
402 assert_response :redirect
439 assert_redirected_to 'projects/ecookbook/settings/activities'
403 assert_redirected_to 'projects/ecookbook/settings/activities'
440
404
441 assert_nil TimeEntryActivity.find_by_id(project_activity.id)
405 assert_nil TimeEntryActivity.find_by_id(project_activity.id)
442 assert_nil TimeEntryActivity.find_by_id(project_activity_two.id)
406 assert_nil TimeEntryActivity.find_by_id(project_activity_two.id)
443 end
407 end
444
408
445 def test_reset_activities_should_reassign_time_entries_back_to_the_system_activity
409 def test_reset_activities_should_reassign_time_entries_back_to_the_system_activity
446 @request.session[:user_id] = 2 # manager
410 @request.session[:user_id] = 2 # manager
447 project_activity = TimeEntryActivity.new({
411 project_activity = TimeEntryActivity.new({
448 :name => 'Project Specific Design',
412 :name => 'Project Specific Design',
449 :parent => TimeEntryActivity.find(9),
413 :parent => TimeEntryActivity.find(9),
450 :project => Project.find(1),
414 :project => Project.find(1),
451 :active => true
415 :active => true
452 })
416 })
453 assert project_activity.save
417 assert project_activity.save
454 assert TimeEntry.update_all("activity_id = '#{project_activity.id}'", ["project_id = ? AND activity_id = ?", 1, 9])
418 assert TimeEntry.update_all("activity_id = '#{project_activity.id}'", ["project_id = ? AND activity_id = ?", 1, 9])
455 assert 3, TimeEntry.find_all_by_activity_id_and_project_id(project_activity.id, 1).size
419 assert 3, TimeEntry.find_all_by_activity_id_and_project_id(project_activity.id, 1).size
456
420
457 delete :reset_activities, :id => 1
421 delete :reset_activities, :id => 1
458 assert_response :redirect
422 assert_response :redirect
459 assert_redirected_to 'projects/ecookbook/settings/activities'
423 assert_redirected_to 'projects/ecookbook/settings/activities'
460
424
461 assert_nil TimeEntryActivity.find_by_id(project_activity.id)
425 assert_nil TimeEntryActivity.find_by_id(project_activity.id)
462 assert_equal 0, TimeEntry.find_all_by_activity_id_and_project_id(project_activity.id, 1).size, "TimeEntries still assigned to project specific activity"
426 assert_equal 0, TimeEntry.find_all_by_activity_id_and_project_id(project_activity.id, 1).size, "TimeEntries still assigned to project specific activity"
463 assert_equal 3, TimeEntry.find_all_by_activity_id_and_project_id(9, 1).size, "TimeEntries still assigned to project specific activity"
427 assert_equal 3, TimeEntry.find_all_by_activity_id_and_project_id(9, 1).size, "TimeEntries still assigned to project specific activity"
464 end
428 end
465
429
466 def test_save_activities_to_override_system_activities
430 def test_save_activities_to_override_system_activities
467 @request.session[:user_id] = 2 # manager
431 @request.session[:user_id] = 2 # manager
468 billable_field = TimeEntryActivityCustomField.find_by_name("Billable")
432 billable_field = TimeEntryActivityCustomField.find_by_name("Billable")
469
433
470 post :save_activities, :id => 1, :enumerations => {
434 post :save_activities, :id => 1, :enumerations => {
471 "9"=> {"parent_id"=>"9", "custom_field_values"=>{"7" => "1"}, "active"=>"0"}, # Design, De-activate
435 "9"=> {"parent_id"=>"9", "custom_field_values"=>{"7" => "1"}, "active"=>"0"}, # Design, De-activate
472 "10"=> {"parent_id"=>"10", "custom_field_values"=>{"7"=>"0"}, "active"=>"1"}, # Development, Change custom value
436 "10"=> {"parent_id"=>"10", "custom_field_values"=>{"7"=>"0"}, "active"=>"1"}, # Development, Change custom value
473 "14"=>{"parent_id"=>"14", "custom_field_values"=>{"7"=>"1"}, "active"=>"1"}, # Inactive Activity, Activate with custom value
437 "14"=>{"parent_id"=>"14", "custom_field_values"=>{"7"=>"1"}, "active"=>"1"}, # Inactive Activity, Activate with custom value
474 "11"=>{"parent_id"=>"11", "custom_field_values"=>{"7"=>"1"}, "active"=>"1"} # QA, no changes
438 "11"=>{"parent_id"=>"11", "custom_field_values"=>{"7"=>"1"}, "active"=>"1"} # QA, no changes
475 }
439 }
476
440
477 assert_response :redirect
441 assert_response :redirect
478 assert_redirected_to 'projects/ecookbook/settings/activities'
442 assert_redirected_to 'projects/ecookbook/settings/activities'
479
443
480 # Created project specific activities...
444 # Created project specific activities...
481 project = Project.find('ecookbook')
445 project = Project.find('ecookbook')
482
446
483 # ... Design
447 # ... Design
484 design = project.time_entry_activities.find_by_name("Design")
448 design = project.time_entry_activities.find_by_name("Design")
485 assert design, "Project activity not found"
449 assert design, "Project activity not found"
486
450
487 assert_equal 9, design.parent_id # Relate to the system activity
451 assert_equal 9, design.parent_id # Relate to the system activity
488 assert_not_equal design.parent.id, design.id # Different records
452 assert_not_equal design.parent.id, design.id # Different records
489 assert_equal design.parent.name, design.name # Same name
453 assert_equal design.parent.name, design.name # Same name
490 assert !design.active?
454 assert !design.active?
491
455
492 # ... Development
456 # ... Development
493 development = project.time_entry_activities.find_by_name("Development")
457 development = project.time_entry_activities.find_by_name("Development")
494 assert development, "Project activity not found"
458 assert development, "Project activity not found"
495
459
496 assert_equal 10, development.parent_id # Relate to the system activity
460 assert_equal 10, development.parent_id # Relate to the system activity
497 assert_not_equal development.parent.id, development.id # Different records
461 assert_not_equal development.parent.id, development.id # Different records
498 assert_equal development.parent.name, development.name # Same name
462 assert_equal development.parent.name, development.name # Same name
499 assert development.active?
463 assert development.active?
500 assert_equal "0", development.custom_value_for(billable_field).value
464 assert_equal "0", development.custom_value_for(billable_field).value
501
465
502 # ... Inactive Activity
466 # ... Inactive Activity
503 previously_inactive = project.time_entry_activities.find_by_name("Inactive Activity")
467 previously_inactive = project.time_entry_activities.find_by_name("Inactive Activity")
504 assert previously_inactive, "Project activity not found"
468 assert previously_inactive, "Project activity not found"
505
469
506 assert_equal 14, previously_inactive.parent_id # Relate to the system activity
470 assert_equal 14, previously_inactive.parent_id # Relate to the system activity
507 assert_not_equal previously_inactive.parent.id, previously_inactive.id # Different records
471 assert_not_equal previously_inactive.parent.id, previously_inactive.id # Different records
508 assert_equal previously_inactive.parent.name, previously_inactive.name # Same name
472 assert_equal previously_inactive.parent.name, previously_inactive.name # Same name
509 assert previously_inactive.active?
473 assert previously_inactive.active?
510 assert_equal "1", previously_inactive.custom_value_for(billable_field).value
474 assert_equal "1", previously_inactive.custom_value_for(billable_field).value
511
475
512 # ... QA
476 # ... QA
513 assert_equal nil, project.time_entry_activities.find_by_name("QA"), "Custom QA activity created when it wasn't modified"
477 assert_equal nil, project.time_entry_activities.find_by_name("QA"), "Custom QA activity created when it wasn't modified"
514 end
478 end
515
479
516 def test_save_activities_will_update_project_specific_activities
480 def test_save_activities_will_update_project_specific_activities
517 @request.session[:user_id] = 2 # manager
481 @request.session[:user_id] = 2 # manager
518
482
519 project_activity = TimeEntryActivity.new({
483 project_activity = TimeEntryActivity.new({
520 :name => 'Project Specific',
484 :name => 'Project Specific',
521 :parent => TimeEntryActivity.find(:first),
485 :parent => TimeEntryActivity.find(:first),
522 :project => Project.find(1),
486 :project => Project.find(1),
523 :active => true
487 :active => true
524 })
488 })
525 assert project_activity.save
489 assert project_activity.save
526 project_activity_two = TimeEntryActivity.new({
490 project_activity_two = TimeEntryActivity.new({
527 :name => 'Project Specific Two',
491 :name => 'Project Specific Two',
528 :parent => TimeEntryActivity.find(:last),
492 :parent => TimeEntryActivity.find(:last),
529 :project => Project.find(1),
493 :project => Project.find(1),
530 :active => true
494 :active => true
531 })
495 })
532 assert project_activity_two.save
496 assert project_activity_two.save
533
497
534
498
535 post :save_activities, :id => 1, :enumerations => {
499 post :save_activities, :id => 1, :enumerations => {
536 project_activity.id => {"custom_field_values"=>{"7" => "1"}, "active"=>"0"}, # De-activate
500 project_activity.id => {"custom_field_values"=>{"7" => "1"}, "active"=>"0"}, # De-activate
537 project_activity_two.id => {"custom_field_values"=>{"7" => "1"}, "active"=>"0"} # De-activate
501 project_activity_two.id => {"custom_field_values"=>{"7" => "1"}, "active"=>"0"} # De-activate
538 }
502 }
539
503
540 assert_response :redirect
504 assert_response :redirect
541 assert_redirected_to 'projects/ecookbook/settings/activities'
505 assert_redirected_to 'projects/ecookbook/settings/activities'
542
506
543 # Created project specific activities...
507 # Created project specific activities...
544 project = Project.find('ecookbook')
508 project = Project.find('ecookbook')
545 assert_equal 2, project.time_entry_activities.count
509 assert_equal 2, project.time_entry_activities.count
546
510
547 activity_one = project.time_entry_activities.find_by_name(project_activity.name)
511 activity_one = project.time_entry_activities.find_by_name(project_activity.name)
548 assert activity_one, "Project activity not found"
512 assert activity_one, "Project activity not found"
549 assert_equal project_activity.id, activity_one.id
513 assert_equal project_activity.id, activity_one.id
550 assert !activity_one.active?
514 assert !activity_one.active?
551
515
552 activity_two = project.time_entry_activities.find_by_name(project_activity_two.name)
516 activity_two = project.time_entry_activities.find_by_name(project_activity_two.name)
553 assert activity_two, "Project activity not found"
517 assert activity_two, "Project activity not found"
554 assert_equal project_activity_two.id, activity_two.id
518 assert_equal project_activity_two.id, activity_two.id
555 assert !activity_two.active?
519 assert !activity_two.active?
556 end
520 end
557
521
558 def test_save_activities_when_creating_new_activities_will_convert_existing_data
522 def test_save_activities_when_creating_new_activities_will_convert_existing_data
559 assert_equal 3, TimeEntry.find_all_by_activity_id_and_project_id(9, 1).size
523 assert_equal 3, TimeEntry.find_all_by_activity_id_and_project_id(9, 1).size
560
524
561 @request.session[:user_id] = 2 # manager
525 @request.session[:user_id] = 2 # manager
562 post :save_activities, :id => 1, :enumerations => {
526 post :save_activities, :id => 1, :enumerations => {
563 "9"=> {"parent_id"=>"9", "custom_field_values"=>{"7" => "1"}, "active"=>"0"} # Design, De-activate
527 "9"=> {"parent_id"=>"9", "custom_field_values"=>{"7" => "1"}, "active"=>"0"} # Design, De-activate
564 }
528 }
565 assert_response :redirect
529 assert_response :redirect
566
530
567 # No more TimeEntries using the system activity
531 # No more TimeEntries using the system activity
568 assert_equal 0, TimeEntry.find_all_by_activity_id_and_project_id(9, 1).size, "Time Entries still assigned to system activities"
532 assert_equal 0, TimeEntry.find_all_by_activity_id_and_project_id(9, 1).size, "Time Entries still assigned to system activities"
569 # All TimeEntries using project activity
533 # All TimeEntries using project activity
570 project_specific_activity = TimeEntryActivity.find_by_parent_id_and_project_id(9, 1)
534 project_specific_activity = TimeEntryActivity.find_by_parent_id_and_project_id(9, 1)
571 assert_equal 3, TimeEntry.find_all_by_activity_id_and_project_id(project_specific_activity.id, 1).size, "No Time Entries assigned to the project activity"
535 assert_equal 3, TimeEntry.find_all_by_activity_id_and_project_id(project_specific_activity.id, 1).size, "No Time Entries assigned to the project activity"
572 end
536 end
573
537
574 def test_save_activities_when_creating_new_activities_will_not_convert_existing_data_if_an_exception_is_raised
538 def test_save_activities_when_creating_new_activities_will_not_convert_existing_data_if_an_exception_is_raised
575 # TODO: Need to cause an exception on create but these tests
539 # TODO: Need to cause an exception on create but these tests
576 # aren't setup for mocking. Just create a record now so the
540 # aren't setup for mocking. Just create a record now so the
577 # second one is a dupicate
541 # second one is a dupicate
578 parent = TimeEntryActivity.find(9)
542 parent = TimeEntryActivity.find(9)
579 TimeEntryActivity.create!({:name => parent.name, :project_id => 1, :position => parent.position, :active => true})
543 TimeEntryActivity.create!({:name => parent.name, :project_id => 1, :position => parent.position, :active => true})
580 TimeEntry.create!({:project_id => 1, :hours => 1.0, :user => User.find(1), :issue_id => 3, :activity_id => 10, :spent_on => '2009-01-01'})
544 TimeEntry.create!({:project_id => 1, :hours => 1.0, :user => User.find(1), :issue_id => 3, :activity_id => 10, :spent_on => '2009-01-01'})
581
545
582 assert_equal 3, TimeEntry.find_all_by_activity_id_and_project_id(9, 1).size
546 assert_equal 3, TimeEntry.find_all_by_activity_id_and_project_id(9, 1).size
583 assert_equal 1, TimeEntry.find_all_by_activity_id_and_project_id(10, 1).size
547 assert_equal 1, TimeEntry.find_all_by_activity_id_and_project_id(10, 1).size
584
548
585 @request.session[:user_id] = 2 # manager
549 @request.session[:user_id] = 2 # manager
586 post :save_activities, :id => 1, :enumerations => {
550 post :save_activities, :id => 1, :enumerations => {
587 "9"=> {"parent_id"=>"9", "custom_field_values"=>{"7" => "1"}, "active"=>"0"}, # Design
551 "9"=> {"parent_id"=>"9", "custom_field_values"=>{"7" => "1"}, "active"=>"0"}, # Design
588 "10"=> {"parent_id"=>"10", "custom_field_values"=>{"7"=>"0"}, "active"=>"1"} # Development, Change custom value
552 "10"=> {"parent_id"=>"10", "custom_field_values"=>{"7"=>"0"}, "active"=>"1"} # Development, Change custom value
589 }
553 }
590 assert_response :redirect
554 assert_response :redirect
591
555
592 # TimeEntries shouldn't have been reassigned on the failed record
556 # TimeEntries shouldn't have been reassigned on the failed record
593 assert_equal 3, TimeEntry.find_all_by_activity_id_and_project_id(9, 1).size, "Time Entries are not assigned to system activities"
557 assert_equal 3, TimeEntry.find_all_by_activity_id_and_project_id(9, 1).size, "Time Entries are not assigned to system activities"
594 # TimeEntries shouldn't have been reassigned on the saved record either
558 # TimeEntries shouldn't have been reassigned on the saved record either
595 assert_equal 1, TimeEntry.find_all_by_activity_id_and_project_id(10, 1).size, "Time Entries are not assigned to system activities"
559 assert_equal 1, TimeEntry.find_all_by_activity_id_and_project_id(10, 1).size, "Time Entries are not assigned to system activities"
596 end
560 end
597
561
598 # A hook that is manually registered later
562 # A hook that is manually registered later
599 class ProjectBasedTemplate < Redmine::Hook::ViewListener
563 class ProjectBasedTemplate < Redmine::Hook::ViewListener
600 def view_layouts_base_html_head(context)
564 def view_layouts_base_html_head(context)
601 # Adds a project stylesheet
565 # Adds a project stylesheet
602 stylesheet_link_tag(context[:project].identifier) if context[:project]
566 stylesheet_link_tag(context[:project].identifier) if context[:project]
603 end
567 end
604 end
568 end
605 # Don't use this hook now
569 # Don't use this hook now
606 Redmine::Hook.clear_listeners
570 Redmine::Hook.clear_listeners
607
571
608 def test_hook_response
572 def test_hook_response
609 Redmine::Hook.add_listener(ProjectBasedTemplate)
573 Redmine::Hook.add_listener(ProjectBasedTemplate)
610 get :show, :id => 1
574 get :show, :id => 1
611 assert_tag :tag => 'link', :attributes => {:href => '/stylesheets/ecookbook.css'},
575 assert_tag :tag => 'link', :attributes => {:href => '/stylesheets/ecookbook.css'},
612 :parent => {:tag => 'head'}
576 :parent => {:tag => 'head'}
613
577
614 Redmine::Hook.clear_listeners
578 Redmine::Hook.clear_listeners
615 end
579 end
616 end
580 end
@@ -1,291 +1,291
1 # redMine - project management software
1 # redMine - project management software
2 # Copyright (C) 2006-2010 Jean-Philippe Lang
2 # Copyright (C) 2006-2010 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18 require "#{File.dirname(__FILE__)}/../test_helper"
18 require "#{File.dirname(__FILE__)}/../test_helper"
19
19
20 class RoutingTest < ActionController::IntegrationTest
20 class RoutingTest < ActionController::IntegrationTest
21 context "activities" do
21 context "activities" do
22 should_route :get, "/activity", :controller => 'activities', :action => 'index', :id => nil
22 should_route :get, "/activity", :controller => 'activities', :action => 'index', :id => nil
23 should_route :get, "/activity.atom", :controller => 'activities', :action => 'index', :id => nil, :format => 'atom'
23 should_route :get, "/activity.atom", :controller => 'activities', :action => 'index', :id => nil, :format => 'atom'
24 end
24 end
25
25
26 context "attachments" do
26 context "attachments" do
27 should_route :get, "/attachments/1", :controller => 'attachments', :action => 'show', :id => '1'
27 should_route :get, "/attachments/1", :controller => 'attachments', :action => 'show', :id => '1'
28 should_route :get, "/attachments/1/filename.ext", :controller => 'attachments', :action => 'show', :id => '1', :filename => 'filename.ext'
28 should_route :get, "/attachments/1/filename.ext", :controller => 'attachments', :action => 'show', :id => '1', :filename => 'filename.ext'
29 should_route :get, "/attachments/download/1", :controller => 'attachments', :action => 'download', :id => '1'
29 should_route :get, "/attachments/download/1", :controller => 'attachments', :action => 'download', :id => '1'
30 should_route :get, "/attachments/download/1/filename.ext", :controller => 'attachments', :action => 'download', :id => '1', :filename => 'filename.ext'
30 should_route :get, "/attachments/download/1/filename.ext", :controller => 'attachments', :action => 'download', :id => '1', :filename => 'filename.ext'
31 end
31 end
32
32
33 context "boards" do
33 context "boards" do
34 should_route :get, "/projects/world_domination/boards", :controller => 'boards', :action => 'index', :project_id => 'world_domination'
34 should_route :get, "/projects/world_domination/boards", :controller => 'boards', :action => 'index', :project_id => 'world_domination'
35 should_route :get, "/projects/world_domination/boards/new", :controller => 'boards', :action => 'new', :project_id => 'world_domination'
35 should_route :get, "/projects/world_domination/boards/new", :controller => 'boards', :action => 'new', :project_id => 'world_domination'
36 should_route :get, "/projects/world_domination/boards/44", :controller => 'boards', :action => 'show', :project_id => 'world_domination', :id => '44'
36 should_route :get, "/projects/world_domination/boards/44", :controller => 'boards', :action => 'show', :project_id => 'world_domination', :id => '44'
37 should_route :get, "/projects/world_domination/boards/44.atom", :controller => 'boards', :action => 'show', :project_id => 'world_domination', :id => '44', :format => 'atom'
37 should_route :get, "/projects/world_domination/boards/44.atom", :controller => 'boards', :action => 'show', :project_id => 'world_domination', :id => '44', :format => 'atom'
38 should_route :get, "/projects/world_domination/boards/44/edit", :controller => 'boards', :action => 'edit', :project_id => 'world_domination', :id => '44'
38 should_route :get, "/projects/world_domination/boards/44/edit", :controller => 'boards', :action => 'edit', :project_id => 'world_domination', :id => '44'
39
39
40 should_route :post, "/projects/world_domination/boards/new", :controller => 'boards', :action => 'new', :project_id => 'world_domination'
40 should_route :post, "/projects/world_domination/boards/new", :controller => 'boards', :action => 'new', :project_id => 'world_domination'
41 should_route :post, "/projects/world_domination/boards/44/edit", :controller => 'boards', :action => 'edit', :project_id => 'world_domination', :id => '44'
41 should_route :post, "/projects/world_domination/boards/44/edit", :controller => 'boards', :action => 'edit', :project_id => 'world_domination', :id => '44'
42 should_route :post, "/projects/world_domination/boards/44/destroy", :controller => 'boards', :action => 'destroy', :project_id => 'world_domination', :id => '44'
42 should_route :post, "/projects/world_domination/boards/44/destroy", :controller => 'boards', :action => 'destroy', :project_id => 'world_domination', :id => '44'
43
43
44 end
44 end
45
45
46 context "documents" do
46 context "documents" do
47 should_route :get, "/projects/567/documents", :controller => 'documents', :action => 'index', :project_id => '567'
47 should_route :get, "/projects/567/documents", :controller => 'documents', :action => 'index', :project_id => '567'
48 should_route :get, "/projects/567/documents/new", :controller => 'documents', :action => 'new', :project_id => '567'
48 should_route :get, "/projects/567/documents/new", :controller => 'documents', :action => 'new', :project_id => '567'
49 should_route :get, "/documents/22", :controller => 'documents', :action => 'show', :id => '22'
49 should_route :get, "/documents/22", :controller => 'documents', :action => 'show', :id => '22'
50 should_route :get, "/documents/22/edit", :controller => 'documents', :action => 'edit', :id => '22'
50 should_route :get, "/documents/22/edit", :controller => 'documents', :action => 'edit', :id => '22'
51
51
52 should_route :post, "/projects/567/documents/new", :controller => 'documents', :action => 'new', :project_id => '567'
52 should_route :post, "/projects/567/documents/new", :controller => 'documents', :action => 'new', :project_id => '567'
53 should_route :post, "/documents/567/edit", :controller => 'documents', :action => 'edit', :id => '567'
53 should_route :post, "/documents/567/edit", :controller => 'documents', :action => 'edit', :id => '567'
54 should_route :post, "/documents/567/destroy", :controller => 'documents', :action => 'destroy', :id => '567'
54 should_route :post, "/documents/567/destroy", :controller => 'documents', :action => 'destroy', :id => '567'
55 end
55 end
56
56
57 context "issues" do
57 context "issues" do
58 # REST actions
58 # REST actions
59 should_route :get, "/issues", :controller => 'issues', :action => 'index'
59 should_route :get, "/issues", :controller => 'issues', :action => 'index'
60 should_route :get, "/issues.pdf", :controller => 'issues', :action => 'index', :format => 'pdf'
60 should_route :get, "/issues.pdf", :controller => 'issues', :action => 'index', :format => 'pdf'
61 should_route :get, "/issues.atom", :controller => 'issues', :action => 'index', :format => 'atom'
61 should_route :get, "/issues.atom", :controller => 'issues', :action => 'index', :format => 'atom'
62 should_route :get, "/issues.xml", :controller => 'issues', :action => 'index', :format => 'xml'
62 should_route :get, "/issues.xml", :controller => 'issues', :action => 'index', :format => 'xml'
63 should_route :get, "/projects/23/issues", :controller => 'issues', :action => 'index', :project_id => '23'
63 should_route :get, "/projects/23/issues", :controller => 'issues', :action => 'index', :project_id => '23'
64 should_route :get, "/projects/23/issues.pdf", :controller => 'issues', :action => 'index', :project_id => '23', :format => 'pdf'
64 should_route :get, "/projects/23/issues.pdf", :controller => 'issues', :action => 'index', :project_id => '23', :format => 'pdf'
65 should_route :get, "/projects/23/issues.atom", :controller => 'issues', :action => 'index', :project_id => '23', :format => 'atom'
65 should_route :get, "/projects/23/issues.atom", :controller => 'issues', :action => 'index', :project_id => '23', :format => 'atom'
66 should_route :get, "/projects/23/issues.xml", :controller => 'issues', :action => 'index', :project_id => '23', :format => 'xml'
66 should_route :get, "/projects/23/issues.xml", :controller => 'issues', :action => 'index', :project_id => '23', :format => 'xml'
67 should_route :get, "/issues/64", :controller => 'issues', :action => 'show', :id => '64'
67 should_route :get, "/issues/64", :controller => 'issues', :action => 'show', :id => '64'
68 should_route :get, "/issues/64.pdf", :controller => 'issues', :action => 'show', :id => '64', :format => 'pdf'
68 should_route :get, "/issues/64.pdf", :controller => 'issues', :action => 'show', :id => '64', :format => 'pdf'
69 should_route :get, "/issues/64.atom", :controller => 'issues', :action => 'show', :id => '64', :format => 'atom'
69 should_route :get, "/issues/64.atom", :controller => 'issues', :action => 'show', :id => '64', :format => 'atom'
70 should_route :get, "/issues/64.xml", :controller => 'issues', :action => 'show', :id => '64', :format => 'xml'
70 should_route :get, "/issues/64.xml", :controller => 'issues', :action => 'show', :id => '64', :format => 'xml'
71
71
72 should_route :get, "/projects/23/issues/new", :controller => 'issues', :action => 'new', :project_id => '23'
72 should_route :get, "/projects/23/issues/new", :controller => 'issues', :action => 'new', :project_id => '23'
73 should_route :post, "/projects/23/issues", :controller => 'issues', :action => 'create', :project_id => '23'
73 should_route :post, "/projects/23/issues", :controller => 'issues', :action => 'create', :project_id => '23'
74 should_route :post, "/issues.xml", :controller => 'issues', :action => 'create', :format => 'xml'
74 should_route :post, "/issues.xml", :controller => 'issues', :action => 'create', :format => 'xml'
75
75
76 should_route :get, "/issues/64/edit", :controller => 'issues', :action => 'edit', :id => '64'
76 should_route :get, "/issues/64/edit", :controller => 'issues', :action => 'edit', :id => '64'
77 # TODO: Should use PUT
77 # TODO: Should use PUT
78 should_route :post, "/issues/64/edit", :controller => 'issues', :action => 'edit', :id => '64'
78 should_route :post, "/issues/64/edit", :controller => 'issues', :action => 'edit', :id => '64'
79 should_route :put, "/issues/1.xml", :controller => 'issues', :action => 'update', :id => '1', :format => 'xml'
79 should_route :put, "/issues/1.xml", :controller => 'issues', :action => 'update', :id => '1', :format => 'xml'
80
80
81 # TODO: Should use DELETE
81 # TODO: Should use DELETE
82 should_route :post, "/issues/64/destroy", :controller => 'issues', :action => 'destroy', :id => '64'
82 should_route :post, "/issues/64/destroy", :controller => 'issues', :action => 'destroy', :id => '64'
83 should_route :delete, "/issues/1.xml", :controller => 'issues', :action => 'destroy', :id => '1', :format => 'xml'
83 should_route :delete, "/issues/1.xml", :controller => 'issues', :action => 'destroy', :id => '1', :format => 'xml'
84
84
85 # Extra actions
85 # Extra actions
86 should_route :get, "/projects/23/issues/64/copy", :controller => 'issues', :action => 'new', :project_id => '23', :copy_from => '64'
86 should_route :get, "/projects/23/issues/64/copy", :controller => 'issues', :action => 'new', :project_id => '23', :copy_from => '64'
87
87
88 should_route :get, "/issues/move/new", :controller => 'issue_moves', :action => 'new'
88 should_route :get, "/issues/move/new", :controller => 'issue_moves', :action => 'new'
89 should_route :post, "/issues/move", :controller => 'issue_moves', :action => 'create'
89 should_route :post, "/issues/move", :controller => 'issue_moves', :action => 'create'
90
90
91 should_route :post, "/issues/1/quoted", :controller => 'journals', :action => 'new', :id => '1'
91 should_route :post, "/issues/1/quoted", :controller => 'journals', :action => 'new', :id => '1'
92
92
93 should_route :get, "/issues/calendar", :controller => 'calendars', :action => 'show'
93 should_route :get, "/issues/calendar", :controller => 'calendars', :action => 'show'
94 should_route :post, "/issues/calendar", :controller => 'calendars', :action => 'show'
94 should_route :post, "/issues/calendar", :controller => 'calendars', :action => 'show'
95 should_route :get, "/projects/project-name/issues/calendar", :controller => 'calendars', :action => 'show', :project_id => 'project-name'
95 should_route :get, "/projects/project-name/issues/calendar", :controller => 'calendars', :action => 'show', :project_id => 'project-name'
96 should_route :post, "/projects/project-name/issues/calendar", :controller => 'calendars', :action => 'show', :project_id => 'project-name'
96 should_route :post, "/projects/project-name/issues/calendar", :controller => 'calendars', :action => 'show', :project_id => 'project-name'
97
97
98 should_route :get, "/issues/gantt", :controller => 'gantts', :action => 'show'
98 should_route :get, "/issues/gantt", :controller => 'gantts', :action => 'show'
99 should_route :post, "/issues/gantt", :controller => 'gantts', :action => 'show'
99 should_route :post, "/issues/gantt", :controller => 'gantts', :action => 'show'
100 should_route :get, "/projects/project-name/issues/gantt", :controller => 'gantts', :action => 'show', :project_id => 'project-name'
100 should_route :get, "/projects/project-name/issues/gantt", :controller => 'gantts', :action => 'show', :project_id => 'project-name'
101 should_route :post, "/projects/project-name/issues/gantt", :controller => 'gantts', :action => 'show', :project_id => 'project-name'
101 should_route :post, "/projects/project-name/issues/gantt", :controller => 'gantts', :action => 'show', :project_id => 'project-name'
102
102
103 should_route :get, "/issues/auto_complete", :controller => 'auto_completes', :action => 'issues'
103 should_route :get, "/issues/auto_complete", :controller => 'auto_completes', :action => 'issues'
104
104
105 should_route :get, "/issues/preview/123", :controller => 'previews', :action => 'issue', :id => '123'
105 should_route :get, "/issues/preview/123", :controller => 'previews', :action => 'issue', :id => '123'
106 should_route :post, "/issues/preview/123", :controller => 'previews', :action => 'issue', :id => '123'
106 should_route :post, "/issues/preview/123", :controller => 'previews', :action => 'issue', :id => '123'
107 should_route :get, "/issues/context_menu", :controller => 'context_menus', :action => 'issues'
107 should_route :get, "/issues/context_menu", :controller => 'context_menus', :action => 'issues'
108 should_route :post, "/issues/context_menu", :controller => 'context_menus', :action => 'issues'
108 should_route :post, "/issues/context_menu", :controller => 'context_menus', :action => 'issues'
109
109
110 should_route :get, "/issues/changes", :controller => 'journals', :action => 'index'
110 should_route :get, "/issues/changes", :controller => 'journals', :action => 'index'
111
111
112 should_route :get, "/issues/bulk_edit", :controller => 'issues', :action => 'bulk_edit'
112 should_route :get, "/issues/bulk_edit", :controller => 'issues', :action => 'bulk_edit'
113 should_route :post, "/issues/bulk_edit", :controller => 'issues', :action => 'bulk_update'
113 should_route :post, "/issues/bulk_edit", :controller => 'issues', :action => 'bulk_update'
114 end
114 end
115
115
116 context "issue categories" do
116 context "issue categories" do
117 should_route :get, "/projects/test/issue_categories/new", :controller => 'issue_categories', :action => 'new', :project_id => 'test'
117 should_route :get, "/projects/test/issue_categories/new", :controller => 'issue_categories', :action => 'new', :project_id => 'test'
118
118
119 should_route :post, "/projects/test/issue_categories/new", :controller => 'issue_categories', :action => 'new', :project_id => 'test'
119 should_route :post, "/projects/test/issue_categories/new", :controller => 'issue_categories', :action => 'new', :project_id => 'test'
120 end
120 end
121
121
122 context "issue relations" do
122 context "issue relations" do
123 should_route :post, "/issues/1/relations", :controller => 'issue_relations', :action => 'new', :issue_id => '1'
123 should_route :post, "/issues/1/relations", :controller => 'issue_relations', :action => 'new', :issue_id => '1'
124 should_route :post, "/issues/1/relations/23/destroy", :controller => 'issue_relations', :action => 'destroy', :issue_id => '1', :id => '23'
124 should_route :post, "/issues/1/relations/23/destroy", :controller => 'issue_relations', :action => 'destroy', :issue_id => '1', :id => '23'
125 end
125 end
126
126
127 context "issue reports" do
127 context "issue reports" do
128 should_route :get, "/projects/567/issues/report", :controller => 'reports', :action => 'issue_report', :id => '567'
128 should_route :get, "/projects/567/issues/report", :controller => 'reports', :action => 'issue_report', :id => '567'
129 should_route :get, "/projects/567/issues/report/assigned_to", :controller => 'reports', :action => 'issue_report_details', :id => '567', :detail => 'assigned_to'
129 should_route :get, "/projects/567/issues/report/assigned_to", :controller => 'reports', :action => 'issue_report_details', :id => '567', :detail => 'assigned_to'
130 end
130 end
131
131
132 context "members" do
132 context "members" do
133 should_route :post, "/projects/5234/members/new", :controller => 'members', :action => 'new', :id => '5234'
133 should_route :post, "/projects/5234/members/new", :controller => 'members', :action => 'new', :id => '5234'
134 end
134 end
135
135
136 context "messages" do
136 context "messages" do
137 should_route :get, "/boards/22/topics/2", :controller => 'messages', :action => 'show', :id => '2', :board_id => '22'
137 should_route :get, "/boards/22/topics/2", :controller => 'messages', :action => 'show', :id => '2', :board_id => '22'
138 should_route :get, "/boards/lala/topics/new", :controller => 'messages', :action => 'new', :board_id => 'lala'
138 should_route :get, "/boards/lala/topics/new", :controller => 'messages', :action => 'new', :board_id => 'lala'
139 should_route :get, "/boards/lala/topics/22/edit", :controller => 'messages', :action => 'edit', :id => '22', :board_id => 'lala'
139 should_route :get, "/boards/lala/topics/22/edit", :controller => 'messages', :action => 'edit', :id => '22', :board_id => 'lala'
140
140
141 should_route :post, "/boards/lala/topics/new", :controller => 'messages', :action => 'new', :board_id => 'lala'
141 should_route :post, "/boards/lala/topics/new", :controller => 'messages', :action => 'new', :board_id => 'lala'
142 should_route :post, "/boards/lala/topics/22/edit", :controller => 'messages', :action => 'edit', :id => '22', :board_id => 'lala'
142 should_route :post, "/boards/lala/topics/22/edit", :controller => 'messages', :action => 'edit', :id => '22', :board_id => 'lala'
143 should_route :post, "/boards/22/topics/555/replies", :controller => 'messages', :action => 'reply', :id => '555', :board_id => '22'
143 should_route :post, "/boards/22/topics/555/replies", :controller => 'messages', :action => 'reply', :id => '555', :board_id => '22'
144 should_route :post, "/boards/22/topics/555/destroy", :controller => 'messages', :action => 'destroy', :id => '555', :board_id => '22'
144 should_route :post, "/boards/22/topics/555/destroy", :controller => 'messages', :action => 'destroy', :id => '555', :board_id => '22'
145 end
145 end
146
146
147 context "news" do
147 context "news" do
148 should_route :get, "/news", :controller => 'news', :action => 'index'
148 should_route :get, "/news", :controller => 'news', :action => 'index'
149 should_route :get, "/news.atom", :controller => 'news', :action => 'index', :format => 'atom'
149 should_route :get, "/news.atom", :controller => 'news', :action => 'index', :format => 'atom'
150 should_route :get, "/news.xml", :controller => 'news', :action => 'index', :format => 'xml'
150 should_route :get, "/news.xml", :controller => 'news', :action => 'index', :format => 'xml'
151 should_route :get, "/news.json", :controller => 'news', :action => 'index', :format => 'json'
151 should_route :get, "/news.json", :controller => 'news', :action => 'index', :format => 'json'
152 should_route :get, "/projects/567/news", :controller => 'news', :action => 'index', :project_id => '567'
152 should_route :get, "/projects/567/news", :controller => 'news', :action => 'index', :project_id => '567'
153 should_route :get, "/projects/567/news.atom", :controller => 'news', :action => 'index', :format => 'atom', :project_id => '567'
153 should_route :get, "/projects/567/news.atom", :controller => 'news', :action => 'index', :format => 'atom', :project_id => '567'
154 should_route :get, "/projects/567/news.xml", :controller => 'news', :action => 'index', :format => 'xml', :project_id => '567'
154 should_route :get, "/projects/567/news.xml", :controller => 'news', :action => 'index', :format => 'xml', :project_id => '567'
155 should_route :get, "/projects/567/news.json", :controller => 'news', :action => 'index', :format => 'json', :project_id => '567'
155 should_route :get, "/projects/567/news.json", :controller => 'news', :action => 'index', :format => 'json', :project_id => '567'
156 should_route :get, "/news/2", :controller => 'news', :action => 'show', :id => '2'
156 should_route :get, "/news/2", :controller => 'news', :action => 'show', :id => '2'
157 should_route :get, "/projects/567/news/new", :controller => 'news', :action => 'new', :project_id => '567'
157 should_route :get, "/projects/567/news/new", :controller => 'news', :action => 'new', :project_id => '567'
158 should_route :get, "/news/234", :controller => 'news', :action => 'show', :id => '234'
158 should_route :get, "/news/234", :controller => 'news', :action => 'show', :id => '234'
159
159
160 should_route :post, "/projects/567/news/new", :controller => 'news', :action => 'new', :project_id => '567'
160 should_route :post, "/projects/567/news/new", :controller => 'news', :action => 'new', :project_id => '567'
161 should_route :post, "/news/567/edit", :controller => 'news', :action => 'edit', :id => '567'
161 should_route :post, "/news/567/edit", :controller => 'news', :action => 'edit', :id => '567'
162 should_route :post, "/news/567/destroy", :controller => 'news', :action => 'destroy', :id => '567'
162 should_route :post, "/news/567/destroy", :controller => 'news', :action => 'destroy', :id => '567'
163 end
163 end
164
164
165 context "projects" do
165 context "projects" do
166 should_route :get, "/projects", :controller => 'projects', :action => 'index'
166 should_route :get, "/projects", :controller => 'projects', :action => 'index'
167 should_route :get, "/projects.atom", :controller => 'projects', :action => 'index', :format => 'atom'
167 should_route :get, "/projects.atom", :controller => 'projects', :action => 'index', :format => 'atom'
168 should_route :get, "/projects.xml", :controller => 'projects', :action => 'index', :format => 'xml'
168 should_route :get, "/projects.xml", :controller => 'projects', :action => 'index', :format => 'xml'
169 should_route :get, "/projects/new", :controller => 'projects', :action => 'add'
169 should_route :get, "/projects/new", :controller => 'projects', :action => 'add'
170 should_route :get, "/projects/test", :controller => 'projects', :action => 'show', :id => 'test'
170 should_route :get, "/projects/test", :controller => 'projects', :action => 'show', :id => 'test'
171 should_route :get, "/projects/1.xml", :controller => 'projects', :action => 'show', :id => '1', :format => 'xml'
171 should_route :get, "/projects/1.xml", :controller => 'projects', :action => 'show', :id => '1', :format => 'xml'
172 should_route :get, "/projects/4223/settings", :controller => 'projects', :action => 'settings', :id => '4223'
172 should_route :get, "/projects/4223/settings", :controller => 'projects', :action => 'settings', :id => '4223'
173 should_route :get, "/projects/4223/settings/members", :controller => 'projects', :action => 'settings', :id => '4223', :tab => 'members'
173 should_route :get, "/projects/4223/settings/members", :controller => 'projects', :action => 'settings', :id => '4223', :tab => 'members'
174 should_route :get, "/projects/567/destroy", :controller => 'projects', :action => 'destroy', :id => '567'
174 should_route :get, "/projects/567/destroy", :controller => 'projects', :action => 'destroy', :id => '567'
175 should_route :get, "/projects/33/files", :controller => 'files', :action => 'index', :id => '33'
175 should_route :get, "/projects/33/files", :controller => 'files', :action => 'index', :id => '33'
176 should_route :get, "/projects/33/files/new", :controller => 'projects', :action => 'add_file', :id => '33'
176 should_route :get, "/projects/33/files/new", :controller => 'files', :action => 'new', :id => '33'
177 should_route :get, "/projects/33/roadmap", :controller => 'versions', :action => 'index', :project_id => '33'
177 should_route :get, "/projects/33/roadmap", :controller => 'versions', :action => 'index', :project_id => '33'
178 should_route :get, "/projects/33/activity", :controller => 'activities', :action => 'index', :id => '33'
178 should_route :get, "/projects/33/activity", :controller => 'activities', :action => 'index', :id => '33'
179 should_route :get, "/projects/33/activity.atom", :controller => 'activities', :action => 'index', :id => '33', :format => 'atom'
179 should_route :get, "/projects/33/activity.atom", :controller => 'activities', :action => 'index', :id => '33', :format => 'atom'
180
180
181 should_route :post, "/projects/new", :controller => 'projects', :action => 'add'
181 should_route :post, "/projects/new", :controller => 'projects', :action => 'add'
182 should_route :post, "/projects.xml", :controller => 'projects', :action => 'add', :format => 'xml'
182 should_route :post, "/projects.xml", :controller => 'projects', :action => 'add', :format => 'xml'
183 should_route :post, "/projects/4223/edit", :controller => 'projects', :action => 'edit', :id => '4223'
183 should_route :post, "/projects/4223/edit", :controller => 'projects', :action => 'edit', :id => '4223'
184 should_route :post, "/projects/64/destroy", :controller => 'projects', :action => 'destroy', :id => '64'
184 should_route :post, "/projects/64/destroy", :controller => 'projects', :action => 'destroy', :id => '64'
185 should_route :post, "/projects/33/files/new", :controller => 'projects', :action => 'add_file', :id => '33'
185 should_route :post, "/projects/33/files/new", :controller => 'files', :action => 'new', :id => '33'
186 should_route :post, "/projects/64/archive", :controller => 'projects', :action => 'archive', :id => '64'
186 should_route :post, "/projects/64/archive", :controller => 'projects', :action => 'archive', :id => '64'
187 should_route :post, "/projects/64/unarchive", :controller => 'projects', :action => 'unarchive', :id => '64'
187 should_route :post, "/projects/64/unarchive", :controller => 'projects', :action => 'unarchive', :id => '64'
188 should_route :post, "/projects/64/activities/save", :controller => 'projects', :action => 'save_activities', :id => '64'
188 should_route :post, "/projects/64/activities/save", :controller => 'projects', :action => 'save_activities', :id => '64'
189
189
190 should_route :put, "/projects/1.xml", :controller => 'projects', :action => 'edit', :id => '1', :format => 'xml'
190 should_route :put, "/projects/1.xml", :controller => 'projects', :action => 'edit', :id => '1', :format => 'xml'
191
191
192 should_route :delete, "/projects/1.xml", :controller => 'projects', :action => 'destroy', :id => '1', :format => 'xml'
192 should_route :delete, "/projects/1.xml", :controller => 'projects', :action => 'destroy', :id => '1', :format => 'xml'
193 should_route :delete, "/projects/64/reset_activities", :controller => 'projects', :action => 'reset_activities', :id => '64'
193 should_route :delete, "/projects/64/reset_activities", :controller => 'projects', :action => 'reset_activities', :id => '64'
194 end
194 end
195
195
196 context "repositories" do
196 context "repositories" do
197 should_route :get, "/projects/redmine/repository", :controller => 'repositories', :action => 'show', :id => 'redmine'
197 should_route :get, "/projects/redmine/repository", :controller => 'repositories', :action => 'show', :id => 'redmine'
198 should_route :get, "/projects/redmine/repository/edit", :controller => 'repositories', :action => 'edit', :id => 'redmine'
198 should_route :get, "/projects/redmine/repository/edit", :controller => 'repositories', :action => 'edit', :id => 'redmine'
199 should_route :get, "/projects/redmine/repository/revisions", :controller => 'repositories', :action => 'revisions', :id => 'redmine'
199 should_route :get, "/projects/redmine/repository/revisions", :controller => 'repositories', :action => 'revisions', :id => 'redmine'
200 should_route :get, "/projects/redmine/repository/revisions.atom", :controller => 'repositories', :action => 'revisions', :id => 'redmine', :format => 'atom'
200 should_route :get, "/projects/redmine/repository/revisions.atom", :controller => 'repositories', :action => 'revisions', :id => 'redmine', :format => 'atom'
201 should_route :get, "/projects/redmine/repository/revisions/2457", :controller => 'repositories', :action => 'revision', :id => 'redmine', :rev => '2457'
201 should_route :get, "/projects/redmine/repository/revisions/2457", :controller => 'repositories', :action => 'revision', :id => 'redmine', :rev => '2457'
202 should_route :get, "/projects/redmine/repository/revisions/2457/diff", :controller => 'repositories', :action => 'diff', :id => 'redmine', :rev => '2457'
202 should_route :get, "/projects/redmine/repository/revisions/2457/diff", :controller => 'repositories', :action => 'diff', :id => 'redmine', :rev => '2457'
203 should_route :get, "/projects/redmine/repository/revisions/2457/diff.diff", :controller => 'repositories', :action => 'diff', :id => 'redmine', :rev => '2457', :format => 'diff'
203 should_route :get, "/projects/redmine/repository/revisions/2457/diff.diff", :controller => 'repositories', :action => 'diff', :id => 'redmine', :rev => '2457', :format => 'diff'
204 should_route :get, "/projects/redmine/repository/diff/path/to/file.c", :controller => 'repositories', :action => 'diff', :id => 'redmine', :path => %w[path to file.c]
204 should_route :get, "/projects/redmine/repository/diff/path/to/file.c", :controller => 'repositories', :action => 'diff', :id => 'redmine', :path => %w[path to file.c]
205 should_route :get, "/projects/redmine/repository/revisions/2/diff/path/to/file.c", :controller => 'repositories', :action => 'diff', :id => 'redmine', :path => %w[path to file.c], :rev => '2'
205 should_route :get, "/projects/redmine/repository/revisions/2/diff/path/to/file.c", :controller => 'repositories', :action => 'diff', :id => 'redmine', :path => %w[path to file.c], :rev => '2'
206 should_route :get, "/projects/redmine/repository/browse/path/to/file.c", :controller => 'repositories', :action => 'browse', :id => 'redmine', :path => %w[path to file.c]
206 should_route :get, "/projects/redmine/repository/browse/path/to/file.c", :controller => 'repositories', :action => 'browse', :id => 'redmine', :path => %w[path to file.c]
207 should_route :get, "/projects/redmine/repository/entry/path/to/file.c", :controller => 'repositories', :action => 'entry', :id => 'redmine', :path => %w[path to file.c]
207 should_route :get, "/projects/redmine/repository/entry/path/to/file.c", :controller => 'repositories', :action => 'entry', :id => 'redmine', :path => %w[path to file.c]
208 should_route :get, "/projects/redmine/repository/revisions/2/entry/path/to/file.c", :controller => 'repositories', :action => 'entry', :id => 'redmine', :path => %w[path to file.c], :rev => '2'
208 should_route :get, "/projects/redmine/repository/revisions/2/entry/path/to/file.c", :controller => 'repositories', :action => 'entry', :id => 'redmine', :path => %w[path to file.c], :rev => '2'
209 should_route :get, "/projects/redmine/repository/raw/path/to/file.c", :controller => 'repositories', :action => 'entry', :id => 'redmine', :path => %w[path to file.c], :format => 'raw'
209 should_route :get, "/projects/redmine/repository/raw/path/to/file.c", :controller => 'repositories', :action => 'entry', :id => 'redmine', :path => %w[path to file.c], :format => 'raw'
210 should_route :get, "/projects/redmine/repository/revisions/2/raw/path/to/file.c", :controller => 'repositories', :action => 'entry', :id => 'redmine', :path => %w[path to file.c], :rev => '2', :format => 'raw'
210 should_route :get, "/projects/redmine/repository/revisions/2/raw/path/to/file.c", :controller => 'repositories', :action => 'entry', :id => 'redmine', :path => %w[path to file.c], :rev => '2', :format => 'raw'
211 should_route :get, "/projects/redmine/repository/annotate/path/to/file.c", :controller => 'repositories', :action => 'annotate', :id => 'redmine', :path => %w[path to file.c]
211 should_route :get, "/projects/redmine/repository/annotate/path/to/file.c", :controller => 'repositories', :action => 'annotate', :id => 'redmine', :path => %w[path to file.c]
212 should_route :get, "/projects/redmine/repository/changes/path/to/file.c", :controller => 'repositories', :action => 'changes', :id => 'redmine', :path => %w[path to file.c]
212 should_route :get, "/projects/redmine/repository/changes/path/to/file.c", :controller => 'repositories', :action => 'changes', :id => 'redmine', :path => %w[path to file.c]
213 should_route :get, "/projects/redmine/repository/statistics", :controller => 'repositories', :action => 'stats', :id => 'redmine'
213 should_route :get, "/projects/redmine/repository/statistics", :controller => 'repositories', :action => 'stats', :id => 'redmine'
214
214
215
215
216 should_route :post, "/projects/redmine/repository/edit", :controller => 'repositories', :action => 'edit', :id => 'redmine'
216 should_route :post, "/projects/redmine/repository/edit", :controller => 'repositories', :action => 'edit', :id => 'redmine'
217 end
217 end
218
218
219 context "timelogs" do
219 context "timelogs" do
220 should_route :get, "/issues/567/time_entries/new", :controller => 'timelog', :action => 'edit', :issue_id => '567'
220 should_route :get, "/issues/567/time_entries/new", :controller => 'timelog', :action => 'edit', :issue_id => '567'
221 should_route :get, "/projects/ecookbook/time_entries/new", :controller => 'timelog', :action => 'edit', :project_id => 'ecookbook'
221 should_route :get, "/projects/ecookbook/time_entries/new", :controller => 'timelog', :action => 'edit', :project_id => 'ecookbook'
222 should_route :get, "/projects/ecookbook/issues/567/time_entries/new", :controller => 'timelog', :action => 'edit', :project_id => 'ecookbook', :issue_id => '567'
222 should_route :get, "/projects/ecookbook/issues/567/time_entries/new", :controller => 'timelog', :action => 'edit', :project_id => 'ecookbook', :issue_id => '567'
223 should_route :get, "/time_entries/22/edit", :controller => 'timelog', :action => 'edit', :id => '22'
223 should_route :get, "/time_entries/22/edit", :controller => 'timelog', :action => 'edit', :id => '22'
224 should_route :get, "/time_entries/report", :controller => 'timelog', :action => 'report'
224 should_route :get, "/time_entries/report", :controller => 'timelog', :action => 'report'
225 should_route :get, "/projects/567/time_entries/report", :controller => 'timelog', :action => 'report', :project_id => '567'
225 should_route :get, "/projects/567/time_entries/report", :controller => 'timelog', :action => 'report', :project_id => '567'
226 should_route :get, "/projects/567/time_entries/report.csv", :controller => 'timelog', :action => 'report', :project_id => '567', :format => 'csv'
226 should_route :get, "/projects/567/time_entries/report.csv", :controller => 'timelog', :action => 'report', :project_id => '567', :format => 'csv'
227 should_route :get, "/time_entries", :controller => 'timelog', :action => 'details'
227 should_route :get, "/time_entries", :controller => 'timelog', :action => 'details'
228 should_route :get, "/time_entries.csv", :controller => 'timelog', :action => 'details', :format => 'csv'
228 should_route :get, "/time_entries.csv", :controller => 'timelog', :action => 'details', :format => 'csv'
229 should_route :get, "/time_entries.atom", :controller => 'timelog', :action => 'details', :format => 'atom'
229 should_route :get, "/time_entries.atom", :controller => 'timelog', :action => 'details', :format => 'atom'
230 should_route :get, "/projects/567/time_entries", :controller => 'timelog', :action => 'details', :project_id => '567'
230 should_route :get, "/projects/567/time_entries", :controller => 'timelog', :action => 'details', :project_id => '567'
231 should_route :get, "/projects/567/time_entries.csv", :controller => 'timelog', :action => 'details', :project_id => '567', :format => 'csv'
231 should_route :get, "/projects/567/time_entries.csv", :controller => 'timelog', :action => 'details', :project_id => '567', :format => 'csv'
232 should_route :get, "/projects/567/time_entries.atom", :controller => 'timelog', :action => 'details', :project_id => '567', :format => 'atom'
232 should_route :get, "/projects/567/time_entries.atom", :controller => 'timelog', :action => 'details', :project_id => '567', :format => 'atom'
233 should_route :get, "/issues/234/time_entries", :controller => 'timelog', :action => 'details', :issue_id => '234'
233 should_route :get, "/issues/234/time_entries", :controller => 'timelog', :action => 'details', :issue_id => '234'
234 should_route :get, "/issues/234/time_entries.csv", :controller => 'timelog', :action => 'details', :issue_id => '234', :format => 'csv'
234 should_route :get, "/issues/234/time_entries.csv", :controller => 'timelog', :action => 'details', :issue_id => '234', :format => 'csv'
235 should_route :get, "/issues/234/time_entries.atom", :controller => 'timelog', :action => 'details', :issue_id => '234', :format => 'atom'
235 should_route :get, "/issues/234/time_entries.atom", :controller => 'timelog', :action => 'details', :issue_id => '234', :format => 'atom'
236 should_route :get, "/projects/ecookbook/issues/123/time_entries", :controller => 'timelog', :action => 'details', :project_id => 'ecookbook', :issue_id => '123'
236 should_route :get, "/projects/ecookbook/issues/123/time_entries", :controller => 'timelog', :action => 'details', :project_id => 'ecookbook', :issue_id => '123'
237
237
238 should_route :post, "/time_entries/55/destroy", :controller => 'timelog', :action => 'destroy', :id => '55'
238 should_route :post, "/time_entries/55/destroy", :controller => 'timelog', :action => 'destroy', :id => '55'
239 end
239 end
240
240
241 context "users" do
241 context "users" do
242 should_route :get, "/users", :controller => 'users', :action => 'index'
242 should_route :get, "/users", :controller => 'users', :action => 'index'
243 should_route :get, "/users/44", :controller => 'users', :action => 'show', :id => '44'
243 should_route :get, "/users/44", :controller => 'users', :action => 'show', :id => '44'
244 should_route :get, "/users/new", :controller => 'users', :action => 'add'
244 should_route :get, "/users/new", :controller => 'users', :action => 'add'
245 should_route :get, "/users/444/edit", :controller => 'users', :action => 'edit', :id => '444'
245 should_route :get, "/users/444/edit", :controller => 'users', :action => 'edit', :id => '444'
246 should_route :get, "/users/222/edit/membership", :controller => 'users', :action => 'edit', :id => '222', :tab => 'membership'
246 should_route :get, "/users/222/edit/membership", :controller => 'users', :action => 'edit', :id => '222', :tab => 'membership'
247
247
248 should_route :post, "/users/new", :controller => 'users', :action => 'add'
248 should_route :post, "/users/new", :controller => 'users', :action => 'add'
249 should_route :post, "/users/444/edit", :controller => 'users', :action => 'edit', :id => '444'
249 should_route :post, "/users/444/edit", :controller => 'users', :action => 'edit', :id => '444'
250 should_route :post, "/users/123/memberships", :controller => 'users', :action => 'edit_membership', :id => '123'
250 should_route :post, "/users/123/memberships", :controller => 'users', :action => 'edit_membership', :id => '123'
251 should_route :post, "/users/123/memberships/55", :controller => 'users', :action => 'edit_membership', :id => '123', :membership_id => '55'
251 should_route :post, "/users/123/memberships/55", :controller => 'users', :action => 'edit_membership', :id => '123', :membership_id => '55'
252 should_route :post, "/users/567/memberships/12/destroy", :controller => 'users', :action => 'destroy_membership', :id => '567', :membership_id => '12'
252 should_route :post, "/users/567/memberships/12/destroy", :controller => 'users', :action => 'destroy_membership', :id => '567', :membership_id => '12'
253 end
253 end
254
254
255 context "versions" do
255 context "versions" do
256 should_route :get, "/projects/foo/versions/new", :controller => 'versions', :action => 'new', :project_id => 'foo'
256 should_route :get, "/projects/foo/versions/new", :controller => 'versions', :action => 'new', :project_id => 'foo'
257
257
258 should_route :post, "/projects/foo/versions/new", :controller => 'versions', :action => 'new', :project_id => 'foo'
258 should_route :post, "/projects/foo/versions/new", :controller => 'versions', :action => 'new', :project_id => 'foo'
259 end
259 end
260
260
261 context "wiki (singular, project's pages)" do
261 context "wiki (singular, project's pages)" do
262 should_route :get, "/projects/567/wiki", :controller => 'wiki', :action => 'index', :id => '567'
262 should_route :get, "/projects/567/wiki", :controller => 'wiki', :action => 'index', :id => '567'
263 should_route :get, "/projects/567/wiki/lalala", :controller => 'wiki', :action => 'index', :id => '567', :page => 'lalala'
263 should_route :get, "/projects/567/wiki/lalala", :controller => 'wiki', :action => 'index', :id => '567', :page => 'lalala'
264 should_route :get, "/projects/567/wiki/my_page/edit", :controller => 'wiki', :action => 'edit', :id => '567', :page => 'my_page'
264 should_route :get, "/projects/567/wiki/my_page/edit", :controller => 'wiki', :action => 'edit', :id => '567', :page => 'my_page'
265 should_route :get, "/projects/1/wiki/CookBook_documentation/history", :controller => 'wiki', :action => 'history', :id => '1', :page => 'CookBook_documentation'
265 should_route :get, "/projects/1/wiki/CookBook_documentation/history", :controller => 'wiki', :action => 'history', :id => '1', :page => 'CookBook_documentation'
266 should_route :get, "/projects/1/wiki/CookBook_documentation/diff/2/vs/1", :controller => 'wiki', :action => 'diff', :id => '1', :page => 'CookBook_documentation', :version => '2', :version_from => '1'
266 should_route :get, "/projects/1/wiki/CookBook_documentation/diff/2/vs/1", :controller => 'wiki', :action => 'diff', :id => '1', :page => 'CookBook_documentation', :version => '2', :version_from => '1'
267 should_route :get, "/projects/1/wiki/CookBook_documentation/annotate/2", :controller => 'wiki', :action => 'annotate', :id => '1', :page => 'CookBook_documentation', :version => '2'
267 should_route :get, "/projects/1/wiki/CookBook_documentation/annotate/2", :controller => 'wiki', :action => 'annotate', :id => '1', :page => 'CookBook_documentation', :version => '2'
268 should_route :get, "/projects/22/wiki/ladida/rename", :controller => 'wiki', :action => 'rename', :id => '22', :page => 'ladida'
268 should_route :get, "/projects/22/wiki/ladida/rename", :controller => 'wiki', :action => 'rename', :id => '22', :page => 'ladida'
269 should_route :get, "/projects/567/wiki/page_index", :controller => 'wiki', :action => 'special', :id => '567', :page => 'page_index'
269 should_route :get, "/projects/567/wiki/page_index", :controller => 'wiki', :action => 'special', :id => '567', :page => 'page_index'
270 should_route :get, "/projects/567/wiki/Page_Index", :controller => 'wiki', :action => 'special', :id => '567', :page => 'Page_Index'
270 should_route :get, "/projects/567/wiki/Page_Index", :controller => 'wiki', :action => 'special', :id => '567', :page => 'Page_Index'
271 should_route :get, "/projects/567/wiki/date_index", :controller => 'wiki', :action => 'special', :id => '567', :page => 'date_index'
271 should_route :get, "/projects/567/wiki/date_index", :controller => 'wiki', :action => 'special', :id => '567', :page => 'date_index'
272 should_route :get, "/projects/567/wiki/export", :controller => 'wiki', :action => 'special', :id => '567', :page => 'export'
272 should_route :get, "/projects/567/wiki/export", :controller => 'wiki', :action => 'special', :id => '567', :page => 'export'
273
273
274 should_route :post, "/projects/567/wiki/my_page/edit", :controller => 'wiki', :action => 'edit', :id => '567', :page => 'my_page'
274 should_route :post, "/projects/567/wiki/my_page/edit", :controller => 'wiki', :action => 'edit', :id => '567', :page => 'my_page'
275 should_route :post, "/projects/567/wiki/CookBook_documentation/preview", :controller => 'wiki', :action => 'preview', :id => '567', :page => 'CookBook_documentation'
275 should_route :post, "/projects/567/wiki/CookBook_documentation/preview", :controller => 'wiki', :action => 'preview', :id => '567', :page => 'CookBook_documentation'
276 should_route :post, "/projects/22/wiki/ladida/rename", :controller => 'wiki', :action => 'rename', :id => '22', :page => 'ladida'
276 should_route :post, "/projects/22/wiki/ladida/rename", :controller => 'wiki', :action => 'rename', :id => '22', :page => 'ladida'
277 should_route :post, "/projects/22/wiki/ladida/destroy", :controller => 'wiki', :action => 'destroy', :id => '22', :page => 'ladida'
277 should_route :post, "/projects/22/wiki/ladida/destroy", :controller => 'wiki', :action => 'destroy', :id => '22', :page => 'ladida'
278 should_route :post, "/projects/22/wiki/ladida/protect", :controller => 'wiki', :action => 'protect', :id => '22', :page => 'ladida'
278 should_route :post, "/projects/22/wiki/ladida/protect", :controller => 'wiki', :action => 'protect', :id => '22', :page => 'ladida'
279 end
279 end
280
280
281 context "wikis (plural, admin setup)" do
281 context "wikis (plural, admin setup)" do
282 should_route :get, "/projects/ladida/wiki/destroy", :controller => 'wikis', :action => 'destroy', :id => 'ladida'
282 should_route :get, "/projects/ladida/wiki/destroy", :controller => 'wikis', :action => 'destroy', :id => 'ladida'
283
283
284 should_route :post, "/projects/ladida/wiki", :controller => 'wikis', :action => 'edit', :id => 'ladida'
284 should_route :post, "/projects/ladida/wiki", :controller => 'wikis', :action => 'edit', :id => 'ladida'
285 should_route :post, "/projects/ladida/wiki/destroy", :controller => 'wikis', :action => 'destroy', :id => 'ladida'
285 should_route :post, "/projects/ladida/wiki/destroy", :controller => 'wikis', :action => 'destroy', :id => 'ladida'
286 end
286 end
287
287
288 context "administration panel" do
288 context "administration panel" do
289 should_route :get, "/admin/projects", :controller => 'admin', :action => 'projects'
289 should_route :get, "/admin/projects", :controller => 'admin', :action => 'projects'
290 end
290 end
291 end
291 end
General Comments 0
You need to be logged in to leave comments. Login now