aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2014-07-01 00:58:09 -0400
committerRalph Amissah <ralph@amissah.com>2014-07-01 00:58:11 -0400
commitd850e670c1163dd1dba5f958d0cfd62f2a431112 (patch)
tree9e01a5fb0120d3c9e07eb4d78df1359a2afa2ac7
parentv5 v6: epub, a fix, double check (diff)
v5 v6: sysenv, developer _CONSTRUCTION_ZONE warning setup modifiedsisu_5.4.3
-rw-r--r--data/doc/sisu/CHANGELOG_v52
-rw-r--r--data/doc/sisu/CHANGELOG_v62
-rw-r--r--lib/sisu/v5/constants.rb1
-rw-r--r--lib/sisu/v5/sysenv.rb16
-rw-r--r--lib/sisu/v6/constants.rb1
-rw-r--r--lib/sisu/v6/sysenv.rb16
6 files changed, 22 insertions, 16 deletions
diff --git a/data/doc/sisu/CHANGELOG_v5 b/data/doc/sisu/CHANGELOG_v5
index f3ac82cd..ec8eb24f 100644
--- a/data/doc/sisu/CHANGELOG_v5
+++ b/data/doc/sisu/CHANGELOG_v5
@@ -49,6 +49,8 @@ http://www.jus.uio.no/sisu/pkg/src/sisu_5.4.3.orig.tar.xz
* code cosmetic rearrangement
* ao*, param, hub, options, composite
+* sysenv, developer _CONSTRUCTION_ZONE warning modified
+
* merge what was sisu_6.0.8 into v5
* ao,
* syntax, able optionally to indicate the language syntax of a code block
diff --git a/data/doc/sisu/CHANGELOG_v6 b/data/doc/sisu/CHANGELOG_v6
index 2d8474e3..ada19da7 100644
--- a/data/doc/sisu/CHANGELOG_v6
+++ b/data/doc/sisu/CHANGELOG_v6
@@ -39,6 +39,8 @@ http://www.jus.uio.no/sisu/pkg/src/sisu_6.0.9.orig.tar.xz
* code cosmetic rearrangement
* ao*, param, hub, options, composite
+* sysenv, developer _CONSTRUCTION_ZONE warning modified
+
* epub, a fix, double check
%% 6.0.8.orig.tar.xz (2014-06-19:24/4)
diff --git a/lib/sisu/v5/constants.rb b/lib/sisu/v5/constants.rb
index 6b44ec68..eb252fda 100644
--- a/lib/sisu/v5/constants.rb
+++ b/lib/sisu/v5/constants.rb
@@ -334,6 +334,7 @@ DISABLE={
}
DEVELOPER={
maintenance: :false,
+ under_construction: '_CONSTRUCTION_ZONE',
}
__END__
utils.rb
diff --git a/lib/sisu/v5/sysenv.rb b/lib/sisu/v5/sysenv.rb
index cfd40460..7358ff40 100644
--- a/lib/sisu/v5/sysenv.rb
+++ b/lib/sisu/v5/sysenv.rb
@@ -6032,7 +6032,7 @@ WOK
end
def textile
def ft
- 'textile_CONSTRUCTION_ZONE'
+ 'textile' + DEVELOPER[:under_construction]
end
def dir
set_path(ft).dir.abc
@@ -6053,7 +6053,7 @@ WOK
end
def asciidoc
def ft
- 'asciidoc_CONSTRUCTION_ZONE'
+ 'asciidoc' + DEVELOPER[:under_construction]
end
def dir
set_path(ft).dir.abc
@@ -6074,7 +6074,7 @@ WOK
end
def markdown
def ft
- 'markdown_CONSTRUCTION_ZONE'
+ 'markdown' + DEVELOPER[:under_construction]
end
def dir
set_path(ft).dir.abc
@@ -6095,7 +6095,7 @@ WOK
end
def rst
def ft
- 'rst_CONSTRUCTION_ZONE'
+ 'rst' + DEVELOPER[:under_construction]
end
def dir
set_path(ft).dir.abc
@@ -6315,7 +6315,7 @@ WOK
end
def xml_docbook
def ft
- 'docbook_CONSTRUCTION_ZONE'
+ 'docbook' + DEVELOPER[:under_construction]
end
def dir
set_path(ft).dir.abc
@@ -6339,7 +6339,7 @@ WOK
end
def xml_docbook_article
def ft
- 'docbook'
+ 'docbook' + DEVELOPER[:under_construction]
end
def dir
set_path(ft).dir.abc
@@ -6363,7 +6363,7 @@ WOK
end
def xml_docbook_book
def ft
- 'docbook_CONSTRUCTION_ZONE'
+ 'docbook' + DEVELOPER[:under_construction]
end
def dir
set_path(ft).dir.abc
@@ -6387,7 +6387,7 @@ WOK
end
def xml_fictionbook
def ft
- 'fictionbook_CONSTRUCTION_ZONE'
+ 'fictionbook' + DEVELOPER[:under_construction]
end
def dir
set_path(ft).dir.abc
diff --git a/lib/sisu/v6/constants.rb b/lib/sisu/v6/constants.rb
index 487d96a0..d25478d1 100644
--- a/lib/sisu/v6/constants.rb
+++ b/lib/sisu/v6/constants.rb
@@ -334,6 +334,7 @@ DISABLE={
}
DEVELOPER={
maintenance: :false,
+ under_construction: '_CONSTRUCTION_ZONE',
}
__END__
utils.rb
diff --git a/lib/sisu/v6/sysenv.rb b/lib/sisu/v6/sysenv.rb
index 2c2a8c10..3c774c46 100644
--- a/lib/sisu/v6/sysenv.rb
+++ b/lib/sisu/v6/sysenv.rb
@@ -6032,7 +6032,7 @@ WOK
end
def textile
def ft
- 'textile_CONSTRUCTION_ZONE'
+ 'textile' + DEVELOPER[:under_construction]
end
def dir
set_path(ft).dir.abc
@@ -6053,7 +6053,7 @@ WOK
end
def asciidoc
def ft
- 'asciidoc_CONSTRUCTION_ZONE'
+ 'asciidoc' + DEVELOPER[:under_construction]
end
def dir
set_path(ft).dir.abc
@@ -6074,7 +6074,7 @@ WOK
end
def markdown
def ft
- 'markdown_CONSTRUCTION_ZONE'
+ 'markdown' + DEVELOPER[:under_construction]
end
def dir
set_path(ft).dir.abc
@@ -6095,7 +6095,7 @@ WOK
end
def rst
def ft
- 'rst_CONSTRUCTION_ZONE'
+ 'rst' + DEVELOPER[:under_construction]
end
def dir
set_path(ft).dir.abc
@@ -6315,7 +6315,7 @@ WOK
end
def xml_docbook
def ft
- 'docbook_CONSTRUCTION_ZONE'
+ 'docbook' + DEVELOPER[:under_construction]
end
def dir
set_path(ft).dir.abc
@@ -6339,7 +6339,7 @@ WOK
end
def xml_docbook_article
def ft
- 'docbook'
+ 'docbook' + DEVELOPER[:under_construction]
end
def dir
set_path(ft).dir.abc
@@ -6363,7 +6363,7 @@ WOK
end
def xml_docbook_book
def ft
- 'docbook_CONSTRUCTION_ZONE'
+ 'docbook' + DEVELOPER[:under_construction]
end
def dir
set_path(ft).dir.abc
@@ -6387,7 +6387,7 @@ WOK
end
def xml_fictionbook
def ft
- 'fictionbook_CONSTRUCTION_ZONE'
+ 'fictionbook' + DEVELOPER[:under_construction]
end
def dir
set_path(ft).dir.abc