aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/sisu/v0/html_tune.rb
blob: 749f51807cdaff9a3d1179feb00ecbc4d21576ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
=begin
 * Name: SiSU information Structuring Universe - Structured information, Serialized Units
 * Author: Ralph Amissah
   * http://www.jus.uio.no/sisu
   * http://www.jus.uio.no/sisu/SiSU/download.html

 * Description: html generation, html pre-processing

 * Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Ralph Amissah

 * License: GPL 2 or later

  Summary of GPL 2

  This program is free software; you can redistribute it and/or modify it
  under the terms of the GNU General Public License as published by the Free
  Software Foundation; either version 2 of the License, or (at your option)
  any later version.

  This program is distributed in the hope that it will be useful, but WITHOUT
  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
  more details.

  You should have received a copy of the GNU General Public License along
  with this program; if not, write to the Free Software Foundation, Inc.,
  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA

  If you have Internet connection, the latest version of the GPL should be
  available at these locations:
    http://www.fsf.org/licenses/gpl.html
    http://www.gnu.org/copyleft/gpl.html
    http://www.jus.uio.no/sisu/gpl2.fsf

  SiSU was first released to the public on January 4th 2005

  SiSU uses:

  *  Standard SiSU markup syntax,
  *  Standard SiSU meta-markup syntax, and the
  *  Standard SiSU object citation numbering and system

  © Ralph Amissah 1997, current 2007.
  All Rights Reserved.

 * Ralph Amissah: ralph@amissah.com
                  ralph.amissah@gmail.com
=end
require "#{SiSU_lib}/param"
module SiSU_Tune
  #require "#{SiSU_lib}/defaults"
  require "#{SiSU_lib}/sysenv"
  require "#{SiSU_lib}/param"
  require "#{SiSU_lib}/html_format" #watch
  include SiSU_Env
  include SiSU_Screen
  @@line_mode=''
  @@endnote_array=[]
  @@endnote_call_counter=1
  @@table_align='<table summary='' width="96%" border="0" bgcolor="white" cellpadding="0" col="3">
<tr ...><td width="2%" align="right">
&nbsp\;</td>
<td width="94%" valign="top" align="justify">'
  @@table_align_close='</td>
<td width="4%" align="right" valign="top">
<font size="1" color="#777777">
&nbsp;&nbsp;&nbsp;</font> </td></tr></table>'
  @@counter,@@column,@columns=0,0,0
  class Output
    def initialize(data,md)
      @data,@md=data,md
      @cX=SiSU_Screen::Ansi.new(@md.cmd).cX
    end
    def hard_output
      my_make=SiSU_Env::Create_file.new(@md.cmd,@md.fns)
      @filename_tune=my_make.file_tune
      data=[]
      @data.each{|x| x.strip; data << x if not x.empty?} #1.9 array?
      data.each do |para|
        @filename_tune.puts para, "\n" #if para !~/¡/
      end
    end
    def marshal
      my_make=SiSU_Env::Create_file.new(@md.cmd,@md.fns)
      @marshal_tune=my_make.marshal_tune
      File.open(@marshal_tune,'w') {|f| Marshal.dump(@data.to_a,f)}
    end
  end
  class Clean_html
    def initialize(html='')
      @html=html
    end
    def clean
      @html.gsub!(/¢/,'&cent;')    # &#162;
      @html.gsub!(/£/,'&pound;')   # &#163;
      @html.gsub!(/¥/,'&yen;')     # &#165;
      @html.gsub!(/§/,'&sect;')    # &#167;
      @html.gsub!(/©/,'&copy;')    # &#169;
      @html.gsub!(/ª/,'&ordf;')    # &#170;
      @html.gsub!(/«/,'&laquo;')   # &#171;
      @html.gsub!(/®/,'&reg;')     # &#174;
      @html.gsub!(/°/,'&deg;')     # &#176;
      @html.gsub!(/±/,'&plusmn;')  # &#177;
      @html.gsub!(/²/,'&sup2;')    # &#178;
      @html.gsub!(/³/,'&sup3;')    # &#179;
      @html.gsub!(/µ/,'&micro;')   # &#181;
      @html.gsub!(/¶/,'&para;')    # &#182;
      @html.gsub!(/¹/,'&sup1;')    # &#185;
      @html.gsub!(/º/,'&ordm;')    # &#186;
      @html.gsub!(/»/,'&raquo;')   # &#187;
      @html.gsub!(/¼/,'&frac14;')  # &#188;
      @html.gsub!(/½/,'&frac12;')  # &#189;
      @html.gsub!(/¾/,'&frac34;')  # &#190;
      @html.gsub!(/×/,'&times;')   # &#215;
      @html.gsub!(/÷/,'&divide;')  # &#247;
      @html.gsub!(/¿/,'&iquest;')  # &#191;
      @html.gsub!(/À/,'&Agrave;')  # &#192;
      @html.gsub!(/Á/,'&Aacute;')  # &#193;
      @html.gsub!(/Â/,'&Acirc;')   # &#194;
      @html.gsub!(/Ã/,'&Atilde;')  # &#195;
      @html.gsub!(/Ä/,'&Auml;')    # &#196;
      @html.gsub!(/Å/,'&Aring;')   # &#197;
      @html.gsub!(/Æ/,'&AElig;')   # &#198;
      @html.gsub!(/Ç/,'&Ccedil;')  # &#199;
      @html.gsub!(/È/,'&Egrave;')  # &#200;
      @html.gsub!(/É/,'&Eacute;')  # &#201;
      @html.gsub!(/Ê/,'&Ecirc;')   # &#202;
      @html.gsub!(/Ë/,'&Euml;')    # &#203;
      @html.gsub!(/Ì/,'&Igrave;')  # &#204;
      @html.gsub!(/Í/,'&Iacute;')  # &#205;
      @html.gsub!(/Î/,'&Icirc;')   # &#206;
      @html.gsub!(/Ï/,'&Iuml;')    # &#207;
      @html.gsub!(/Ð/,'&ETH;')     # &#208;
      @html.gsub!(/Ñ/,'&Ntilde;')  # &#209;
      @html.gsub!(/Ò/,'&Ograve;')  # &#210;
      @html.gsub!(/Ó/,'&Oacute;')  # &#211;
      @html.gsub!(/Ô/,'&Ocirc;')   # &#212;
      @html.gsub!(/Õ/,'&Otilde;')  # &#213;
      @html.gsub!(/Ö/,'&Ouml;')    # &#214;
      @html.gsub!(/Ø/,'&Oslash;')  # &#216;
      @html.gsub!(/Ù/,'&Ugrave;')  # &#217;
      @html.gsub!(/Ú/,'&Uacute;')  # &#218;
      @html.gsub!(/Û/,'&Ucirc;')   # &#219;
      @html.gsub!(/Ü/,'&Uuml;')    # &#220;
      @html.gsub!(/Ý/,'&Yacute;')  # &#221;
      @html.gsub!(/Þ/,'&THORN;')   # &#222;
      @html.gsub!(/ß/,'&szlig;')   # &#223;
      @html.gsub!(/à/,'&agrave;')  # &#224;
      @html.gsub!(/á/,'&aacute;')  # &#225;
      @html.gsub!(/â/,'&acirc;')   # &#226;
      @html.gsub!(/ã/,'&atilde;')  # &#227;
      @html.gsub!(/ä/,'&auml;')    # &#228;
      @html.gsub!(/å/,'&aring;')   # &#229;
      @html.gsub!(/æ/,'&aelig;')   # &#230;
      @html.gsub!(/ç/,'&ccedil;')  # &#231;
      @html.gsub!(/è/,'&egrave;')  # &#232;
      @html.gsub!(/é/,'&eacute;')  # &#233;
      @html.gsub!(/ê/,'&ecirc;')   # &#234;
      @html.gsub!(/ë/,'&euml;')    # &#235;
      @html.gsub!(/ì/,'&igrave;')  # &#236;
      @html.gsub!(/í/,'&iacute;')  # &#237;
      @html.gsub!(/î/,'&icirc;')   # &#238;
      @html.gsub!(/ï/,'&iuml;')    # &#239;
      @html.gsub!(/ð/,'&eth;')     # &#240;
      @html.gsub!(/ñ/,'&ntilde;')  # &#241;
      @html.gsub!(/ò/,'&ograve;')  # &#242;
      @html.gsub!(/ó/,'&oacute;')  # &#243;
      @html.gsub!(/ô/,'&ocirc;')   # &#244;
      @html.gsub!(/õ/,'&otilde;')  # &#245;
      @html.gsub!(/ö/,'&ouml;')    # &#246;
      @html.gsub!(/ø/,'&oslash;')  # &#248;
      @html.gsub!(/ù/,'&ugrave;')  # &#250;
      @html.gsub!(/ú/,'&uacute;')  # &#251;
      @html.gsub!(/û/,'&ucirc;')   # &#252;
      @html.gsub!(/ü/,'&uuml;')    # &#253;
      @html.gsub!(/þ/,'&thorn;')   # &#254;
      @html.gsub!(/ÿ/,'&yuml;')    # &#255;
      @html.gsub!(/ý/,'&yacute;')
      @html
    end
  end
  class Tune
    @@dp=nil
    def initialize(data,md)
      @data,@md=data,md
      @vz=SiSU_Env::Get_init.instance.skin
      @env=SiSU_Env::Info_env.new(@md.fns)
      @sys=SiSU_Env::System_call.new
      @dp=@@dp ||=SiSU_Env::Info_env.new.digest.pattern
      @env=SiSU_Env::Info_env.new(@md.fns)
      #@utf8=SiSU_character_encode::UTF8 #.new
    end
    def songsheet
      begin
        @cX=SiSU_Screen::Ansi.new(@md.cmd).cX
        tell=SiSU_Screen::Ansi.new(@md.cmd,'Tune')
        tell.txt_grey unless @md.cmd =~/q/
        data=Tune.new(@data,@md).endnotes_html
        data=Tune.new(data,@md).url_markup
        if @sys.locale =~/utf-?8/i
          data=Tune.new(data,@md).utf8_markup
        end
        if @md.cmd =~/M/  #Hard Output Tune Optional on/off here
          data=Output.new(data,@md).hard_output
          Output.new(data,@md).marshal
        end
        tuned=Tune.new(@data,@md).output
      rescue; SiSU_Errors::Info_error.new($!,$@,@md.cmd,@md.fns).error
      ensure
      end
    end
    def para_numbers
      data=@data
      @tuned_file=[]
      data.each do |para|
        para.gsub!(/(\d~(\S+))/,'\1<a name="H#\2">#\2.</a>&nbsp;')
        @tuned_file << para
      end
    end
    def utf8_markup
      @tuned_file=[]
      @data.each do |para|
        #@utf8.new(para).html
        #@utf8.html(@para)
        if @sys.locale =~/utf-?8/i # instead ucs for utf8 #require 'iconv' ? Iñtërnâtiônàlizætiøn
          #¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûü
          #¢£¥§©ª«®°±²³µ¶¹º»¼½¾×÷
          ##para.gsub!(//, '&#;')
          ##para.gsub!(//, '&;')
          para=SiSU_Tune::Clean_html.new(para).clean
        end
        @tuned_file << para
      end
    end
    def urls(data)
      @words=[]
      data.each do |word|
        @words << if word=~/\{(.+?)\}((?:https?|ftp)\S+|image)/
          if word =~/\{(.+?)\}((?:https?|ftp)\S+|image)([.,](?:\s|$))/
            m,u,d=/\{(.+?)\}((?:https?|ftp)\S+|image)([.,](?:\s|$))/.match(word).captures
          else m,u=/\{(.+?)\}((?:https?|ftp)\S+|image)/.match(word).captures
            d=''
          end
          case m
          when /\.png|\.jpg|\.gif|c=|\d+x\d+/
            w,h=/(\d+)x(\d+)/.match(m).captures if m =~/\d+x\d+/
            w=%{width="#{w}"} if w
            h=%{height="#{h}"} if h
            c=m[/"(.+?)"/m,1]
            caption=%{<br /><p class="caption">#{c}</p>} if c
            png=m.scan(/\S+/)[0]
            image_path=if @md.fns =~/\.-ss[tm]$/; @env.url.images_external
            else                                  @env.url.images_local
            end
            ins=if u and u.strip !~/^image$/
              %{<a href="#{u}"><img src="#{image_path}/#{png}" #{w} #{h} naturalsizeflag="0" align="bottom" border="0"></a>#{caption}}
            else %{<img src="#{image_path}/#{png}" #{w} #{h} naturalsizeflag="0" align="bottom" border="0">#{caption}}
            end
            word.gsub!(/\{.+?\}((?:https?|ftp)\S+|image)/,ins)
          else
            link=m[/(.+)/m]
            png=m.scan(/\S+/)[0].strip
            link=link.strip
            ins=%{<a href="#{u}">#{link}</a>#{d}}
            word.gsub!(/\{.+?\}(?:https?|ftp)\S+/,ins)
          end
          word
        else word
        end
        word
      end
      @words
    end
    def url_markup
      data=@data
      @tuned_file=[]
      data.each do |para|
        para.gsub!(/<:name\#(\S+?)>/,'<a name="\1"></a>')
        para.gsub!(/<-#>/,'')
        para.gsub!(/<:p[bn]>/,'')
        para.gsub!(/<(p|br)>/,'<\1 />')
        para.gsub!(/<:br>/,'<br />')
        if para =~/<::\s+/ #watch
          para.gsub!(/<::\s+(\S+?)\s+!>/,
            %{<img src="#{@env.url.images}/c_\\1.png" alt="\\1" width="14" height="14" align="bottom" border="0">})
        end
        if para =~/<:image\s+/
          para.gsub!(/<:image\s+(http\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+>/,
            %{<a href="\\1"><img src="#{@env.url.images_local}/\\2" \\3 \\4 naturalsizeflag="0" align="bottom" border="0"></a>})
          para.gsub!(/<:image\s+(http\S+)\s+(\S+)\s+>/,
            %{<a href="\\1"><img src="#{@env.url.images_local}/\\2" naturalsizeflag="0" align="bottom" border="0"></a>})
          para.gsub!(/<:image\s+(\S+)\s+(\S+)\s+(\S+)\s+>/,
            %{<img src="#{@env.url.images_local}/\\1" \\2 \\3 naturalsizeflag="0" align="bottom" border="0">})
          para.gsub!(/<:image\s+(\S+)\s+>/,
            %{<img src="#{@env.url.images_local}/\\1" naturalsizeflag="0" align="bottom" border="0">})
        end
        if para =~/\{.+?\}((?:http|ftp)\S+|image)/
          @word_mode=para.scan(/\{.+?\}(?:(?:https?|ftp)\S+|image)|\S+/)
          word_mode=urls(@word_mode)
          words=word_mode.join(' ')
          para.gsub!(/.+/,words)
        end
        if (para !~/^0~/)
          para.gsub!(/\\copyright/i,%{<sup>&copy;</sup>})
          if (para !~/\<:ad\s+\.\.\//)
            para.gsub!(/\<:ad\s+(\S+)?\s+(\S+\.png)\s+(.+)?\;\s+(.+)?\;\s*!\>/,
              %{\n<center><a href="http:\/\/\\1" target="external"><img src="#{@env.url.images_local}/\\2" alt="\\3"></a></center>\n})
          else
            para.gsub!(/\<:ad\s+(\S+)?\s+(\S+\.png)\s+(.+)?\;\s+(.+)?\;\s*\>/,
              %{\n<center><a href="\\1" target="_top"><img src="#{@env.url.images_local}/\\2" alt="\\3"></a></center>\n})
          end
          para.gsub!(/!pick/, %{<img border="0" height="15" width="15" src="#{@env.url.images}/#{@vz.icon_choice}" alt="stellar">})
          para.gsub!(/!new/, %{&nbsp;<img border="0" height="15" width="15" src="#{@env.url.images}/#{@vz.icon_new}" alt="new">})
          para.gsub!(/<:h(.{1,7}?)>/,'<a href="#h\1">\1</a>')
          para.gsub!(/<:to(\d{1,7}?)>/,'<a href="#to\1">to&nbsp;{&nbsp;\1&nbsp;}</a> ')
          if (para =~/\b\S+\@\S+?\.\S+/ and para !~/(\"\S+\@\S+?\.\S+\"|>\S+\@\S+?\.\S+?<)/)
            para.gsub!(/\b(\S+\@\S+?\.\S+)(\s)/,'&lt;<a href="mailto:\1">\1</a>&gt;\2')
          end
          if (para !~/(\"\w+:\/\/\S+?\"|>\s*\w+:\/\/\w+?\S*<)/) #url markup http etc.
            if para=~/\w+:\/\/\S+?\.\S+?[.,] /
              para.gsub!(/(\w+:\/\/\S+?\.\S+?)([.,] )/,'&lt;<a href="\1" target="_top">\1</a>&gt;\2') #full stops ! have been a bother
            else
              para.gsub!(/(\w+:\/\/\S+?\.\S+)/, '&lt;<a href="\1" target="_top">\1</a>&gt;')
            end
          end
          if (para =~/[ ^](?:https?|ftp):\/\/\S+/) #url markup http leftovers watch carefully may accept too much 2004w46
            if para=~/([ ^])((?:https?|ftp):\/\/\S+?)([\.,] )/
            para.gsub!(/([ ^])((?:https?|ftp):\/\/\S+?)([\.,] )/,'\1&lt;<a href="\2" target="_top">\2</a>&gt;\3') #full stops ! have been a bother
            else
              para.gsub!(/([ ^])((?:https?|ftp):\/\/\S+)/,'\1&lt;<a href="\2" target="_top">\2</a>&gt;')
            end
          end
          if (para =~/..\/\S+/ and para !~/(\"..\/\S+?\"|>\s*..\/\S+<)/)
            para.gsub!(/(\.\.\/\S+)/,'<a href="\1">\1</a>')
          end
          para.gsub!(/<a href="\.\.\//,%{<a href="#{@vz.url_site}/})
        end
        @tuned_file << para
      end
    end
    def endnotes_html
      data=@data
      @tuned_file=[]
      data.each do |para|
        para.gsub!(/(~[{])(\d+) (.+?) <#@dp>([}]~)/,
          '&nbsp;<a name="-\2" href="#_\2">&nbsp;<sup>\2</sup>&nbsp;</a> ' +  #note- endnote-
          '\1\2 <a name="_\2" href="#-\2">&nbsp;<sup>\2.</sup></a> \3 \4') #endnote- note- (careful may have switched)
        para.gsub!(/(~\[)([*+]\d+) (.+?) <#@dp>(\]~)/,
          '&nbsp;<a name="-\2" href="#_\2">&nbsp;<sup>\2</sup>&nbsp;</a> ' +  #note- endnote-
          '\1\2 <a name="_\2" href="#-\2">&nbsp;<sup>\2.</sup></a> \3 \4') #endnote- note- (careful may have switched)
        para.gsub!(/(~\{)([*+]+) (.+?) <#@dp>(\}~)/,
          '&nbsp;<a name="-\2" href="#_\2">&nbsp;<sup>\2</sup>&nbsp;</a> ' +  #note- endnote-
          '\1\2 <a name="_\2" href="#-\2">&nbsp;<sup>\2</sup></a> \3 \4') #endnote- note- (careful may have switched)
          @tuned_file << para
        end
    end
    def output
      data=@data
      @tuned_file=[]
      data.each do |para|
        para.strip!
        para.chomp!
        @tuned_file << para
      end
      @tuned_file << "\n<EOF>" if (@md.fns =~/\.sst0/) #remove
      @tuned_file
    end
  end
end
__END__