##// END OF EJS Templates
Non working days is an array of strings (#2161)....
Jean-Philippe Lang -
r10533:5fe4aae7ba62
parent child
Show More
@@ -1,33 +1,33
1 <%= form_tag({:action => 'edit', :tab => 'issues'}, :onsubmit => 'selectAllOptions("selected_columns");') do %>
1 <%= form_tag({:action => 'edit', :tab => 'issues'}, :onsubmit => 'selectAllOptions("selected_columns");') do %>
2
2
3 <div class="box tabular settings">
3 <div class="box tabular settings">
4 <p><%= setting_check_box :cross_project_issue_relations %></p>
4 <p><%= setting_check_box :cross_project_issue_relations %></p>
5
5
6 <p><%= setting_select :cross_project_subtasks, cross_project_subtasks_options %></p>
6 <p><%= setting_select :cross_project_subtasks, cross_project_subtasks_options %></p>
7
7
8 <p><%= setting_check_box :issue_group_assignment %></p>
8 <p><%= setting_check_box :issue_group_assignment %></p>
9
9
10 <p><%= setting_check_box :default_issue_start_date_to_creation_date %></p>
10 <p><%= setting_check_box :default_issue_start_date_to_creation_date %></p>
11
11
12 <p><%= setting_check_box :display_subprojects_issues %></p>
12 <p><%= setting_check_box :display_subprojects_issues %></p>
13
13
14 <p><%= setting_select :issue_done_ratio, Issue::DONE_RATIO_OPTIONS.collect {|i| [l("setting_issue_done_ratio_#{i}"), i]} %></p>
14 <p><%= setting_select :issue_done_ratio, Issue::DONE_RATIO_OPTIONS.collect {|i| [l("setting_issue_done_ratio_#{i}"), i]} %></p>
15
15
16 <p><%= setting_multiselect :non_working_week_days, (1..7).map {|d| [day_name(d), d]}, :inline => true %></p>
16 <p><%= setting_multiselect :non_working_week_days, (1..7).map {|d| [day_name(d), d.to_s]}, :inline => true %></p>
17
17
18 <p><%= setting_text_field :issues_export_limit, :size => 6 %></p>
18 <p><%= setting_text_field :issues_export_limit, :size => 6 %></p>
19
19
20 <p><%= setting_text_field :gantt_items_limit, :size => 6 %></p>
20 <p><%= setting_text_field :gantt_items_limit, :size => 6 %></p>
21 </div>
21 </div>
22
22
23 <fieldset class="box">
23 <fieldset class="box">
24 <legend><%= l(:setting_issue_list_default_columns) %></legend>
24 <legend><%= l(:setting_issue_list_default_columns) %></legend>
25 <%= render :partial => 'queries/columns',
25 <%= render :partial => 'queries/columns',
26 :locals => {
26 :locals => {
27 :query => Query.new(:column_names => Setting.issue_list_default_columns),
27 :query => Query.new(:column_names => Setting.issue_list_default_columns),
28 :tag_name => 'settings[issue_list_default_columns][]'
28 :tag_name => 'settings[issue_list_default_columns][]'
29 } %>
29 } %>
30 </fieldset>
30 </fieldset>
31
31
32 <%= submit_tag l(:button_save) %>
32 <%= submit_tag l(:button_save) %>
33 <% end %>
33 <% end %>
@@ -1,227 +1,227
1 # Redmine - project management software
1 # Redmine - project management software
2 # Copyright (C) 2006-2012 Jean-Philippe Lang
2 # Copyright (C) 2006-2012 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
18
19 # DO NOT MODIFY THIS FILE !!!
19 # DO NOT MODIFY THIS FILE !!!
20 # Settings can be defined through the application in Admin -> Settings
20 # Settings can be defined through the application in Admin -> Settings
21
21
22 app_title:
22 app_title:
23 default: Redmine
23 default: Redmine
24 app_subtitle:
24 app_subtitle:
25 default: Project management
25 default: Project management
26 welcome_text:
26 welcome_text:
27 default:
27 default:
28 login_required:
28 login_required:
29 default: 0
29 default: 0
30 self_registration:
30 self_registration:
31 default: '2'
31 default: '2'
32 lost_password:
32 lost_password:
33 default: 1
33 default: 1
34 unsubscribe:
34 unsubscribe:
35 default: 1
35 default: 1
36 password_min_length:
36 password_min_length:
37 format: int
37 format: int
38 default: 4
38 default: 4
39 # Maximum lifetime of user sessions in minutes
39 # Maximum lifetime of user sessions in minutes
40 session_lifetime:
40 session_lifetime:
41 format: int
41 format: int
42 default: 0
42 default: 0
43 # User session timeout in minutes
43 # User session timeout in minutes
44 session_timeout:
44 session_timeout:
45 format: int
45 format: int
46 default: 0
46 default: 0
47 attachment_max_size:
47 attachment_max_size:
48 format: int
48 format: int
49 default: 5120
49 default: 5120
50 issues_export_limit:
50 issues_export_limit:
51 format: int
51 format: int
52 default: 500
52 default: 500
53 activity_days_default:
53 activity_days_default:
54 format: int
54 format: int
55 default: 30
55 default: 30
56 per_page_options:
56 per_page_options:
57 default: '25,50,100'
57 default: '25,50,100'
58 mail_from:
58 mail_from:
59 default: redmine@example.net
59 default: redmine@example.net
60 bcc_recipients:
60 bcc_recipients:
61 default: 1
61 default: 1
62 plain_text_mail:
62 plain_text_mail:
63 default: 0
63 default: 0
64 text_formatting:
64 text_formatting:
65 default: textile
65 default: textile
66 cache_formatted_text:
66 cache_formatted_text:
67 default: 0
67 default: 0
68 wiki_compression:
68 wiki_compression:
69 default: ""
69 default: ""
70 default_language:
70 default_language:
71 default: en
71 default: en
72 host_name:
72 host_name:
73 default: localhost:3000
73 default: localhost:3000
74 protocol:
74 protocol:
75 default: http
75 default: http
76 feeds_limit:
76 feeds_limit:
77 format: int
77 format: int
78 default: 15
78 default: 15
79 gantt_items_limit:
79 gantt_items_limit:
80 format: int
80 format: int
81 default: 500
81 default: 500
82 # Maximum size of files that can be displayed
82 # Maximum size of files that can be displayed
83 # inline through the file viewer (in KB)
83 # inline through the file viewer (in KB)
84 file_max_size_displayed:
84 file_max_size_displayed:
85 format: int
85 format: int
86 default: 512
86 default: 512
87 diff_max_lines_displayed:
87 diff_max_lines_displayed:
88 format: int
88 format: int
89 default: 1500
89 default: 1500
90 enabled_scm:
90 enabled_scm:
91 serialized: true
91 serialized: true
92 default:
92 default:
93 - Subversion
93 - Subversion
94 - Darcs
94 - Darcs
95 - Mercurial
95 - Mercurial
96 - Cvs
96 - Cvs
97 - Bazaar
97 - Bazaar
98 - Git
98 - Git
99 autofetch_changesets:
99 autofetch_changesets:
100 default: 1
100 default: 1
101 sys_api_enabled:
101 sys_api_enabled:
102 default: 0
102 default: 0
103 sys_api_key:
103 sys_api_key:
104 default: ''
104 default: ''
105 commit_cross_project_ref:
105 commit_cross_project_ref:
106 default: 0
106 default: 0
107 commit_ref_keywords:
107 commit_ref_keywords:
108 default: 'refs,references,IssueID'
108 default: 'refs,references,IssueID'
109 commit_fix_keywords:
109 commit_fix_keywords:
110 default: 'fixes,closes'
110 default: 'fixes,closes'
111 commit_fix_status_id:
111 commit_fix_status_id:
112 format: int
112 format: int
113 default: 0
113 default: 0
114 commit_fix_done_ratio:
114 commit_fix_done_ratio:
115 default: 100
115 default: 100
116 commit_logtime_enabled:
116 commit_logtime_enabled:
117 default: 0
117 default: 0
118 commit_logtime_activity_id:
118 commit_logtime_activity_id:
119 format: int
119 format: int
120 default: 0
120 default: 0
121 # autologin duration in days
121 # autologin duration in days
122 # 0 means autologin is disabled
122 # 0 means autologin is disabled
123 autologin:
123 autologin:
124 format: int
124 format: int
125 default: 0
125 default: 0
126 # date format
126 # date format
127 date_format:
127 date_format:
128 default: ''
128 default: ''
129 time_format:
129 time_format:
130 default: ''
130 default: ''
131 user_format:
131 user_format:
132 default: :firstname_lastname
132 default: :firstname_lastname
133 format: symbol
133 format: symbol
134 cross_project_issue_relations:
134 cross_project_issue_relations:
135 default: 0
135 default: 0
136 # Enables subtasks to be in other projects
136 # Enables subtasks to be in other projects
137 cross_project_subtasks:
137 cross_project_subtasks:
138 default: 'tree'
138 default: 'tree'
139 issue_group_assignment:
139 issue_group_assignment:
140 default: 0
140 default: 0
141 default_issue_start_date_to_creation_date:
141 default_issue_start_date_to_creation_date:
142 default: 1
142 default: 1
143 notified_events:
143 notified_events:
144 serialized: true
144 serialized: true
145 default:
145 default:
146 - issue_added
146 - issue_added
147 - issue_updated
147 - issue_updated
148 mail_handler_body_delimiters:
148 mail_handler_body_delimiters:
149 default: ''
149 default: ''
150 mail_handler_api_enabled:
150 mail_handler_api_enabled:
151 default: 0
151 default: 0
152 mail_handler_api_key:
152 mail_handler_api_key:
153 default:
153 default:
154 issue_list_default_columns:
154 issue_list_default_columns:
155 serialized: true
155 serialized: true
156 default:
156 default:
157 - tracker
157 - tracker
158 - status
158 - status
159 - priority
159 - priority
160 - subject
160 - subject
161 - assigned_to
161 - assigned_to
162 - updated_on
162 - updated_on
163 display_subprojects_issues:
163 display_subprojects_issues:
164 default: 1
164 default: 1
165 issue_done_ratio:
165 issue_done_ratio:
166 default: 'issue_field'
166 default: 'issue_field'
167 default_projects_public:
167 default_projects_public:
168 default: 1
168 default: 1
169 default_projects_modules:
169 default_projects_modules:
170 serialized: true
170 serialized: true
171 default:
171 default:
172 - issue_tracking
172 - issue_tracking
173 - time_tracking
173 - time_tracking
174 - news
174 - news
175 - documents
175 - documents
176 - files
176 - files
177 - wiki
177 - wiki
178 - repository
178 - repository
179 - boards
179 - boards
180 - calendar
180 - calendar
181 - gantt
181 - gantt
182 # Role given to a non-admin user who creates a project
182 # Role given to a non-admin user who creates a project
183 new_project_user_role_id:
183 new_project_user_role_id:
184 format: int
184 format: int
185 default: ''
185 default: ''
186 sequential_project_identifiers:
186 sequential_project_identifiers:
187 default: 0
187 default: 0
188 # encodings used to convert repository files content to UTF-8
188 # encodings used to convert repository files content to UTF-8
189 # multiple values accepted, comma separated
189 # multiple values accepted, comma separated
190 repositories_encodings:
190 repositories_encodings:
191 default: ''
191 default: ''
192 # encoding used to convert commit logs to UTF-8
192 # encoding used to convert commit logs to UTF-8
193 commit_logs_encoding:
193 commit_logs_encoding:
194 default: 'UTF-8'
194 default: 'UTF-8'
195 repository_log_display_limit:
195 repository_log_display_limit:
196 format: int
196 format: int
197 default: 100
197 default: 100
198 ui_theme:
198 ui_theme:
199 default: ''
199 default: ''
200 emails_footer:
200 emails_footer:
201 default: |-
201 default: |-
202 You have received this notification because you have either subscribed to it, or are involved in it.
202 You have received this notification because you have either subscribed to it, or are involved in it.
203 To change your notification preferences, please click here: http://hostname/my/account
203 To change your notification preferences, please click here: http://hostname/my/account
204 gravatar_enabled:
204 gravatar_enabled:
205 default: 0
205 default: 0
206 openid:
206 openid:
207 default: 0
207 default: 0
208 gravatar_default:
208 gravatar_default:
209 default: ''
209 default: ''
210 start_of_week:
210 start_of_week:
211 default: ''
211 default: ''
212 rest_api_enabled:
212 rest_api_enabled:
213 default: 0
213 default: 0
214 default_notification_option:
214 default_notification_option:
215 default: 'only_my_events'
215 default: 'only_my_events'
216 emails_header:
216 emails_header:
217 default: ''
217 default: ''
218 thumbnails_enabled:
218 thumbnails_enabled:
219 default: 0
219 default: 0
220 thumbnails_size:
220 thumbnails_size:
221 format: int
221 format: int
222 default: 100
222 default: 100
223 non_working_week_days:
223 non_working_week_days:
224 serialized: true
224 serialized: true
225 default:
225 default:
226 - 6
226 - '6'
227 - 7
227 - '7'
General Comments 0
You need to be logged in to leave comments. Login now