Changes between Version 12 and Version 13 of TracCmdScript


Ignore:
Timestamp:
Sep 6, 2017, 9:19:32 AM (7 years ago)
Author:
figaro
Comment:

Moved example to description

Legend:

Unmodified
Added
Removed
Modified
  • TracCmdScript

    v12 v13  
    99Key features:
    1010 * reading wiki pages
    11  * editing wiki pages
    12   * from the shell, commit message style
     11 * editing wiki pages from the shell, commit message style
    1312 * reading tickets or ticket attributes
    1413 * creating tickets
     
    1716A wrapper for editing wiki pages directly inside emacs is also included, though this is rudimentary.
    1817
    19 == Bugs/Feature Requests
    20 
    21 Existing bugs and feature requests for TracCmdScript are
    22 [report:9?COMPONENT=TracCmdScript here].
    23 
    24 If you have any issues, create a
    25 [/newticket?component=TracCmdScript new ticket].
    26 
    27 [[TicketQuery(component=TracCmdScript&group=type,format=progress)]]
    28 
    29 == Download
    30 
    31 Download the zipped source from [export:traccmdscript here].
    32 
    33 == Source
    34 
    35 You can check out TracCmdScript from [/svn/traccmdscript here] using Subversion, or [source:traccmdscript browse the source] with Trac.
    36 
    37 == Installation
    38 
    39 The xmlrpc support must be enabled by installing XmlRpcPlugin, as everything is done via xmlrpc.
    40 
    41 == Example
     18See the following examples:
    4219
    4320Getting a ticket:
     
    9471A more complex example is the use in a release candidate maker, where a number of repos in a distributed revision control system are pulled together to make a release candidate:
    9572
    96 {{{
     73{{{#!sh
    9774traccmd.py ticket $TICKETS \
    9875  | sed -rne 's,^([0-9]+).*[^h](http(s)*://hg.woome.com/[^] ]+).*,\1 \2,p' \
     
    10279
    10380This shows incoming patches from hg repos mentioned in $TICKETS.
     81
     82== Bugs/Feature Requests
     83
     84Existing bugs and feature requests for TracCmdScript are
     85[report:9?COMPONENT=TracCmdScript here].
     86
     87If you have any issues, create a
     88[/newticket?component=TracCmdScript new ticket].
     89
     90[[TicketQuery(component=TracCmdScript&group=type,format=progress)]]
     91
     92== Download
     93
     94Download the zipped source from [export:traccmdscript here].
     95
     96== Source
     97
     98You can check out TracCmdScript from [/svn/traccmdscript here] using Subversion, or [source:traccmdscript browse the source] with Trac.
     99
     100== Installation
     101
     102General instructions on installing Trac plugins can be found on the [TracPlugins#InstallingaTracplugin TracPlugins] page.
     103
     104The xmlrpc support must be enabled by installing XmlRpcPlugin, as everything is done via xmlrpc.
    104105
    105106== Recent Changes