Changes between Version 36 and Version 37 of TracTicketTemplatePlugin


Ignore:
Timestamp:
Jun 7, 2014, 3:38:05 AM (10 years ago)
Author:
Ryan J Ollos
Comment:

Added syntax highlighting.

Legend:

Unmodified
Added
Removed
Modified
  • TracTicketTemplatePlugin

    v36 v37  
     1[[PageOutline(2-5,Contents,pullout)]]
    12= Trac Ticket Template =
    2 [[TOC]]
     3
    34 SEE:'''ZoomQuiet''' ~ Collection KSPEG Trac hacking
    45
     
    4546 1. Uninstall this plugin if you have installed before.
    4647
    47  2. Change to the directory containning setup.py.
     48 2. Change to the directory containing `setup.py`.
    4849 
    4950 * (Optional): If you are using Trac 0.12 with i18n, you should compile language files here:
    50  {{{
     51 {{{#!sh
    5152python setup.py compile_catalog -f
    5253}}}
     
    5859  * python setup.py bdist_egg
    5960  * copy the generated egg file to the trac instance's plugin directory
    60   {{{
     61  {{{#!sh
    6162cp dist/*.egg /srv/trac/env/plugins
    6263}}}
    6364
    6465 5. Config trac.ini:
    65   {{{
     66  {{{#!ini
    6667[components]
    6768tickettemplate.* = enabled
     
    8586If you can't find the language you want, you could do it yourself.
    8687 1. Init your language catalog, take et_EE for example:
    87 {{{
     88 {{{#!sh
    8889python setup.py init_catalog -l et_EE
    8990}}}
    9091 1. Update catalog
    91  {{{
     92 {{{#!sh
    9293python setup.py update_catalog -l et_EE
    9394}}}
     
    9596  * Note: this .po file should be saved with UTF8 encoding.
    9697 1. Update catalog again, for normalizing the manual edits:
    97  {{{
     98 {{{#!sh
    9899python setup.py update_catalog -l et_EE
    99100}}}
    100101 1. Generate the compiled catalog:
    101  {{{
     102 {{{#!sh
    102103python setup.py compile_catalog -f
    103104}}}