Changes between Version 55 and Version 56 of TicketImportPlugin


Ignore:
Timestamp:
Nov 23, 2015, 3:47:00 PM (8 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • TicketImportPlugin

    v55 v56  
    3333== Download
    3434
    35 You can also the zipped source from [download:ticketimportplugin here].
     35You can also the zipped source from [export:ticketimportplugin here].
    3636
    3737== Source
    3838
    39 You can check out TicketImportPlugin from [http://trac-hacks.org/svn/ticketimportplugin here] using Subversion, or [source:ticketimportplugin browse the source] with Trac.
     39You can check out TicketImportPlugin from [/svn/ticketimportplugin here] using Subversion, or [source:ticketimportplugin browse the source] with Trac.
    4040
    4141== Japanese localization
     
    4848
    4949For a machine-wide installation, run as root on your machine:
    50   * `easy_install http://trac-hacks.org/svn/ticketimportplugin/0.10` for Trac 0.10, or
    51   * `easy_install http://trac-hacks.org/svn/ticketimportplugin/0.11` for Trac 0.11 or 0.12.
     50 * `easy_install http://trac-hacks.org/svn/ticketimportplugin/0.10` for Trac 0.10, or
     51 * `easy_install http://trac-hacks.org/svn/ticketimportplugin/0.11` for Trac 0.11 or 0.12.
    5252
    5353=== Trac instance installation
    5454
    5555For an installation for only one Trac instance (on Trac 0.10, requires the Admin plugin):
    56   * Download the code (requires Subversion):
     56 * Download the code (requires Subversion):
    5757   `svn co http://trac-hacks.org/svn/ticketimportplugin/0.10 ticketimportplugin` for Trac 0.10, or
    5858   `svn co http://trac-hacks.org/svn/ticketimportplugin/0.11 ticketimportplugin` for Trac 0.11 or 0.12
    59   * Build by hand:
     59 * Build by hand:
    6060   ` cd ticketimportplugin; python setup.py bdist_egg`
    61   * Install the egg created in the `dist` folder using the Admin UI in Trac.
     61 * Install the egg created in the `dist` folder using the Admin UI in Trac.
    6262
    6363=== xlrd installation (optional)
     
    7373== Configuration
    7474
    75 Restart Trac or your Apache server. The "!TicketImport" plugin should now appear in the "Manage Plugins" page of the Admin tab. Enable it. If you don't have the Admin plugin (on 0.10), you need to enable the plugin by putting in your trac.ini file:
     75Restart Trac or your Apache server. The "!TicketImport" plugin should now appear in the "Manage Plugins" page of the Admin tab. Enable it. If you don't have the Admin plugin (on 0.10), you need to enable the plugin by putting in your `trac.ini` file:
    7676
    7777{{{#!ini
     
    8282This file can be found under the "conf" directory of your Trac instance.
    8383
    84 Then, you need to give some user(s) the right to use the Import module. To do that, you must give them '''IMPORT_EXECUTE''' permission, either in the Admin UI (on 0.11) or with the admin command-line tool, like this:
     84Then, you need to give some user(s) the right to use the Import module. To do that, you must give them the `IMPORT_EXECUTE` permission, either in the Admin UI (on 0.11) or with the admin command-line tool, like this:
    8585{{{#!sh
    8686trac-admin /your/trac/installation/folder permission add your_user IMPORT_EXECUTE
     
    104104datetime_format = ....
    105105}}}
     106
    106107The format is the Python [http://docs.python.org/library/time.html#time.strftime fstrtime].
    107108