aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2010-02-17 11:01:24 -0500
committerRalph Amissah <ralph@amissah.com>2010-02-17 11:01:24 -0500
commitafd5812f2fcb879361c986fcce9624a5c283f783 (patch)
tree40dc575f88127af0ac2ce32c49547dfd1326bc65
parentdocument sample skins specify utf-8 (in some cases required by ruby 1.9.1) (diff)
changelog & version updatesisu_1.0.3
-rw-r--r--CHANGELOG11
-rw-r--r--conf/sisu/v1/version.yml6
-rw-r--r--data/doc/sisu/v1/CHANGELOG11
-rwxr-xr-xsisu-install42
4 files changed, 46 insertions, 24 deletions
diff --git a/CHANGELOG b/CHANGELOG
index e8eaeb80..7ee8a695 100644
--- a/CHANGELOG
+++ b/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/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