diff options
| author | Ralph Amissah <ralph@amissah.com> | 2011-05-15 11:50:04 -0400 | 
|---|---|---|
| committer | Ralph Amissah <ralph@amissah.com> | 2011-05-15 11:52:41 -0400 | 
| commit | 29fcf4ab543eb68ccd1ac4e29decbd7855696bd0 (patch) | |
| tree | c5386c209024f24354e03bc39519d5cfb8946871 | |
| parent | v2 v3: vim cterm colorschemes, touch search color (diff) | |
v3: sysenv, output directory structure check, fix (start testing alternatives)
| -rw-r--r-- | data/doc/sisu/CHANGELOG_v3 | 4 | ||||
| -rw-r--r-- | lib/sisu/v3/sysenv.rb | 21 | 
2 files changed, 13 insertions, 12 deletions
| diff --git a/data/doc/sisu/CHANGELOG_v3 b/data/doc/sisu/CHANGELOG_v3 index ca62cc5c..d0c1354b 100644 --- a/data/doc/sisu/CHANGELOG_v3 +++ b/data/doc/sisu/CHANGELOG_v3 @@ -28,6 +28,10 @@ http://www.jus.uio.no/sisu/pkg/src/sisu_3.0.9.orig.tar.gz    * copyright file, softlink, make more visible in tarball and update      * sisu-mode.el assigned to FSF (GNU EMACS) +  * sysenv +    * output directory structure check, fix & start testing alternatives +      sisurc.yml output_by: (language|filetype|filename) +  %% 3.0.8.orig.tar.gz (2011-05-05:18/4)  http://git.sisudoc.org/?p=code/sisu.git;a=log;h=refs/tags/debian/3.0.8-1  http://www.jus.uio.no/sisu/pkg/src/sisu_3.0.8.orig.tar.gz diff --git a/lib/sisu/v3/sysenv.rb b/lib/sisu/v3/sysenv.rb index a1c6228b..c22f878c 100644 --- a/lib/sisu/v3/sysenv.rb +++ b/lib/sisu/v3/sysenv.rb @@ -405,11 +405,10 @@ module SiSU_Env          x=if defined? @rc['output_dir_structure_by'] \          and @rc['output_dir_structure_by'] =~/language/            true -        else defined? @rc['output_structure']['by_language'] -          (defined? @rc['output_structure']['by_language'] \ -          && @rc['output_structure']['by_language'] ==true) \ -          ? true \ -          : false +        elsif defined? @rc['output_structure']['by_language'] \ +        and @rc['output_structure']['by_language'] ==true +          true +        else false          end        end        def by_filetype? @@ -418,11 +417,10 @@ module SiSU_Env          elsif defined? @rc['output_dir_structure_by'] \          and @rc['output_dir_structure_by'] =~/filetype/            true -        else -          x=(defined? @rc['output_structure']['by_filetype'] \ -          && @rc['output_structure']['by_filetype'] ==true) \ -          ? true \ -          : false +        elsif defined? @rc['output_structure']['by_filetype'] \ +        and @rc['output_structure']['by_filetype'] ==true +          true +        else false          end        end        def by_filename? @@ -436,8 +434,7 @@ module SiSU_Env          elsif defined? @rc['output_structure']['by_filename'] \          and @rc['output_structure']['by_filename'] ==true            true -        else -          true +        else true          end        end        def multilingual? | 
