Changes between Initial Version and Version 4 of Ticket #4486
- Timestamp:
- Dec 16, 2016, 7:50:19 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #4486
- Property Owner Culapov Andrei deleted
-
Ticket #4486 – Description
initial v4 3 3 4 4 == What were you doing when the problem occured? == 5 1. edit svnpolicy.conf 6 2. setup.py bdist_egg 7 3. cp dist/TracSVNPoliciesPlugin-0.2-py2.5.egg /path/to/tracroot/plugins 8 4. edit /path/to/tracroot/conf/trac.ini 9 10 5 1. edit `svnpolicy.conf` 6 2. `python setup.py bdist_egg` 7 3. `cp dist/TracSVNPoliciesPlugin-0.2-py2.5.egg /path/to/tracroot/plugins` 8 4. edit `/path/to/tracroot/conf/trac.ini` 9 5. enable "Require log messages for commits" on the Administration UI 10 6. try to commit something without a log message 11 11 12 12 == What happened? What did you expect to happen instead? == 13 {{{ 13 {{{#!sh 14 14 Traceback (most recent call last): 15 15 File "./hooks/pre-commit", line 3, in <module> … … 26 26 == Any additional info? == 27 27 Patch the following file like this: 28 {{{ 28 {{{#!patch 29 29 Index: svnpolicies/api.py 30 30 =================================================================== … … 42 42 }}} 43 43 or change 44 {{{ 44 {{{#!sh 45 45 /path/to/tracroot/plugins 46 46 }}} 47 manual y to something like this48 {{{ 47 manually to something like this 48 {{{#!sh 49 49 /path/to/tracroot/plugins/TracSVNPoliciesPlugin-0.2-py2.5.egg 50 50 }}}