class SiSU_XML_ODF_ODT::Source

Public Class Methods

new(opt) click to toggle source
# File lib/sisu/xml_odf_odt.rb, line 78
def initialize(opt)
  @opt=opt
  @particulars=SiSU_Particulars::CombinedSingleton.instance.get_all(opt)
  @@endnotes_para=[]
end

Public Instance Methods

read() click to toggle source
# File lib/sisu/xml_odf_odt.rb, line 83
def read
  begin
    @md,@env,@ao_array=@particulars.md,@particulars.env,@particulars.ao_array
    unless  @opt.act[:quiet][:set]==:on
      tool=(@opt.act[:verbose][:set]==:on \
      || @opt.act[:verbose_plus][:set]==:on \
      || @opt.act[:maintenance][:set]==:on) \
      ? "#{@env.program.odf_viewer} file://#{@md.file.output_path.odt.dir}/#{@md.file.base_filename.odt}"
      : "[#{@opt.f_pth[:lng_is]}] #{@opt.fno}"
      (@opt.act[:verbose][:set]==:on \
      || @opt.act[:verbose_plus][:set]==:on \
      || @opt.act[:maintenance][:set]==:on) \
      ? SiSU_Screen::Ansi.new(
          @opt.act[:color_state][:set],
          'Opendocument (ODF:ODT)',
          tool
        ).green_hi_blue
      : SiSU_Screen::Ansi.new(
          @opt.act[:color_state][:set],
          'Opendocument (ODF:ODT)',
          tool
        ).green_title_hi
      if (@opt.act[:verbose_plus][:set]==:on \
      || @opt.act[:maintenance][:set]==:on)
        SiSU_Screen::Ansi.new(
          @opt.act[:color_state][:set],
          @opt.fns,
          'file://' \
          + @md.file.output_path.odt.dir + '/' \
          + @md.file.base_filename.odt
        ).flow
      end
    end
    SiSU_XML_ODF_ODT::Source::Scroll.new(@particulars).songsheet
  rescue
    SiSU_Errors::Rescued.new($!,$@,@opt.selections.str,@opt.fns).location do
      __LINE__.to_s + ':' + __FILE__
    end
  ensure
    Dir.chdir(@opt.f_pth[:pth])
  end
end