Class: Manual

Inherits:
Shoes show all
Includes:
HH::Markup, Hpricot
Defined in:
lib/shoes/help.rb

Constant Summary collapse

IMAGE_RE =
/\!(\{([^}\n]+)\})?([^!\n]+\.\w+)\!/
CODE_RE =
/\{{3}(?:\s*\#![^\n]+)?(.+?)\}{3}/m
NL =
"\n"
LANG =
DOCS =
load_docs($lang =~ /\.txt$/ ? $lang : File.join(DIR, "../static/manual-#{LANG}.txt"))
PNUMS =
mk_page_numbers DOCS
PEND =
PNUMS.length
COLORS =
Shoes::COLORS

Constants included from HH::Markup

HH::Markup::TOKENIZER

Constants included from Hpricot

Hpricot::AttrCore, Hpricot::AttrEvents, Hpricot::AttrFocus, Hpricot::AttrHAlign, Hpricot::AttrI18n, Hpricot::AttrVAlign, Hpricot::Attrs, Hpricot::ElementContent, Hpricot::ElementExclusions, Hpricot::ElementInclusions, Hpricot::FORM_TAGS, Hpricot::NamedCharacters, Hpricot::NamedCharactersPattern, Hpricot::OmittedAttrName, Hpricot::SELF_CLOSING_TAGS

Constants inherited from Shoes

Shoes::APPS

Class Method Summary collapse

Instance Method Summary collapse

Methods included from HH::Markup

#highlight

Methods included from Hpricot

XML, build, make, parse, uxs, xchr, xs

Methods inherited from Shoes

APPS, app, url

Class Method Details

.load_docs(path) ⇒ Object



215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
# File 'lib/shoes/help.rb', line 215

def self.load_docs path
  str = IO.read(path).force_encoding("UTF-8")
  str = NKF.nkf('-wLu', str) unless RUBY_PLATFORM =~ /mingw/
  (str.split(/^= (.+?) =/)[1..-1]/2).map do |k, v|
    sparts = v.split(/^== (.+?) ==/)
    sections = (sparts[1..-1]/2).map do |k2, v2|
      meth = v2.split(/^=== (.+?) ===/)
      k2t = k2[/^(?:The )?([\-\w]+)/, 1]
      meth_plain = meth[0].gsub(IMAGE_RE, '')
      h = {title: k2, section: k, description: meth[0], methods: (meth[1..-1]/2)}
      [k2t, h]
    end
    h = {description: sparts[0], sections: sections, class: "toc" + k.downcase.gsub(/\W+/, '')}
    [k, h]
  end
end

.mk_page_numbers(docs) ⇒ Object



232
233
234
235
236
237
238
239
240
241
# File 'lib/shoes/help.rb', line 232

def self.mk_page_numbers docs
  pnum = []
  docs.length.times do |i|
    pnum << [i, nil]
    docs[i][1][:sections].length.times do |j|
      pnum << [i, j]
    end
  end
  pnum
end

Instance Method Details

#color_pageObject



173
174
175
176
177
178
179
180
181
182
183
184
# File 'lib/shoes/help.rb', line 173

def color_page
  COLORS.each do |color, v|
    r, g, b = v
    c = v.dark? ? white : black
    flow width: 0.33 do
      background send(color)
      para fg(strong(color), c), align: 'center'
      para fg("rgb(#{r}, #{g}, #{b})", c), align: 'center'
    end
  end
  para
end

#find_pnum(page) ⇒ Object



208
209
210
211
212
213
# File 'lib/shoes/help.rb', line 208

def find_pnum page
  TOC_LIST.each_with_index do |e, i|
    title, section = e
    return i if title == page
  end
end

#get_title_and_desc(pnum) ⇒ Object



26
27
28
29
30
31
32
33
34
35
36
# File 'lib/shoes/help.rb', line 26

def get_title_and_desc pnum
  chapter, section = PNUMS[pnum]
  return nil unless chapter
  if section
    [pnum, DOCS[chapter][1][:sections][section][1][:title], 
    DOCS[chapter][1][:sections][section][1][:description], 
    DOCS[chapter][1][:sections][section][1][:methods]]
  else
    [pnum, DOCS[chapter][0], DOCS[chapter][1][:description], []]
  end
end

#html_manualObject



243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
# File 'lib/shoes/help.rb', line 243

def html_manual
  dir = ask_save_folder
  return unless dir
  FileUtils.mkdir_p File.join(dir, 'static')
  FileUtils.mkdir_p File.join(dir, 'snapshots')
  %w[rshoes-icon.png gshoes-icon.png shoes-manual-apps.png manual.css code_highlighter.js code_highlighter_ruby.js].
    each{|x| FileUtils.cp "#{DIR}/../static/#{x}", "#{dir}/static"}
  Dir[File.join DIR, '../static/man-*.png'].each{|x| FileUtils.cp x, "#{dir}/static"}
  Dir[File.join DIR, '../snapshots/sample*.png'].each{|x| FileUtils.cp x, "#{dir}/snapshots"}

  TOC_LIST.length.times do |n|
    num, title, desc, methods = get_title_and_desc n
    open File.join(dir, "#{TOC_LIST[n][0]}.html"), 'w' do |f|
      f.puts mk_html(title, desc, methods, TOC_LIST[n+1], get_title_and_desc(n+1), mk_sidebar_list(num))
    end
  end
end

#index(pnum = 0) ⇒ Object



17
18
19
20
21
22
23
24
# File 'lib/shoes/help.rb', line 17

def index pnum = 0
  font LANG == 'ja' ? 'MS UI Gothic' : 'Arial'
  style Link, underline: false, weight: 'bold'
  style LinkHover, stroke: '#06E'
  self.scroll_top = 0
  table_of_contents.each{|toc| TOC << toc} if TOC.empty?
  manual *get_title_and_desc(pnum.to_i)
end

#manual(pnum, docs_title, docs_description, docs_methods) ⇒ Object



48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# File 'lib/shoes/help.rb', line 48

def manual pnum, docs_title, docs_description, docs_methods
  flow do
    show_header docs_title
    show_toc
    paras = mk_paras docs_description
    flow width: 0.8, margin: [10, 0, 20, 0] do
      show_page paras, true
      show_methods docs_methods
      para link('top'){visit "/manual/0"}, "  ",
        link('prev'){visit "/manual/#{(pnum-1)%PEND}"}, "  ", 
        link('next'){visit "/manual/#{(pnum+1)%PEND}"}, "  ", 
        link('end'){visit "/manual/#{PEND-1}"}
    end
  end
end

#manual_p(str) ⇒ Object



369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
# File 'lib/shoes/help.rb', line 369

def manual_p str
  str.gsub(/\n+\s*/, " ").
    gsub(/&/, '&amp;').gsub(/>/, '&gt;').gsub(/>/, '&lt;').gsub(/"/, '&quot;').
    gsub(/`(.+?)`/m, '<code>\1</code>').gsub(/\[\[BR\]\]/i, "<br />\n").
    gsub(/\^(.+?)\^/m, '\1').
    gsub(/'''(.+?)'''/m, '<strong>\1</strong>').gsub(/''(.+?)''/m, '<em>\1</em>').
    gsub(/\[\[((http|https):\/\/\S+?)\]\]/m, '<a href="\1" target="_new">\1</a>').
    gsub(/\[\[((http|https):\/\/\S+?) (.+?)\]\]/m, '<a href="\1" target="_new">\3</a>').
    gsub(/\[\[(\S+?)\]\]/m) do
      ms, mn = $1.split(".", 2)
      if mn
        '<a href="' + ms + '.html#' + mn + '">' + mn + '</a>'
      else
        '<a href="' + ms + '.html">' + ms + '</a>'
      end
    end.
    gsub(/\[\[(\S+?) (.+?)\]\]/m, '<a href="\1.html">\2</a>').
    gsub(/\!(\{[^}\n]+\})?([^!\n]+\.\w+)\!/) do
      '<img src="' + "static/#$2" + '" />'
    end
end

#marker(txt, term) ⇒ Object



454
455
456
# File 'lib/shoes/help.rb', line 454

def marker txt, term
  term && txt ? txt.gsub(term, bg(term, yellow)) : txt
end

#mk_executable(code) ⇒ Object



165
166
167
168
169
170
171
# File 'lib/shoes/help.rb', line 165

def mk_executable code
  if code =~ /\# Not yet available/
    "Shoes.app{para 'Sorry, not yet available...'}"
  else
    code
  end
end

#mk_html(title, desc, methods, next_file, next_title, menu) ⇒ Object



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
# File 'lib/shoes/help.rb', line 261

def mk_html title, desc, methods, next_file, next_title, menu
  man = self
  Hpricot do
    xhtml_transitional do
      head do
        meta :"http-equiv" => "Content-Type", "content" => "text/html; charset=utf-8"
        title "The Green Shoes Manual // #{title}"
        script type: "text/javascript", src: "static/code_highlighter.js"
        script type: "text/javascript", src: "static/code_highlighter_ruby.js"
        style type: "text/css" do
          text "@import 'static/manual.css';"
        end
      end
      body do
        div.main! do
          div.manual! do
            h2 "The Green Shoes Manual #{VERSION}"
            h1 title

            paras = man.mk_paras desc
            div.intro{p man.manual_p(paras.shift)}

            html_paragraph = proc do 
              paras.each do |str|
                if str =~ CODE_RE
                  pre{code.rb $1.gsub(/^\s*?\n/, '')}
                else
                  cmd, str = case str
                  when /\A==== (.+) ====/; [:h4, $1]
                  when /\A=== (.+) ===/; [:h3, $1]
                  when /\A== (.+) ==/; [:h2, $1]
                  when /\A= (.+) =/; [:h1, $1]
                  when /\A\{COLORS\}/
                    COLORS.each do |color, v|
                      f = v.dark? ? "white" : "black"
                      div.color(style: "background: #{color}; color: #{f}"){h3 color; p("rgb(%d, %d, %d)" % v)}
                    end
                  when /\A\{SAMPLES\}/
                    man.mk_sample_names.each do |name|
                      name = name[0...-3]
                      div.sample do
                        h3 name
                        p '<a href="snapshots/%s.png"><img src="snapshots/%s.png" alt="%s" border=0 width=50 height=50></a>' % [name, name, name]
                      end
                    end
                  when /\A \* (.+)/m
                    ul{$1.split(/^ \* /).each{|x| li{self << man.manual_p(x)}}}
                  else
                    [:p, str]
                  end
                  send(cmd){self << man.manual_p(str)} if cmd.is_a?(Symbol)
                end
              end
            end

            html_paragraph.call

            methods.each do |m, d|
              n = m.index("\u00BB")
              n ? (sig, val = m[0...n-1], m[n-1..-1]) : (sig, val = m, nil)
              aname = sig[/^[^(=]+=?/].gsub(/\s/, '').downcase
              a name: aname
              div.method do
                a sig, href: "##{aname}"
                text val if val
              end
              div.desc do
                paras = man.mk_paras d
                html_paragraph.call
              end
            end

            p.next{text "Next: "; a next_title[1], href: "#{next_file[0]}.html"} if next_title
          end
          div.sidebar do
            img src: "static/gshoes-icon.png"
            ul do
              li{a.prime "HELP", href: "./"}
              menu.each do |m|
                li do
                  unless m.is_a?(Array)
                    a m, href: "#{m}.html"
                  else
                    ul.sub do
                      m.each do |sm|
                        li{a sm, href: "#{sm}.html"}
                      end
                    end
                  end
                end
              end
            end
          end
        end
      end
    end
  end.to_html
end


154
155
156
157
158
159
# File 'lib/shoes/help.rb', line 154

def mk_links txts, term = nil
  txts.map{|txt| txt.gsub(IMAGE_RE, '')}.
    map{|txt| txt =~ /\[\[(\S+?)\]\]/m ? (t = $1.split('.'); link(ins marker(t.last, term)){visit "/manual/#{find_pnum t.first}"}) : txt}.
    map{|txt| txt =~ /\[\[(\S+?) (.+?)\]\]/m ? (url = $1; link(ins marker($2, term)){visit url =~ /^http/ ? url : "/manual/#{find_pnum url}"}) : 
    (txt.is_a?(String) ? marker(txt, term) : txt)}
end

#mk_paras(str) ⇒ Object



161
162
163
# File 'lib/shoes/help.rb', line 161

def mk_paras str
  str.split("\n\n") - ['']
end

#mk_sample_namesObject



197
198
199
200
201
202
203
204
205
206
# File 'lib/shoes/help.rb', line 197

def mk_sample_names
  Dir[File.join(DIR, '../samples/sample*.rb')].map do |file|
    orig_name = File.basename file
    dummy_name = orig_name.sub(/sample(.*)\.rb/){
      first, second = $1.split('-')
      "%02d%s%s" % [first.to_i, ('-' if second), second]
    }
    [dummy_name, orig_name]
  end.sort.map &:last
end

#mk_search_pageObject



391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
# File 'lib/shoes/help.rb', line 391

def mk_search_page
  flow do
    show_header 'Search'
    show_toc
    pnum, docs_title, docs_description, docs_methods = get_title_and_desc(25)
    paras = mk_paras docs_description

    flow width: 0.8, margin: [10, 0, 20, 0] do
      el = edit_line width: 300
      button 'search' do
        term = el.text.strip
 unless term.empty?
          descs, methods = search term
          @f.clear{show_search_result term, descs, methods} 
        end
      end
      stack(height: 20){}
      @f = flow{}
    end
  end
end

#mk_sidebar_list(num) ⇒ Object



360
361
362
363
364
365
366
367
# File 'lib/shoes/help.rb', line 360

def mk_sidebar_list num
  toc = []
  [0..3, 4..9, 10..16, 17..32, 33..37].each do |r|
    toc.push TOC_LIST[r.first][0]
    toc.push(TOC_LIST[r.first+1..r.last].to_a.map &:first) if r.include?(num)
  end
  toc
end

#sample_pageObject



186
187
188
189
190
191
192
193
194
195
# File 'lib/shoes/help.rb', line 186

def sample_page
  mk_sample_names.each do |file|
    stack width: 80 do
      inscription file[0...-3]
      img = image File.join(DIR, "../snapshots/#{file[0..-3]}png"), width: 50, height: 50
      img.click{Dir.chdir(File.join DIR, '../samples'){instance_eval(IO.read(file),file,0)}}
      para
    end
  end
end

#search(term) ⇒ Object



413
414
415
416
417
418
419
420
421
422
423
424
425
# File 'lib/shoes/help.rb', line 413

def search term
  descs, methods = [], []
  PNUMS.each_with_index do |(chapter, section), pnum|
    pnum, docs_title, docs_description, docs_methods = get_title_and_desc(pnum)
    paras = mk_paras(docs_description)
    descs << [chapter, section, docs_title, paras] if paras.map{|txt| txt.gsub(CODE_RE, '').gsub(IMAGE_RE, '')}.join(' ').index(term)
    docs_methods.each do |docs_method|
      m, d = docs_method
      methods << [chapter, section, docs_title, docs_method] if m.index(term) or d.gsub(CODE_RE, '').gsub(IMAGE_RE, '').index(term)
    end
  end
  return descs, methods
end

#show_header(docs_title) ⇒ Object



64
65
66
67
68
69
70
# File 'lib/shoes/help.rb', line 64

def show_header docs_title
  background tr_color("#ddd")..white, angle: 90
  background black..green, height: 90
  para fg("The Green Shoes Manual #{VERSION}", gray), left: 120, top: 10
  title fg(docs_title, white), left: 120, top: 30, font: 'Coolvetica'
  image File.join(DIR, '../static/gshoes-icon.png'), left: 5, top: -12, width: 110, height: 110, nocontrol: true
end

#show_methods(docs_methods, term = nil) ⇒ Object



85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# File 'lib/shoes/help.rb', line 85

def show_methods docs_methods, term = nil
  docs_methods.each do |m, d|
    flow do
      background rgb(60, 60, 60), curve: 5
      n = m.index("\u00BB")
      if n
        para '  ', fg(strong(m[0...n]), white), fg(strong(m[n..-1]), rgb(160, 160, 160))
      else
        para '  ', fg(strong(m), white)
      end
    end
    para
    show_page mk_paras(d.gsub('&', '\u0026')), false, term
  end
end

#show_page(paras, intro = false, term = nil) ⇒ Object



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
# File 'lib/shoes/help.rb', line 101

def show_page paras, intro = false, term = nil
  paras.each_with_index do |text, i|
    if text.index CODE_RE
      text.gsub CODE_RE do |lines|
        lines = lines.split NL
        n = lines[1] =~ /\#\!ruby/ ? 2 : 1
        _code = lines[n...-1].join(NL+'  ')
        flow do
          background rgb(190, 190, 190), curve: 5
          inscription link(fg('Run this', green)){eval mk_executable(_code), TOPLEVEL_BINDING}, margin_left: 480
          if _code.include? 'te-su-to'
            para fg(code('  ' + _code), maroon), NL, margin_left: -10
          else
            para code(highlight('  ' + _code, nil)), NL, margin_left: -10
   end
        end
        para
      end
      next
    end
    
    if text =~ /\A \* (.+)/m
      $1.split(/^ \* /).each do |txt|
        image File.join(DIR, '../static/gshoes-icon.png'), width: 20, height: 20
        flow(width: 510){show_paragraph txt, intro, i, term}
      end
    else
      show_paragraph text, intro, i, term
    end
  end
end

#show_paragraph(txt, intro, i, term = nil) ⇒ Object



133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
# File 'lib/shoes/help.rb', line 133

def show_paragraph txt, intro, i, term = nil
  txt = txt.gsub("\n", ' ').gsub(/`(.+?)`/m){fg code($1), rgb(255, 30, 0)}.
    gsub(/\^(.+?)\^/m, '\1').gsub(/'''(.+?)'''/m){strong($1)}.gsub(/''(.+?)''/m){em($1)}.
    gsub(/\[\[BR\]\]/i, "\n")
  txts = txt.split(/(\[\[\S+?\]\])/m).map{|s| s.split(/(\[\[\S+? .+?\]\])/m)}.flatten
  case txts[0]
  when /\A==== (.+) ====/; caption marker($1, term), size: 24
  when /\A=== (.+) ===/; tagline marker($1, term), size: 12, weight: 'bold'
  when /\A== (.+) ==/; subtitle marker($1, term)
  when /\A= (.+) =/; title marker($1, term)
  when /\A\{COLORS\}/; flow{color_page}
  when /\A\{SAMPLES\}/; flow{sample_page}
  else
    para *mk_links(txts, term), NL, (intro and i.zero?) ? {size: 16} : ''
    txt.gsub IMAGE_RE do
      image File.join(DIR, "../static/#{$3}"), eval("{#{$2 or "margin_left: 50"}}")
      para
    end
  end
end

#show_search_result(term, descs, methods) ⇒ Object



427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
# File 'lib/shoes/help.rb', line 427

def show_search_result term, descs, methods
  return subtitle 'Not Found' if descs.empty? and methods.empty?
  methods.each do |(chapter, section, docs_title, docs_method)|
    flow margin: [10, 10, 0, 5] do
      background rgb(200, 200, 200), curve: 5
      para "#{DOCS[chapter][0]}: #{docs_title.sub('The', '').split(' ').first}: ", 
        link(docs_method[0]){@f.clear{title docs_title; show_methods [docs_method], term}}, NL
    end
    stack(height: 2){}
  end
  descs.each do |(chapter, section, docs_title, paras)|
    flow margin_left: 10 do
      if section
        background gray, curve: 5
        tagline link(fg(docs_title, white)){@f.clear{title docs_title; show_page paras, true, term}}, width: 320
        inscription "Sub-Section under #{DOCS[chapter][0]}", stroke: lightgrey, width: 180
      else
        background black.push(0.8), curve: 5
 subtitle link(fg(docs_title, white)){@f.clear{title docs_title; show_page paras, true, term}}, width: 320
        inscription 'Section Header', stroke: lightgrey, width: 100
      end
    end
    stack(height: 2){}
  end
  para NL*3
end

#show_tocObject



72
73
74
75
76
77
78
79
80
81
82
83
# File 'lib/shoes/help.rb', line 72

def show_toc
  stack(height: 120){}
  flow width: 0.2, margin_left: 10 do
    flow(margin_right: 20) do
      background black.push(0.7), curve: 5
      inscription "Not findng it?\n", 'Try ', link(fg 'Search', white){visit '/mk_search_page'}, '!', align: 'center', stroke: lightgrey
    end
    stack(height: 10){}
    para *TOC
    para link(fg 'to_html', darkmagenta){html_manual}
  end
end

#table_of_contentsObject



38
39
40
41
42
43
44
45
46
# File 'lib/shoes/help.rb', line 38

def table_of_contents
  PNUMS.map.with_index do |e, pnum|
    chapter, section = e
    title = section ? DOCS[chapter][1][:sections][section][1][:title] : DOCS[chapter][0]
    title = title.sub('The', '').split(' ').first
    TOC_LIST << [title, section]
    section ? ['   ', link(title){visit "/manual/#{pnum}"}, "\n"] : [link(fg(title, darkgreen)){visit "/manual/#{pnum}"}, "\n"]
  end.flatten
end