Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 # -*- coding: utf-8 -*- | 1 # -*- coding: utf-8 -*- |
2 | 2 |
3 [inherit] | 3 [inherit] |
4 file = /home/trac/trac.ini | 4 file = /home/trac/trac.ini |
5 | 5 |
6 [header_logo] | 6 [header_logo] |
7 alt = <%= @description %> | 7 alt = <%= @description %> |
8 height = 38 | 8 height = 38 |
9 link = /orders | 9 link = /orders |
10 src = eyeo_logo.png | 10 src = logo.png |
11 width = 124 | 11 width = 124 |
12 | 12 |
13 [notification] | 13 [notification] |
14 smtp_from = noreply@eyeo.com | 14 smtp_from = noreply@eyeo.com |
15 smtp_from_name = <%= @description %> | 15 smtp_from_name = <%= @description %> |
16 | 16 |
17 [project] | 17 [project] |
18 descr = <%= @description %> | 18 descr = <%= @description %> |
19 name = <%= @description %> | 19 name = <%= @description %> |
20 url = https://issues.adblockplus.org/orders | 20 url = https://issues.adblockplus.org/orders |
21 | 21 |
22 [ticket-workflow] | 22 [ticket-workflow] |
23 leave = * -> * | 23 leave = * -> * |
24 leave.default = 1 | 24 leave.default = 1 |
25 leave.operations = leave_status | 25 leave.operations = leave_status |
26 reassign = * -> * | 26 reassign = * -> * |
27 reassign.operations = set_owner | 27 reassign.operations = set_owner |
28 reopen = closed -> reopened | 28 reopen = closed -> reopened |
29 reopen.operations = del_resolution | 29 reopen.operations = del_resolution |
30 reopen.permissions = TICKET_CREATE | 30 reopen.permissions = TICKET_CREATE |
31 resolve = * -> closed | 31 resolve = * -> closed |
32 resolve.operations = set_resolution | 32 resolve.operations = set_resolution |
33 resolve.permissions = TICKET_ADMIN | 33 resolve.permissions = TICKET_ADMIN |
34 accepted = new,reopened -> accepted | 34 accepted = new,reopened -> accepted |
35 accepted.permissions = TICKET_ACCEPT | 35 accepted.permissions = TICKET_ACCEPT |
36 ordered = problem,accepted -> ordered | 36 ordered = problem,accepted -> ordered |
37 ordered.permissions = TICKET_ADMIN | 37 ordered.permissions = TICKET_ADMIN |
38 received = problem,ordered -> received | 38 received = waiting for payment,problem,ordered -> received |
39 received.permissions = TICKET_ADMIN | 39 received.permissions = TICKET_ADMIN |
40 handedout = problem,received -> handedout | 40 handedout = problem,received -> handedout |
41 handedout.permissions = TICKET_ADMIN | 41 handedout.permissions = TICKET_ADMIN |
42 receiptreceived = problem,received -> receiptreceived | |
43 receiptreceived.permissions = TICKET_ADMIN | |
44 problem = * -> problem | 42 problem = * -> problem |
45 problem.permissions = TICKET_ADMIN | 43 problem.permissions = TICKET_ADMIN |
46 waiting for payment = ordered,received,handedout -> waiting for payment | 44 waiting for payment = ordered,received,handedout -> waiting for payment |
47 waiting for payment.permissions = TICKET_ADMIN | 45 waiting for payment.permissions = TICKET_ADMIN |
48 | 46 |
49 [trac] | 47 [trac] |
50 auth_cookie_lifetime = 0 | 48 auth_cookie_lifetime = 0 |
51 auth_cookie_path = / | 49 auth_cookie_path = / |
52 authz_file = | 50 authz_file = |
53 authz_module_name = | 51 authz_module_name = |
54 auto_preview_timeout = 2.0 | 52 auto_preview_timeout = 2.0 |
55 auto_reload = False | 53 auto_reload = False |
56 backup_dir = db | 54 backup_dir = db |
57 base_url = https://issues.adblockplus.org/orders | 55 base_url = https://issues.adblockplus.org/orders |
58 check_auth_ip = false | 56 check_auth_ip = false |
59 database = mysql://trac:<%= @database_password %>@localhost:3306/<%= @database % > | 57 database = mysql://trac:<%= @database_password %>@localhost:3306/<%= @database % > |
60 debug_sql = True | 58 debug_sql = False |
Wladimir Palant
2014/07/31 09:46:53
Debugging left-over? I don't think we want this in
mathias
2014/08/01 13:59:46
Removed.
| |
61 default_charset = utf-8 | 59 default_charset = utf-8 |
62 default_dateinfo_format = relative | 60 default_dateinfo_format = relative |
63 default_handler = QueryModule | 61 default_handler = QueryModule |
64 genshi_cache_size = 128 | 62 genshi_cache_size = 128 |
65 htdocs_location = | 63 htdocs_location = |
66 ignore_auth_case = false | 64 ignore_auth_case = false |
67 jquery_location = | 65 jquery_location = |
68 jquery_ui_location = | 66 jquery_ui_location = |
69 jquery_ui_theme_location = | 67 jquery_ui_theme_location = |
70 mainnav = tickets, newticket, timeline, browser, search | 68 mainnav = tickets, newticket, timeline, browser, search |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
207 invoice_received.label = Invoice received | 205 invoice_received.label = Invoice received |
208 invoice_received.order = 11 | 206 invoice_received.order = 11 |
209 invoice_received.value = 0 | 207 invoice_received.value = 0 |
210 amount = text | 208 amount = text |
211 amount.label = Amount | 209 amount.label = Amount |
212 amount.format = plain | 210 amount.format = plain |
213 amount.order = 5 | 211 amount.order = 5 |
214 | 212 |
215 [privatetickets] | 213 [privatetickets] |
216 group_blacklist = anonymous, authenticated | 214 group_blacklist = anonymous, authenticated |
LEFT | RIGHT |