metanorma-ogc 1.0.5 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/macos.yml +8 -0
  3. data/.github/workflows/ubuntu.yml +10 -0
  4. data/.github/workflows/windows.yml +8 -0
  5. data/lib/asciidoctor/ogc/biblio.rng +36 -6
  6. data/lib/asciidoctor/ogc/boilerplate.xml +7 -22
  7. data/lib/asciidoctor/ogc/converter.rb +12 -24
  8. data/lib/asciidoctor/ogc/isodoc.rng +450 -4
  9. data/lib/asciidoctor/ogc/reqt.rng +23 -0
  10. data/lib/isodoc/ogc.rb +2 -0
  11. data/lib/isodoc/ogc/base_convert.rb +12 -60
  12. data/lib/isodoc/ogc/biblio.rb +6 -5
  13. data/lib/isodoc/ogc/html/html_ogc_titlepage.html +0 -5
  14. data/lib/isodoc/ogc/html/scripts.html +10 -7
  15. data/lib/isodoc/ogc/html_convert.rb +0 -4
  16. data/lib/isodoc/ogc/metadata.rb +0 -8
  17. data/lib/isodoc/ogc/ogc.abstract-specification-topic.xsl +3843 -0
  18. data/lib/isodoc/ogc/ogc.best-practice.xsl +3843 -0
  19. data/lib/isodoc/ogc/ogc.change-request-supporting-document.xsl +3843 -0
  20. data/lib/isodoc/ogc/ogc.community-practice.xsl +3843 -0
  21. data/lib/isodoc/ogc/ogc.community-standard.xsl +1194 -491
  22. data/lib/isodoc/ogc/ogc.discussion-paper.xsl +3843 -0
  23. data/lib/isodoc/ogc/ogc.engineering-report.xsl +1194 -491
  24. data/lib/isodoc/ogc/ogc.other.xsl +1194 -491
  25. data/lib/isodoc/ogc/ogc.policy.xsl +1194 -491
  26. data/lib/isodoc/ogc/ogc.reference-model.xsl +1194 -491
  27. data/lib/isodoc/ogc/ogc.release-notes.xsl +1194 -491
  28. data/lib/isodoc/ogc/ogc.standard.xsl +1194 -491
  29. data/lib/isodoc/ogc/ogc.test-suite.xsl +1194 -491
  30. data/lib/isodoc/ogc/ogc.user-guide.xsl +1194 -491
  31. data/lib/isodoc/ogc/ogc.white-paper.xsl +3843 -0
  32. data/lib/isodoc/ogc/pdf_convert.rb +6 -15
  33. data/lib/isodoc/ogc/presentation_xml_convert.rb +10 -0
  34. data/lib/isodoc/ogc/reqt.rb +49 -125
  35. data/lib/isodoc/ogc/sections.rb +9 -8
  36. data/lib/isodoc/ogc/word_convert.rb +3 -12
  37. data/lib/isodoc/ogc/xref.rb +158 -0
  38. data/lib/metanorma/ogc/processor.rb +12 -6
  39. data/lib/metanorma/ogc/version.rb +1 -1
  40. data/metanorma-ogc.gemspec +2 -2
  41. metadata +18 -12
  42. data/lib/isodoc/ogc/html/scripts.pdf.html +0 -72
@@ -2,8 +2,12 @@ require "metanorma/processor"
2
2
 
3
3
  module Metanorma
4
4
  module Ogc
5
- def self.pdf_fonts
6
- ["Arial", "Courier", "Times New Roman"]
5
+ def self.fonts_used
6
+ {
7
+ doc: ["Arial", "Courier New", "Times New Roman"],
8
+ pdf: ["Arial", "Courier New", "Times New Roman"],
9
+ html: ["Overpass", "Space Mono"]
10
+ }
7
11
  end
8
12
 
9
13
  class Processor < Metanorma::Processor
@@ -30,14 +34,16 @@ module Metanorma
30
34
  Metanorma::Input::Asciidoc.new.process(file, filename, @asciidoctor_backend)
31
35
  end
32
36
 
33
- def output(isodoc_node, outname, format, options={})
37
+ def output(isodoc_node, inname, outname, format, options={})
34
38
  case format
35
39
  when :html
36
- IsoDoc::Ogc::HtmlConvert.new(options).convert(outname, isodoc_node)
40
+ IsoDoc::Ogc::HtmlConvert.new(options).convert(inname, isodoc_node, nil, outname)
37
41
  when :doc
38
- IsoDoc::Ogc::WordConvert.new(options).convert(outname, isodoc_node)
42
+ IsoDoc::Ogc::WordConvert.new(options).convert(inname, isodoc_node, nil, outname)
39
43
  when :pdf
40
- IsoDoc::Ogc::PdfConvert.new(options).convert(outname, isodoc_node)
44
+ IsoDoc::Ogc::PdfConvert.new(options).convert(inname, isodoc_node, nil, outname)
45
+ when :presentation
46
+ IsoDoc::Ogc::PresentationXMLConvert.new(options).convert(inname, isodoc_node, nil, outname)
41
47
  else
42
48
  super
43
49
  end
@@ -1,5 +1,5 @@
1
1
  module Metanorma
2
2
  module Ogc
3
- VERSION = "1.0.5"
3
+ VERSION = "1.1.0"
4
4
  end
5
5
  end
@@ -26,8 +26,8 @@ Gem::Specification.new do |spec|
26
26
 
27
27
  spec.add_dependency "htmlentities", "~> 4.3.4"
28
28
  spec.add_dependency "ruby-jing"
29
- spec.add_dependency "metanorma-standoc", "~> 1.3.20"
30
- spec.add_dependency "isodoc", "~> 1.0.20"
29
+ spec.add_dependency "metanorma-standoc", "~> 1.4.0"
30
+ spec.add_dependency "isodoc", "~> 1.1.0"
31
31
  spec.add_dependency "iso-639"
32
32
 
33
33
  spec.add_development_dependency "byebug", "~> 9.1"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metanorma-ogc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-05-01 00:00:00.000000000 Z
11
+ date: 2020-06-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: htmlentities
@@ -44,28 +44,28 @@ dependencies:
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: 1.3.20
47
+ version: 1.4.0
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: 1.3.20
54
+ version: 1.4.0
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: isodoc
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: 1.0.20
61
+ version: 1.1.0
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: 1.0.20
68
+ version: 1.1.0
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: iso-639
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -250,14 +250,18 @@ files:
250
250
  - lib/isodoc/ogc/html/htmlstyle.scss
251
251
  - lib/isodoc/ogc/html/ogc.scss
252
252
  - lib/isodoc/ogc/html/scripts.html
253
- - lib/isodoc/ogc/html/scripts.pdf.html
254
253
  - lib/isodoc/ogc/html/word_ogc_intro.html
255
254
  - lib/isodoc/ogc/html/word_ogc_titlepage.html
256
255
  - lib/isodoc/ogc/html/wordstyle.scss
257
256
  - lib/isodoc/ogc/html_convert.rb
258
257
  - lib/isodoc/ogc/i18n-en.yaml
259
258
  - lib/isodoc/ogc/metadata.rb
259
+ - lib/isodoc/ogc/ogc.abstract-specification-topic.xsl
260
+ - lib/isodoc/ogc/ogc.best-practice.xsl
261
+ - lib/isodoc/ogc/ogc.change-request-supporting-document.xsl
262
+ - lib/isodoc/ogc/ogc.community-practice.xsl
260
263
  - lib/isodoc/ogc/ogc.community-standard.xsl
264
+ - lib/isodoc/ogc/ogc.discussion-paper.xsl
261
265
  - lib/isodoc/ogc/ogc.engineering-report.xsl
262
266
  - lib/isodoc/ogc/ogc.other.xsl
263
267
  - lib/isodoc/ogc/ogc.policy.xsl
@@ -266,10 +270,13 @@ files:
266
270
  - lib/isodoc/ogc/ogc.standard.xsl
267
271
  - lib/isodoc/ogc/ogc.test-suite.xsl
268
272
  - lib/isodoc/ogc/ogc.user-guide.xsl
273
+ - lib/isodoc/ogc/ogc.white-paper.xsl
269
274
  - lib/isodoc/ogc/pdf_convert.rb
275
+ - lib/isodoc/ogc/presentation_xml_convert.rb
270
276
  - lib/isodoc/ogc/reqt.rb
271
277
  - lib/isodoc/ogc/sections.rb
272
278
  - lib/isodoc/ogc/word_convert.rb
279
+ - lib/isodoc/ogc/xref.rb
273
280
  - lib/metanorma-ogc.rb
274
281
  - lib/metanorma/ogc.rb
275
282
  - lib/metanorma/ogc/processor.rb
@@ -279,7 +286,7 @@ homepage: https://github.com/metanorma/metanorma-ogc
279
286
  licenses:
280
287
  - BSD-2-Clause
281
288
  metadata: {}
282
- post_install_message:
289
+ post_install_message:
283
290
  rdoc_options: []
284
291
  require_paths:
285
292
  - lib
@@ -294,9 +301,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
294
301
  - !ruby/object:Gem::Version
295
302
  version: '0'
296
303
  requirements: []
297
- rubyforge_project:
298
- rubygems_version: 2.7.6
299
- signing_key:
304
+ rubygems_version: 3.0.3
305
+ signing_key:
300
306
  specification_version: 4
301
307
  summary: Metanorma for the Open Geospatial Consortium.
302
308
  test_files: []
@@ -1,72 +0,0 @@
1
- <script>
2
- //TOC generation
3
- $('#toc').toc({
4
- 'selectors': toclevel(), //elements to use as headings
5
- 'container': 'main', //element to find all selectors in
6
- 'smoothScrolling': true, //enable or disable smooth scrolling on click
7
- 'prefix': 'toc', //prefix for anchor tags and class names
8
- 'onHighlight': function(el) {}, //called when a new section is highlighted
9
- 'highlightOnScroll': false, //add class to heading that is currently in focus
10
- 'highlightOffset': 100, //offset to trigger the next headline
11
- 'anchorName': function(i, heading, prefix) { //custom function for anchor name
12
- return prefix+i;
13
- },
14
- 'headerText': function(i, heading, $heading) { //custom function building the header-item text
15
- return $heading.text();
16
- },
17
- 'itemClass': function(i, heading, $heading, prefix) { // custom function for item class
18
- return $heading[0].tagName.toLowerCase();
19
- }
20
- });
21
-
22
- </script>
23
-
24
- <script>
25
- //TOC toggle animation
26
- $('#toggle').on('click', function(){
27
- if( $('nav').is(':visible') ) {
28
- $('nav').animate({ 'left': '-353px' }, 'slow', function(){
29
- $('nav').hide();
30
- });
31
- $('.container').animate({ 'padding-left': '31px' }, 'slow');
32
- }
33
- else {
34
- $('nav').show();
35
- $('nav').animate({ 'left': '0px' }, 'slow');
36
- $('.container').animate({ 'padding-left': '360px' }, 'slow');
37
- }
38
- });
39
- </script>
40
-
41
- <script>
42
- // Scroll to top button
43
- window.onscroll = function() {scrollFunction()};
44
-
45
- function scrollFunction() {
46
- if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {
47
- document.getElementById("myBtn").style.display = "block";
48
- } else {
49
- document.getElementById("myBtn").style.display = "none";
50
- }
51
- }
52
-
53
- // When the user clicks on the button, scroll to the top of the document
54
- function topFunction() {
55
- document.body.scrollTop = 0;
56
- document.documentElement.scrollTop = 0;
57
- }
58
- </script>
59
-
60
- <script>
61
- /*
62
- $(document).ready(function() {
63
- $('[id^=toc]').each(function ()
64
- {
65
- var currentToc = $(this);
66
- var url = window.location.href;
67
- currentToc.wrap("<a href='" + url + "#" + currentToc.attr("id") + "' </a>");
68
- });
69
- });
70
- */
71
- </script>
72
-