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