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_MODIFY | 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_MODIFY | 37 ordered.permissions = TICKET_ADMIN |
38 received = problem,ordered -> received | 38 received = waiting for payment,problem,ordered -> received |
39 received.permissions = TICKET_MODIFY | 39 received.permissions = TICKET_ADMIN |
40 handedout = problem,received -> handedout | 40 handedout = problem,received -> handedout |
41 handedout.permissions = TICKET_MODIFY | 41 handedout.permissions = TICKET_ADMIN |
42 receiptreceived = problem,received -> receiptreceived | |
43 receiptreceived.permissions = TICKET_MODIFY | |
44 problem = * -> problem | 42 problem = * -> problem |
45 problem.permissions = TICKET_MODIFY | 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_MODIFY | 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 |
(...skipping 149 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 |