require "isodoc" require_relative "./gbcleanup.rb" require_relative "./metadata.rb" require "fileutils" module IsoDoc module Gb # A {Converter} implementation that generates GB output, and a document # schema encapsulation of the document for validation class Common < IsoDoc::Common attr_accessor :meta def initialize(options) @meta = options[:meta] @standardlogoimg = options[:standardlogoimg] @standardclassimg = options[:standardclassimg] @standardissuerimg = options[:standardissuerimg] end def fileloc(loc) File.join(File.dirname(__FILE__), loc) end def format_agency(agency, format) return "" if @standardissuerimg return agency unless agency.is_a?(Array) if agency == ["中华人民共和国国家质量监督检验检疫总局", "中国国家标准化管理委员会"] logo = "gb-issuer-default.gif" FileUtils.cp fileloc(File.join('html/gb-logos', logo)), logo return "" end format_agency1(agency, format) end def format_agency1(agency, format) ret = "" agency.each { |a| ret += "" } ret += "
#{a}
" ret.gsub!(//, "
") if format == :word ret end def format_logo(prefix, scope, _format) logo = @meta.standard_logo(prefix) return format_logo1(logo, prefix, scope) if @standardlogoimg return "" if %w(enterprise social-group).include? scope if logo.nil? "#{prefix}" else format_logo1(logo, prefix, scope) end end def local_logo_suffix(scope) return "" if scope != "local" local = @meta.get[:gblocalcode] "#{local}" end def format_logo1(logo, prefix, scope) local = local_logo_suffix(scope) return ""\ "#{local}" if @standardlogoimg logo += ".gif" FileUtils.cp fileloc(File.join('html/gb-logos', logo)), logo #@files_to_delete << logo ""\ "#{local}" end end end end