diff options
| author | Ralph Amissah <ralph@amissah.com> | 2014-08-29 19:34:45 -0400 | 
|---|---|---|
| committer | Ralph Amissah <ralph@amissah.com> | 2014-08-29 19:46:09 -0400 | 
| commit | 32d773a21da4518a1f6cda697350e7efee3316bf (patch) | |
| tree | e69a6b59be58c3b192b79aa5920957e20ebe03a0 | |
| parent | v5 v6: cosmetic code (diff) | |
v5 v6: hub, sisu version info, when & what to report
| -rw-r--r-- | data/doc/sisu/CHANGELOG_v5 | 2 | ||||
| -rw-r--r-- | data/doc/sisu/CHANGELOG_v6 | 2 | ||||
| -rw-r--r-- | lib/sisu/v5/hub.rb | 1 | ||||
| -rw-r--r-- | lib/sisu/v5/hub_actions.rb | 19 | ||||
| -rw-r--r-- | lib/sisu/v5/hub_options.rb | 4 | ||||
| -rw-r--r-- | lib/sisu/v6/hub.rb | 1 | ||||
| -rw-r--r-- | lib/sisu/v6/hub_actions.rb | 19 | ||||
| -rw-r--r-- | lib/sisu/v6/hub_options.rb | 4 | 
8 files changed, 34 insertions, 18 deletions
| diff --git a/data/doc/sisu/CHANGELOG_v5 b/data/doc/sisu/CHANGELOG_v5 index bd5de402..eb487b46 100644 --- a/data/doc/sisu/CHANGELOG_v5 +++ b/data/doc/sisu/CHANGELOG_v5 @@ -38,6 +38,8 @@ http://www.jus.uio.no/sisu/pkg/src/sisu_5.6.3.orig.tar.xz    sisu_5.6.3.orig.tar.xz    sisu_5.6.3-1.dsc +* hub, sisu version info, when & what to report +  %% 5.6.2.orig.tar.xz (2014-08-20:33/3)  http://sources.sisudoc.org/gitweb/?p=code/sisu.git;a=log;h=refs/tags/sisu_5.6.2  http://sources.sisudoc.org/gitweb/?p=code/sisu.git;a=log;h=refs/tags/debian/sisu_5.6.2-1 diff --git a/data/doc/sisu/CHANGELOG_v6 b/data/doc/sisu/CHANGELOG_v6 index a969bc34..43045b90 100644 --- a/data/doc/sisu/CHANGELOG_v6 +++ b/data/doc/sisu/CHANGELOG_v6 @@ -28,6 +28,8 @@ http://www.jus.uio.no/sisu/pkg/src/sisu_6.2.4.orig.tar.xz    sisu_6.2.4.orig.tar.xz    sisu_6.2.4-1.dsc +* hub, sisu version info, when & what to report +  %% 6.2.3.orig.tar.xz (2014-08-20:33/3)  http://sources.sisudoc.org/gitweb/?p=code/sisu.git;a=log;h=refs/tags/sisu_6.2.3  http://sources.sisudoc.org/gitweb/?p=code/sisu.git;a=log;h=refs/tags/debian/sisu_6.2.3-1 diff --git a/lib/sisu/v5/hub.rb b/lib/sisu/v5/hub.rb index 68db1f13..eda98084 100644 --- a/lib/sisu/v5/hub.rb +++ b/lib/sisu/v5/hub.rb @@ -207,6 +207,7 @@ module SiSU      def actions_without_files        actions=SiSU_Hub_Actions::HubActions.new(@opt)        actions.report.version_info? +      actions.report.version_dir?        actions.prepare.site?        actions.prepare.sql?      end diff --git a/lib/sisu/v5/hub_actions.rb b/lib/sisu/v5/hub_actions.rb index 785f507e..5f99f444 100644 --- a/lib/sisu/v5/hub_actions.rb +++ b/lib/sisu/v5/hub_actions.rb @@ -72,6 +72,17 @@ module SiSU_Hub_Actions            SiSU_Env::InfoAbout.new(@opt).sisu_version          end        end +      def version_dir? +        if @opt.act[:version_info][:set]==:on \ +        || @opt.act[:verbose][:set]==:on \ +        || @opt.act[:verbose_plus][:set]==:on \ +        || @opt.act[:maintenance][:set]==:on +          SiSU_Screen::Ansi.new( +            @opt.act[:color_state][:set], +            ' ' + File.dirname(__FILE__) +          ).grey +        end +      end        self      end      def prepare @@ -853,14 +864,6 @@ module SiSU_Hub_Actions        end        def init?          SiSU_Env::InfoProcessingFlag.new -        if (@opt.act[:verbose][:set]==:on \ -        || @opt.act[:verbose_plus][:set]==:on \ -        || @opt.act[:maintenance][:set]==:on) -          SiSU_Screen::Ansi.new( -            @opt.act[:color_state][:set], -            ' ' + File.dirname(__FILE__) -          ).grey -        end          if @opt.act[:ao][:set]==:on \          or @opt.act[:maintenance][:set]==:on             #% --maintenance, -M            env=SiSU_Env::InfoEnv.new(@opt.fns) diff --git a/lib/sisu/v5/hub_options.rb b/lib/sisu/v5/hub_options.rb index bc96b878..d871c9c3 100644 --- a/lib/sisu/v5/hub_options.rb +++ b/lib/sisu/v5/hub_options.rb @@ -316,7 +316,9 @@ module SiSU_Commandline        c,w='',''        m,f,pth,lng,lngs=[],[],[],[],[]        lng_is='' -      a=s.split(/\s+/) +      a=(s.nil?) \ +      ? ['-v'] +      : s.split(/\s+/)        r_l=Px[:lng_lst].join('|')        a.uniq.each do |x|          if x =~/^-[a-z0-5]+/i \ diff --git a/lib/sisu/v6/hub.rb b/lib/sisu/v6/hub.rb index cd66bc17..2558a9db 100644 --- a/lib/sisu/v6/hub.rb +++ b/lib/sisu/v6/hub.rb @@ -207,6 +207,7 @@ module SiSU      def actions_without_files        actions=SiSU_Hub_Actions::HubActions.new(@opt)        actions.report.version_info? +      actions.report.version_dir?        actions.prepare.site?        actions.prepare.sql?      end diff --git a/lib/sisu/v6/hub_actions.rb b/lib/sisu/v6/hub_actions.rb index 2be0304b..54d0ccd2 100644 --- a/lib/sisu/v6/hub_actions.rb +++ b/lib/sisu/v6/hub_actions.rb @@ -72,6 +72,17 @@ module SiSU_Hub_Actions            SiSU_Env::InfoAbout.new(@opt).sisu_version          end        end +      def version_dir? +        if @opt.act[:version_info][:set]==:on \ +        || @opt.act[:verbose][:set]==:on \ +        || @opt.act[:verbose_plus][:set]==:on \ +        || @opt.act[:maintenance][:set]==:on +          SiSU_Screen::Ansi.new( +            @opt.act[:color_state][:set], +            ' ' + File.dirname(__FILE__) +          ).grey +        end +      end        self      end      def prepare @@ -853,14 +864,6 @@ module SiSU_Hub_Actions        end        def init?          SiSU_Env::InfoProcessingFlag.new -        if (@opt.act[:verbose][:set]==:on \ -        || @opt.act[:verbose_plus][:set]==:on \ -        || @opt.act[:maintenance][:set]==:on) -          SiSU_Screen::Ansi.new( -            @opt.act[:color_state][:set], -            ' ' + File.dirname(__FILE__) -          ).grey -        end          if @opt.act[:ao][:set]==:on \          or @opt.act[:maintenance][:set]==:on             #% --maintenance, -M            env=SiSU_Env::InfoEnv.new(@opt.fns) diff --git a/lib/sisu/v6/hub_options.rb b/lib/sisu/v6/hub_options.rb index 5625963b..336f0d93 100644 --- a/lib/sisu/v6/hub_options.rb +++ b/lib/sisu/v6/hub_options.rb @@ -316,7 +316,9 @@ module SiSU_Commandline        c,w='',''        m,f,pth,lng,lngs=[],[],[],[],[]        lng_is='' -      a=s.split(/\s+/) +      a=(s.nil?) \ +      ? ['-v'] +      : s.split(/\s+/)        r_l=Px[:lng_lst].join('|')        a.uniq.each do |x|          if x =~/^-[a-z0-5]+/i \ | 
