Class: IsoDoc::IEEE::Xref

Inherits:
Xref
  • Object
show all
Defined in:
lib/isodoc/ieee/xref.rb

Instance Method Summary collapse

Constructor Details

#initialize(lang, script, klass, labels, options) ⇒ Xref

Returns a new instance of Xref.



9
10
11
12
# File 'lib/isodoc/ieee/xref.rb', line 9

def initialize(lang, script, klass, labels, options)
  super
  @hierarchical_assets = options[:hierarchicalassets]
end

Instance Method Details

#annex_name_lbl(clause, num) ⇒ Object



85
86
87
# File 'lib/isodoc/ieee/xref.rb', line 85

def annex_name_lbl(clause, num)
  super.sub(%r{<br/>(.*)$}, "<br/><span class='obligation'>\\1</span>")
end

#clause_order_main(docxml) ⇒ Object



14
15
16
17
18
19
20
21
22
23
24
# File 'lib/isodoc/ieee/xref.rb', line 14

def clause_order_main(docxml)
  [
    { path: "//clause[@type = 'overview']" },
    { path: @klass.norm_ref_xpath },
    { path: "//sections/terms | " \
            "//sections/clause[descendant::terms]" },
    { path: "//sections/definitions | " \
            "//sections/clause[descendant::definitions][not(descendant::terms)]" },
    { path: @klass.middle_clause(docxml), multi: true },
  ]
end

#middle_section_asset_names(doc) ⇒ Object



32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/isodoc/ieee/xref.rb', line 32

def middle_section_asset_names(doc)
  middle_sections =
    "#{@klass.norm_ref_xpath} | //sections/terms | " \
    "//sections/definitions | //clause[parent::sections]"
  if @hierarchical_assets
    hierarchical_asset_names(doc.xpath("//xmlns:preface/child::*"),
                             "Preface")
    doc.xpath(ns(middle_sections)).each do |c|
      hierarchical_asset_names(c, @anchors[c["id"]][:label])
    end
  else
    sequential_asset_names(doc.xpath(ns("//preface/*")))
    sequential_asset_names(doc.xpath(ns(middle_sections)))
  end
end

#middle_sectionsObject



26
27
28
29
30
# File 'lib/isodoc/ieee/xref.rb', line 26

def middle_sections
  " #{@klass.norm_ref_xpath} | " \
    "//sections/terms | " \
    "//sections/definitions | //clause[parent::sections]"
end

#note_anchor_names1(notes, counter) ⇒ Object



73
74
75
76
77
78
79
80
81
82
83
# File 'lib/isodoc/ieee/xref.rb', line 73

def note_anchor_names1(notes, counter)
  sequence = UUIDTools::UUID.random_create.to_s
  notes.each do |n|
    next if @anchors[n["id"]] || blank?(n["id"])

    @anchors[n["id"]] =
      anchor_struct(increment_label(notes, n, counter), n,
                    @labels["note_xref"], "note", false)
        .merge(sequence: sequence)
  end
end

#sequential_formula_names(clause) ⇒ Object



48
49
50
51
52
53
54
55
56
57
# File 'lib/isodoc/ieee/xref.rb', line 48

def sequential_formula_names(clause)
  c = Counter.new
  clause.xpath(ns(".//formula")).noblank.each do |t|
    @anchors[t["id"]] = anchor_struct(
      c.increment(t).print, nil,
      t["inequality"] ? @labels["inequality"] : @labels["formula"],
      "formula", t["unnumbered"]
    )
  end
end

#termnote_anchor_names(docxml) ⇒ Object



59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'lib/isodoc/ieee/xref.rb', line 59

def termnote_anchor_names(docxml)
  docxml.xpath(ns("//*[termnote]")).each do |t|
    c = Counter.new
    sequence = UUIDTools::UUID.random_create.to_s
    notes = t.xpath(ns("./termnote"))
    notes.noblank.each do |n|
      @anchors[n["id"]] =
        anchor_struct("#{@labels['termnote']} #{increment_label(notes, n, c)}",
                      n, @labels["note_xref"], "termnote", false)
          .merge(sequence: sequence)
    end
  end
end