# HG changeset patch # User Jeff Hammel # Date 1294759831 28800 # Node ID d5da38fabdf76b612d5323ad70333982160b37cc # Parent bfab7367eb56d21449cd4d0e8d8ba851e3703b0e note command line options needed for variable handling diff -r bfab7367eb56 -r d5da38fabdf7 makeitso/makeitso.py --- a/makeitso/makeitso.py Mon Jan 10 21:49:43 2011 -0800 +++ b/makeitso/makeitso.py Tue Jan 11 07:30:31 2011 -0800 @@ -391,6 +391,22 @@ parser.add_option('-o', '--output', dest='output', help='where to put the output (filename or directory)') + # TODO + # options for (.ini) variables +# parser.add_option('-c', '--config', dest='config' +# default=[], action='append', +# help='.ini config files to read variables from') +# parser.add_option('--no-defaults', dest='use_defaults', +# default=True, action='store_false', +# help="don't read ~/.makeitso") # XXX should only be displayed if ~/.makeitso exists +# parser.add_option('-u', '--update', dest='update', +# help="update the specified .ini file for variables read from this run") +# parser.add_option('-U', '--Update', dest='Update', +# help="same as -u, but update the global [DEFAULTS] section") +# parser.add_option('--dry-run', dest='dry_run', +# default=False, action='store_true', +# help="don't actually do the substitution but do everything else") + # options for getting information parser.add_option('--commandline', dest='commandline', action='store_true', default=False,