To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / config / settings.yml @ 1298:4f746d8966dd

History | View | Annotate | Download (4.84 KB)

1 1115:433d4f72a19b Chris
# Redmine - project management software
2 1295:622f24f53b42 Chris
# Copyright (C) 2006-2013  Jean-Philippe Lang
3 0:513646585e45 Chris
#
4
# This program is free software; you can redistribute it and/or
5
# modify it under the terms of the GNU General Public License
6
# as published by the Free Software Foundation; either version 2
7
# of the License, or (at your option) any later version.
8 1115:433d4f72a19b Chris
#
9 0:513646585e45 Chris
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
# GNU General Public License for more details.
13 1115:433d4f72a19b Chris
#
14 0:513646585e45 Chris
# You should have received a copy of the GNU General Public License
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.
17
18
19
# DO NOT MODIFY THIS FILE !!!
20
# Settings can be defined through the application in Admin -> Settings
21
22
app_title:
23
  default: Redmine
24
app_subtitle:
25
  default: Project management
26
welcome_text:
27
  default:
28 45:65d9e2cabaa3 luisf
tipoftheday_text:
29
    default:
30 47:22ae926000f9 luisf
notifications_text:
31
    default:
32 0:513646585e45 Chris
login_required:
33
  default: 0
34
self_registration:
35
  default: '2'
36
lost_password:
37
  default: 1
38 1115:433d4f72a19b Chris
unsubscribe:
39
  default: 1
40 0:513646585e45 Chris
password_min_length:
41
  format: int
42 1115:433d4f72a19b Chris
  default: 8
43
# Maximum lifetime of user sessions in minutes
44
session_lifetime:
45
  format: int
46
  default: 0
47
# User session timeout in minutes
48
session_timeout:
49
  format: int
50
  default: 0
51 0:513646585e45 Chris
attachment_max_size:
52
  format: int
53
  default: 5120
54
issues_export_limit:
55
  format: int
56
  default: 500
57
activity_days_default:
58
  format: int
59
  default: 30
60
per_page_options:
61
  default: '25,50,100'
62
mail_from:
63
  default: redmine@example.net
64
bcc_recipients:
65
  default: 1
66
plain_text_mail:
67
  default: 0
68
text_formatting:
69
  default: textile
70
cache_formatted_text:
71
  default: 0
72
wiki_compression:
73
  default: ""
74
default_language:
75
  default: en
76
host_name:
77
  default: localhost:3000
78
protocol:
79
  default: http
80
feeds_limit:
81
  format: int
82
  default: 15
83 117:af80e5618e9b Chris
gantt_items_limit:
84
  format: int
85
  default: 500
86 0:513646585e45 Chris
# Maximum size of files that can be displayed
87
# inline through the file viewer (in KB)
88
file_max_size_displayed:
89
  format: int
90
  default: 512
91
diff_max_lines_displayed:
92
  format: int
93
  default: 1500
94
enabled_scm:
95
  serialized: true
96 1115:433d4f72a19b Chris
  default:
97 0:513646585e45 Chris
  - Subversion
98
  - Darcs
99
  - Mercurial
100
  - Cvs
101
  - Bazaar
102
  - Git
103
autofetch_changesets:
104
  default: 1
105
sys_api_enabled:
106
  default: 0
107
sys_api_key:
108
  default: ''
109 1115:433d4f72a19b Chris
commit_cross_project_ref:
110
  default: 0
111 0:513646585e45 Chris
commit_ref_keywords:
112
  default: 'refs,references,IssueID'
113
commit_fix_keywords:
114
  default: 'fixes,closes'
115
commit_fix_status_id:
116
  format: int
117
  default: 0
118
commit_fix_done_ratio:
119
  default: 100
120 117:af80e5618e9b Chris
commit_logtime_enabled:
121
  default: 0
122
commit_logtime_activity_id:
123
  format: int
124
  default: 0
125 0:513646585e45 Chris
# autologin duration in days
126 1115:433d4f72a19b Chris
# 0 means autologin is disabled
127 0:513646585e45 Chris
autologin:
128
  format: int
129
  default: 0
130
# date format
131
date_format:
132
  default: ''
133
time_format:
134
  default: ''
135
user_format:
136
  default: :firstname_lastname
137
  format: symbol
138
cross_project_issue_relations:
139
  default: 0
140 1115:433d4f72a19b Chris
# Enables subtasks to be in other projects
141
cross_project_subtasks:
142
  default: 'tree'
143 909:cbb26bc654de Chris
issue_group_assignment:
144
  default: 0
145
default_issue_start_date_to_creation_date:
146
  default: 1
147 0:513646585e45 Chris
notified_events:
148
  serialized: true
149 1115:433d4f72a19b Chris
  default:
150 0:513646585e45 Chris
  - issue_added
151
  - issue_updated
152
mail_handler_body_delimiters:
153
  default: ''
154
mail_handler_api_enabled:
155
  default: 0
156
mail_handler_api_key:
157 1115:433d4f72a19b Chris
  default:
158 0:513646585e45 Chris
issue_list_default_columns:
159
  serialized: true
160 1115:433d4f72a19b Chris
  default:
161 0:513646585e45 Chris
  - tracker
162
  - status
163
  - priority
164
  - subject
165
  - assigned_to
166
  - updated_on
167
display_subprojects_issues:
168
  default: 1
169
issue_done_ratio:
170
  default: 'issue_field'
171
default_projects_public:
172
  default: 1
173
default_projects_modules:
174
  serialized: true
175 1115:433d4f72a19b Chris
  default:
176 0:513646585e45 Chris
  - issue_tracking
177
  - time_tracking
178
  - news
179
  - documents
180
  - files
181
  - wiki
182
  - repository
183
  - boards
184 14:1d32c0a0efbf Chris
  - calendar
185
  - gantt
186 1295:622f24f53b42 Chris
default_projects_tracker_ids:
187
  serialized: true
188
  default:
189 0:513646585e45 Chris
# Role given to a non-admin user who creates a project
190
new_project_user_role_id:
191
  format: int
192
  default: ''
193
sequential_project_identifiers:
194
  default: 0
195
# encodings used to convert repository files content to UTF-8
196
# multiple values accepted, comma separated
197
repositories_encodings:
198
  default: ''
199
# encoding used to convert commit logs to UTF-8
200
commit_logs_encoding:
201
  default: 'UTF-8'
202
repository_log_display_limit:
203
  format: int
204
  default: 100
205
ui_theme:
206
  default: ''
207
emails_footer:
208
  default: |-
209
    You have received this notification because you have either subscribed to it, or are involved in it.
210
    To change your notification preferences, please click here: http://hostname/my/account
211 1115:433d4f72a19b Chris
gravatar_enabled:
212 0:513646585e45 Chris
  default: 0
213
openid:
214
  default: 0
215
gravatar_default:
216
  default: ''
217
start_of_week:
218
  default: ''
219
rest_api_enabled:
220
  default: 0
221 1295:622f24f53b42 Chris
jsonp_enabled:
222
  default: 0
223 37:94944d00e43c chris
default_notification_option:
224
  default: 'only_my_events'
225
emails_header:
226
  default: ''
227 1115:433d4f72a19b Chris
thumbnails_enabled:
228
  default: 0
229
thumbnails_size:
230
  format: int
231
  default: 100
232
non_working_week_days:
233
  serialized: true
234
  default:
235
  - '6'
236
  - '7'