LEFT | RIGHT |
1 # -*- coding: utf-8 -*- | 1 # -*- coding: utf-8 -*- |
2 | 2 |
3 [attachment] | 3 [attachment] |
4 max_size = 10262144 | 4 max_size = 10262144 |
5 max_zip_size = 12097152 | 5 max_zip_size = 12097152 |
6 render_unsafe_content = false | 6 render_unsafe_content = false |
7 | 7 |
8 [browser] | 8 [browser] |
9 color_scale = True | 9 color_scale = True |
10 downloadable_paths = /trunk, /branches/*, /tags/* | 10 downloadable_paths = /trunk, /branches/*, /tags/* |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 | 45 |
46 [mimeviewer] | 46 [mimeviewer] |
47 max_preview_size = 262144 | 47 max_preview_size = 262144 |
48 mime_map = text/x-dylan:dylan, text/x-idl:ice, text/x-ada:ads:adb | 48 mime_map = text/x-dylan:dylan, text/x-idl:ice, text/x-ada:ads:adb |
49 mime_map_patterns = text/plain:README|INSTALL|COPYING.* | 49 mime_map_patterns = text/plain:README|INSTALL|COPYING.* |
50 tab_width = 8 | 50 tab_width = 8 |
51 treat_as_binary = application/octet-stream, application/pdf, application/postscr
ipt, application/msword,application/rtf, | 51 treat_as_binary = application/octet-stream, application/pdf, application/postscr
ipt, application/msword,application/rtf, |
52 | 52 |
53 [notification] | 53 [notification] |
54 admit_domains = | 54 admit_domains = |
55 always_notify_owner = false | 55 always_notify_owner = true |
56 always_notify_reporter = false | 56 always_notify_reporter = true |
57 always_notify_updater = false | 57 always_notify_updater = false |
58 ambiguous_char_width = single | 58 ambiguous_char_width = single |
59 batch_subject_template = $prefix Batch modify: $tickets_descr | 59 batch_subject_template = $prefix Batch modify: $tickets_descr |
60 email_sender = SendmailEmailSender | 60 email_sender = SendmailEmailSender |
61 ignore_domains = | 61 ignore_domains = |
62 mime_encoding = none | 62 mime_encoding = none |
63 sendmail_path = /usr/sbin/sendmail | 63 sendmail_path = /usr/sbin/sendmail |
64 smtp_always_bcc = | 64 smtp_always_bcc = |
65 smtp_always_cc = | 65 smtp_always_cc = |
66 smtp_default_domain = | 66 smtp_default_domain = |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 verify_email = true | 258 verify_email = true |
259 | 259 |
260 [blackmagic] | 260 [blackmagic] |
261 permissions = TICKET_SET_PRIORITY, TICKET_CREATE_CC, TICKET_EDIT_KEYWORDS,TICKET
_SET_OWNER, TICKET_SET_MILESTONE, TICKET_DEPENDENCY | 261 permissions = TICKET_SET_PRIORITY, TICKET_CREATE_CC, TICKET_EDIT_KEYWORDS,TICKET
_SET_OWNER, TICKET_SET_MILESTONE, TICKET_DEPENDENCY |
262 tweaks = id, priority, cc, keywords, owner, sensitive, milestone, blocking,block
edby,summary,type,component,verified_working,ready,review_url,in_progress | 262 tweaks = id, priority, cc, keywords, owner, sensitive, milestone, blocking,block
edby,summary,type,component,verified_working,ready,review_url,in_progress |
263 id.label = Issue | 263 id.label = Issue |
264 priority.permission = TICKET_SET_PRIORITY | 264 priority.permission = TICKET_SET_PRIORITY |
265 priority.ondenial = hide | 265 priority.ondenial = hide |
266 ready.permission = TICKET_MODIFY | 266 ready.permission = TICKET_MODIFY |
267 ready.ondenial = hide | 267 ready.ondenial = hide |
| 268 ready.tip = Check, if the issue contains all required data and shall be implemen
ted. |
268 review_url.permission = TICKET_MODIFY | 269 review_url.permission = TICKET_MODIFY |
269 review_url.ondenial = hide | 270 review_url.ondenial = hide |
| 271 review_url.tip = URL(s) to the review of your code |
270 in_progress.permission = TICKET_MODIFY | 272 in_progress.permission = TICKET_MODIFY |
271 in_progress.ondenial = hide | 273 in_progress.ondenial = hide |
| 274 in_progress.tip = Check, if somebody is currently working on this issue. |
272 blocking.permission = TICKET_DEPENDENCY | 275 blocking.permission = TICKET_DEPENDENCY |
273 blocking.ondenial = hide | 276 blocking.ondenial = hide |
274 blockedby.permission = TICKET_DEPENDENCY | 277 blockedby.permission = TICKET_DEPENDENCY |
275 blockedby.ondenial = hide | 278 blockedby.ondenial = hide |
276 priority.permission = TICKET_SET_PRIORITY | 279 priority.permission = TICKET_SET_PRIORITY |
277 cc.permission = TICKET_CREATE_CC | 280 cc.permission = TICKET_CREATE_CC |
278 cc.ondenial = hide | 281 cc.ondenial = hide |
279 keywords.permission = TICKET_EDIT_KEYWORDS | 282 keywords.permission = TICKET_EDIT_KEYWORDS |
280 keywords.ondenial = hide | 283 keywords.ondenial = hide |
281 owner.label = Assignee | 284 owner.label = Assignee |
(...skipping 21 matching lines...) Expand all Loading... |
303 ready = checkbox | 306 ready = checkbox |
304 ready.label = Ready | 307 ready.label = Ready |
305 ready.value = 0 | 308 ready.value = 0 |
306 in_progress = checkbox | 309 in_progress = checkbox |
307 in_progress.label = In progress | 310 in_progress.label = In progress |
308 in_progress.value = 0 | 311 in_progress.value = 0 |
309 blocking = text | 312 blocking = text |
310 blocking.label = Blocking | 313 blocking.label = Blocking |
311 blockedby = text | 314 blockedby = text |
312 blockedby.label = Blocked By | 315 blockedby.label = Blocked By |
313 review_url = text | 316 review_url = textarea |
314 review_url.label = Review URL | 317 review_url.rows = 3 |
| 318 review_url.label = Review URL(s) |
315 review_url.order = 1 | 319 review_url.order = 1 |
| 320 review_url.format = wiki |
LEFT | RIGHT |