Sha256: ef21310c06f656a084dcfb8468278edb830b086b333c64e102eacc5ec62c1c8e

Contents?: true

Size: 1.58 KB

Versions: 4

Compression:

Stored size: 1.58 KB

Contents

require_relative "xref/xref_anchor"
require_relative "xref/xref_counter"
require_relative "xref/xref_gen_seq"
require_relative "xref/xref_gen"
require_relative "xref/xref_sect_gen"
require_relative "class_utils"

module IsoDoc
  class Xref
    include XrefGen::Anchor
    include XrefGen::Blocks
    include XrefGen::Sections

    def initialize(lang, script, klass, i18n, options = {})
      @anchors = {}
      @lang = lang
      @script = script
      @klass = klass
      @options = options
      @i18n = i18n
      @labels = @i18n.get
      @klass.i18n = @i18n
    end

    def get
      @anchors
    end

    def anchor(id, lbl, warning = true)
      return nil if id.nil? || id.empty?

      if warning && !@anchors[id]
        @seen ||= Seen_Anchor.instance
        @seen.seen(id) or warn "No label has been processed for ID #{id}"
        @seen.add(id)
        return "[#{id}]"
      end
      @anchors.dig(id, lbl)
    end

    # extract names for all anchors, xref and label
    def parse(docxml)
      amend_preprocess(docxml)
      initial_anchor_names(docxml)
      back_anchor_names(docxml)
      # preempt clause notes with all other types of note (ISO default)
      note_anchor_names(docxml.xpath(ns("//table | //figure")))
      note_anchor_names(docxml.xpath(ns(SECTIONS_XPATH)))
      example_anchor_names(docxml.xpath(ns(SECTIONS_XPATH)))
      list_anchor_names(docxml.xpath(ns(SECTIONS_XPATH)))
      bookmark_anchor_names(docxml)
    end

    def ns(xpath)
      Common::ns(xpath)
    end

    def l10n(text, lang = @lang, script = @script)
      @i18n.l10n(text, lang, script)
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
isodoc-1.6.4 lib/isodoc/xref.rb
isodoc-1.6.3 lib/isodoc/xref.rb
isodoc-1.6.2 lib/isodoc/xref.rb
isodoc-1.6.1 lib/isodoc/xref.rb