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 = logo.png | 10 src = logo.png |
(...skipping 17 matching lines...) Expand all Loading... | |
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 |
Wladimir Palant
2014/08/01 13:56:08
Is removing of the receiptreceived state intention
mathias
2014/08/01 16:25:03
It is, yes. Phill and Christian do not see any nee
| |
42 problem = * -> problem | 42 problem = * -> problem |
43 problem.permissions = TICKET_ADMIN | 43 problem.permissions = TICKET_ADMIN |
44 waiting for payment = ordered,received,handedout -> waiting for payment | 44 waiting for payment = ordered,received,handedout -> waiting for payment |
45 waiting for payment.permissions = TICKET_ADMIN | 45 waiting for payment.permissions = TICKET_ADMIN |
46 | 46 |
47 [trac] | 47 [trac] |
48 auth_cookie_lifetime = 0 | 48 auth_cookie_lifetime = 0 |
49 auth_cookie_path = / | 49 auth_cookie_path = / |
50 authz_file = | 50 authz_file = |
51 authz_module_name = | 51 authz_module_name = |
52 auto_preview_timeout = 2.0 | 52 auto_preview_timeout = 2.0 |
53 auto_reload = False | 53 auto_reload = False |
54 backup_dir = db | 54 backup_dir = db |
55 base_url = https://issues.adblockplus.org/orders | 55 base_url = https://issues.adblockplus.org/orders |
56 check_auth_ip = false | 56 check_auth_ip = false |
57 database = mysql://trac:<%= @database_password %>@localhost:3306/<%= @database % > | 57 database = mysql://trac:<%= @database_password %>@localhost:3306/<%= @database % > |
58 debug_sql = True | 58 debug_sql = False |
Wladimir Palant
2014/08/01 13:56:08
Not addressed:
On 2014/07/31 09:46:53, Wladimir P
mathias
2014/08/01 16:25:03
Removed (it was only addressed in the other ini te
| |
59 default_charset = utf-8 | 59 default_charset = utf-8 |
60 default_dateinfo_format = relative | 60 default_dateinfo_format = relative |
61 default_handler = QueryModule | 61 default_handler = QueryModule |
62 genshi_cache_size = 128 | 62 genshi_cache_size = 128 |
63 htdocs_location = | 63 htdocs_location = |
64 ignore_auth_case = false | 64 ignore_auth_case = false |
65 jquery_location = | 65 jquery_location = |
66 jquery_ui_location = | 66 jquery_ui_location = |
67 jquery_ui_theme_location = | 67 jquery_ui_theme_location = |
68 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... | |
205 invoice_received.label = Invoice received | 205 invoice_received.label = Invoice received |
206 invoice_received.order = 11 | 206 invoice_received.order = 11 |
207 invoice_received.value = 0 | 207 invoice_received.value = 0 |
208 amount = text | 208 amount = text |
209 amount.label = Amount | 209 amount.label = Amount |
210 amount.format = plain | 210 amount.format = plain |
211 amount.order = 5 | 211 amount.order = 5 |
212 | 212 |
213 [privatetickets] | 213 [privatetickets] |
214 group_blacklist = anonymous, authenticated | 214 group_blacklist = anonymous, authenticated |
LEFT | RIGHT |