##// END OF EJS Templates
remove trailing white space from config/settings.yml...
Toshi MARUYAMA -
r14813:f80049588525
parent child
Show More
@@ -1,277 +1,277
1 1 # Redmine - project management software
2 2 # Copyright (C) 2006-2015 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18
19 19 # DO NOT MODIFY THIS FILE !!!
20 20 # Settings can be defined through the application in Admin -> Settings
21 21
22 22 app_title:
23 23 default: Redmine
24 24 app_subtitle:
25 25 default: Project management
26 26 welcome_text:
27 27 default:
28 28 login_required:
29 29 default: 0
30 30 security_notifications: 1
31 31 self_registration:
32 32 default: '2'
33 33 security_notifications: 1
34 34 lost_password:
35 35 default: 1
36 36 security_notifications: 1
37 37 unsubscribe:
38 38 default: 1
39 39 password_min_length:
40 40 format: int
41 41 default: 8
42 42 security_notifications: 1
43 43 # Maximum password age in days
44 44 password_max_age:
45 45 format: int
46 46 default: 0
47 47 security_notifications: 1
48 48 # Maximum number of additional email addresses per user
49 49 max_additional_emails:
50 50 format: int
51 51 default: 5
52 52 # Maximum lifetime of user sessions in minutes
53 53 session_lifetime:
54 54 format: int
55 55 default: 0
56 56 security_notifications: 1
57 57 # User session timeout in minutes
58 58 session_timeout:
59 59 format: int
60 60 default: 0
61 61 security_notifications: 1
62 62 attachment_max_size:
63 63 format: int
64 64 default: 5120
65 65 attachment_extensions_allowed:
66 66 default:
67 67 attachment_extensions_denied:
68 68 default:
69 69 issues_export_limit:
70 70 format: int
71 71 default: 500
72 72 activity_days_default:
73 73 format: int
74 74 default: 30
75 75 per_page_options:
76 76 default: '25,50,100'
77 77 search_results_per_page:
78 78 default: 10
79 79 mail_from:
80 80 default: redmine@example.net
81 81 bcc_recipients:
82 82 default: 1
83 83 plain_text_mail:
84 84 default: 0
85 85 text_formatting:
86 86 default: textile
87 87 cache_formatted_text:
88 88 default: 0
89 89 wiki_compression:
90 90 default: ""
91 91 default_language:
92 92 default: en
93 93 force_default_language_for_anonymous:
94 94 default: 0
95 95 force_default_language_for_loggedin:
96 96 default: 0
97 97 host_name:
98 98 default: localhost:3000
99 99 protocol:
100 100 default: http
101 101 security_notifications: 1
102 102 feeds_limit:
103 103 format: int
104 104 default: 15
105 105 gantt_items_limit:
106 106 format: int
107 107 default: 500
108 108 # Maximum size of files that can be displayed
109 109 # inline through the file viewer (in KB)
110 110 file_max_size_displayed:
111 111 format: int
112 112 default: 512
113 113 diff_max_lines_displayed:
114 114 format: int
115 115 default: 1500
116 116 enabled_scm:
117 117 serialized: true
118 118 default:
119 119 - Subversion
120 120 - Darcs
121 121 - Mercurial
122 122 - Cvs
123 123 - Bazaar
124 124 - Git
125 125 security_notifications: 1
126 126 autofetch_changesets:
127 127 default: 1
128 128 sys_api_enabled:
129 129 default: 0
130 130 security_notifications: 1
131 131 sys_api_key:
132 132 default: ''
133 133 security_notifications: 1
134 134 commit_cross_project_ref:
135 135 default: 0
136 136 commit_ref_keywords:
137 137 default: 'refs,references,IssueID'
138 138 commit_update_keywords:
139 139 serialized: true
140 140 default: []
141 141 commit_logtime_enabled:
142 142 default: 0
143 143 commit_logtime_activity_id:
144 144 format: int
145 145 default: 0
146 146 # autologin duration in days
147 147 # 0 means autologin is disabled
148 148 autologin:
149 149 format: int
150 150 default: 0
151 151 # date format
152 152 date_format:
153 153 default: ''
154 154 time_format:
155 155 default: ''
156 156 user_format:
157 157 default: :firstname_lastname
158 158 format: symbol
159 159 cross_project_issue_relations:
160 160 default: 0
161 161 # Enables subtasks to be in other projects
162 162 cross_project_subtasks:
163 163 default: 'tree'
164 164 parent_issue_dates:
165 165 default: 'derived'
166 166 parent_issue_priority:
167 167 default: 'derived'
168 168 parent_issue_done_ratio:
169 169 default: 'derived'
170 170 link_copied_issue:
171 171 default: 'ask'
172 172 issue_group_assignment:
173 173 default: 0
174 174 default_issue_start_date_to_creation_date:
175 175 default: 1
176 176 notified_events:
177 177 serialized: true
178 178 default:
179 179 - issue_added
180 180 - issue_updated
181 181 mail_handler_body_delimiters:
182 182 default: ''
183 183 mail_handler_excluded_filenames:
184 184 default: ''
185 185 mail_handler_api_enabled:
186 186 default: 0
187 187 security_notifications: 1
188 188 mail_handler_api_key:
189 189 default:
190 190 security_notifications: 1
191 191 issue_list_default_columns:
192 192 serialized: true
193 193 default:
194 194 - tracker
195 195 - status
196 196 - priority
197 197 - subject
198 198 - assigned_to
199 199 - updated_on
200 200 issue_list_default_totals:
201 201 serialized: true
202 202 default: []
203 203 display_subprojects_issues:
204 204 default: 1
205 205 issue_done_ratio:
206 206 default: 'issue_field'
207 207 default_projects_public:
208 208 default: 1
209 209 default_projects_modules:
210 210 serialized: true
211 211 default:
212 212 - issue_tracking
213 213 - time_tracking
214 214 - news
215 215 - documents
216 216 - files
217 217 - wiki
218 218 - repository
219 219 - boards
220 220 - calendar
221 221 - gantt
222 222 default_projects_tracker_ids:
223 223 serialized: true
224 default:
224 default:
225 225 # Role given to a non-admin user who creates a project
226 226 new_project_user_role_id:
227 227 format: int
228 228 default: ''
229 229 sequential_project_identifiers:
230 230 default: 0
231 231 # encodings used to convert repository files content to UTF-8
232 232 # multiple values accepted, comma separated
233 233 default_users_hide_mail:
234 234 default: 1
235 235 repositories_encodings:
236 236 default: ''
237 237 # encoding used to convert commit logs to UTF-8
238 238 commit_logs_encoding:
239 239 default: 'UTF-8'
240 240 repository_log_display_limit:
241 241 format: int
242 242 default: 100
243 243 ui_theme:
244 244 default: ''
245 245 emails_footer:
246 246 default: |-
247 247 You have received this notification because you have either subscribed to it, or are involved in it.
248 248 To change your notification preferences, please click here: http://hostname/my/account
249 249 gravatar_enabled:
250 250 default: 0
251 251 openid:
252 252 default: 0
253 253 security_notifications: 1
254 254 gravatar_default:
255 255 default: ''
256 256 start_of_week:
257 257 default: ''
258 258 rest_api_enabled:
259 259 default: 0
260 260 security_notifications: 1
261 261 jsonp_enabled:
262 262 default: 0
263 263 security_notifications: 1
264 264 default_notification_option:
265 265 default: 'only_my_events'
266 266 emails_header:
267 267 default: ''
268 268 thumbnails_enabled:
269 269 default: 0
270 270 thumbnails_size:
271 271 format: int
272 272 default: 100
273 273 non_working_week_days:
274 274 serialized: true
275 275 default:
276 276 - '6'
277 277 - '7'
General Comments 0
You need to be logged in to leave comments. Login now