metanorma-ogc 1.0.4 → 1.0.9

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.
Files changed (41) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/macos.yml +8 -7
  3. data/.github/workflows/ubuntu.yml +12 -9
  4. data/.github/workflows/windows.yml +8 -8
  5. data/lib/asciidoctor/ogc/biblio.rng +143 -38
  6. data/lib/asciidoctor/ogc/boilerplate.xml +7 -22
  7. data/lib/asciidoctor/ogc/converter.rb +5 -10
  8. data/lib/asciidoctor/ogc/isodoc.rng +475 -2
  9. data/lib/asciidoctor/ogc/ogc.rng +0 -4
  10. data/lib/asciidoctor/ogc/reqt.rng +23 -0
  11. data/lib/isodoc/ogc/base_convert.rb +1 -5
  12. data/lib/isodoc/ogc/biblio.rb +6 -5
  13. data/lib/isodoc/ogc/html/html_ogc_titlepage.html +2 -6
  14. data/lib/isodoc/ogc/html/scripts.html +14 -27
  15. data/lib/isodoc/ogc/html/word_ogc_titlepage.html +13 -4
  16. data/lib/isodoc/ogc/html_convert.rb +1 -0
  17. data/lib/isodoc/ogc/metadata.rb +0 -8
  18. data/lib/isodoc/ogc/ogc.abstract-specification-topic.xsl +3387 -0
  19. data/lib/isodoc/ogc/ogc.best-practice.xsl +3387 -0
  20. data/lib/isodoc/ogc/ogc.change-request-supporting-document.xsl +3387 -0
  21. data/lib/isodoc/ogc/ogc.community-practice.xsl +3387 -0
  22. data/lib/isodoc/ogc/ogc.community-standard.xsl +3387 -0
  23. data/lib/isodoc/ogc/ogc.discussion-paper.xsl +3387 -0
  24. data/lib/isodoc/ogc/ogc.engineering-report.xsl +3387 -0
  25. data/lib/isodoc/ogc/ogc.other.xsl +3387 -0
  26. data/lib/isodoc/ogc/ogc.policy.xsl +3387 -0
  27. data/lib/isodoc/ogc/ogc.reference-model.xsl +3387 -0
  28. data/lib/isodoc/ogc/ogc.release-notes.xsl +3387 -0
  29. data/lib/isodoc/ogc/ogc.standard.xsl +3387 -0
  30. data/lib/isodoc/ogc/ogc.test-suite.xsl +3387 -0
  31. data/lib/isodoc/ogc/ogc.user-guide.xsl +3387 -0
  32. data/lib/isodoc/ogc/ogc.white-paper.xsl +3387 -0
  33. data/lib/isodoc/ogc/pdf_convert.rb +18 -77
  34. data/lib/isodoc/ogc/reqt.rb +50 -125
  35. data/lib/isodoc/ogc/reqt_xref.rb +96 -0
  36. data/lib/isodoc/ogc/word_convert.rb +4 -8
  37. data/lib/metanorma/ogc/processor.rb +8 -0
  38. data/lib/metanorma/ogc/version.rb +1 -1
  39. data/metanorma-ogc.gemspec +1 -1
  40. metadata +20 -5
  41. data/lib/isodoc/ogc/html/scripts.pdf.html +0 -72
@@ -11,6 +11,7 @@ module IsoDoc
11
11
  class WordConvert < IsoDoc::WordConvert
12
12
  def initialize(options)
13
13
  @libdir = File.dirname(__FILE__)
14
+ @reqtlabels = {}
14
15
  super
15
16
  end
16
17
 
@@ -18,9 +19,9 @@ module IsoDoc
18
19
  {
19
20
  bodyfont: (options[:script] == "Hans" ? '"SimSun",serif' :
20
21
  '"Times New Roman",serif'),
21
- headerfont: (options[:script] == "Hans" ? '"SimHei",sans-serif' :
22
- '"Times New Roman",serif'),
23
- monospacefont: '"Courier New",monospace'
22
+ headerfont: (options[:script] == "Hans" ? '"SimHei",sans-serif' :
23
+ '"Times New Roman",serif'),
24
+ monospacefont: '"Courier New",monospace'
24
25
  }
25
26
  end
26
27
 
@@ -185,11 +186,6 @@ module IsoDoc
185
186
  end
186
187
  end
187
188
 
188
- def authority_cleanup(docxml)
189
- docxml&.at("//div[@id = 'boilerplate-contact']")&.remove
190
- super
191
- end
192
-
193
189
  include BaseConvert
194
190
  end
195
191
  end
@@ -2,6 +2,14 @@ require "metanorma/processor"
2
2
 
3
3
  module Metanorma
4
4
  module Ogc
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
+ }
11
+ end
12
+
5
13
  class Processor < Metanorma::Processor
6
14
 
7
15
  def initialize
@@ -1,5 +1,5 @@
1
1
  module Metanorma
2
2
  module Ogc
3
- VERSION = "1.0.4"
3
+ VERSION = "1.0.9"
4
4
  end
5
5
  end
@@ -26,7 +26,7 @@ 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"
29
+ spec.add_dependency "metanorma-standoc", "~> 1.4.0"
30
30
  spec.add_dependency "isodoc", "~> 1.0.20"
31
31
  spec.add_dependency "iso-639"
32
32
 
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.4
4
+ version: 1.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-04-03 00:00:00.000000000 Z
11
+ date: 2020-06-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: htmlentities
@@ -44,14 +44,14 @@ 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
@@ -250,15 +250,30 @@ 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
263
+ - lib/isodoc/ogc/ogc.community-standard.xsl
264
+ - lib/isodoc/ogc/ogc.discussion-paper.xsl
265
+ - lib/isodoc/ogc/ogc.engineering-report.xsl
266
+ - lib/isodoc/ogc/ogc.other.xsl
267
+ - lib/isodoc/ogc/ogc.policy.xsl
268
+ - lib/isodoc/ogc/ogc.reference-model.xsl
269
+ - lib/isodoc/ogc/ogc.release-notes.xsl
270
+ - lib/isodoc/ogc/ogc.standard.xsl
271
+ - lib/isodoc/ogc/ogc.test-suite.xsl
272
+ - lib/isodoc/ogc/ogc.user-guide.xsl
273
+ - lib/isodoc/ogc/ogc.white-paper.xsl
260
274
  - lib/isodoc/ogc/pdf_convert.rb
261
275
  - lib/isodoc/ogc/reqt.rb
276
+ - lib/isodoc/ogc/reqt_xref.rb
262
277
  - lib/isodoc/ogc/sections.rb
263
278
  - lib/isodoc/ogc/word_convert.rb
264
279
  - lib/metanorma-ogc.rb
@@ -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
-