Package svnmailer :: Module cli
[show private | hide private]
[frames | no frames]

Module svnmailer.cli

The svnmailer provides two different command line interfaces. On the one hand there's the compatibility command line to the mailer.py script, which has some limitations and problems because of its unflexibility. On the other hand you'll find the new-style command line, which contains no subcommands and fixed parameters at all.

The CLI simply transforms old-style command lines to the new format internally and processes these further using the optparse module:

   svn-mailer commit <rep> <rev> [<config>]
-> svn-mailer --commit --repository <rep> --revision <rev>
             [--config <config>]

   svn-mailer propchange <rep> <rev> <author> <prop> [<conf>]
-> svn-mailer --propchange --repository <rep> --revision <rev>
              --author <author> --propname <prop>
             [--config <conf>]

   # (available with svn 1.2 and later)
   svn-mailer propchange2 <rep> <rev> <author> <prop> <action> [<conf>]
-> svn-mailer --propchange --repository <rep> --revision <rev>
              --author <author> --propname <prop> --action <action>
             [--config <conf>]

   svn-mailer lock <rep> <author> [<conf>]
-> svn-mailer --lock --repository <rep> --author <author>
             [--config <conf>]

   svn-mailer unlock <rep> <author> [<conf>]
-> svn-mailer --unlock --repository <rep> --author <author>
             [--config <conf>]

Classes
OptionParser Fully initialized option parser

Exceptions
CommandlineError Error in commandline
Error Base exception for this module

Generated by Epydoc 2.0 on Sun Sep 25 20:49:05 2005 http://epydoc.sf.net