Changes between Initial Version and Version 1 of TracCmdScript


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

New hack TracCmdScript, created by nicferrier

Legend:

Unmodified
Added
Removed
Modified
  • TracCmdScript

    v1 v1  
     1= command line interface to obvious trac things =
     2
     3== Description ==
     4
     5traccmd is a simple interface to the most obvious trac functions:
     6
     7 * reading wiki pages
     8 * editing wiki pages
     9 * reading tickets or ticket attributes
     10 * creating tickets
     11 * updating ticket attributes
     12
     13Everything is done via xmlrpc, the xmlrpc support must be enabled.
     14
     15== Bugs/Feature Requests ==
     16
     17Existing bugs and feature requests for TracCmdScript are
     18[report:9?COMPONENT=TracCmdScript here].
     19
     20If you have any issues, create a
     21[http://trac-hacks.org/newticket?component=TracCmdScript&owner=nicferrier new ticket].
     22
     23== Download ==
     24
     25Download the zipped source from [download:traccmdscript here].
     26
     27== Source ==
     28
     29You can check out TracCmdScript from [http://trac-hacks.org/svn/traccmdscript here] using Subversion, or [source:traccmdscript browse the source] with Trac.
     30
     31== Example ==
     32
     33getting a ticket
     34
     35{{{
     36$ traccmd.py ticket 3567
     371 status reopened
     381 type defect
     391 description Test patch
     401 description
     411 description Something went tits. Fix it!
     421 reporter admin
     431 cc
     441 ticket_status sign off requested
     451 component tech.homepage
     461 summary Test patch
     471 priority minor
     481 owner nferrier
     491 version
     501 milestone
     511 keywords
     521 resolution fixed
     53}}}
     54
     55getting a ticket attribute:
     56
     57{{{
     58$ traccmd.py ticket 1 resolution
     59#1 resolution: fixed
     60}}}
     61
     62getting a wiki page:
     63
     64{{{
     65$ traccmd.py wiki TracGuide | head -n15
     66(:tracwikiproperties (
     67:comment ""
     68:lastModified "20090410T15:29:13"
     69:version "2"
     70:name "TracGuide"
     71:author "trac"
     72))
     73= The Trac User and Administration Guide =
     74[[TracGuideToc]]
     75
     76The TracGuide is meant to serve as a starting point for all documentation regarding Trac usage and development. The guide is a free document, a collaborative effort, and a part of the [http://trac.edgewall.org Trac Project] itself.
     77
     78== Table of Contents ==
     79Currently available documentation:
     80 * TracGuide (This page)  -- Documentation starting point.
     81}}}
     82
     83
     84== Recent Changes ==
     85
     86[[ChangeLog(traccmdscript, 3)]]
     87
     88== Author/Contributors ==
     89
     90'''Author:''' [wiki:nicferrier] [[BR]]
     91'''Contributors:'''