asciidoctor-csd 0.4.2 → 0.4.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +9 -5
- data/lib/asciidoctor/csd/converter.rb +0 -6
- data/lib/asciidoctor/csd/isodoc.rng +8 -2
- data/lib/asciidoctor/csd/version.rb +1 -1
- data/lib/isodoc/csd/html/csd.scss +14 -6
- metadata +2 -3
- data/Gemfile.lock +0 -255
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f0ff767bc57cd259a6b1b69987ac3adb72a73136f939d00490ed5004cb5d0d30
|
4
|
+
data.tar.gz: 2e02046f6a6a143600eb24d9830c73b3e5b9d155361cc8e228ffee8c5f711ed5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1edc4b8aac092932668868e83663ef9a40d726ff3a4490583601b827d6bffbaf529f50850454816cb325498c917bb5c4065133af19c18089c7350f8a329e94d8
|
7
|
+
data.tar.gz: 923c2667f708f48a029e32437fd84eec22a03309daa400e1025e0eebecd0f9c7c554d72ed6c0d95b67e3bc577a9d0cad890a2e39cc086f3a33173d489ecf9854
|
data/.travis.yml
CHANGED
@@ -1,12 +1,16 @@
|
|
1
|
+
dist: trusty
|
1
2
|
sudo: false
|
2
3
|
language: ruby
|
3
4
|
rvm:
|
4
|
-
- 2.
|
5
|
-
|
6
|
-
-
|
7
|
-
- "8"
|
5
|
+
- 2.5
|
6
|
+
- 2.4
|
7
|
+
- ruby-head
|
8
8
|
before_install:
|
9
9
|
- gem install bundler -v 1.16.1
|
10
|
-
- unset _JAVA_OPTIONS
|
11
10
|
- npm install -g puppeteer
|
12
11
|
- npm install
|
12
|
+
- unset _JAVA_OPTIONS
|
13
|
+
matrix:
|
14
|
+
allow_failures:
|
15
|
+
- rvm: ruby-head
|
16
|
+
|
@@ -76,7 +76,6 @@ module Asciidoctor
|
|
76
76
|
result << noko { |ixml| front node, ixml }
|
77
77
|
result << noko { |ixml| middle node, ixml }
|
78
78
|
result << "</csd-standard>"
|
79
|
-
@bibdb.save() if @bibdb
|
80
79
|
result = textcleanup(result.flatten * "\n")
|
81
80
|
ret1 = cleanup(Nokogiri::XML(result))
|
82
81
|
validate(ret1)
|
@@ -93,11 +92,6 @@ module Asciidoctor
|
|
93
92
|
d
|
94
93
|
end
|
95
94
|
|
96
|
-
# deactivating biblio caching for now
|
97
|
-
#def open_cache_biblio(node, global)
|
98
|
-
#nil
|
99
|
-
#end
|
100
|
-
|
101
95
|
def pdf_convert(filename)
|
102
96
|
url = "#{Dir.pwd}/#{filename}.html"
|
103
97
|
pdfjs = File.join(File.dirname(__FILE__), 'pdf.js')
|
@@ -888,12 +888,18 @@
|
|
888
888
|
</attribute>
|
889
889
|
<optional>
|
890
890
|
<attribute name="width">
|
891
|
-
<
|
891
|
+
<choice>
|
892
|
+
<data type="int"/>
|
893
|
+
<value>auto</value>
|
894
|
+
</choice>
|
892
895
|
</attribute>
|
893
896
|
</optional>
|
894
897
|
<optional>
|
895
898
|
<attribute name="height">
|
896
|
-
<
|
899
|
+
<choice>
|
900
|
+
<data type="int"/>
|
901
|
+
<value>auto</value>
|
902
|
+
</choice>
|
897
903
|
</attribute>
|
898
904
|
</optional>
|
899
905
|
</element>
|
@@ -519,13 +519,21 @@ div.coverpage_warning
|
|
519
519
|
font-size:10.0pt;
|
520
520
|
}
|
521
521
|
div.example {
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
522
|
+
margin-left:70.9pt;
|
523
|
+
text-indent:-70.9pt;
|
524
|
+
}
|
525
|
+
p.example, li.example, div.example, td.example, td.example p
|
526
|
+
{ margin:0in;
|
527
|
+
margin-bottom:.0001pt;
|
528
|
+
mso-pagination:none;
|
529
|
+
font-size:10.0pt;
|
530
|
+
font-family:$bodyfont;}
|
531
|
+
span.note_label, span.example_label, td.example_label, td.note_label
|
532
|
+
{
|
533
|
+
font-size: 10.0pt;
|
534
|
+
font-family:$bodyfont;
|
528
535
|
}
|
536
|
+
|
529
537
|
table.dl
|
530
538
|
{margin-top:0cm;
|
531
539
|
margin-right:0cm;
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: asciidoctor-csd
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-07
|
11
|
+
date: 2018-08-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: asciidoctor-iso
|
@@ -207,7 +207,6 @@ files:
|
|
207
207
|
- ".travis.yml"
|
208
208
|
- CODE_OF_CONDUCT.md
|
209
209
|
- Gemfile
|
210
|
-
- Gemfile.lock
|
211
210
|
- LICENSE
|
212
211
|
- README.adoc
|
213
212
|
- Rakefile
|
data/Gemfile.lock
DELETED
@@ -1,255 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
asciidoctor-csd (0.4.2)
|
5
|
-
asciidoctor-iso (>= 0.9.0)
|
6
|
-
isodoc (>= 0.8.0)
|
7
|
-
|
8
|
-
GEM
|
9
|
-
remote: https://rubygems.org/
|
10
|
-
specs:
|
11
|
-
algoliasearch (1.23.2)
|
12
|
-
httpclient (~> 2.8, >= 2.8.3)
|
13
|
-
json (>= 1.5.1)
|
14
|
-
asciidoctor (1.5.7.1)
|
15
|
-
asciidoctor-csand (0.3.1)
|
16
|
-
asciidoctor (~> 1.5.7)
|
17
|
-
asciidoctor-iso (>= 0.9.0)
|
18
|
-
asciimath
|
19
|
-
htmlentities (~> 4.3.4)
|
20
|
-
image_size
|
21
|
-
isodoc (>= 0.8.0)
|
22
|
-
mime-types
|
23
|
-
nokogiri
|
24
|
-
ruby-jing
|
25
|
-
ruby-xslt
|
26
|
-
thread_safe
|
27
|
-
uuidtools
|
28
|
-
asciidoctor-gb (0.3.2)
|
29
|
-
asciidoctor-iso (>= 0.9.0)
|
30
|
-
gbbib
|
31
|
-
isodoc (>= 0.8.0)
|
32
|
-
twitter_cldr
|
33
|
-
asciidoctor-iso (0.9.4)
|
34
|
-
asciidoctor (~> 1.5.7)
|
35
|
-
iev (~> 0.1.0)
|
36
|
-
isodoc (>= 0.8)
|
37
|
-
relaton (~> 0.0.1)
|
38
|
-
ruby-jing
|
39
|
-
asciidoctor-m3d (0.3.2)
|
40
|
-
asciidoctor (~> 1.5.7)
|
41
|
-
asciidoctor-iso (>= 0.9.0)
|
42
|
-
asciimath
|
43
|
-
htmlentities (~> 4.3.4)
|
44
|
-
image_size
|
45
|
-
isodoc (>= 0.8.0)
|
46
|
-
mime-types
|
47
|
-
nokogiri
|
48
|
-
ruby-jing
|
49
|
-
ruby-xslt
|
50
|
-
thread_safe
|
51
|
-
uuidtools
|
52
|
-
asciidoctor-rfc (0.9.0)
|
53
|
-
asciidoctor (~> 1.5.7)
|
54
|
-
htmlentities (~> 4.3.4)
|
55
|
-
nokogiri
|
56
|
-
ruby-jing
|
57
|
-
thread_safe
|
58
|
-
asciidoctor-rsd (0.3.1)
|
59
|
-
asciidoctor (~> 1.5.7)
|
60
|
-
asciidoctor-iso (>= 0.8.0)
|
61
|
-
asciimath
|
62
|
-
htmlentities (~> 4.3.4)
|
63
|
-
image_size
|
64
|
-
isodoc (>= 0.7.0)
|
65
|
-
mime-types
|
66
|
-
nokogiri
|
67
|
-
ruby-jing
|
68
|
-
ruby-xslt
|
69
|
-
thread_safe
|
70
|
-
uuidtools
|
71
|
-
asciimath (1.0.4)
|
72
|
-
ast (2.4.0)
|
73
|
-
byebug (9.1.0)
|
74
|
-
camertron-eprun (1.1.1)
|
75
|
-
cldr-plurals-runtime-rb (1.0.1)
|
76
|
-
cnccs (0.1.1)
|
77
|
-
coderay (1.1.2)
|
78
|
-
diff-lcs (1.3)
|
79
|
-
docile (1.3.1)
|
80
|
-
duplicate (1.1.1)
|
81
|
-
equivalent-xml (0.6.0)
|
82
|
-
nokogiri (>= 1.4.3)
|
83
|
-
ffi (1.9.25)
|
84
|
-
formatador (0.2.5)
|
85
|
-
gbbib (0.1.4)
|
86
|
-
cnccs
|
87
|
-
iso-bib-item
|
88
|
-
guard (2.14.2)
|
89
|
-
formatador (>= 0.2.4)
|
90
|
-
listen (>= 2.7, < 4.0)
|
91
|
-
lumberjack (>= 1.0.12, < 2.0)
|
92
|
-
nenv (~> 0.1)
|
93
|
-
notiffany (~> 0.0)
|
94
|
-
pry (>= 0.9.12)
|
95
|
-
shellany (~> 0.0)
|
96
|
-
thor (>= 0.18.1)
|
97
|
-
guard-compat (1.2.1)
|
98
|
-
guard-rspec (4.7.3)
|
99
|
-
guard (~> 2.1)
|
100
|
-
guard-compat (~> 1.1)
|
101
|
-
rspec (>= 2.99.0, < 4.0)
|
102
|
-
html2doc (0.8.0)
|
103
|
-
asciimath
|
104
|
-
htmlentities (~> 4.3.4)
|
105
|
-
image_size
|
106
|
-
mime-types
|
107
|
-
nokogiri
|
108
|
-
ruby-xslt
|
109
|
-
thread_safe
|
110
|
-
uuidtools
|
111
|
-
htmlentities (4.3.4)
|
112
|
-
httpclient (2.8.3)
|
113
|
-
iev (0.1.0)
|
114
|
-
nokogiri
|
115
|
-
image_size (2.0.0)
|
116
|
-
iso-bib-item (0.1.10)
|
117
|
-
duplicate (~> 1.1.1)
|
118
|
-
isoics (~> 0.1.6)
|
119
|
-
nokogiri
|
120
|
-
isobib (0.1.9)
|
121
|
-
algoliasearch
|
122
|
-
iso-bib-item (~> 0.1.10)
|
123
|
-
isodoc (0.8.1)
|
124
|
-
asciimath
|
125
|
-
html2doc (>= 0.7.1)
|
126
|
-
htmlentities (~> 4.3.4)
|
127
|
-
image_size
|
128
|
-
liquid
|
129
|
-
mime-types
|
130
|
-
nokogiri
|
131
|
-
roman-numerals
|
132
|
-
ruby-xslt
|
133
|
-
sass
|
134
|
-
thread_safe
|
135
|
-
uuidtools
|
136
|
-
isoics (0.1.6)
|
137
|
-
jaro_winkler (1.5.1)
|
138
|
-
json (2.1.0)
|
139
|
-
liquid (4.0.0)
|
140
|
-
listen (3.1.5)
|
141
|
-
rb-fsevent (~> 0.9, >= 0.9.4)
|
142
|
-
rb-inotify (~> 0.9, >= 0.9.7)
|
143
|
-
ruby_dep (~> 1.2)
|
144
|
-
lumberjack (1.0.13)
|
145
|
-
metanorma (0.2.5)
|
146
|
-
asciidoctor-csand (>= 0.3.0)
|
147
|
-
asciidoctor-csd (>= 0.4.0)
|
148
|
-
asciidoctor-gb (>= 0.3.0)
|
149
|
-
asciidoctor-iso (>= 0.9.1)
|
150
|
-
asciidoctor-m3d (>= 0.3.1)
|
151
|
-
asciidoctor-rfc (>= 0.9.0)
|
152
|
-
asciidoctor-rsd (>= 0.3.0)
|
153
|
-
isodoc (>= 0.8.0)
|
154
|
-
method_source (0.9.0)
|
155
|
-
mime-types (3.1)
|
156
|
-
mime-types-data (~> 3.2015)
|
157
|
-
mime-types-data (3.2016.0521)
|
158
|
-
mini_portile2 (2.3.0)
|
159
|
-
nenv (0.3.0)
|
160
|
-
nokogiri (1.8.4)
|
161
|
-
mini_portile2 (~> 2.3.0)
|
162
|
-
notiffany (0.1.1)
|
163
|
-
nenv (~> 0.1)
|
164
|
-
shellany (~> 0.0)
|
165
|
-
optout (0.0.2)
|
166
|
-
parallel (1.12.1)
|
167
|
-
parser (2.5.1.0)
|
168
|
-
ast (~> 2.4.0)
|
169
|
-
powerpack (0.1.2)
|
170
|
-
pry (0.11.3)
|
171
|
-
coderay (~> 1.1.0)
|
172
|
-
method_source (~> 0.9.0)
|
173
|
-
rainbow (3.0.0)
|
174
|
-
rake (12.3.1)
|
175
|
-
rb-fsevent (0.10.3)
|
176
|
-
rb-inotify (0.9.10)
|
177
|
-
ffi (>= 0.5.0, < 2)
|
178
|
-
relaton (0.0.1)
|
179
|
-
asciidoctor (~> 1.5.7)
|
180
|
-
gbbib (~> 0.1.0)
|
181
|
-
iev (~> 0.1.0)
|
182
|
-
iso-bib-item (~> 0.1.6)
|
183
|
-
isobib (~> 0.1.8)
|
184
|
-
rfcbib (~> 0.1.0)
|
185
|
-
rfcbib (0.1.1)
|
186
|
-
iso-bib-item (~> 0.1.10)
|
187
|
-
roman-numerals (0.3.0)
|
188
|
-
rspec (3.7.0)
|
189
|
-
rspec-core (~> 3.7.0)
|
190
|
-
rspec-expectations (~> 3.7.0)
|
191
|
-
rspec-mocks (~> 3.7.0)
|
192
|
-
rspec-core (3.7.1)
|
193
|
-
rspec-support (~> 3.7.0)
|
194
|
-
rspec-expectations (3.7.0)
|
195
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
196
|
-
rspec-support (~> 3.7.0)
|
197
|
-
rspec-mocks (3.7.0)
|
198
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
199
|
-
rspec-support (~> 3.7.0)
|
200
|
-
rspec-support (3.7.1)
|
201
|
-
rubocop (0.57.2)
|
202
|
-
jaro_winkler (~> 1.5.1)
|
203
|
-
parallel (~> 1.10)
|
204
|
-
parser (>= 2.5)
|
205
|
-
powerpack (~> 0.1)
|
206
|
-
rainbow (>= 2.2.2, < 4.0)
|
207
|
-
ruby-progressbar (~> 1.7)
|
208
|
-
unicode-display_width (~> 1.0, >= 1.0.1)
|
209
|
-
ruby-jing (0.0.1)
|
210
|
-
optout (>= 0.0.2)
|
211
|
-
ruby-progressbar (1.9.0)
|
212
|
-
ruby-xslt (0.9.10)
|
213
|
-
ruby_dep (1.5.0)
|
214
|
-
sass (3.5.6)
|
215
|
-
sass-listen (~> 4.0.0)
|
216
|
-
sass-listen (4.0.0)
|
217
|
-
rb-fsevent (~> 0.9, >= 0.9.4)
|
218
|
-
rb-inotify (~> 0.9, >= 0.9.7)
|
219
|
-
shellany (0.0.1)
|
220
|
-
simplecov (0.16.1)
|
221
|
-
docile (~> 1.1)
|
222
|
-
json (>= 1.8, < 3)
|
223
|
-
simplecov-html (~> 0.10.0)
|
224
|
-
simplecov-html (0.10.2)
|
225
|
-
thor (0.20.0)
|
226
|
-
thread_safe (0.3.6)
|
227
|
-
timecop (0.9.1)
|
228
|
-
twitter_cldr (4.4.3)
|
229
|
-
camertron-eprun
|
230
|
-
cldr-plurals-runtime-rb (~> 1.0)
|
231
|
-
tzinfo
|
232
|
-
tzinfo (1.2.5)
|
233
|
-
thread_safe (~> 0.1)
|
234
|
-
unicode-display_width (1.4.0)
|
235
|
-
uuidtools (2.1.5)
|
236
|
-
|
237
|
-
PLATFORMS
|
238
|
-
ruby
|
239
|
-
|
240
|
-
DEPENDENCIES
|
241
|
-
asciidoctor-csd!
|
242
|
-
bundler (~> 1.15)
|
243
|
-
byebug (~> 9.1)
|
244
|
-
equivalent-xml (~> 0.6)
|
245
|
-
guard (~> 2.14)
|
246
|
-
guard-rspec (~> 4.7)
|
247
|
-
metanorma (~> 0.2.5)
|
248
|
-
rake (~> 12.0)
|
249
|
-
rspec (~> 3.6)
|
250
|
-
rubocop (~> 0.50)
|
251
|
-
simplecov (~> 0.15)
|
252
|
-
timecop (~> 0.9)
|
253
|
-
|
254
|
-
BUNDLED WITH
|
255
|
-
1.16.2
|