Class: ReVIEW::EPUBMaker

Inherits:
Object show all
Includes:
EPUBMaker, REXML, MakerHelper
Defined in:
lib/review/epubmaker.rb,
lib/review/epubmaker/reviewheaderlistener.rb

Defined Under Namespace

Classes: ReVIEWHeaderListener

Class Method Summary collapse

Instance Method Summary collapse

Methods included from MakerHelper

bindir, #cleanup_mathimg, copy_images_to_dir, #default_imgmath_preamble, #make_math_images, #make_math_images_dvipng, #make_math_images_pdfcrop

Constructor Details

#initializeEPUBMaker

Returns a new instance of EPUBMaker.



34
35
36
37
38
39
# File 'lib/review/epubmaker.rb', line 34

def initialize
  @producer = nil
  @htmltoc = nil
  @buildlogtxt = 'build-log.txt'
  @logger = ReVIEW.logger
end

Class Method Details

.execute(*args) ⇒ Object



69
70
71
# File 'lib/review/epubmaker.rb', line 69

def self.execute(*args)
  self.new.execute(*args)
end

Instance Method Details

#build_body(basetmpdir, yamlfile) ⇒ Object



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
# File 'lib/review/epubmaker.rb', line 299

def build_body(basetmpdir, yamlfile)
  @precount = 0
  @bodycount = 0
  @postcount = 0

  @manifeststr = ''
  @ncxstr = ''
  @tocdesc = []

  basedir = File.dirname(yamlfile)
  base_path = Pathname.new(basedir)
  book = ReVIEW::Book.load(basedir)
  book.config = @config
  @converter = ReVIEW::Converter.new(book, ReVIEW::HTMLBuilder.new)
  @compile_errors = nil

  book.parts.each do |part|
    if part.name.present?
      if part.file?
        build_chap(part, base_path, basetmpdir, true)
      else
        htmlfile = "part_#{part.number}.#{@config['htmlext']}"
        build_part(part, basetmpdir, htmlfile)
        title = ReVIEW::I18n.t('part', part.number)
        if part.name.strip.present?
          title += ReVIEW::I18n.t('chapter_postfix') + part.name.strip
        end
        @htmltoc.add_item(0, htmlfile, title, chaptype: 'part')
        write_buildlogtxt(basetmpdir, htmlfile, '')
      end
    end

    part.chapters.each do |chap|
      build_chap(chap, base_path, basetmpdir, false)
    end
  end
  check_compile_status
end

#build_chap(chap, base_path, basetmpdir, ispart) ⇒ Object



365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
# File 'lib/review/epubmaker.rb', line 365

def build_chap(chap, base_path, basetmpdir, ispart)
  chaptype = 'body'
  if ispart
    chaptype = 'part'
  elsif chap.on_predef?
    chaptype = 'pre'
  elsif chap.on_appendix?
    chaptype = 'appendix'
  elsif chap.on_postdef?
    chaptype = 'post'
  end

  filename =
    if ispart.present?
      chap.path
    else
      Pathname.new(chap.path).relative_path_from(base_path).to_s
    end

  id = File.basename(filename).sub(/\.re\Z/, '')

  if @config['epubmaker']['rename_for_legacy'] && ispart.nil?
    if chap.on_predef?
      @precount += 1
      id = sprintf('pre%02d', @precount)
    elsif chap.on_appendix?
      @postcount += 1
      id = sprintf('post%02d', @postcount)
    else
      @bodycount += 1
      id = sprintf('chap%02d', @bodycount)
    end
  end

  if @buildonly && !@buildonly.include?(id)
    warn "skip #{id}.re"
    return
  end

  htmlfile = "#{id}.#{@config['htmlext']}"
  write_buildlogtxt(basetmpdir, htmlfile, filename)
  log("Create #{htmlfile} from #{filename}.")

  if @config['params'].present?
    warn %Q('params:' in config.yml is obsoleted.)
    if @config['params'] =~ /stylesheet=/
      warn %Q(stylesheets should be defined in 'stylesheet:', not in 'params:')
    end
  end
  begin
    @converter.convert(filename, File.join(basetmpdir, htmlfile))
    write_info_body(basetmpdir, id, htmlfile, ispart, chaptype)
    remove_hidden_title(basetmpdir, htmlfile)
  rescue => e
    @compile_errors = true
    warn "compile error in #{filename} (#{e.class})"
    warn e.message
  end
end

#build_part(part, basetmpdir, htmlfile) ⇒ Object



338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
# File 'lib/review/epubmaker.rb', line 338

def build_part(part, basetmpdir, htmlfile)
  log("Create #{htmlfile} from a template.")
  File.open(File.join(basetmpdir, htmlfile), 'w') do |f|
    @body = ''
    @body << %Q(<div class="part">\n)
    @body << %Q(<h1 class="part-number">#{CGI.escapeHTML(ReVIEW::I18n.t('part', part.number))}</h1>\n)
    if part.name.strip.present?
      @body << %Q(<h2 class="part-title">#{CGI.escapeHTML(part.name.strip)}</h2>\n)
    end
    @body << %Q(</div>\n)

    @language = @producer.config['language']
    @stylesheets = @producer.config['stylesheet']
    tmplfile = File.expand_path(template_name, ReVIEW::Template::TEMPLATE_DIR)
    tmpl = ReVIEW::Template.load(tmplfile)
    f.write tmpl.result(binding)
  end
end

#build_pathObject



118
119
120
121
122
123
124
125
126
127
128
129
# File 'lib/review/epubmaker.rb', line 118

def build_path
  if @config['debug']
    path = File.expand_path("#{@config['bookname']}-epub", Dir.pwd)
    if File.exist?(path)
      FileUtils.rm_rf(path, secure: true)
    end
    Dir.mkdir(path)
    path
  else
    Dir.mktmpdir("#{@config['bookname']}-epub-")
  end
end

#build_titlepage(basetmpdir, htmlfile) ⇒ Object



564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
# File 'lib/review/epubmaker.rb', line 564

def build_titlepage(basetmpdir, htmlfile)
  # TODO: should be created via epubcommon
  @title = CGI.escapeHTML(@config.name_of('booktitle'))
  File.open(File.join(basetmpdir, htmlfile), 'w') do |f|
    @body = ''
    @body << %Q(<div class="titlepage">\n)
    @body << %Q(<h1 class="tp-title">#{CGI.escapeHTML(@config.name_of('booktitle'))}</h1>\n)
    if @config['subtitle']
      @body << %Q(<h2 class="tp-subtitle">#{CGI.escapeHTML(@config.name_of('subtitle'))}</h2>\n)
    end
    if @config['aut']
      @body << %Q(<h2 class="tp-author">#{CGI.escapeHTML(@config.names_of('aut').join(ReVIEW::I18n.t('names_splitter')))}</h2>\n)
    end
    if @config['pbl']
      @body << %Q(<h3 class="tp-publisher">#{CGI.escapeHTML(@config.names_of('pbl').join(ReVIEW::I18n.t('names_splitter')))}</h3>\n)
    end
    @body << '</div>'

    @language = @producer.config['language']
    @stylesheets = @producer.config['stylesheet']
    tmplfile = File.expand_path(template_name, ReVIEW::Template::TEMPLATE_DIR)
    tmpl = ReVIEW::Template.load(tmplfile)
    f.write tmpl.result(binding)
  end
end

#call_hook(hook_name, *params) ⇒ Object



211
212
213
214
215
216
217
218
219
220
221
# File 'lib/review/epubmaker.rb', line 211

def call_hook(hook_name, *params)
  filename = @config['epubmaker'][hook_name]
  log("Call #{hook_name}. (#{filename})")
  if filename.present? && File.exist?(filename) && FileTest.executable?(filename)
    if ENV['REVIEW_SAFE_MODE'].to_i & 1 > 0
      warn 'hook is prohibited in safe mode. ignored.'
    else
      system(filename, *params)
    end
  end
end

#check_compile_statusObject



292
293
294
295
296
297
# File 'lib/review/epubmaker.rb', line 292

def check_compile_status
  return unless @compile_errors

  $stderr.puts 'compile error, No EPUB file output.'
  exit 1
end

#check_image_size(basetmpdir, maxpixels, allow_exts = nil) ⇒ Object



643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
# File 'lib/review/epubmaker.rb', line 643

def check_image_size(basetmpdir, maxpixels, allow_exts = nil)
  begin
    require 'image_size'
  rescue LoadError
    return nil
  end
  require 'find'
  allow_exts ||= @config['image_ext']

  pat = '\\.(' + allow_exts.delete_if { |t| %w[ttf woff otf].member?(t.downcase) }.join('|') + ')'
  extre = Regexp.new(pat, Regexp::IGNORECASE)
  Find.find(basetmpdir) do |fname|
    next unless fname.match(extre)
    img = ImageSize.path(fname)
    next if img.width.nil? || img.width * img.height <= maxpixels
    h = Math.sqrt(img.height * maxpixels / img.width)
    w = maxpixels / h
    fname.sub!("#{basetmpdir}/", '')
    warn "#{fname}: #{img.width}x#{img.height} exceeds a limit. suggeted value is #{w.to_i}x#{h.to_i}"
  end

  true
end

#copy_backmatter(basetmpdir) ⇒ Object



590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
# File 'lib/review/epubmaker.rb', line 590

def copy_backmatter(basetmpdir)
  if @config['profile']
    FileUtils.cp(@config['profile'],
                 File.join(basetmpdir, File.basename(@config['profile'])))
    @htmltoc.add_item(1,
                      File.basename(@config['profile']),
                      @producer.res.v('profiletitle'),
                      chaptype: 'post')
  end

  if @config['advfile']
    FileUtils.cp(@config['advfile'],
                 File.join(basetmpdir, File.basename(@config['advfile'])))
    @htmltoc.add_item(1,
                      File.basename(@config['advfile']),
                      @producer.res.v('advtitle'),
                      chaptype: 'post')
  end

  if @config['colophon']
    if @config['colophon'].is_a?(String) # FIXME: should let obsolete this style?
      FileUtils.cp(@config['colophon'],
                   File.join(basetmpdir, "colophon.#{@config['htmlext']}"))
    else
      filename = File.join(basetmpdir, "colophon.#{@config['htmlext']}")
      File.open(filename, 'w') do |f|
        @producer.colophon(f)
      end
    end
    @htmltoc.add_item(1,
                      "colophon.#{@config['htmlext']}",
                      @producer.res.v('colophontitle'),
                      chaptype: 'post')
  end

  if @config['backcover']
    FileUtils.cp(@config['backcover'],
                 File.join(basetmpdir, File.basename(@config['backcover'])))
    @htmltoc.add_item(1,
                      File.basename(@config['backcover']),
                      @producer.res.v('backcovertitle'),
                      chaptype: 'post')
  end

  true
end

#copy_frontmatter(basetmpdir) ⇒ Object



524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
# File 'lib/review/epubmaker.rb', line 524

def copy_frontmatter(basetmpdir)
  if @config['cover'].present? && File.exist?(@config['cover'])
    FileUtils.cp(@config['cover'],
                 File.join(basetmpdir, File.basename(@config['cover'])))
  end

  if @config['titlepage']
    if @config['titlefile'].nil?
      build_titlepage(basetmpdir, "titlepage.#{@config['htmlext']}")
    else
      FileUtils.cp(@config['titlefile'],
                   File.join(basetmpdir, "titlepage.#{@config['htmlext']}"))
    end
    @htmltoc.add_item(1,
                      "titlepage.#{@config['htmlext']}",
                      @producer.res.v('titlepagetitle'),
                      chaptype: 'pre')
  end

  if @config['originaltitlefile'].present? && File.exist?(@config['originaltitlefile'])
    FileUtils.cp(@config['originaltitlefile'],
                 File.join(basetmpdir, File.basename(@config['originaltitlefile'])))
    @htmltoc.add_item(1,
                      File.basename(@config['originaltitlefile']),
                      @producer.res.v('originaltitle'),
                      chaptype: 'pre')
  end

  if @config['creditfile'].present? && File.exist?(@config['creditfile'])
    FileUtils.cp(@config['creditfile'],
                 File.join(basetmpdir, File.basename(@config['creditfile'])))
    @htmltoc.add_item(1,
                      File.basename(@config['creditfile']),
                      @producer.res.v('credittitle'),
                      chaptype: 'pre')
  end

  true
end

#copy_images(resdir, destdir, allow_exts = nil) ⇒ Object



248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
# File 'lib/review/epubmaker.rb', line 248

def copy_images(resdir, destdir, allow_exts = nil)
  return nil unless File.exist?(resdir)
  allow_exts ||= @config['image_ext']
  FileUtils.mkdir_p(destdir)
  if @config['epubmaker']['verify_target_images'].present?
    @config['epubmaker']['force_include_images'].each do |file|
      unless File.exist?(file)
        if file !~ /\Ahttp[s]?:/
          warn "#{file} is not found, skip."
        end
        next
      end
      basedir = File.dirname(file)
      FileUtils.mkdir_p(File.join(destdir, basedir))
      log("Copy #{file} to the temporary directory.")
      FileUtils.cp(file, File.join(destdir, basedir))
    end
  else
    recursive_copy_files(resdir, destdir, allow_exts)
  end
end

#copy_resources(resdir, destdir, allow_exts = nil) ⇒ Object



270
271
272
273
274
275
# File 'lib/review/epubmaker.rb', line 270

def copy_resources(resdir, destdir, allow_exts = nil)
  return nil unless File.exist?(resdir)
  allow_exts ||= @config['image_ext']
  FileUtils.mkdir_p(destdir)
  recursive_copy_files(resdir, destdir, allow_exts)
end

#copy_stylesheet(basetmpdir) ⇒ Object



513
514
515
516
517
518
519
520
521
522
# File 'lib/review/epubmaker.rb', line 513

def copy_stylesheet(basetmpdir)
  return if @config['stylesheet'].empty?
  @config['stylesheet'].each do |sfile|
    unless File.exist?(sfile)
      error "#{sfile} is not found."
    end
    FileUtils.cp(sfile, basetmpdir)
    @producer.contents.push(Content.new('file' => sfile))
  end
end

#detect_properties(path) ⇒ Object



436
437
438
439
440
441
442
443
444
445
446
447
448
# File 'lib/review/epubmaker.rb', line 436

def detect_properties(path)
  properties = []
  File.open(path) do |f|
    doc = REXML::Document.new(f)
    if REXML::XPath.first(doc, '//m:math', 'm' => 'http://www.w3.org/1998/Math/MathML')
      properties << 'mathml'
    end
    if REXML::XPath.first(doc, '//s:svg', 's' => 'http://www.w3.org/2000/svg')
      properties << 'svg'
    end
  end
  properties
end

#error(msg) ⇒ Object



41
42
43
44
# File 'lib/review/epubmaker.rb', line 41

def error(msg)
  @logger.error msg
  exit 1
end

#execute(*args) ⇒ Object



96
97
98
99
100
101
102
103
104
105
106
107
108
# File 'lib/review/epubmaker.rb', line 96

def execute(*args)
  @config = ReVIEW::Configure.values
  @config.maker = 'epubmaker'
  cmd_config, yamlfile, exportfile = parse_opts(args)
  error "#{yamlfile} not found." unless File.exist?(yamlfile)

  load_yaml(yamlfile)
  @config.deep_merge!(cmd_config)
  update_log_level
  log("Loaded yaml file (#{yamlfile}).")

  produce(yamlfile, exportfile)
end

#load_yaml(yamlfile) ⇒ Object



54
55
56
57
58
59
60
61
62
63
64
65
66
67
# File 'lib/review/epubmaker.rb', line 54

def load_yaml(yamlfile)
  loader = ReVIEW::YAMLLoader.new
  @config = ReVIEW::Configure.values
  begin
    @config.deep_merge!(loader.load_file(yamlfile))
  rescue => e
    error "yaml error #{e.message}"
  end

  @producer = Producer.new(@config)
  @producer.load(yamlfile)
  @config = @producer.config
  @config.maker = 'epubmaker'
end

#log(msg) ⇒ Object



50
51
52
# File 'lib/review/epubmaker.rb', line 50

def log(msg)
  @logger.debug(msg)
end

#parse_opts(args) ⇒ Object



73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# File 'lib/review/epubmaker.rb', line 73

def parse_opts(args)
  cmd_config = {}
  opts = OptionParser.new
  @buildonly = nil

  opts.banner = 'Usage: review-epubmaker [options] configfile [export_filename]'
  opts.version = ReVIEW::VERSION
  opts.on('--help', 'Prints this message and quit.') do
    puts opts.help
    exit 0
  end
  opts.on('--[no-]debug', 'Keep temporary files.') { |debug| cmd_config['debug'] = debug }
  opts.on('-y', '--only file1,file2,...', 'Build only specified files.') { |v| @buildonly = v.split(/\s*,\s*/).map { |m| m.strip.sub(/\.re\Z/, '') } }

  opts.parse!(args)
  if args.size < 1 || args.size > 2
    puts opts.help
    exit 0
  end

  [cmd_config, args[0], args[1]]
end

#produce(yamlfile, bookname = nil) ⇒ Object



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
# File 'lib/review/epubmaker.rb', line 131

def produce(yamlfile, bookname = nil)
  I18n.setup(@config['language'])
  bookname ||= @config['bookname']
  booktmpname = "#{bookname}-epub"

  begin
    @config.check_version(ReVIEW::VERSION)
  rescue ReVIEW::ConfigError => e
    warn e.message
  end
  log("#{bookname}.epub will be created.")

  FileUtils.rm_f("#{bookname}.epub")
  if @config['debug']
    FileUtils.rm_rf(booktmpname)
  end

  cleanup_mathimg

  basetmpdir = build_path
  begin
    log("Created first temporary directory as #{basetmpdir}.")

    call_hook('hook_beforeprocess', basetmpdir)

    @htmltoc = ReVIEW::HTMLToc.new(basetmpdir)
    ## copy all files into basetmpdir
    copy_stylesheet(basetmpdir)

    copy_frontmatter(basetmpdir)
    call_hook('hook_afterfrontmatter', basetmpdir)

    build_body(basetmpdir, yamlfile)
    call_hook('hook_afterbody', basetmpdir)

    copy_backmatter(basetmpdir)

    math_dir = "./#{@config['imagedir']}/_review_math"
    if @config['imgmath'] && File.exist?(File.join(math_dir, '__IMGMATH_BODY__.tex'))
      make_math_images(math_dir)
    end
    call_hook('hook_afterbackmatter', basetmpdir)

    ## push contents in basetmpdir into @producer
    push_contents(basetmpdir)

    if @config['epubmaker']['verify_target_images'].present?
      verify_target_images(basetmpdir)
      copy_images(@config['imagedir'], basetmpdir)
    else
      copy_images(@config['imagedir'], File.join(basetmpdir, @config['imagedir']))
    end

    copy_resources('covers', File.join(basetmpdir, @config['imagedir']))
    copy_resources('adv', File.join(basetmpdir, @config['imagedir']))
    copy_resources(@config['fontdir'], File.join(basetmpdir, 'fonts'), @config['font_ext'])

    call_hook('hook_aftercopyimage', basetmpdir)

    @producer.import_imageinfo(File.join(basetmpdir, @config['imagedir']), basetmpdir)
    @producer.import_imageinfo(File.join(basetmpdir, 'fonts'), basetmpdir, @config['font_ext'])

    check_image_size(basetmpdir, @config['image_maxpixels'], @config['image_ext'])

    epubtmpdir = nil
    if @config['debug'].present?
      epubtmpdir = File.join(basetmpdir, booktmpname)
      Dir.mkdir(epubtmpdir)
    end
    log('Call ePUB producer.')
    @producer.produce("#{bookname}.epub", basetmpdir, epubtmpdir)
    log('Finished.')
  rescue ApplicationError => e
    raise if @config['debug']
    error(e.message)
  ensure
    FileUtils.remove_entry_secure(basetmpdir) unless @config['debug']
  end
end

#push_contents(_basetmpdir) ⇒ Object



491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
# File 'lib/review/epubmaker.rb', line 491

def push_contents(_basetmpdir)
  @htmltoc.each_item do |level, file, title, args|
    next if level.to_i > @config['toclevel'] && args[:force_include].nil?
    log("Push #{file} to ePUB contents.")

    hash = { 'file' => file,
             'level' => level.to_i,
             'title' => title,
             'chaptype' => args[:chaptype] }
    if args[:id].present?
      hash['id'] = args[:id]
    end
    if args[:properties].present?
      hash['properties'] = args[:properties].split(' ')
    end
    if args[:notoc].present?
      hash['notoc'] = args[:notoc]
    end
    @producer.contents.push(Content.new(hash))
  end
end

#recursive_copy_files(resdir, destdir, allow_exts) ⇒ Object



277
278
279
280
281
282
283
284
285
286
287
288
289
290
# File 'lib/review/epubmaker.rb', line 277

def recursive_copy_files(resdir, destdir, allow_exts)
  Dir.open(resdir) do |dir|
    dir.each do |fname|
      next if fname.start_with?('.')
      if FileTest.directory?(File.join(resdir, fname))
        recursive_copy_files(File.join(resdir, fname), File.join(destdir, fname), allow_exts)
      elsif fname =~ /\.(#{allow_exts.join('|')})\Z/i
        FileUtils.mkdir_p(destdir)
        log("Copy #{resdir}/#{fname} to the temporary directory.")
        FileUtils.cp(File.join(resdir, fname), destdir)
      end
    end
  end
end

#remove_hidden_title(basetmpdir, htmlfile) ⇒ Object



425
426
427
428
429
430
431
432
433
434
# File 'lib/review/epubmaker.rb', line 425

def remove_hidden_title(basetmpdir, htmlfile)
  File.open(File.join(basetmpdir, htmlfile), 'r+') do |f|
    body = f.read.
           gsub(%r{<h\d .*?hidden=['"]true['"].*?>.*?</h\d>\n}, '').
           gsub(%r{(<h\d .*?)\s*notoc=['"]true['"]\s*(.*?>.*?</h\d>\n)}, '\1\2')
    f.rewind
    f.print body
    f.truncate(f.tell)
  end
end

#template_nameObject



357
358
359
360
361
362
363
# File 'lib/review/epubmaker.rb', line 357

def template_name
  if @producer.config['htmlversion'].to_i == 5
    './html/layout-html5.html.erb'
  else
    './html/layout-xhtml1.html.erb'
  end
end

#update_log_levelObject



110
111
112
113
114
115
116
# File 'lib/review/epubmaker.rb', line 110

def update_log_level
  if @config['debug']
    @logger.level = Logger::DEBUG
  else
    @logger.level = Logger::INFO
  end
end

#verify_target_images(basetmpdir) ⇒ Object



223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
# File 'lib/review/epubmaker.rb', line 223

def verify_target_images(basetmpdir)
  @producer.contents.each do |content|
    case content.media
    when 'application/xhtml+xml'
      File.open("#{basetmpdir}/#{content.file}") do |f|
        Document.new(File.new(f)).each_element('//img') do |e|
          @config['epubmaker']['force_include_images'].push(e.attributes['src'])
          if e.attributes['src'] =~ /svg\Z/i
            content.properties.push('svg')
          end
        end
      end
    when 'text/css'
      File.open(File.join(basetmpdir, content.file)) do |f|
        f.each_line do |l|
          l.scan(/url\((.+?)\)/) do |_m|
            @config['epubmaker']['force_include_images'].push($1.strip)
          end
        end
      end
    end
  end
  @config['epubmaker']['force_include_images'] = @config['epubmaker']['force_include_images'].compact.sort.uniq
end

#warn(msg) ⇒ Object



46
47
48
# File 'lib/review/epubmaker.rb', line 46

def warn(msg)
  @logger.warn msg
end

#write_buildlogtxt(basetmpdir, htmlfile, reviewfile) ⇒ Object



637
638
639
640
641
# File 'lib/review/epubmaker.rb', line 637

def write_buildlogtxt(basetmpdir, htmlfile, reviewfile)
  File.open(File.join(basetmpdir, @buildlogtxt), 'a') do |f|
    f.puts "#{htmlfile},#{reviewfile}"
  end
end

#write_info_body(basetmpdir, _id, filename, ispart = nil, chaptype = nil) ⇒ Object



450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
# File 'lib/review/epubmaker.rb', line 450

def write_info_body(basetmpdir, _id, filename, ispart = nil, chaptype = nil)
  headlines = []
  path = File.join(basetmpdir, filename)
  htmlio = File.new(path)
  Document.parse_stream(htmlio, ReVIEWHeaderListener.new(headlines))
  htmlio.close

  if headlines.empty?
    warn "#{filename} is discarded because there is no heading. Use `=[notoc]' or `=[nodisp]' to exclude headlines from the table of contents."
    return
  end

  properties = detect_properties(path)
  if properties.present?
    prop_str = ',properties=' + properties.join(' ')
  else
    prop_str = ''
  end
  first = true
  headlines.each do |headline|
    if ispart.present? && headline['level'] == 1
      headline['level'] = 0
    end
    if first.nil?
      @htmltoc.add_item(headline['level'],
                        filename + '#' + headline['id'],
                        headline['title'],
                        { chaptype: chaptype,
                          notoc: headline['notoc'] })
    else
      @htmltoc.add_item(headline['level'],
                        filename,
                        headline['title'],
                        { force_include: true,
                          chaptype: chaptype + prop_str,
                          notoc: headline['notoc'] })
      first = nil
    end
  end
end