aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2014-10-03 19:15:10 -0400
committerRalph Amissah <ralph@amissah.com>2014-10-03 19:15:10 -0400
commit0bd17c97aa19fb4a03c27e07d9e0a631b560b9f6 (patch)
tree7ad9895e732a7cf8487e916333456d01b614cd3f
parentsisu.org move stuff done to sisu-done.org (diff)
v5 v6: cleaning, minor
-rw-r--r--lib/sisu/v5/hub_options.rb51
-rw-r--r--lib/sisu/v6/hub_options.rb51
2 files changed, 0 insertions, 102 deletions
diff --git a/lib/sisu/v5/hub_options.rb b/lib/sisu/v5/hub_options.rb
index ceeebe78..0854b9c6 100644
--- a/lib/sisu/v5/hub_options.rb
+++ b/lib/sisu/v5/hub_options.rb
@@ -505,57 +505,6 @@ module SiSU_Commandline
end
s.strip!
end
- def expand_numeric_shortcuts_(a)
- shortcut=SiSU_Env::InfoProcessingFlag.new
- s=''
- a.each do |x|
- y=case x
- when /0/
- (x=~/^-0\S+/) \
- ? x.gsub(/^-0(\S+)/,shortcut.act_0.str + ' -\1')
- : x.gsub(/^-0/,shortcut.act_0.str + ' ')
- when /1/
- (x=~/^-1\S+/) \
- ? x.gsub(/^-1(\S+)/,shortcut.act_1.str + ' -\1')
- : x.gsub(/^-1/,shortcut.act_1.str + ' ')
- when /2/
- (x=~/^-2\S+/) \
- ? x.gsub(/^-2(\S+)/,shortcut.act_2.str + ' -\1')
- : x.gsub(/^-2/,shortcut.act_2.str + ' ')
- when /3/
- (x=~/^-3\S+/) \
- ? x.gsub(/^-3(\S+)/,shortcut.act_3.str + ' -\1')
- : x.gsub(/^-3/,shortcut.act_3.str + ' ')
- when /4/
- (x=~/^-4\S+/) \
- ? x.gsub(/^-4(\S+)/,shortcut.act_4.str + ' -\1')
- : x.gsub(/^-4/,shortcut.act_4.str + ' ')
- when /5/
- (x=~/^-5\S+/) \
- ? x.gsub(/^-5(\S+)/,shortcut.act_5.str + ' -\1')
- : x.gsub(/^-5/,shortcut.act_5.str + ' ')
- when /6/
- (x=~/^-6\S+/) \
- ? x.gsub(/^-6(\S+)/,shortcut.act_6.str + ' -\1')
- : x.gsub(/^-6/,shortcut.act_6.str + ' ')
- when /7/
- (x=~/^-7\S+/) \
- ? x.gsub(/^-7(\S+)/,shortcut.act_7.str + ' -\1')
- : x.gsub(/^-7/,shortcut.act_7.str + ' ')
- when /8/
- (x=~/^-8\S+/) \
- ? x.gsub(/^-8(\S+)/,shortcut.act_8.str + ' -\1')
- : x.gsub(/^-8/,shortcut.act_8.str + ' ')
- when /9/
- (x=~/^-9\S+/) \
- ? x.gsub(/^-9(\S+)/,shortcut.act_9.str + ' -\1')
- : x.gsub(/^-9/,shortcut.act_9.str + ' ')
- else x
- end
- s << " #{y}" unless y.empty?
- end
- s.strip!
- end
def opt_cmd_and_mod_adjust(ch,select_arr,files)
select_arr=select_arr.flatten
sel_init=select_arr.flatten
diff --git a/lib/sisu/v6/hub_options.rb b/lib/sisu/v6/hub_options.rb
index 0cb0d336..7ed7645f 100644
--- a/lib/sisu/v6/hub_options.rb
+++ b/lib/sisu/v6/hub_options.rb
@@ -505,57 +505,6 @@ module SiSU_Commandline
end
s.strip!
end
- def expand_numeric_shortcuts_(a)
- shortcut=SiSU_Env::InfoProcessingFlag.new
- s=''
- a.each do |x|
- y=case x
- when /0/
- (x=~/^-0\S+/) \
- ? x.gsub(/^-0(\S+)/,shortcut.act_0.str + ' -\1')
- : x.gsub(/^-0/,shortcut.act_0.str + ' ')
- when /1/
- (x=~/^-1\S+/) \
- ? x.gsub(/^-1(\S+)/,shortcut.act_1.str + ' -\1')
- : x.gsub(/^-1/,shortcut.act_1.str + ' ')
- when /2/
- (x=~/^-2\S+/) \
- ? x.gsub(/^-2(\S+)/,shortcut.act_2.str + ' -\1')
- : x.gsub(/^-2/,shortcut.act_2.str + ' ')
- when /3/
- (x=~/^-3\S+/) \
- ? x.gsub(/^-3(\S+)/,shortcut.act_3.str + ' -\1')
- : x.gsub(/^-3/,shortcut.act_3.str + ' ')
- when /4/
- (x=~/^-4\S+/) \
- ? x.gsub(/^-4(\S+)/,shortcut.act_4.str + ' -\1')
- : x.gsub(/^-4/,shortcut.act_4.str + ' ')
- when /5/
- (x=~/^-5\S+/) \
- ? x.gsub(/^-5(\S+)/,shortcut.act_5.str + ' -\1')
- : x.gsub(/^-5/,shortcut.act_5.str + ' ')
- when /6/
- (x=~/^-6\S+/) \
- ? x.gsub(/^-6(\S+)/,shortcut.act_6.str + ' -\1')
- : x.gsub(/^-6/,shortcut.act_6.str + ' ')
- when /7/
- (x=~/^-7\S+/) \
- ? x.gsub(/^-7(\S+)/,shortcut.act_7.str + ' -\1')
- : x.gsub(/^-7/,shortcut.act_7.str + ' ')
- when /8/
- (x=~/^-8\S+/) \
- ? x.gsub(/^-8(\S+)/,shortcut.act_8.str + ' -\1')
- : x.gsub(/^-8/,shortcut.act_8.str + ' ')
- when /9/
- (x=~/^-9\S+/) \
- ? x.gsub(/^-9(\S+)/,shortcut.act_9.str + ' -\1')
- : x.gsub(/^-9/,shortcut.act_9.str + ' ')
- else x
- end
- s << " #{y}" unless y.empty?
- end
- s.strip!
- end
def opt_cmd_and_mod_adjust(ch,select_arr,files)
select_arr=select_arr.flatten
sel_init=select_arr.flatten