diff options
author | Ralph Amissah <ralph@amissah.com> | 2007-10-09 12:16:40 +0100 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2007-10-09 12:16:40 +0100 |
commit | 73ab0fc4648dc6791890adcf040a4c45ae18d298 (patch) | |
tree | 1300eb49440dc30fce4dbfed4d38a39fdc1925df | |
parent | dal, permit writing of note before and after autogen of available outputs sho... (diff) |
command line processing shortcuts changed
-1 does only -hwpoyv and (obsoleted) -A changed in sysenv with -a
-rw-r--r-- | conf/sisu/sisurc.yml | 1 | ||||
-rw-r--r-- | data/doc/sisu/sisu_markup_samples/sisu_manual/_sisu/sisurc.yml | 2 | ||||
-rw-r--r-- | lib/sisu/v0/sysenv.rb | 12 |
3 files changed, 8 insertions, 7 deletions
diff --git a/conf/sisu/sisurc.yml b/conf/sisu/sisurc.yml index 3ed56c96..611548b6 100644 --- a/conf/sisu/sisurc.yml +++ b/conf/sisu/sisurc.yml @@ -55,6 +55,7 @@ show_output_on: 'filesystem_url' flag: color: true # making colour default -c is toggle, and will now toggle colour off default: '-NhwpoabxXyYv' # includes verbose; -m would in any event be run by default + i: '-hwpoyv' # includes verbose; -m run by default i: '-Nhwpoayv' # includes verbose; -m run by default ii: '-NhwpoabxXyv' # includes verbose; -m run by default iii: '-NhwpoabxXyYv' # includes verbose; -m run by default diff --git a/data/doc/sisu/sisu_markup_samples/sisu_manual/_sisu/sisurc.yml b/data/doc/sisu/sisu_markup_samples/sisu_manual/_sisu/sisurc.yml index 376b79e3..0948ffd6 100644 --- a/data/doc/sisu/sisu_markup_samples/sisu_manual/_sisu/sisurc.yml +++ b/data/doc/sisu/sisu_markup_samples/sisu_manual/_sisu/sisurc.yml @@ -59,7 +59,7 @@ processing: flag: color: true # making colour default -c is toggle, and will now toggle colour off default: '-NhwpoabxXyYv' # includes verbose; -m would in any event be run by default - i: '-Nhwpoayv' # includes verbose; -m run by default + i: '-hwpoyv' # includes verbose; -m run by default ii: '-NhwpoabxXyv' # includes verbose; -m run by default iii: '-NhwpoabxXyYv' # includes verbose; -m run by default iv: '-NhwpoabxXYDyv --import' # includes verbose; -m run by default diff --git a/lib/sisu/v0/sysenv.rb b/lib/sisu/v0/sysenv.rb index fd3f5be2..48161592 100644 --- a/lib/sisu/v0/sysenv.rb +++ b/lib/sisu/v0/sysenv.rb @@ -1797,42 +1797,42 @@ WOK if defined? @rc['flag']['default'] and not (@rc['flag']['default'].nil? or @rc['flag']['default'].empty?) @rc['flag']['default'] - else '-NhwpAobxXyYv' + else '-NhwpaobxXyYv' end end def cf_1 #processing flag shortcuts if defined? @rc['flag']['i'] and not (@rc['flag']['i'].nil? or @rc['flag']['i'].empty?) @rc['flag']['i'] - else '-NhwpAoy' #'-Nhwpy' + else '-hwpoy' end end def cf_2 #processing flag shortcuts if defined? @rc['flag']['ii'] and not (@rc['flag']['ii'].nil? or @rc['flag']['ii'].empty?) @rc['flag']['ii'] - else '-NhwpAobxXy' # '-NhwpAoy' + else '-NhwpaobxXy' end end def cf_3 #processing flag shortcuts if defined? @rc['flag']['iii'] and not (@rc['flag']['iii'].nil? or @rc['flag']['iii'].empty?) @rc['flag']['iii'] - else '-NhwpAobxXyY' + else '-NhwpaobxXyY' end end def cf_4 #processing flag shortcuts if defined? @rc['flag']['iv'] and not (@rc['flag']['iv'].nil? or @rc['flag']['iv'].empty?) @rc['flag']['iv'] - else '-NhwpAobxXDyY --import' + else '-NhwpaobxXDyY --import' end end def cf_5 #processing flag shortcuts if defined? @rc['flag']['v'] and not (@rc['flag']['v'].nil? or @rc['flag']['v'].empty?) @rc['flag']['v'] - else '-NhwpAobxXDyY --update' + else '-NhwpaobxXDyY --update' end end end |