#{@translate.topic_register}: | \n}
@md.topic_register_array.each do |t|
t.each_with_index do |st,i|
diff --git a/lib/sisu/v2/param.rb b/lib/sisu/v2/param.rb
index 87dd9aab..bf32fc59 100644
--- a/lib/sisu/v2/param.rb
+++ b/lib/sisu/v2/param.rb
@@ -514,6 +514,11 @@ module SiSU_Param
l,n=Db[:col_classify_library],'classify.dewey'
validate_length(s,l,n)
end
+ def oclc
+ s=@h['oclc']
+ l,n=Db[:col_classify_library],'classify.oclc'
+ validate_length(s,l,n)
+ end
def pg
s=@h['pg']
l,n=Db[:col_classify_small],'classify.pg'
@@ -927,7 +932,7 @@ module SiSU_Param
l=determine_papersize(l.dup)
@papersize=l
end
- when /^@make:(.+)/m #% metainfo DC
+ when /^@make:(.+)/m #% metainfo DC
@make=Md.new($1.strip,@opt).make
if defined? @make.breaks \
and @make.breaks[:page_new] #clearpage
@@ -1097,6 +1102,20 @@ module SiSU_Param
@rights=Md_default.new.rights("[#{@creator.author}]",'')
end
end
+ if defined? @classify.topic_register \
+ and @classify.topic_register.length >3
+ topic_register=@classify.topic_register
+ u=topic_register.scan(/[^;]+/)
+ v=[]
+ u.each do |l|
+ v << l.scan(/[^:]+/)
+ end
+ v.each do |m|
+ m[-1]=m[-1].scan(/[^|]+/) if m[-1] =~/[|]/
+ @topic_register_array << m
+ end
+ @topic_register_array.sort!
+ end
if @markup_version.to_f >= 0.38 #convert values in headers to internal representation
translated=[]
translate_list=[@pagenew,@pagebreak,@num_top,@toc_lev_limit]
diff --git a/lib/sisu/v2/shared_metadata.rb b/lib/sisu/v2/shared_metadata.rb
index 07f87e2c..bd1fe73a 100644
--- a/lib/sisu/v2/shared_metadata.rb
+++ b/lib/sisu/v2/shared_metadata.rb
@@ -633,6 +633,11 @@ WOK
tag,inf=tr.date,@md.date.published
meta << meta_para(tag,inf)
end
+ if defined? @md.classify.topic_register \
+ and @md.classify.topic_register=~/\S+/
+ tag,inf=tr.topic_register,@md.classify.topic_register
+ meta << meta_para(tag,inf)
+ end
if defined? @md.classify.loc \
and @md.classify.loc=~/\S+/
tag,inf=tr.cls_loc,@md.classify.loc
@@ -643,6 +648,11 @@ WOK
tag,inf=tr.cls_dewey,@md.classify.dewey
meta << meta_para(tag,inf)
end
+ if defined? @md.classify.oclc \
+ and @md.classify.oclc=~/\S+/
+ tag,inf=tr.cls_oclc,@md.classify.oclc
+ meta << meta_para(tag,inf)
+ end
if defined? @md.classify.pg \
and @md.classify.pg=~/\S+/
tag,inf=tr.cls_gutenberg,@md.classify.pg
--
cgit v1.2.3
From fae1f62c9a8a8aa6a9ac9745398183a6a45df587 Mon Sep 17 00:00:00 2001
From: Ralph Amissah
Date: Mon, 26 Apr 2010 21:16:08 -0400
Subject: vim syntax highlighter adds oclc to classify
---
data/sisu/v2/conf/editor-syntax-etc/vim/syntax/sisu.vim | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/data/sisu/v2/conf/editor-syntax-etc/vim/syntax/sisu.vim b/data/sisu/v2/conf/editor-syntax-etc/vim/syntax/sisu.vim
index 3fdb44dc..dc962b3b 100644
--- a/data/sisu/v2/conf/editor-syntax-etc/vim/syntax/sisu.vim
+++ b/data/sisu/v2/conf/editor-syntax-etc/vim/syntax/sisu.vim
@@ -1,6 +1,6 @@
"SiSU Vim syntax file
"SiSU Maintainer: Ralph Amissah
-"SiSU Markup: SiSU (sisu-2.0.1, 2010-04-16)
+"SiSU Markup: SiSU (sisu-2.0.2, 2010-04-26)
"(originally looked at Ruby Vim by Mirko Nasato)
if version < 600
@@ -31,7 +31,7 @@ if !exists("sisu_no_identifiers")
syn match sisu_sub_header_title "^\s\+:\(subtitle\|short\|edition\|language\|language_char\|note\):\s" "group=sisu_header_content
syn match sisu_sub_header_creator "^\s\+:\(author\|contributor\|illustrator\|photographer\|translator\|digitized_by\|prepared_by\|audio\|video\):\s" " &hon &institution
syn match sisu_sub_header_rights "^\s\+:\(copyright\|text\|translation\|illustrations\|photographs\|preparation\|digitization\|audio\|video\|license\|all\):\s" " access_rights license
- syn match sisu_sub_header_classify "^\s\+:\(topic_register\|coverage\|format\|identifier\|keywords\|relation\|subject\|type\|dewey\|loc\|pg\|isbn\):\s"
+ syn match sisu_sub_header_classify "^\s\+:\(topic_register\|coverage\|format\|identifier\|keywords\|relation\|subject\|type\|dewey\|loc\|oclc\|pg\|isbn\):\s"
syn match sisu_sub_header_dates "^\s\+:\(added_to_site\|available\|created\|issued\|modified\|published\|valid\|translated\|original_publication\):\s"
syn match sisu_sub_header_original "^\s\+:\(publisher\|date\|language\|language_char\|institution\|nationality\|source\):\s"
syn match sisu_sub_header_make "^\s\+:\(headings\|num_top\|breaks\|italics\|bold\|skin\|stamp\|promo\|ad\|manpage\):\s"
--
cgit v1.2.3
From bc4e077e3c38fb267fb475758b696f56850859ad Mon Sep 17 00:00:00 2001
From: Ralph Amissah
Date: Mon, 26 Apr 2010 21:18:31 -0400
Subject: update: changelog, version (2.3.0) still under review
---
CHANGELOG_v2 | 40 +++++++++++++++++++++-
conf/sisu/v2/version.yml | 6 ++--
data/doc/sisu/v2/CHANGELOG | 40 +++++++++++++++++++++-
.../sisu_manual/sisu_download.ssi | 22 ++++++------
4 files changed, 92 insertions(+), 16 deletions(-)
diff --git a/CHANGELOG_v2 b/CHANGELOG_v2
index f73785b0..cc39f1e8 100644
--- a/CHANGELOG_v2
+++ b/CHANGELOG_v2
@@ -12,6 +12,44 @@ Reverse Chronological:
%% Development branch UNSTABLE
+%% 2.3.0.orig.tar.gz (2010-04-26:17/1)
+http://www.jus.uio.no/sisu/pkg/src/sisu_2.3.0.orig.tar.gz
+ sisu_2.3.0.orig.tar.gz
+ sisu_2.3.0-1.dsc
+ sisu_2.3.0-1.diff.gz
+
+ * db (sql) add oclc (Online Computer Library Center) number, affects table
+ structure, (hence breakage & version bump)
+ * new db name prefix "sisu_v2c_"; new pgsql db name prefix "SiSUv2c_"
+
+ * metadata, classify add oclc (Online Computer Library Center) number
+
+ * small fixes
+
+ * constants for pgsql VARCHAR reduce max size to 2500 (from 3000), to be
+ within default limit set for postgresql (debian)
+
+ * default sisu home, correct link to document examples and description
+
+ * sisu_download.ssi link to breakage info not of current interest
+
+ * defaults, on default home, for search form always point to latest db
+
+ * html metadata, show topic_register again
+
+ * git, start to experiment with file structure to replace sisupod -g and will
+ be in configure options, to track changes to document, enable creation of
+ "pods" (zipped content) and allow for remote versioned (or unversioned)
+ placement of content source; ideally would end up with two co-existing,
+ distinct parsable structures whether local or remote, the existing directory
+ structure with multiple documents and document images etc. and git
+ directories with all content associated with a single document (including
+ other language versions of it); cannot guarantee at this stage that the file
+ structure will be retained, which may mean recreating any directory started
+ and defeat the purpose of using it, though it is in a version control repo,
+ so perhaps not ... best left alone for now ... nothing here yet really, move
+ along
+
%% 2.2.0.orig.tar.gz (2010-04-20:16/2)
http://www.jus.uio.no/sisu/pkg/src/sisu_2.2.0.orig.tar.gz
aa487605bc6bf89419c96773ed3738685307353ef4df1ead50d829785910747f 2746848 sisu_2.2.0.orig.tar.gz
@@ -19,7 +57,7 @@ http://www.jus.uio.no/sisu/pkg/src/sisu_2.2.0.orig.tar.gz
e0a30c8474b6d784be736b51da3953358968344f34638219f517c0c6f60505ef 275912 sisu_2.2.0-1.diff.gz
* db (sql) table structure, further review and changes (hence breakage & version bump)
- * new pgsql db name prefix "sisu_v2b_"
+ * new db name prefix "sisu_v2b_"; new pgsql db name prefix "SiSUv2b_"
* increase use of VARCHAR
* new indexes
diff --git a/conf/sisu/v2/version.yml b/conf/sisu/v2/version.yml
index 2fbef6ac..1f2c8bab 100644
--- a/conf/sisu/v2/version.yml
+++ b/conf/sisu/v2/version.yml
@@ -1,5 +1,5 @@
---
-:version: 2.2.0
-:date_stamp: 2010w16/2
-:date: "2010-04-20"
+:version: 2.3.0
+:date_stamp: 2010w17/1
+:date: "2010-04-26"
:project: SiSU
diff --git a/data/doc/sisu/v2/CHANGELOG b/data/doc/sisu/v2/CHANGELOG
index e2e41457..38a7a254 100644
--- a/data/doc/sisu/v2/CHANGELOG
+++ b/data/doc/sisu/v2/CHANGELOG
@@ -12,6 +12,44 @@ Reverse Chronological:
%% Development branch UNSTABLE
+%% 2.3.0.orig.tar.gz (2010-04-26:17/1)
+http://www.jus.uio.no/sisu/pkg/src/sisu_2.3.0.orig.tar.gz
+ sisu_2.3.0.orig.tar.gz
+ sisu_2.3.0-1.dsc
+ sisu_2.3.0-1.diff.gz
+
+ * db (sql) add oclc (Online Computer Library Center) number, affects table
+ structure, (hence breakage & version bump)
+ * new db name prefix "sisu_v2c_"; new pgsql db name prefix "SiSUv2c_"
+
+ * metadata, classify add oclc (Online Computer Library Center) number
+
+ * small fixes
+
+ * constants for pgsql VARCHAR reduce max size to 2500 (from 3000), to be
+ within default limit set for postgresql (debian)
+
+ * default sisu home, correct link to document examples and description
+
+ * sisu_download.ssi link to breakage info not of current interest
+
+ * defaults, on default home, for search form always point to latest db
+
+ * html metadata, show topic_register again
+
+ * git, start to experiment with file structure to replace sisupod -g and will
+ be in configure options, to track changes to document, enable creation of
+ "pods" (zipped content) and allow for remote versioned (or unversioned)
+ placement of content source; ideally would end up with two co-existing,
+ distinct parsable structures whether local or remote, the existing directory
+ structure with multiple documents and document images etc. and git
+ directories with all content associated with a single document (including
+ other language versions of it); cannot guarantee at this stage that the file
+ structure will be retained, which may mean recreating any directory started
+ and defeat the purpose of using it, though it is in a version control repo,
+ so perhaps not ... best left alone for now ... nothing here yet really, move
+ along
+
%% 2.2.0.orig.tar.gz (2010-04-20:16/2)
http://www.jus.uio.no/sisu/pkg/src/sisu_2.2.0.orig.tar.gz
aa487605bc6bf89419c96773ed3738685307353ef4df1ead50d829785910747f 2746848 sisu_2.2.0.orig.tar.gz
@@ -19,7 +57,7 @@ http://www.jus.uio.no/sisu/pkg/src/sisu_2.2.0.orig.tar.gz
e0a30c8474b6d784be736b51da3953358968344f34638219f517c0c6f60505ef 275912 sisu_2.2.0-1.diff.gz
* db (sql) table structure, further review and changes (hence breakage & version bump)
- * new pgsql db name prefix "sisu_v2b_"
+ * new db name prefix "sisu_v2b_"; new pgsql db name prefix "SiSUv2b_"
* increase use of VARCHAR
* new indexes
diff --git a/data/doc/sisu/v2/sisu_markup_samples/sisu_manual/sisu_download.ssi b/data/doc/sisu/v2/sisu_markup_samples/sisu_manual/sisu_download.ssi
index 40febf3a..8ee5f43f 100644
--- a/data/doc/sisu/v2/sisu_markup_samples/sisu_manual/sisu_download.ssi
+++ b/data/doc/sisu/v2/sisu_markup_samples/sisu_manual/sisu_download.ssi
@@ -16,7 +16,7 @@
:issued: 2002-11-12
:available: 2002-11-12
:published: 2009-01-18
- :modified: 2010-04-20
+ :modified: 2010-04-26
@make:
:num_top: 1
@@ -55,7 +55,7 @@
3~source- Source (tarball tar.gz)
-_* {~^ sisu_2.2.0.orig.tar.gz (2010-04-20:16/2) }http://www.jus.uio.no/sisu/pkg/src/sisu_2.2.0.orig.tar.gz
+_* {~^ sisu_2.3.0.orig.tar.gz (2010-04-26:17/1) }http://www.jus.uio.no/sisu/pkg/src/sisu_2.3.0.orig.tar.gz
_* {~^ sisu-markup-samples_2.0.4.orig.tar.gz (of 2008-10-09:40/4 ) }http://www.jus.uio.no/sisu/pkg/src/sisu-markup-samples_2.0.4.orig.tar.gz *~sisu-markup-samples
@@ -102,11 +102,11 @@ group{
*{Source}*
-{~^ sisu_2.2.0.orig.tar.gz }http://www.jus.uio.no/sisu/pkg/src/sisu_2.2.0.orig.tar.gz
+{~^ sisu_2.3.0.orig.tar.gz }http://www.jus.uio.no/sisu/pkg/src/sisu_2.3.0.orig.tar.gz
-{~^ sisu_2.2.0-1.diff.gz }http://www.jus.uio.no/sisu/pkg/src/sisu_2.2.0-1.diff.gz
+{~^ sisu_2.3.0-1.diff.gz }http://www.jus.uio.no/sisu/pkg/src/sisu_2.3.0-1.diff.gz
-{~^ sisu_2.2.0-1.dsc }http://www.jus.uio.no/sisu/pkg/src/sisu_2.2.0-1.dsc
+{~^ sisu_2.3.0-1.dsc }http://www.jus.uio.no/sisu/pkg/src/sisu_2.3.0-1.dsc
}group
@@ -114,15 +114,15 @@ group{
*{Debs}*
-{~^ sisu_2.2.0-1_all.deb }http://www.jus.uio.no/sisu/archive/pool/main/s/sisu/sisu_2.2.0-1_all.deb ~{ sisu, the base code, (the main package on which the others depend), without any dependencies other than ruby (and for convenience the ruby webrick web server), this generates a number of types of output on its own, other packages provide additional functionality, and have their dependencies Depends: ruby (>=1.8.2), libwebrick-ruby Recommends: sisu-pdf, sisu-sqlite, sisu-postgresql, sisu-examples, vim-sisu, librmagick-ruby, trang, tidy, libtidy, librexml-ruby, zip, unzip, openssl }~
+{~^ sisu_2.3.0-1_all.deb }http://www.jus.uio.no/sisu/archive/pool/main/s/sisu/sisu_2.3.0-1_all.deb ~{ sisu, the base code, (the main package on which the others depend), without any dependencies other than ruby (and for convenience the ruby webrick web server), this generates a number of types of output on its own, other packages provide additional functionality, and have their dependencies Depends: ruby (>=1.8.2), libwebrick-ruby Recommends: sisu-pdf, sisu-sqlite, sisu-postgresql, sisu-examples, vim-sisu, librmagick-ruby, trang, tidy, libtidy, librexml-ruby, zip, unzip, openssl }~
-{~^ sisu-complete_2.2.0-1_all.deb }http://www.jus.uio.no/sisu/archive/pool/main/s/sisu/sisu-complete_2.2.0-1_all.deb ~{ a package that pulls in other packages to build the whole of sisu (excluding sisu-examples) Depends: ruby (>=1.8.2), sisu, sisu-pdf, sisu-postgresql, sisu-remote, sisu-sqlite, vim-sisu Recommends: sisu-examples }~
+{~^ sisu-complete_2.3.0-1_all.deb }http://www.jus.uio.no/sisu/archive/pool/main/s/sisu/sisu-complete_2.3.0-1_all.deb ~{ a package that pulls in other packages to build the whole of sisu (excluding sisu-examples) Depends: ruby (>=1.8.2), sisu, sisu-pdf, sisu-postgresql, sisu-remote, sisu-sqlite, vim-sisu Recommends: sisu-examples }~
-{~^ sisu-pdf_2.2.0-1_all.deb }http://www.jus.uio.no/sisu/archive/pool/main/s/sisu/sisu-pdf_2.2.0-1_all.deb ~{ dependencies used by sisu to produce pdf from LaTeX generated Depends: sisu, tetex-bin, tetex-extra, latex-ucs Suggests: evince, xpdf }~
+{~^ sisu-pdf_2.3.0-1_all.deb }http://www.jus.uio.no/sisu/archive/pool/main/s/sisu/sisu-pdf_2.3.0-1_all.deb ~{ dependencies used by sisu to produce pdf from LaTeX generated Depends: sisu, tetex-bin, tetex-extra, latex-ucs Suggests: evince, xpdf }~
-{~^ sisu-postgresql_2.2.0-1_all.deb }http://www.jus.uio.no/sisu/archive/pool/main/s/sisu/sisu-postgresql_2.2.0-1_all.deb ~{ dependencies used by sisu to populate postgresql database (further configuration is necessary) Depends: sisu, postgresql-8.1, libdbi-ruby, libdbm-ruby, libdbd-pg-ruby Suggests: pgaccess, libdbd-pgsql, postgresql-contrib-8.1 }~
+{~^ sisu-postgresql_2.3.0-1_all.deb }http://www.jus.uio.no/sisu/archive/pool/main/s/sisu/sisu-postgresql_2.3.0-1_all.deb ~{ dependencies used by sisu to populate postgresql database (further configuration is necessary) Depends: sisu, postgresql-8.1, libdbi-ruby, libdbm-ruby, libdbd-pg-ruby Suggests: pgaccess, libdbd-pgsql, postgresql-contrib-8.1 }~
-{~^ sisu-sqlite_2.2.0-1_all.deb }http://www.jus.uio.no/sisu/archive/pool/main/s/sisu/sisu-sqlite_2.2.0-1_all.deb ~{ dependencies used by sisu to populate sqlite database Depends: sisu, sqlite, libdbi-ruby, libdbm-ruby, libdbd-sqlite-ruby Suggests: libdbd-sqlite }~
+{~^ sisu-sqlite_2.3.0-1_all.deb }http://www.jus.uio.no/sisu/archive/pool/main/s/sisu/sisu-sqlite_2.3.0-1_all.deb ~{ dependencies used by sisu to populate sqlite database Depends: sisu, sqlite, libdbi-ruby, libdbm-ruby, libdbd-sqlite-ruby Suggests: libdbd-sqlite }~
}group
@@ -152,7 +152,7 @@ The RPM is generated from the source file using Alien.~{ http://www.kitenet.net/
sudo rpm -i [package name]
-_* {~^ sisu-2.2.0-2.noarch.rpm }http://www.jus.uio.no/sisu/pkg/rpm/sisu-2.2.0-2.noarch.rpm ~{ created using alien }~
+_* {~^ sisu-2.3.0-2.noarch.rpm }http://www.jus.uio.no/sisu/pkg/rpm/sisu-2.3.0-2.noarch.rpm ~{ created using alien }~
_* {~^ sisu-markup-samples_2.0.4.orig-2.noarch.rpm }http://www.jus.uio.no/sisu/pkg/rpm/sisu-markup-samples_2.0.4.orig-2.noarch.rpm ~{ http://www.jus.uio.no/sisu/archive/pool/non-free/s/sisu-markup-samples/sisu-markup-samples_2.0.4-1_all.deb created using: alien -r sisu_0.70.5-1_all.deb }~
--
cgit v1.2.3
From 02afaef5fe0b35ee2554b86a98dc9563cd6b5c5f Mon Sep 17 00:00:00 2001
From: Ralph Amissah
Date: Tue, 27 Apr 2010 11:42:07 -0400
Subject: plaintext, clean up bulleted grouped text output (still not
line-wrapped though)
---
lib/sisu/v2/plaintext.rb | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/sisu/v2/plaintext.rb b/lib/sisu/v2/plaintext.rb
index ddc82839..851da3f8 100644
--- a/lib/sisu/v2/plaintext.rb
+++ b/lib/sisu/v2/plaintext.rb
@@ -310,6 +310,7 @@ WOK
dob.obj.gsub!(/#{Mx[:gl_o]}#169#{Mx[:gl_c]}/,'©')
end
if dob.of=='group' # watch
+ dob.obj.gsub!(/#{Mx[:gl_o]}●#{Mx[:gl_c]}/,"* ")
dob.obj.gsub!(/#{Mx[:br_line]}|#{Mx[:br_nl]}/,"\n")
else dob.obj.gsub!(/#{Mx[:br_line]}|#{Mx[:br_nl]}/,"\n\n")
end
--
cgit v1.2.3
From 39943bc95dc5bc96cb2af1ac431c395b938e515c Mon Sep 17 00:00:00 2001
From: Ralph Amissah
Date: Tue, 27 Apr 2010 15:10:57 -0400
Subject: switch markup for bold and emphasis, now !{bold}! and *{emphasis}*
(emphais output defaults to bold, later make it possible to configure emphasis
output optionally as being represented by italics)
---
lib/sisu/v2/dal_syntax.rb | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/lib/sisu/v2/dal_syntax.rb b/lib/sisu/v2/dal_syntax.rb
index 4a13b069..b7b9ec4b 100644
--- a/lib/sisu/v2/dal_syntax.rb
+++ b/lib/sisu/v2/dal_syntax.rb
@@ -215,8 +215,8 @@ module SiSU_Syntax
def bodymarkup(dob)
# << http://www.jus.uio.no/sisu/sisu_markup_table/markup >>
# See: data/sisu/sample/document_samples_sisu_markup/
- # !{emphasis}! e{emphasis}e emphasis
- # *{bold text}* b{bold}b bold text
+ # *{emphasis}* e{emphasis}e emphasis
+ # !{bold text}! b{bold}b bold text
# _{underline}_ u{underline}u underline
# /{italics}/ i{italics}i italics
# "{citation}" c{citation}c citation #blockquote?
@@ -411,8 +411,8 @@ module SiSU_Syntax
dob
end
def tech #script markup planned to be more strict for technical documents
- # !{emphasis}! e{emphasis}e emphasis
- # *{bold text}* b{bold}b bold text
+ # *{emphasis}* e{emphasis}e emphasis
+ # !{bold text}! b{bold}b bold text
# _{underline}_ u{underline}u underline
# /{italics}/ i{italics}i italics
# "{citation}" c{citation}c citation
--
cgit v1.2.3
From 74e7af807d62161e13335a501bfc1124175a78da Mon Sep 17 00:00:00 2001
From: Ralph Amissah
Date: Tue, 27 Apr 2010 19:43:04 -0400
Subject: i18n, mark OCLC number for translation
---
lib/sisu/v2/i18n.rb | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/lib/sisu/v2/i18n.rb b/lib/sisu/v2/i18n.rb
index 1f81a941..2aa730be 100644
--- a/lib/sisu/v2/i18n.rb
+++ b/lib/sisu/v2/i18n.rb
@@ -645,6 +645,9 @@ module SiSU_Translate
def cls_dewey
'Classification Dewey'
end
+ def cls_oclc # fix
+ 'Classify OCLC number'
+ end
def cls_gutenberg
'Classification du project Gutenberg'
end
@@ -853,6 +856,9 @@ module SiSU_Translate
def cls_dewey
'Klassifikation nach Dewey'
end
+ def cls_oclc # fix
+ 'Classify OCLC number'
+ end
def cls_gutenberg
'Klassifikation nach Projekt Gutenberg'
end
@@ -1061,6 +1067,9 @@ module SiSU_Translate
def cls_dewey
'Clasificación Dewey'
end
+ def cls_oclc # fix
+ 'Classify OCLC number'
+ end
def cls_gutenberg
'Clasificación Proyecto Gutenberg'
end
@@ -1269,6 +1278,9 @@ module SiSU_Translate
def cls_dewey
'Classificazione Dewey'
end
+ def cls_oclc # fix
+ 'Classify OCLC number'
+ end
def cls_gutenberg
'Classificazione del Progetto Gutenberg'
end
@@ -1477,6 +1489,9 @@ module SiSU_Translate
def cls_dewey
'Classify Dewey'
end
+ def cls_oclc # fix
+ 'Classify OCLC number'
+ end
def cls_gutenberg
'Classify Project Gutenberg'
end
--
cgit v1.2.3
From fbd6fdfd13d57ab12f0cca7a79cde4ed9f5ba480 Mon Sep 17 00:00:00 2001
From: Ralph Amissah
Date: Tue, 27 Apr 2010 19:43:34 -0400
Subject: update: changelog, version (2.3.0)
---
CHANGELOG_v2 | 11 ++++++++++-
data/doc/sisu/v2/CHANGELOG | 11 ++++++++++-
2 files changed, 20 insertions(+), 2 deletions(-)
diff --git a/CHANGELOG_v2 b/CHANGELOG_v2
index cc39f1e8..5bee805b 100644
--- a/CHANGELOG_v2
+++ b/CHANGELOG_v2
@@ -12,7 +12,7 @@ Reverse Chronological:
%% Development branch UNSTABLE
-%% 2.3.0.orig.tar.gz (2010-04-26:17/1)
+%% 2.3.0.orig.tar.gz (2010-04-27:17/2)
http://www.jus.uio.no/sisu/pkg/src/sisu_2.3.0.orig.tar.gz
sisu_2.3.0.orig.tar.gz
sisu_2.3.0-1.dsc
@@ -37,6 +37,9 @@ http://www.jus.uio.no/sisu/pkg/src/sisu_2.3.0.orig.tar.gz
* html metadata, show topic_register again
+ * plaintext, bulleted grouped text, clean up output (still not line-wrapped
+ though)
+
* git, start to experiment with file structure to replace sisupod -g and will
be in configure options, to track changes to document, enable creation of
"pods" (zipped content) and allow for remote versioned (or unversioned)
@@ -50,6 +53,12 @@ http://www.jus.uio.no/sisu/pkg/src/sisu_2.3.0.orig.tar.gz
so perhaps not ... best left alone for now ... nothing here yet really, move
along
+ * switch markup for emphasis and bold, now: *{emphasis}* and !{bold}! which
+ is consistent with !_ declaring a line to be bold, the default is that
+ emphasis output is in bold so there is no change at present, at some time in
+ the future it is intended that it be possible to configure emphais aoutput
+ alternatively to be in italics [requested]
+
%% 2.2.0.orig.tar.gz (2010-04-20:16/2)
http://www.jus.uio.no/sisu/pkg/src/sisu_2.2.0.orig.tar.gz
aa487605bc6bf89419c96773ed3738685307353ef4df1ead50d829785910747f 2746848 sisu_2.2.0.orig.tar.gz
diff --git a/data/doc/sisu/v2/CHANGELOG b/data/doc/sisu/v2/CHANGELOG
index 38a7a254..b998dbb6 100644
--- a/data/doc/sisu/v2/CHANGELOG
+++ b/data/doc/sisu/v2/CHANGELOG
@@ -12,7 +12,7 @@ Reverse Chronological:
%% Development branch UNSTABLE
-%% 2.3.0.orig.tar.gz (2010-04-26:17/1)
+%% 2.3.0.orig.tar.gz (2010-04-27:17/2)
http://www.jus.uio.no/sisu/pkg/src/sisu_2.3.0.orig.tar.gz
sisu_2.3.0.orig.tar.gz
sisu_2.3.0-1.dsc
@@ -37,6 +37,9 @@ http://www.jus.uio.no/sisu/pkg/src/sisu_2.3.0.orig.tar.gz
* html metadata, show topic_register again
+ * plaintext, bulleted grouped text, clean up output (still not line-wrapped
+ though)
+
* git, start to experiment with file structure to replace sisupod -g and will
be in configure options, to track changes to document, enable creation of
"pods" (zipped content) and allow for remote versioned (or unversioned)
@@ -50,6 +53,12 @@ http://www.jus.uio.no/sisu/pkg/src/sisu_2.3.0.orig.tar.gz
so perhaps not ... best left alone for now ... nothing here yet really, move
along
+ * switch markup for emphasis and bold, now: *{emphasis}* and !{bold}! which
+ is consistent with !_ declaring a line to be bold, the default is that
+ emphasis output is in bold so there is no change at present, at some time in
+ the future it is intended that it be possible to configure emphais aoutput
+ alternatively to be in italics [requested]
+
%% 2.2.0.orig.tar.gz (2010-04-20:16/2)
http://www.jus.uio.no/sisu/pkg/src/sisu_2.2.0.orig.tar.gz
aa487605bc6bf89419c96773ed3738685307353ef4df1ead50d829785910747f 2746848 sisu_2.2.0.orig.tar.gz
--
cgit v1.2.3
|
---|