##// END OF EJS Templates
Fixed settings.yml syntax (yaml parsing fails with JRuby 1.0.3: #606)....
Jean-Philippe Lang -
r1110:68d3305ae22a
parent child
Show More
@@ -1,111 +1,111
1 1 # redMine - project management software
2 2 # Copyright (C) 2006-2007 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 self_registration:
31 31 default: '2'
32 32 lost_password:
33 33 default: 1
34 34 attachment_max_size:
35 35 format: int
36 36 default: 5120
37 37 issues_export_limit:
38 38 format: int
39 39 default: 500
40 40 per_page_options:
41 41 default: '25,50,100'
42 42 mail_from:
43 43 default: redmine@somenet.foo
44 44 bcc_recipients:
45 45 default: 1
46 46 text_formatting:
47 47 default: textile
48 48 wiki_compression:
49 49 default: ""
50 50 default_language:
51 51 default: en
52 52 host_name:
53 53 default: localhost:3000
54 54 protocol:
55 55 default: http
56 56 feeds_limit:
57 57 format: int
58 58 default: 15
59 59 autofetch_changesets:
60 60 default: 1
61 61 sys_api_enabled:
62 62 default: 0
63 63 commit_ref_keywords:
64 64 default: 'refs,references,IssueID'
65 65 commit_fix_keywords:
66 66 default: 'fixes,closes'
67 67 commit_fix_status_id:
68 68 format: int
69 69 default: 0
70 70 commit_fix_done_ratio:
71 71 default: 100
72 72 # autologin duration in days
73 73 # 0 means autologin is disabled
74 74 autologin:
75 75 format: int
76 76 default: 0
77 77 # date format
78 78 date_format:
79 79 default: ''
80 80 time_format:
81 81 default: ''
82 82 user_format:
83 83 default: :firstname_lastname
84 84 format: symbol
85 85 cross_project_issue_relations:
86 86 default: 0
87 87 notified_events:
88 88 serialized: true
89 default: --
89 default:
90 90 - issue_added
91 91 - issue_updated
92 92 issue_list_default_columns:
93 93 serialized: true
94 default: --
94 default:
95 95 - tracker
96 96 - status
97 97 - priority
98 98 - subject
99 99 - assigned_to
100 100 - updated_on
101 101 # encodings used to convert repository files content to UTF-8
102 102 # multiple values accepted, comma separated
103 103 repositories_encodings:
104 104 default: ''
105 105 ui_theme:
106 106 default: ''
107 107 emails_footer:
108 108 default: |-
109 109 You have received this notification because you have either subscribed to it, or are involved in.
110 110 To change your notification preferences, please click here: http://hostname/my/account
111 111 No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now