isodoc 3.1.0 → 3.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/isodoc.gemspec +3 -12
- data/lib/isodoc/common.rb +2 -0
- data/lib/isodoc/css.rb +36 -23
- data/lib/isodoc/function/blocks.rb +12 -0
- data/lib/isodoc/function/cleanup.rb +4 -12
- data/lib/isodoc/function/footnotes.rb +57 -0
- data/lib/isodoc/function/inline.rb +10 -6
- data/lib/isodoc/function/section.rb +7 -0
- data/lib/isodoc/function/setup.rb +64 -0
- data/lib/isodoc/function/table.rb +2 -0
- data/lib/isodoc/function/to_word_html.rb +5 -57
- data/lib/isodoc/function/utils.rb +4 -7
- data/lib/isodoc/gem_tasks.rb +16 -16
- data/lib/isodoc/headlesshtml_convert.rb +0 -2
- data/lib/isodoc/html_convert.rb +0 -2
- data/lib/isodoc/html_function/postprocess.rb +2 -1
- data/lib/isodoc/html_function/postprocess_footnotes.rb +2 -1
- data/lib/isodoc/pdf_convert.rb +0 -2
- data/lib/isodoc/presentation_function/block.rb +21 -25
- data/lib/isodoc/presentation_function/concepts.rb +7 -8
- data/lib/isodoc/presentation_function/erefs.rb +2 -3
- data/lib/isodoc/presentation_function/footnotes.rb +140 -0
- data/lib/isodoc/presentation_function/image.rb +0 -18
- data/lib/isodoc/presentation_function/inline.rb +11 -13
- data/lib/isodoc/presentation_function/refs.rb +9 -4
- data/lib/isodoc/presentation_function/sourcecode.rb +2 -19
- data/lib/isodoc/presentation_xml_convert.rb +3 -1
- data/lib/isodoc/version.rb +1 -1
- data/lib/isodoc/word_function/body.rb +5 -3
- data/lib/isodoc/word_function/footnotes.rb +57 -68
- data/lib/isodoc/word_function/postprocess.rb +6 -2
- data/lib/isodoc/xref/xref_gen.rb +1 -9
- data/lib/isodoc/xref/xref_gen_seq.rb +47 -92
- data/lib/isodoc/xref/xref_util.rb +49 -0
- metadata +36 -6
- data/lib/isodoc/html_function/footnotes.rb +0 -92
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aa02186be0f73d998dca870f3559df00184697cc3582ef302eb934e4901d1ab1
|
4
|
+
data.tar.gz: 54cf027ca0fcab8ec1c97b35d7ada8ec7137a32a2adeecfa2c0cb9b653b3b0f2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 251471002a6b16dd050364344f6a63e99b0e3b266a0dcc65cb4f83382b5ebfece49cc75ea65229282ef61a7206fb1ac4d7aba441b86b19704c6d9d00398ce3f2
|
7
|
+
data.tar.gz: 5fde838af0af79d78ccc4fecd730bc64cc60e6afaf68691f5e046d18ada04df54a922b61d98b22632a9395e21caa4c0cbbafceea70c729da839f9b732beb54c9
|
data/isodoc.gemspec
CHANGED
@@ -44,6 +44,7 @@ Gem::Specification.new do |spec|
|
|
44
44
|
spec.add_dependency "thread_safe"
|
45
45
|
spec.add_dependency "twitter_cldr", ">= 6.6.0"
|
46
46
|
spec.add_dependency "uuidtools"
|
47
|
+
spec.add_dependency "lutaml-model", "~> 0.6.0"
|
47
48
|
|
48
49
|
spec.add_development_dependency "bigdecimal"
|
49
50
|
spec.add_development_dependency "debug"
|
@@ -52,18 +53,8 @@ Gem::Specification.new do |spec|
|
|
52
53
|
spec.add_development_dependency "guard-rspec", "~> 4.7"
|
53
54
|
spec.add_development_dependency "rake", "~> 13.0"
|
54
55
|
spec.add_development_dependency "rspec", "~> 3.6"
|
55
|
-
spec.add_development_dependency "rubocop", "~> 1
|
56
|
-
|
57
|
-
if RUBY_VERSION.start_with?("3.1")
|
58
|
-
spec.add_development_dependency "sassc-embedded", "1.54.0"
|
59
|
-
spec.add_development_dependency "sass-embedded", "1.54.2"
|
60
|
-
else
|
61
|
-
spec.add_development_dependency "sassc-embedded", "~> 1"
|
62
|
-
spec.add_development_dependency "sass-embedded", "~> 1"
|
63
|
-
end
|
64
|
-
#spec.add_development_dependency "sassc-embedded", "~> 1"
|
65
|
-
=end
|
66
|
-
#spec.add_development_dependency "sassc"
|
56
|
+
spec.add_development_dependency "rubocop", "~> 1"
|
57
|
+
spec.add_development_dependency "rubocop-performance"
|
67
58
|
spec.add_development_dependency "sassc-embedded", "~> 1"
|
68
59
|
spec.add_development_dependency "simplecov", "~> 0.15"
|
69
60
|
spec.add_development_dependency "timecop", "~> 0.9"
|
data/lib/isodoc/common.rb
CHANGED
@@ -2,6 +2,7 @@ require_relative "function/blocks"
|
|
2
2
|
require_relative "function/cleanup"
|
3
3
|
require_relative "function/form"
|
4
4
|
require_relative "function/inline"
|
5
|
+
require_relative "function/footnotes"
|
5
6
|
require_relative "function/lists"
|
6
7
|
require_relative "function/references"
|
7
8
|
require_relative "function/section"
|
@@ -18,6 +19,7 @@ module IsoDoc
|
|
18
19
|
include Function::Cleanup
|
19
20
|
include Function::Form
|
20
21
|
include Function::Inline
|
22
|
+
include Function::Footnotes
|
21
23
|
include Function::Lists
|
22
24
|
include Function::References
|
23
25
|
include Function::Section
|
data/lib/isodoc/css.rb
CHANGED
@@ -75,6 +75,25 @@ module IsoDoc
|
|
75
75
|
end
|
76
76
|
|
77
77
|
def convert_scss(filename, stylesheet, stripwordcss)
|
78
|
+
load_scss_paths(filename)
|
79
|
+
Dir.mktmpdir do |dir|
|
80
|
+
variables_file_path = File.join(dir, "variables.scss")
|
81
|
+
File.write(variables_file_path, scss_fontheader(stripwordcss))
|
82
|
+
SassC.load_paths << dir
|
83
|
+
modified_stylesheet = %( @use "variables" as *;\n#{stylesheet})
|
84
|
+
compile_scss(modified_stylesheet)
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
def compile_scss(modified_stylesheet)
|
89
|
+
SassC::Engine
|
90
|
+
.new(modified_stylesheet, quiet_deps: true, syntax: :scss,
|
91
|
+
silence_deprecations: %w(mixed-decls),
|
92
|
+
importer: SasscImporter)
|
93
|
+
.render.gsub(/__WORD__/, "")
|
94
|
+
end
|
95
|
+
|
96
|
+
def load_scss_paths(filename)
|
78
97
|
require "sassc-embedded"
|
79
98
|
require "isodoc/sassc_importer"
|
80
99
|
[File.join(Gem.loaded_specs["isodoc"].full_gem_path,
|
@@ -82,23 +101,6 @@ module IsoDoc
|
|
82
101
|
File.dirname(filename)].each do |name|
|
83
102
|
SassC.load_paths << name
|
84
103
|
end
|
85
|
-
|
86
|
-
Dir.mktmpdir do |dir|
|
87
|
-
variables_file_path = File.join(dir, "variables.scss")
|
88
|
-
File.write(variables_file_path,
|
89
|
-
scss_fontheader(stripwordcss))
|
90
|
-
|
91
|
-
SassC.load_paths << dir
|
92
|
-
|
93
|
-
# Modify the stylesheet to use the tempfile with @use
|
94
|
-
modified_stylesheet = <<~SCSS
|
95
|
-
@use "variables" as *;
|
96
|
-
#{stylesheet}
|
97
|
-
SCSS
|
98
|
-
SassC::Engine.new(modified_stylesheet,
|
99
|
-
syntax: :scss, importer: SasscImporter)
|
100
|
-
.render
|
101
|
-
end
|
102
104
|
end
|
103
105
|
|
104
106
|
# stripwordcss if HTML stylesheet, !stripwordcss if DOC stylesheet
|
@@ -106,17 +108,28 @@ module IsoDoc
|
|
106
108
|
filename.nil? and return nil
|
107
109
|
filename = precompiled_style_or_original(filename)
|
108
110
|
stylesheet = File.read(filename, encoding: "UTF-8")
|
109
|
-
stylesheet =
|
110
|
-
stylesheet.gsub!(/(\s|\{)mso-[^:]+:[^;]+;/m, "\\1") if stripwordcss
|
111
|
-
stylesheet.gsub!(/--/, "-DOUBLE_HYPHEN_ESCAPE-") unless stripwordcss
|
111
|
+
stylesheet = preprocess_css(stylesheet, stripwordcss)
|
112
112
|
File.extname(filename) == ".scss" and
|
113
113
|
stylesheet = convert_scss(filename, stylesheet, stripwordcss)
|
114
|
+
write_css(filename, stylesheet)
|
115
|
+
end
|
116
|
+
|
117
|
+
def write_css(filename, stylesheet)
|
114
118
|
Tempfile.open([File.basename(filename, ".*"), "css"],
|
115
119
|
mode: File::BINARY | File::SHARE_DELETE,
|
116
120
|
encoding: "utf-8") do |f|
|
117
|
-
|
118
|
-
|
119
|
-
|
121
|
+
f.write(stylesheet)
|
122
|
+
f
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
126
|
+
def preprocess_css(stylesheet, html)
|
127
|
+
stylesheet = populate_template(stylesheet, :word)
|
128
|
+
html and stylesheet.gsub!(/(\s|\{)mso-[^:]+:[^;]+;/m, "\\1")
|
129
|
+
!html and stylesheet.gsub!(/--/, "-DOUBLE_HYPHEN_ESCAPE-")
|
130
|
+
!html and stylesheet.gsub!(%r<([a-z])\.([0-9])(?=[^{}]*{)>m,
|
131
|
+
"\\1.__WORD__\\2")
|
132
|
+
stylesheet
|
120
133
|
end
|
121
134
|
end
|
122
135
|
end
|
@@ -192,6 +192,18 @@ module IsoDoc
|
|
192
192
|
end
|
193
193
|
|
194
194
|
def columnbreak_parse(node, out); end
|
195
|
+
|
196
|
+
# we dont't want figure dl/dd/fmt-fn-body to be processed
|
197
|
+
# as actual footnotes
|
198
|
+
def fmt_fn_body_parse(node, out)
|
199
|
+
node.ancestors("table, figure").empty? and
|
200
|
+
node.at(ns(".//fmt-fn-label"))&.remove
|
201
|
+
aside = node.parent.name == "fmt-footnote-container"
|
202
|
+
tag = aside ? "aside" : "div"
|
203
|
+
out.send tag, id: "fn:#{node['reference']}", class: "footnote" do |div|
|
204
|
+
node.children.each { |n| parse(n, div) }
|
205
|
+
end
|
206
|
+
end
|
195
207
|
end
|
196
208
|
end
|
197
209
|
end
|
@@ -16,7 +16,7 @@ module IsoDoc
|
|
16
16
|
def cleanup(docxml)
|
17
17
|
@i18n ||= i18n_init(@lang, @script, @locale)
|
18
18
|
comment_cleanup(docxml)
|
19
|
-
footnote_cleanup(docxml)
|
19
|
+
#footnote_cleanup(docxml)
|
20
20
|
inline_header_cleanup(docxml)
|
21
21
|
figure_cleanup(docxml)
|
22
22
|
table_cleanup(docxml)
|
@@ -58,7 +58,7 @@ module IsoDoc
|
|
58
58
|
docxml
|
59
59
|
end
|
60
60
|
|
61
|
-
#
|
61
|
+
# KILL
|
62
62
|
def footnote_cleanup(docxml)
|
63
63
|
docxml.xpath('//a[@class = "FootnoteRef"]/sup')
|
64
64
|
.each_with_index do |x, i|
|
@@ -68,7 +68,7 @@ module IsoDoc
|
|
68
68
|
end
|
69
69
|
|
70
70
|
def merge_fnref_into_fn_text(elem)
|
71
|
-
fn = elem.at('.//span[@class="TableFootnoteRef"]/..')
|
71
|
+
fn = elem.at('.//span[@class="TableFootnoteRef"]/..') or return
|
72
72
|
n = fn.next_element
|
73
73
|
n&.children&.first&.add_previous_sibling(fn.remove)
|
74
74
|
end
|
@@ -80,7 +80,7 @@ module IsoDoc
|
|
80
80
|
merge_fnref_into_fn_text(a)
|
81
81
|
a.name = "div"
|
82
82
|
a["class"] = "TableFootnote"
|
83
|
-
t << a.remove
|
83
|
+
t << a.remove # this is redundant
|
84
84
|
end
|
85
85
|
end
|
86
86
|
table_footnote_cleanup_propagate(docxml)
|
@@ -142,14 +142,6 @@ module IsoDoc
|
|
142
142
|
end
|
143
143
|
|
144
144
|
def symbols_cleanup(docxml); end
|
145
|
-
|
146
|
-
def table_footnote_reference_format(link)
|
147
|
-
link
|
148
|
-
end
|
149
|
-
|
150
|
-
def footnote_reference_format(link)
|
151
|
-
link
|
152
|
-
end
|
153
145
|
end
|
154
146
|
end
|
155
147
|
end
|
@@ -0,0 +1,57 @@
|
|
1
|
+
module IsoDoc
|
2
|
+
module Function
|
3
|
+
module Footnotes
|
4
|
+
def make_table_footnote_link(out, fnid, node)
|
5
|
+
attrs = { href: "##{fnid}", class: "TableFootnoteRef" }
|
6
|
+
sup = node.at(ns("./sup")) and sup.replace(sup.children)
|
7
|
+
out.a **attrs do |a|
|
8
|
+
children_parse(node, a)
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
def get_table_ancestor_id(node)
|
13
|
+
table = node.ancestors("table")
|
14
|
+
table.empty? and table = node.ancestors("figure")
|
15
|
+
table.empty? and return [nil, UUIDTools::UUID.random_create.to_s]
|
16
|
+
[table.last, table.last["id"]]
|
17
|
+
end
|
18
|
+
|
19
|
+
# @seen_footnote:
|
20
|
+
# do not output footnote text if we have already seen it for this table
|
21
|
+
|
22
|
+
def table_footnote_parse(node, out)
|
23
|
+
fn = node["reference"] || UUIDTools::UUID.random_create.to_s
|
24
|
+
table, tid = get_table_ancestor_id(node)
|
25
|
+
make_table_footnote_link(out, tid + fn, node.at(ns("./fmt-fn-label")))
|
26
|
+
# do not output footnote text if we have already seen it for this table
|
27
|
+
@seen_footnote.include?(tid + fn) and return
|
28
|
+
update_table_fn_body_ref(node, table, tid + fn)
|
29
|
+
@seen_footnote << (tid + fn)
|
30
|
+
end
|
31
|
+
|
32
|
+
def update_table_fn_body_ref(fnote, table, reference)
|
33
|
+
fnbody = table.at(ns(".//fmt-fn-body[@id = '#{fnote['target']}']")) or return
|
34
|
+
fnbody["reference"] = reference
|
35
|
+
sup = fnbody.at(ns(".//fmt-fn-label/sup")) and sup.replace(sup.children)
|
36
|
+
fnbody.xpath(ns(".//fmt-fn-label")).each do |s|
|
37
|
+
s["class"] = "TableFootnoteRef"
|
38
|
+
s.name = "span"
|
39
|
+
d = s.at(ns("./span[@class = 'fmt-caption-delim']")) and
|
40
|
+
s.next = d
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
def footnote_parse(node, out)
|
45
|
+
return table_footnote_parse(node, out) if (@in_table || @in_figure) &&
|
46
|
+
!node.ancestors.map(&:name).include?("fmt-name")
|
47
|
+
|
48
|
+
fn = node["reference"] || UUIDTools::UUID.random_create.to_s
|
49
|
+
attrs = { class: "FootnoteRef", href: "#fn:#{fn}" }
|
50
|
+
f = node.at(ns("./fmt-fn-label"))
|
51
|
+
out.a **attrs do |a|
|
52
|
+
children_parse(f, a)
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
@@ -15,8 +15,6 @@ module IsoDoc
|
|
15
15
|
end
|
16
16
|
end
|
17
17
|
|
18
|
-
def location_parse(node, out); end
|
19
|
-
|
20
18
|
# Presentation XML classes which we need not pass on to HTML or DOC
|
21
19
|
SPAN_UNWRAP_CLASSES =
|
22
20
|
%w[fmt-caption-label fmt-label-delim fmt-caption-delim fmt-autonum-delim
|
@@ -189,8 +187,6 @@ module IsoDoc
|
|
189
187
|
end
|
190
188
|
end
|
191
189
|
|
192
|
-
def author_parse(node, out); end
|
193
|
-
|
194
190
|
def semx_parse(node, out)
|
195
191
|
children_parse(node, out)
|
196
192
|
end
|
@@ -199,8 +195,9 @@ module IsoDoc
|
|
199
195
|
node.children.each { |n| parse(n, out) }
|
200
196
|
end
|
201
197
|
|
198
|
+
def location_parse(node, out); end
|
199
|
+
def author_parse(node, out); end
|
202
200
|
def xref_label_parse(node, out); end
|
203
|
-
|
204
201
|
def name_parse(node, out); end
|
205
202
|
def semx_definition_parse(node, out); end
|
206
203
|
def semx_xref_parse(node, out); end
|
@@ -209,7 +206,6 @@ module IsoDoc
|
|
209
206
|
def semx_origin_parse(node, out); end
|
210
207
|
def date_parse(node, out); end
|
211
208
|
def semx_stem_parse(node, out); end
|
212
|
-
|
213
209
|
def floating_title_parse(node, out); end
|
214
210
|
def identifier_parse(node, out); end
|
215
211
|
def concept_parse(node, out); end
|
@@ -233,6 +229,14 @@ module IsoDoc
|
|
233
229
|
def fmt_date_parse(node, out)
|
234
230
|
children_parse(node, out)
|
235
231
|
end
|
232
|
+
|
233
|
+
def fmt_fn_label_parse(node, out)
|
234
|
+
children_parse(node, out)
|
235
|
+
end
|
236
|
+
|
237
|
+
def fmt_footnote_container_parse(node, out)
|
238
|
+
children_parse(node, out)
|
239
|
+
end
|
236
240
|
end
|
237
241
|
end
|
238
242
|
end
|
@@ -219,6 +219,13 @@ module IsoDoc
|
|
219
219
|
node.children.each { |n| parse(n, div) }
|
220
220
|
end
|
221
221
|
end
|
222
|
+
|
223
|
+
def footnotes(docxml, div)
|
224
|
+
docxml.xpath(ns("/*/fmt-footnote-container"))
|
225
|
+
.each do |fn|
|
226
|
+
fn.children.each { |n| parse(n, div) }
|
227
|
+
end
|
228
|
+
end
|
222
229
|
end
|
223
230
|
end
|
224
231
|
end
|
@@ -0,0 +1,64 @@
|
|
1
|
+
require "fileutils"
|
2
|
+
require "pathname"
|
3
|
+
|
4
|
+
module IsoDoc
|
5
|
+
module Function
|
6
|
+
module ToWordHtml
|
7
|
+
def note?
|
8
|
+
@note
|
9
|
+
end
|
10
|
+
|
11
|
+
def init_file(filename, debug)
|
12
|
+
filepath = Pathname.new(filename)
|
13
|
+
filename = filepath.sub_ext("").sub(/\.presentation$/, "").to_s
|
14
|
+
dir = init_dir(filename, debug)
|
15
|
+
@filename = filename
|
16
|
+
@localdir = @baseassetpath || filepath.parent.to_s
|
17
|
+
@localdir += "/"
|
18
|
+
@sourcedir = @localdir
|
19
|
+
@sourcefilename and
|
20
|
+
@sourcedir = "#{Pathname.new(@sourcefilename).parent}/"
|
21
|
+
[filename, dir]
|
22
|
+
end
|
23
|
+
|
24
|
+
def init_dir(filename, debug)
|
25
|
+
dir = "#{filename}#{@tmpfilesdir_suffix}"
|
26
|
+
unless debug
|
27
|
+
FileUtils.mkdir_p(dir)
|
28
|
+
FileUtils.chmod 0o777, dir
|
29
|
+
FileUtils.rm_rf "#{dir}/*"
|
30
|
+
end
|
31
|
+
dir
|
32
|
+
end
|
33
|
+
|
34
|
+
# tmp image dir is same directory as @filename
|
35
|
+
def tmpimagedir
|
36
|
+
@filename + @tmpimagedir_suffix
|
37
|
+
end
|
38
|
+
|
39
|
+
def rel_tmpimagedir
|
40
|
+
Pathname.new(@filename).basename.to_s + @tmpimagedir_suffix
|
41
|
+
end
|
42
|
+
|
43
|
+
def info(isoxml, out)
|
44
|
+
@meta.code_css isoxml, out
|
45
|
+
@meta.title isoxml, out
|
46
|
+
@meta.subtitle isoxml, out
|
47
|
+
@meta.docstatus isoxml, out
|
48
|
+
@meta.docid isoxml, out
|
49
|
+
@meta.otherid isoxml, out
|
50
|
+
@meta.docnumeric isoxml, out
|
51
|
+
@meta.doctype isoxml, out
|
52
|
+
@meta.author isoxml, out
|
53
|
+
@meta.bibdate isoxml, out
|
54
|
+
@meta.relations isoxml, out
|
55
|
+
@meta.version isoxml, out
|
56
|
+
@meta.url isoxml, out
|
57
|
+
@meta.keywords isoxml, out
|
58
|
+
@meta.note isoxml, out
|
59
|
+
@meta.presentation isoxml, out
|
60
|
+
@meta.get
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
@@ -86,6 +86,8 @@ module IsoDoc
|
|
86
86
|
(dl = node.at(ns("./dl"))) && parse(dl, out)
|
87
87
|
node.xpath(ns("./source")).each { |n| parse(n, out) }
|
88
88
|
node.xpath(ns("./note")).each { |n| parse(n, out) }
|
89
|
+
node.xpath(ns("./fmt-footnote-container/fmt-fn-body"))
|
90
|
+
.each { |n| parse(n, out) }
|
89
91
|
end
|
90
92
|
|
91
93
|
def table_parse_core(node, out)
|
@@ -1,45 +1,10 @@
|
|
1
1
|
require "fileutils"
|
2
2
|
require "pathname"
|
3
|
+
require_relative "setup"
|
3
4
|
|
4
5
|
module IsoDoc
|
5
6
|
module Function
|
6
7
|
module ToWordHtml
|
7
|
-
def note?
|
8
|
-
@note
|
9
|
-
end
|
10
|
-
|
11
|
-
def init_file(filename, debug)
|
12
|
-
filepath = Pathname.new(filename)
|
13
|
-
filename = filepath.sub_ext("").sub(/\.presentation$/, "").to_s
|
14
|
-
dir = init_dir(filename, debug)
|
15
|
-
@filename = filename
|
16
|
-
@localdir = @baseassetpath || filepath.parent.to_s
|
17
|
-
@localdir += "/"
|
18
|
-
@sourcedir = @localdir
|
19
|
-
@sourcefilename and
|
20
|
-
@sourcedir = "#{Pathname.new(@sourcefilename).parent}/"
|
21
|
-
[filename, dir]
|
22
|
-
end
|
23
|
-
|
24
|
-
def init_dir(filename, debug)
|
25
|
-
dir = "#{filename}#{@tmpfilesdir_suffix}"
|
26
|
-
unless debug
|
27
|
-
FileUtils.mkdir_p(dir)
|
28
|
-
FileUtils.chmod 0o777, dir
|
29
|
-
FileUtils.rm_rf "#{dir}/*"
|
30
|
-
end
|
31
|
-
dir
|
32
|
-
end
|
33
|
-
|
34
|
-
# tmp image dir is same directory as @filename
|
35
|
-
def tmpimagedir
|
36
|
-
@filename + @tmpimagedir_suffix
|
37
|
-
end
|
38
|
-
|
39
|
-
def rel_tmpimagedir
|
40
|
-
Pathname.new(@filename).basename.to_s + @tmpimagedir_suffix
|
41
|
-
end
|
42
|
-
|
43
8
|
# isodoc.css overrides any CSS injected by Html2Doc, which
|
44
9
|
# is inserted before this CSS.
|
45
10
|
def define_head(head, _filename, _dir)
|
@@ -88,7 +53,7 @@ module IsoDoc
|
|
88
53
|
body.div class: "main-section" do |div3|
|
89
54
|
boilerplate docxml, div3
|
90
55
|
content(div3, docxml, ns(self.class::TOP_ELEMENTS))
|
91
|
-
footnotes div3
|
56
|
+
footnotes docxml, div3
|
92
57
|
comments div3
|
93
58
|
end
|
94
59
|
end
|
@@ -129,26 +94,6 @@ module IsoDoc
|
|
129
94
|
end
|
130
95
|
end
|
131
96
|
|
132
|
-
def info(isoxml, out)
|
133
|
-
@meta.code_css isoxml, out
|
134
|
-
@meta.title isoxml, out
|
135
|
-
@meta.subtitle isoxml, out
|
136
|
-
@meta.docstatus isoxml, out
|
137
|
-
@meta.docid isoxml, out
|
138
|
-
@meta.otherid isoxml, out
|
139
|
-
@meta.docnumeric isoxml, out
|
140
|
-
@meta.doctype isoxml, out
|
141
|
-
@meta.author isoxml, out
|
142
|
-
@meta.bibdate isoxml, out
|
143
|
-
@meta.relations isoxml, out
|
144
|
-
@meta.version isoxml, out
|
145
|
-
@meta.url isoxml, out
|
146
|
-
@meta.keywords isoxml, out
|
147
|
-
@meta.note isoxml, out
|
148
|
-
@meta.presentation isoxml, out
|
149
|
-
@meta.get
|
150
|
-
end
|
151
|
-
|
152
97
|
def cross_align(isoxml, out)
|
153
98
|
isoxml.xpath(ns("//cross-align")).each do |c|
|
154
99
|
parse(c, out)
|
@@ -286,6 +231,9 @@ module IsoDoc
|
|
286
231
|
when "amend" then amend_parse(node, out)
|
287
232
|
when "date" then date_parse(node, out)
|
288
233
|
when "fmt-date" then fmt_date_parse(node, out)
|
234
|
+
when "fmt-fn-body" then fmt_fn_body_parse(node, out)
|
235
|
+
when "fmt-fn-label" then fmt_fn_label_parse(node, out)
|
236
|
+
when "fmt-footnote-container" then fmt_footnote_container_parse(node, out)
|
289
237
|
else error_parse(node, out)
|
290
238
|
end
|
291
239
|
end
|
@@ -107,8 +107,7 @@ module IsoDoc
|
|
107
107
|
end
|
108
108
|
|
109
109
|
def sentence_join(array)
|
110
|
-
|
111
|
-
|
110
|
+
array.nil? || array.empty? and return ""
|
112
111
|
if array.length == 1 then array[0]
|
113
112
|
else
|
114
113
|
@i18n.l10n("#{array[0..-2].join(', ')} " \
|
@@ -242,11 +241,9 @@ module IsoDoc
|
|
242
241
|
def external_path(path)
|
243
242
|
win = !!((RUBY_PLATFORM =~ /(win|w)(32|64)$/) ||
|
244
243
|
(RUBY_PLATFORM =~ /mswin|mingw/))
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
else path
|
249
|
-
end
|
244
|
+
win or return path
|
245
|
+
path.tr!(%{/}, "\\")
|
246
|
+
path[/\s/] ? "\"#{path}\"" : path
|
250
247
|
end
|
251
248
|
end
|
252
249
|
end
|
data/lib/isodoc/gem_tasks.rb
CHANGED
@@ -111,30 +111,30 @@ module IsoDoc
|
|
111
111
|
end
|
112
112
|
|
113
113
|
def compile_scss(filename)
|
114
|
+
load_scss_paths(filename)
|
115
|
+
Dir.mktmpdir do |dir|
|
116
|
+
File.write(File.join(dir, "variables.scss"), fonts_placeholder)
|
117
|
+
SassC.load_paths << dir
|
118
|
+
sheet_content = File.read(filename, encoding: "UTF-8")
|
119
|
+
.gsub(%r<([a-z])\.([0-9])(?=[^{}]*{)>m, "\\1.__WORD__\\2")
|
120
|
+
SassC::Engine.new(%<@use "variables" as *;\n#{sheet_content}>,
|
121
|
+
syntax: :scss, importer: SasscImporter)
|
122
|
+
.render.gsub(/__WORD__/, "")
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
126
|
+
def load_scss_paths(filename)
|
114
127
|
require "sassc-embedded"
|
115
128
|
require "isodoc/sassc_importer"
|
116
|
-
|
117
129
|
isodoc_path = if Gem.loaded_specs["isodoc"]
|
118
130
|
File.join(Gem.loaded_specs["isodoc"].full_gem_path,
|
119
131
|
"lib", "isodoc")
|
120
|
-
else
|
121
|
-
File.join("lib", "isodoc")
|
132
|
+
else File.join("lib", "isodoc")
|
122
133
|
end
|
123
134
|
[isodoc_path,
|
124
135
|
File.dirname(filename)].each do |name|
|
125
|
-
|
126
|
-
|
127
|
-
Dir.mktmpdir do |dir|
|
128
|
-
variables_file_path = File.join(dir, "variables.scss")
|
129
|
-
File.write(variables_file_path, fonts_placeholder)
|
130
|
-
SassC.load_paths << dir
|
131
|
-
|
132
|
-
sheet_content = File.read(filename, encoding: "UTF-8")
|
133
|
-
SassC::Engine.new(%<@use "variables" as *;\n#{sheet_content}>,
|
134
|
-
syntax: :scss,
|
135
|
-
importer: SasscImporter)
|
136
|
-
.render
|
137
|
-
end
|
136
|
+
SassC.load_paths << name
|
137
|
+
end
|
138
138
|
end
|
139
139
|
|
140
140
|
def compile_scss_task(current_task)
|
@@ -1,12 +1,10 @@
|
|
1
1
|
require_relative "html_function/comments"
|
2
|
-
require_relative "html_function/footnotes"
|
3
2
|
require_relative "html_function/html"
|
4
3
|
require "fileutils"
|
5
4
|
|
6
5
|
module IsoDoc
|
7
6
|
class HeadlessHtmlConvert < ::IsoDoc::Convert
|
8
7
|
include HtmlFunction::Comments
|
9
|
-
include HtmlFunction::Footnotes
|
10
8
|
include HtmlFunction::Html
|
11
9
|
|
12
10
|
def tmpimagedir_suffix
|
data/lib/isodoc/html_convert.rb
CHANGED
@@ -1,5 +1,4 @@
|
|
1
1
|
require_relative "html_function/comments"
|
2
|
-
require_relative "html_function/footnotes"
|
3
2
|
require_relative "html_function/html"
|
4
3
|
require_relative "html_function/postprocess"
|
5
4
|
require_relative "html_function/form"
|
@@ -8,7 +7,6 @@ module IsoDoc
|
|
8
7
|
class HtmlConvert < ::IsoDoc::Convert
|
9
8
|
|
10
9
|
include HtmlFunction::Comments
|
11
|
-
include HtmlFunction::Footnotes
|
12
10
|
include HtmlFunction::Form
|
13
11
|
include HtmlFunction::Html
|
14
12
|
|
@@ -26,7 +26,8 @@ module IsoDoc
|
|
26
26
|
|
27
27
|
def html_cleanup(html)
|
28
28
|
html = term_header(html_footnote_filter(html_preface(htmlstyle(html))))
|
29
|
-
html = footnote_format(footnote_backlinks(html))
|
29
|
+
#html = footnote_format(footnote_backlinks(html))
|
30
|
+
html = (footnote_backlinks(html))
|
30
31
|
html = mathml(html_list_clean(remove_placeholder_paras(html)))
|
31
32
|
html_toc(heading_anchors(sourcecode_cleanup(html)))
|
32
33
|
end
|
data/lib/isodoc/pdf_convert.rb
CHANGED
@@ -1,11 +1,9 @@
|
|
1
1
|
require_relative "html_function/comments"
|
2
|
-
require_relative "html_function/footnotes"
|
3
2
|
require_relative "html_function/html"
|
4
3
|
|
5
4
|
module IsoDoc
|
6
5
|
class PdfConvert < ::IsoDoc::Convert
|
7
6
|
include HtmlFunction::Comments
|
8
|
-
include HtmlFunction::Footnotes
|
9
7
|
include HtmlFunction::Html
|
10
8
|
|
11
9
|
def initialize(options)
|