diff options
author | Ralph Amissah <ralph@amissah.com> | 2012-05-28 05:38:59 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2012-05-28 05:38:59 -0400 |
commit | e8b29c36a083e9047e1059b3121b8cdb588b26fd (patch) | |
tree | 672fa04cfed324f9b7caa4e2232df55cc113fa37 | |
parent | v3: hub, share markup source (--source) not available for composite files (diff) |
v3: html_format, minor cleaningsisu_3.2.10
-rw-r--r-- | data/doc/sisu/CHANGELOG_v3 | 2 | ||||
-rw-r--r-- | lib/sisu/v3/html_format.rb | 44 |
2 files changed, 2 insertions, 44 deletions
diff --git a/data/doc/sisu/CHANGELOG_v3 b/data/doc/sisu/CHANGELOG_v3 index 83d9528e..0dce0ec0 100644 --- a/data/doc/sisu/CHANGELOG_v3 +++ b/data/doc/sisu/CHANGELOG_v3 @@ -45,6 +45,8 @@ http://www.jus.uio.no/sisu/pkg/src/sisu_3.2.10.orig.tar.xz * v3: sisupod.txz processing BUG image copying/processing for sisupod +* v3: html_format, minor cleaning + BUGS * broken mini table of contents (minitoc) manifest for multilingual files, better run without use --exc-manifest-minitoc diff --git a/lib/sisu/v3/html_format.rb b/lib/sisu/v3/html_format.rb index 41ce3b34..85e47e0b 100644 --- a/lib/sisu/v3/html_format.rb +++ b/lib/sisu/v3/html_format.rb @@ -269,50 +269,6 @@ module SiSU_HTML_Format else '' end end - def txt #retired 2.7.9 - txt=if @cf_defaults.cf_0 =~/[at]/ - %{ -<td valign=bottom bgcolor=#{@vz.color_band2}> - <a href="#{Xx[:html_relative1]}txt/#{@file.base_filename.txt}" target="_top" #{@vz.js_plaintext}> - #{@vz.nav_txt_plaintext} - </a> -</td>} - else '' - end - end - def epub #retired 2.7.9 - epub=if @cf_defaults.cf_0 =~/e/ - %{ -<td align="center" bgcolor=#{@vz.color_band2}> - <a href="#{Xx[:html_relative1]}epub/#{@file.base_filename.epub}" target="_top" #{@vz.js_epub}> - #{@vz.nav_txt_epub} - </a> -</td>} - else '' - end - end - def odf #retired 2.7.9 - odf=if @cf_defaults.cf_0 =~/o/ - %{ -<td align="center" bgcolor=#{@vz.color_band2}> - <a href="#{Xx[:html_relative1]}odt/#{@file.base_filename.odt}" target="_top" #{@vz.js_odf}> - #{@vz.nav_txt_odf} - </a> -</td>} - else '' - end - end - def concordance(text) #retired 2.7.9 - if @md.concord_make \ - and @md.wc_words < 300000 #max word count for display of concordance here as would now be a large file - %{<td align="center" bgcolor=#{@vz.color_band2}> - <a href="#{@md.file.base_filename.html_concordance}" target="_top" #{@vz.js_concordance}> - #{text} - </a> - </td>} - else '' - end - end end class XML end |