isodoc 1.6.1 → 1.6.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/rake.yml +2 -12
- data/.hound.yml +3 -1
- data/.rubocop.yml +4 -8
- data/Rakefile +2 -2
- data/isodoc.gemspec +4 -3
- data/lib/isodoc-yaml/i18n-ar.yaml +152 -0
- data/lib/isodoc-yaml/i18n-de.yaml +149 -0
- data/lib/isodoc-yaml/i18n-en.yaml +1 -0
- data/lib/isodoc-yaml/i18n-es.yaml +151 -0
- data/lib/isodoc-yaml/i18n-fr.yaml +1 -0
- data/lib/isodoc-yaml/i18n-ru.yaml +154 -0
- data/lib/isodoc-yaml/i18n-zh-Hans.yaml +1 -0
- data/lib/isodoc.rb +0 -2
- data/lib/isodoc/common.rb +2 -0
- data/lib/isodoc/convert.rb +8 -2
- data/lib/isodoc/function/blocks.rb +15 -4
- data/lib/isodoc/function/cleanup.rb +52 -43
- data/lib/isodoc/function/form.rb +51 -0
- data/lib/isodoc/function/inline.rb +8 -7
- data/lib/isodoc/function/references.rb +71 -77
- data/lib/isodoc/function/section.rb +28 -16
- data/lib/isodoc/function/table.rb +22 -22
- data/lib/isodoc/function/terms.rb +6 -7
- data/lib/isodoc/function/to_word_html.rb +19 -25
- data/lib/isodoc/function/utils.rb +181 -163
- data/lib/isodoc/gem_tasks.rb +8 -9
- data/lib/isodoc/headlesshtml_convert.rb +8 -7
- data/lib/isodoc/html_convert.rb +6 -0
- data/lib/isodoc/html_function/comments.rb +14 -12
- data/lib/isodoc/html_function/footnotes.rb +14 -7
- data/lib/isodoc/html_function/form.rb +62 -0
- data/lib/isodoc/html_function/html.rb +30 -26
- data/lib/isodoc/html_function/postprocess.rb +191 -182
- data/lib/isodoc/html_function/sectionsplit.rb +230 -0
- data/lib/isodoc/i18n.rb +13 -11
- data/lib/isodoc/metadata.rb +22 -20
- data/lib/isodoc/metadata_contributor.rb +31 -28
- data/lib/isodoc/pdf_convert.rb +11 -13
- data/lib/isodoc/presentation_function/bibdata.rb +54 -30
- data/lib/isodoc/presentation_function/inline.rb +70 -120
- data/lib/isodoc/presentation_function/math.rb +84 -0
- data/lib/isodoc/presentation_function/section.rb +55 -19
- data/lib/isodoc/presentation_xml_convert.rb +3 -0
- data/lib/isodoc/sassc_importer.rb +1 -1
- data/lib/isodoc/version.rb +1 -1
- data/lib/isodoc/word_function/body.rb +28 -24
- data/lib/isodoc/word_function/postprocess.rb +50 -36
- data/lib/isodoc/xref.rb +2 -0
- data/lib/isodoc/xref/xref_counter.rb +1 -2
- data/lib/isodoc/xref/xref_gen.rb +21 -14
- data/lib/isodoc/xref/xref_gen_seq.rb +60 -35
- data/lib/isodoc/xref/xref_sect_gen.rb +15 -15
- data/spec/assets/scripts_override.html +3 -0
- data/spec/isodoc/blocks_spec.rb +624 -997
- data/spec/isodoc/cleanup_spec.rb +40 -42
- data/spec/isodoc/form_spec.rb +156 -0
- data/spec/isodoc/i18n_spec.rb +694 -821
- data/spec/isodoc/inline_spec.rb +1105 -921
- data/spec/isodoc/metadata_spec.rb +384 -379
- data/spec/isodoc/postproc_spec.rb +461 -333
- data/spec/isodoc/presentation_xml_spec.rb +355 -278
- data/spec/isodoc/ref_spec.rb +5 -5
- data/spec/isodoc/section_spec.rb +216 -199
- data/spec/isodoc/sectionsplit_spec.rb +190 -0
- data/spec/isodoc/table_spec.rb +41 -42
- data/spec/isodoc/terms_spec.rb +84 -84
- data/spec/isodoc/xref_spec.rb +974 -932
- metadata +32 -7
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: isodoc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.
|
4
|
+
version: 1.6.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-06-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: asciimath
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 1.1.
|
33
|
+
version: 1.1.1
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 1.1.
|
40
|
+
version: 1.1.1
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: htmlentities
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -86,14 +86,14 @@ dependencies:
|
|
86
86
|
requirements:
|
87
87
|
- - "~>"
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version: 1.
|
89
|
+
version: 1.11.0
|
90
90
|
type: :runtime
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
94
|
- - "~>"
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version: 1.
|
96
|
+
version: 1.11.0
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
98
|
name: relaton-cli
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
@@ -304,6 +304,20 @@ dependencies:
|
|
304
304
|
- - "~>"
|
305
305
|
- !ruby/object:Gem::Version
|
306
306
|
version: '0.15'
|
307
|
+
- !ruby/object:Gem::Dependency
|
308
|
+
name: metanorma-iso
|
309
|
+
requirement: !ruby/object:Gem::Requirement
|
310
|
+
requirements:
|
311
|
+
- - ">="
|
312
|
+
- !ruby/object:Gem::Version
|
313
|
+
version: '0'
|
314
|
+
type: :development
|
315
|
+
prerelease: false
|
316
|
+
version_requirements: !ruby/object:Gem::Requirement
|
317
|
+
requirements:
|
318
|
+
- - ">="
|
319
|
+
- !ruby/object:Gem::Version
|
320
|
+
version: '0'
|
307
321
|
- !ruby/object:Gem::Dependency
|
308
322
|
name: timecop
|
309
323
|
requirement: !ruby/object:Gem::Requirement
|
@@ -340,8 +354,12 @@ files:
|
|
340
354
|
- Rakefile
|
341
355
|
- bin/rspec
|
342
356
|
- isodoc.gemspec
|
357
|
+
- lib/isodoc-yaml/i18n-ar.yaml
|
358
|
+
- lib/isodoc-yaml/i18n-de.yaml
|
343
359
|
- lib/isodoc-yaml/i18n-en.yaml
|
360
|
+
- lib/isodoc-yaml/i18n-es.yaml
|
344
361
|
- lib/isodoc-yaml/i18n-fr.yaml
|
362
|
+
- lib/isodoc-yaml/i18n-ru.yaml
|
345
363
|
- lib/isodoc-yaml/i18n-zh-Hans.yaml
|
346
364
|
- lib/isodoc.rb
|
347
365
|
- lib/isodoc/base_style/all.css
|
@@ -370,6 +388,7 @@ files:
|
|
370
388
|
- lib/isodoc/function/blocks.rb
|
371
389
|
- lib/isodoc/function/blocks_example_note.rb
|
372
390
|
- lib/isodoc/function/cleanup.rb
|
391
|
+
- lib/isodoc/function/form.rb
|
373
392
|
- lib/isodoc/function/inline.rb
|
374
393
|
- lib/isodoc/function/inline_simple.rb
|
375
394
|
- lib/isodoc/function/lists.rb
|
@@ -386,10 +405,12 @@ files:
|
|
386
405
|
- lib/isodoc/html_function.rb
|
387
406
|
- lib/isodoc/html_function/comments.rb
|
388
407
|
- lib/isodoc/html_function/footnotes.rb
|
408
|
+
- lib/isodoc/html_function/form.rb
|
389
409
|
- lib/isodoc/html_function/html.rb
|
390
410
|
- lib/isodoc/html_function/mathvariant_to_plain.rb
|
391
411
|
- lib/isodoc/html_function/postprocess.rb
|
392
412
|
- lib/isodoc/html_function/postprocess_footnotes.rb
|
413
|
+
- lib/isodoc/html_function/sectionsplit.rb
|
393
414
|
- lib/isodoc/i18n.rb
|
394
415
|
- lib/isodoc/metadata.rb
|
395
416
|
- lib/isodoc/metadata_contributor.rb
|
@@ -398,6 +419,7 @@ files:
|
|
398
419
|
- lib/isodoc/presentation_function/bibdata.rb
|
399
420
|
- lib/isodoc/presentation_function/block.rb
|
400
421
|
- lib/isodoc/presentation_function/inline.rb
|
422
|
+
- lib/isodoc/presentation_function/math.rb
|
401
423
|
- lib/isodoc/presentation_function/section.rb
|
402
424
|
- lib/isodoc/presentation_xml_convert.rb
|
403
425
|
- lib/isodoc/sassc_importer.rb
|
@@ -431,6 +453,7 @@ files:
|
|
431
453
|
- spec/assets/rice_image1
|
432
454
|
- spec/assets/rice_image1.png
|
433
455
|
- spec/assets/scripts.html
|
456
|
+
- spec/assets/scripts_override.html
|
434
457
|
- spec/assets/std.css
|
435
458
|
- spec/assets/word.css
|
436
459
|
- spec/assets/word_override.css
|
@@ -439,6 +462,7 @@ files:
|
|
439
462
|
- spec/isodoc/blocks_spec.rb
|
440
463
|
- spec/isodoc/cleanup_spec.rb
|
441
464
|
- spec/isodoc/footnotes_spec.rb
|
465
|
+
- spec/isodoc/form_spec.rb
|
442
466
|
- spec/isodoc/i18n_spec.rb
|
443
467
|
- spec/isodoc/inline_spec.rb
|
444
468
|
- spec/isodoc/lists_spec.rb
|
@@ -447,6 +471,7 @@ files:
|
|
447
471
|
- spec/isodoc/presentation_xml_spec.rb
|
448
472
|
- spec/isodoc/ref_spec.rb
|
449
473
|
- spec/isodoc/section_spec.rb
|
474
|
+
- spec/isodoc/sectionsplit_spec.rb
|
450
475
|
- spec/isodoc/table_spec.rb
|
451
476
|
- spec/isodoc/terms_spec.rb
|
452
477
|
- spec/isodoc/xref_spec.rb
|
@@ -464,7 +489,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
464
489
|
requirements:
|
465
490
|
- - ">="
|
466
491
|
- !ruby/object:Gem::Version
|
467
|
-
version: 2.
|
492
|
+
version: 2.5.0
|
468
493
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
469
494
|
requirements:
|
470
495
|
- - ">="
|