Changes between Version 1 and Version 2 of TracCmdScript


Ignore:
Timestamp:
Sep 3, 2009, 2:46:29 AM (15 years ago)
Author:
Nic Ferrier
Comment:

adding more examples

Legend:

Unmodified
Added
Removed
Modified
  • TracCmdScript

    v1 v2  
    77 * reading wiki pages
    88 * editing wiki pages
     9  * from the shell, commit message style
    910 * reading tickets or ticket attributes
    1011 * creating tickets
     
    1213
    1314Everything is done via xmlrpc, the xmlrpc support must be enabled.
     15
     16We use traccmd at [http:://www.woome.com WooMe] to script releases and help build release candidates.
     17
    1418
    1519== Bugs/Feature Requests ==
     
    8185}}}
    8286
     87A 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 an rc:
     88
     89{{{
     90traccmd.py ticket $TICKETS \
     91  | sed -rne 's,^([0-9]+).*[^h](http(s)*://hg.woome.com/[^] ]+).*,\1 \2,p' \
     92  | awk '{print $2}' \
     93  | xargs hg in
     94}}}
     95
     96shows incomming patches from hg repos mentioned in $TICKETS.
    8397
    8498== Recent Changes ==