diff options
| -rw-r--r-- | CHANGELOG | 11 | ||||
| -rw-r--r-- | conf/sisu/v1/version.yml | 6 | ||||
| -rw-r--r-- | data/doc/sisu/v1/CHANGELOG | 11 | ||||
| -rwxr-xr-x | sisu-install | 42 | 
4 files changed, 46 insertions, 24 deletions
| @@ -10,6 +10,17 @@ Reverse Chronological:  %% STABLE MANIFEST +%% 1.0.3.orig.tar.gz (2010-02-17:07/3) +http://www.jus.uio.no/sisu/pkg/src/sisu_1.0.3.orig.tar.gz +  sisu_1.0.3.orig.tar.gz +  sisu_1.0.3-1.dsc +  sisu_1.0.3-1.diff.gz + +  * plaintext, footnote / endnote fix, footnotes to occur immediately after +    paragraph that contains them (unless endnotes are selected instead) + +  * document sample skins, utf-8 specified (in some cases needed by ruby 1.9.1) +  %% 1.0.2.orig.tar.gz (2010-02-10:06/3)  http://www.jus.uio.no/sisu/pkg/src/sisu_1.0.2.orig.tar.gz    158f3eda47d22eb23ca9fb5e383ae57d366974e3e4c4dec2326021228413a66d 1556982 sisu_1.0.2.orig.tar.gz diff --git a/conf/sisu/v1/version.yml b/conf/sisu/v1/version.yml index 1c19f09a..9e4538cf 100644 --- a/conf/sisu/v1/version.yml +++ b/conf/sisu/v1/version.yml @@ -1,5 +1,5 @@  ---  -:version: 1.0.2 -:date_stamp: 2010w06/3 -:date: "2010-02-10" +:version: 1.0.3 +:date_stamp: 2010w07/3 +:date: "2010-02-17"  :project: SiSU diff --git a/data/doc/sisu/v1/CHANGELOG b/data/doc/sisu/v1/CHANGELOG index e8eaeb80..7ee8a695 100644 --- a/data/doc/sisu/v1/CHANGELOG +++ b/data/doc/sisu/v1/CHANGELOG @@ -10,6 +10,17 @@ Reverse Chronological:  %% STABLE MANIFEST +%% 1.0.3.orig.tar.gz (2010-02-17:07/3) +http://www.jus.uio.no/sisu/pkg/src/sisu_1.0.3.orig.tar.gz +  sisu_1.0.3.orig.tar.gz +  sisu_1.0.3-1.dsc +  sisu_1.0.3-1.diff.gz + +  * plaintext, footnote / endnote fix, footnotes to occur immediately after +    paragraph that contains them (unless endnotes are selected instead) + +  * document sample skins, utf-8 specified (in some cases needed by ruby 1.9.1) +  %% 1.0.2.orig.tar.gz (2010-02-10:06/3)  http://www.jus.uio.no/sisu/pkg/src/sisu_1.0.2.orig.tar.gz    158f3eda47d22eb23ca9fb5e383ae57d366974e3e4c4dec2326021228413a66d 1556982 sisu_1.0.2.orig.tar.gz diff --git a/sisu-install b/sisu-install index 3d78c6c1..2b981b94 100755 --- a/sisu-install +++ b/sisu-install @@ -631,28 +631,28 @@ module Rant              @items.unshift(entry) if entry !~ ignore_rx              self          end -if Object.method_defined?(:fcall) || Object.method_defined?(:funcall) # in Ruby 1.9 like __send__ -        @@__send_private__ = Object.method_defined?(:fcall) ? :fcall : :funcall -        def resolve -            @pending = false -            @actions.each{ |action| self.__send__(@@__send_private__, *action) }.clear -            ix = ignore_rx -            if ix -                @items.reject! { |f| f =~ ix && !@keep[f] } -            end -            self -        end -else -        def resolve -            @pending = false -            @actions.each{ |action| self.__send__(*action) }.clear -            ix = ignore_rx -            if ix -                @items.reject! { |f| f =~ ix && !@keep[f] } -            end -            self +        if Object.method_defined?(:fcall) || Object.method_defined?(:funcall) # in Ruby 1.9 like __send__ +          @@__send_private__ = Object.method_defined?(:fcall) ? :fcall : :funcall +          def resolve +              @pending = false +              @actions.each{ |action| self.__send__(@@__send_private__, *action) }.clear +              ix = ignore_rx +              if ix +                  @items.reject! { |f| f =~ ix && !@keep[f] } +              end +              self +          end +        else +          def resolve +              @pending = false +              @actions.each{ |action| self.__send__(*action) }.clear +              ix = ignore_rx +              if ix +                  @items.reject! { |f| f =~ ix && !@keep[f] } +              end +              self +          end          end -end          def include(*pats)              @def_glob_dotfiles ? glob_all(*pats) : glob_unix(*pats)          end | 
