metanorma-ogc 1.5.2 → 1.5.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/asciidoctor/ogc/cleanup.rb +9 -0
- data/lib/asciidoctor/ogc/converter.rb +4 -2
- data/lib/asciidoctor/ogc/isodoc.rng +42 -17
- data/lib/asciidoctor/ogc/validate.rb +12 -0
- data/lib/isodoc/ogc/base_convert.rb +2 -1
- data/lib/isodoc/ogc/html/htmlstyle.css +6 -2
- data/lib/isodoc/ogc/html/htmlstyle.scss +6 -1
- data/lib/isodoc/ogc/html/ogc.css +0 -1
- data/lib/isodoc/ogc/html/ogc.scss +0 -1
- data/lib/isodoc/ogc/html/ogc_wp.css +0 -1
- data/lib/isodoc/ogc/html/ogc_wp.scss +0 -1
- data/lib/isodoc/ogc/html_convert.rb +1 -0
- data/lib/isodoc/ogc/metadata.rb +6 -2
- data/lib/isodoc/ogc/ogc.abstract-specification-topic.xsl +119 -31
- data/lib/isodoc/ogc/ogc.best-practice.xsl +119 -31
- data/lib/isodoc/ogc/ogc.change-request-supporting-document.xsl +119 -31
- data/lib/isodoc/ogc/ogc.community-practice.xsl +119 -31
- data/lib/isodoc/ogc/ogc.community-standard.xsl +119 -31
- data/lib/isodoc/ogc/ogc.discussion-paper.xsl +119 -31
- data/lib/isodoc/ogc/ogc.engineering-report.xsl +119 -31
- data/lib/isodoc/ogc/ogc.other.xsl +119 -31
- data/lib/isodoc/ogc/ogc.policy.xsl +119 -31
- data/lib/isodoc/ogc/ogc.reference-model.xsl +119 -31
- data/lib/isodoc/ogc/ogc.release-notes.xsl +119 -31
- data/lib/isodoc/ogc/ogc.standard.xsl +119 -31
- data/lib/isodoc/ogc/ogc.test-suite.xsl +119 -31
- data/lib/isodoc/ogc/ogc.user-guide.xsl +119 -31
- data/lib/isodoc/ogc/ogc.white-paper.xsl +29 -14
- data/lib/isodoc/ogc/presentation_xml_convert.rb +31 -2
- data/lib/isodoc/ogc/sections.rb +9 -2
- data/lib/isodoc/ogc/word_convert.rb +28 -4
- data/lib/isodoc/ogc/xref.rb +4 -2
- data/lib/metanorma/ogc/version.rb +1 -1
- data/metanorma-ogc.gemspec +1 -1
- metadata +7 -7
@@ -60,19 +60,70 @@
|
|
60
60
|
</xsl:variable>
|
61
61
|
<xsl:variable name="color_blue">rgb(33, 55, 92)</xsl:variable>
|
62
62
|
|
63
|
+
<xsl:variable name="toc_recommendations_">
|
64
|
+
<xsl:for-each select="//ogc:table[.//ogc:p[@class = 'RecommendationTitle']]">
|
65
|
+
<xsl:variable name="table_id" select="@id"/>
|
66
|
+
<recommendation alt-text="{.//ogc:p[@class = 'RecommendationTitle'][1]/text()}">
|
67
|
+
<xsl:copy-of select="@id"/>
|
68
|
+
<xsl:variable name="title">
|
69
|
+
<xsl:apply-templates select=".//ogc:p[@class = 'RecommendationTitle'][ancestor::ogc:table[1][@id= $table_id]]/node()"/>
|
70
|
+
</xsl:variable>
|
71
|
+
<xsl:variable name="bookmark" select="normalize-space(.//ogc:p[@class = 'RecommendationTitle'][ancestor::ogc:table[1][@id= $table_id]]/node())"/>
|
72
|
+
<xsl:variable name="regex_str" select="'^([^0-9]+) (\d+).*'"/>
|
73
|
+
<xsl:variable name="class" select="java:replaceAll(java:java.lang.String.new($bookmark), $regex_str, '$1')"/>
|
74
|
+
<xsl:variable name="num" select="java:replaceAll(java:java.lang.String.new($bookmark), $regex_str, '$2')"/>
|
75
|
+
<xsl:variable name="class_lc" select="java:toLowerCase(java:java.lang.String.new($class))"/>
|
76
|
+
<!-- <xsl:attribute name="class_str">
|
77
|
+
<xsl:value-of select="$class"/>
|
78
|
+
</xsl:attribute> -->
|
79
|
+
<xsl:attribute name="class">
|
80
|
+
<xsl:choose>
|
81
|
+
<xsl:when test="$class_lc = 'requirements class'">1</xsl:when>
|
82
|
+
<xsl:when test="$class_lc = 'requirement'">2</xsl:when>
|
83
|
+
<xsl:when test="$class_lc = 'recommendation'">3</xsl:when>
|
84
|
+
<xsl:when test="$class_lc = 'permission'">4</xsl:when>
|
85
|
+
<xsl:when test="$class_lc = 'conformance class'">5</xsl:when>
|
86
|
+
<xsl:when test="$class_lc = 'abstract test'">6</xsl:when>
|
87
|
+
<xsl:when test="$class_lc = 'requirement test'">7</xsl:when>
|
88
|
+
<xsl:when test="$class_lc = 'recommendation test'">8</xsl:when>
|
89
|
+
<xsl:when test="$class_lc = 'permission test'">9</xsl:when>
|
90
|
+
<xsl:otherwise>9999</xsl:otherwise>
|
91
|
+
</xsl:choose>
|
92
|
+
</xsl:attribute>
|
93
|
+
<xsl:attribute name="num">
|
94
|
+
<xsl:value-of select="$num"/>
|
95
|
+
</xsl:attribute>
|
96
|
+
<title>
|
97
|
+
<xsl:copy-of select="$title"/>
|
98
|
+
</title>
|
99
|
+
<bookmark>
|
100
|
+
<xsl:value-of select="$bookmark"/>
|
101
|
+
</bookmark>
|
102
|
+
</recommendation>
|
103
|
+
</xsl:for-each>
|
104
|
+
</xsl:variable>
|
105
|
+
<xsl:variable name="toc_recommendations">
|
106
|
+
<xsl:for-each select="xalan:nodeset($toc_recommendations_)/*">
|
107
|
+
<xsl:sort select="@class" data-type="number"/>
|
108
|
+
<xsl:sort select="@num" data-type="number"/>
|
109
|
+
<xsl:copy-of select="."/>
|
110
|
+
</xsl:for-each>
|
111
|
+
</xsl:variable>
|
112
|
+
|
63
113
|
<xsl:variable name="contents">
|
64
114
|
<contents>
|
65
115
|
|
66
116
|
<!-- Abstract, Keywords, Preface, Submitting Organizations, Submitters -->
|
67
117
|
<!-- <xsl:apply-templates select="/ogc:ogc-standard/ogc:preface/*" mode="contents"/> -->
|
68
118
|
<xsl:apply-templates select="/ogc:ogc-standard/ogc:preface/ogc:abstract" mode="contents"/>
|
119
|
+
<xsl:apply-templates select="/ogc:ogc-standard/ogc:preface/ogc:clause[@type = 'executivesummary']" mode="contents"/>
|
69
120
|
<xsl:apply-templates select="/ogc:ogc-standard/ogc:preface/ogc:clause[@type = 'keywords']" mode="contents"/>
|
70
121
|
<xsl:apply-templates select="/ogc:ogc-standard/ogc:preface/ogc:foreword" mode="contents"/>
|
71
122
|
<xsl:apply-templates select="/ogc:ogc-standard/ogc:preface/ogc:clause[@type = 'security']" mode="contents"/>
|
72
123
|
<xsl:apply-templates select="/ogc:ogc-standard/ogc:preface/ogc:clause[@type = 'submitting_orgs']" mode="contents"/>
|
73
124
|
<xsl:apply-templates select="/ogc:ogc-standard/ogc:preface/ogc:submitters" mode="contents"/>
|
74
125
|
<xsl:apply-templates select="/ogc:ogc-standard/ogc:preface/ogc:introduction" mode="contents"/>
|
75
|
-
<xsl:apply-templates select="/ogc:ogc-standard/ogc:preface/ogc:clause[not(@type = 'security') and not(@type = 'submitting_orgs') and not(@type = 'keywords')]" mode="contents"/>
|
126
|
+
<xsl:apply-templates select="/ogc:ogc-standard/ogc:preface/ogc:clause[not(@type = 'executivesummary') and not(@type = 'security') and not(@type = 'submitting_orgs') and not(@type = 'keywords')]" mode="contents"/>
|
76
127
|
<xsl:apply-templates select="/ogc:ogc-standard/ogc:preface/ogc:acknowledgements" mode="contents"/>
|
77
128
|
|
78
129
|
|
@@ -437,7 +488,7 @@
|
|
437
488
|
</fo:block>
|
438
489
|
</fo:block-container>
|
439
490
|
|
440
|
-
<xsl:if test="//ogc:table[@id and ogc:name
|
491
|
+
<xsl:if test="//ogc:table[@id and ogc:name]"> <!-- contains(ogc:name, '—') -->
|
441
492
|
<xsl:variable name="title-list-tables">
|
442
493
|
<xsl:call-template name="getTitle">
|
443
494
|
<xsl:with-param name="name" select="'title-list-tables'"/>
|
@@ -452,7 +503,7 @@
|
|
452
503
|
</fo:block-container>
|
453
504
|
</fo:block-container>
|
454
505
|
<fo:block-container line-height="130%">
|
455
|
-
<xsl:for-each select="//ogc:table[@id and ogc:name
|
506
|
+
<xsl:for-each select="//ogc:table[@id and ogc:name]"> <!-- contains(ogc:name, '—') -->
|
456
507
|
<fo:block text-align-last="justify" margin-top="2pt" role="TOCI">
|
457
508
|
<fo:basic-link internal-destination="{@id}" fox:alt-text="{ogc:name}">
|
458
509
|
<xsl:apply-templates select="ogc:name" mode="contents"/>
|
@@ -465,8 +516,18 @@
|
|
465
516
|
</xsl:for-each>
|
466
517
|
</fo:block-container>
|
467
518
|
</xsl:if>
|
468
|
-
|
469
|
-
<xsl:
|
519
|
+
|
520
|
+
<xsl:variable name="list_of_figures_">
|
521
|
+
<xsl:for-each select="//ogc:figure[@id and ogc:name and not(@unnumbered = 'true')] | //*[@id and starts-with(ogc:name, 'Figure ')]">
|
522
|
+
<figure id="{@id}" alt-text="{ogc:name}">
|
523
|
+
<xsl:apply-templates select="ogc:name" mode="contents"/>
|
524
|
+
</figure>
|
525
|
+
</xsl:for-each>
|
526
|
+
</xsl:variable>
|
527
|
+
<xsl:variable name="list_of_figures" select="xalan:nodeset($list_of_figures_)"/>
|
528
|
+
|
529
|
+
<!-- <xsl:if test="//ogc:figure[@id and ogc:name and not(@unnumbered = 'true')] or //*[@id and starts-with(ogc:name, 'Figure ')]"> --> <!-- contains(ogc:name, '—') -->
|
530
|
+
<xsl:if test="$list_of_figures//figure">
|
470
531
|
<xsl:variable name="title-list-figures">
|
471
532
|
<xsl:call-template name="getTitle">
|
472
533
|
<xsl:with-param name="name" select="'title-list-figures'"/>
|
@@ -481,10 +542,12 @@
|
|
481
542
|
</fo:block-container>
|
482
543
|
|
483
544
|
<fo:block-container line-height="130%">
|
484
|
-
<xsl:for-each select="//ogc:figure[@id and ogc:name and
|
545
|
+
<!-- <xsl:for-each select="//ogc:figure[@id and ogc:name and not(@unnumbered = 'true')] or //*[@id and starts-with(ogc:name, 'Figure ')]"> --> <!-- contains(ogc:name, '—') -->
|
546
|
+
<xsl:for-each select="$list_of_figures/figure"> <!-- contains(ogc:name, '—') -->
|
485
547
|
<fo:block text-align-last="justify" margin-top="2pt" role="TOCI">
|
486
|
-
<fo:basic-link internal-destination="{@id}" fox:alt-text="{
|
487
|
-
<xsl:apply-templates select="ogc:name" mode="contents"/>
|
548
|
+
<fo:basic-link internal-destination="{@id}" fox:alt-text="{@alt-text}">
|
549
|
+
<!-- <xsl:apply-templates select="ogc:name" mode="contents"/> -->
|
550
|
+
<xsl:copy-of select="node()"/>
|
488
551
|
<fo:inline keep-together.within-line="always">
|
489
552
|
<fo:leader leader-pattern="dots"/>
|
490
553
|
<fo:page-number-citation ref-id="{@id}"/>
|
@@ -512,12 +575,11 @@
|
|
512
575
|
</fo:block-container>
|
513
576
|
|
514
577
|
<fo:block-container line-height="130%">
|
515
|
-
<!-- <xsl:for-each select="//ogc:
|
516
|
-
<xsl:for-each select="
|
517
|
-
<xsl:variable name="table_id" select="@id"/>
|
578
|
+
<!-- <xsl:for-each select="//ogc:table[.//ogc:p[@class = 'RecommendationTitle']]"> -->
|
579
|
+
<xsl:for-each select="xalan:nodeset($toc_recommendations)/*">
|
518
580
|
<fo:block text-align-last="justify" margin-top="6pt" role="TOCI">
|
519
|
-
<fo:basic-link internal-destination="{@id}" fox:alt-text="{
|
520
|
-
<xsl:
|
581
|
+
<fo:basic-link internal-destination="{@id}" fox:alt-text="{@alt-text}">
|
582
|
+
<xsl:copy-of select="title/node()"/>
|
521
583
|
<xsl:text> </xsl:text>
|
522
584
|
<fo:inline keep-together.within-line="always">
|
523
585
|
<fo:leader leader-pattern="dots"/>
|
@@ -537,6 +599,7 @@
|
|
537
599
|
<fo:block line-height="125%">
|
538
600
|
<!-- Abstract, Keywords, Preface, Submitting Organizations, Submitters -->
|
539
601
|
<xsl:apply-templates select="/ogc:ogc-standard/ogc:preface/ogc:abstract"/>
|
602
|
+
<xsl:apply-templates select="/ogc:ogc-standard/ogc:preface/ogc:clause[@type = 'executivesummary']"/>
|
540
603
|
<xsl:apply-templates select="/ogc:ogc-standard/ogc:preface/ogc:clause[@type = 'keywords']"/>
|
541
604
|
<xsl:if test="/ogc:ogc-standard/ogc:preface/ogc:foreword">
|
542
605
|
<fo:block break-after="page"/>
|
@@ -561,7 +624,7 @@
|
|
561
624
|
|
562
625
|
|
563
626
|
|
564
|
-
<xsl:apply-templates select="/ogc:ogc-standard/ogc:preface/ogc:clause[not(@type = 'security') and not(@type = 'submitting_orgs') and not(@type = 'keywords')]"/>
|
627
|
+
<xsl:apply-templates select="/ogc:ogc-standard/ogc:preface/ogc:clause[not(@type = 'executivesummary') and not(@type = 'security') and not(@type = 'submitting_orgs') and not(@type = 'keywords')]"/>
|
565
628
|
<xsl:apply-templates select="/ogc:ogc-standard/ogc:preface/ogc:acknowledgements"/>
|
566
629
|
</fo:block>
|
567
630
|
</fo:flow>
|
@@ -1193,7 +1256,7 @@
|
|
1193
1256
|
<xsl:template match="ogc:preferred | ogc:deprecated | ogc:admitted" priority="2"/>
|
1194
1257
|
|
1195
1258
|
<xsl:template match="ogc:preferred" mode="term_name">
|
1196
|
-
<fo:inline font-size="18pt" padding-right="3mm"><xsl:apply-templates/></fo:inline>
|
1259
|
+
<fo:inline font-size="18pt" padding-right="3mm"><xsl:call-template name="setStyle_preferred"/><xsl:apply-templates/></fo:inline>
|
1197
1260
|
<fo:inline padding-right="2mm"> </fo:inline>
|
1198
1261
|
</xsl:template>
|
1199
1262
|
|
@@ -2266,7 +2329,8 @@
|
|
2266
2329
|
<xsl:apply-templates select="/*/*[local-name()='bibliography']/*[local-name()='references'][not(@normative='true')] | /*/*[local-name()='bibliography']/*[local-name()='clause'][*[local-name()='references'][not(@normative='true')]]" mode="contents"/>
|
2267
2330
|
|
2268
2331
|
</xsl:template><xsl:template name="processMainSectionsDefault_Contents">
|
2269
|
-
|
2332
|
+
|
2333
|
+
<xsl:for-each select="/*/*[local-name()='sections']/* | /*/*[local-name()='bibliography']/*[local-name()='references'][@normative='true'] | /*/*[local-name()='bibliography']/*[local-name()='clause'][*[local-name()='references'][@normative='true']]">
|
2270
2334
|
<xsl:sort select="@displayorder" data-type="number"/>
|
2271
2335
|
<xsl:apply-templates select="." mode="contents"/>
|
2272
2336
|
</xsl:for-each>
|
@@ -2276,7 +2340,7 @@
|
|
2276
2340
|
<xsl:apply-templates select="." mode="contents"/>
|
2277
2341
|
</xsl:for-each>
|
2278
2342
|
|
2279
|
-
<xsl:for-each select="/*/*[local-name()='bibliography']/*[not(@normative='true')] | /*/*[local-name()='bibliography']/*[local-name()='clause'][*[local-name()='references'][not(@normative='true')]]">
|
2343
|
+
<xsl:for-each select="/*/*[local-name()='bibliography']/*[not(@normative='true') and not(*[local-name()='references'][@normative='true'])] | /*/*[local-name()='bibliography']/*[local-name()='clause'][*[local-name()='references'][not(@normative='true')]]">
|
2280
2344
|
<xsl:sort select="@displayorder" data-type="number"/>
|
2281
2345
|
<xsl:apply-templates select="." mode="contents"/>
|
2282
2346
|
</xsl:for-each>
|
@@ -3811,7 +3875,7 @@
|
|
3811
3875
|
|
3812
3876
|
|
3813
3877
|
|
3814
|
-
|
3878
|
+
9.5
|
3815
3879
|
|
3816
3880
|
|
3817
3881
|
|
@@ -4995,12 +5059,12 @@
|
|
4995
5059
|
</xsl:template><xsl:template match="*[local-name() = 'emf']"/><xsl:template match="*[local-name() = 'figure']/*[local-name() = 'name']"/><xsl:template match="*[local-name() = 'figure']/*[local-name() = 'name'] | *[local-name() = 'table']/*[local-name() = 'name'] | *[local-name() = 'permission']/*[local-name() = 'name'] | *[local-name() = 'recommendation']/*[local-name() = 'name'] | *[local-name() = 'requirement']/*[local-name() = 'name']" mode="contents">
|
4996
5060
|
<xsl:apply-templates mode="contents"/>
|
4997
5061
|
<xsl:text> </xsl:text>
|
4998
|
-
</xsl:template><xsl:template match="*[local-name() = 'figure']/*[local-name() = 'name'] | *[local-name() = 'table']/*[local-name() = 'name'] | *[local-name() = 'permission']/*[local-name() = 'name'] | *[local-name() = 'recommendation']/*[local-name() = 'name'] | *[local-name() = 'requirement']/*[local-name() = 'name']" mode="bookmarks">
|
5062
|
+
</xsl:template><xsl:template match="*[local-name() = 'figure']/*[local-name() = 'name'] | *[local-name() = 'table']/*[local-name() = 'name'] | *[local-name() = 'permission']/*[local-name() = 'name'] | *[local-name() = 'recommendation']/*[local-name() = 'name'] | *[local-name() = 'requirement']/*[local-name() = 'name'] | *[local-name() = 'sourcecode']/*[local-name() = 'name']" mode="bookmarks">
|
4999
5063
|
<xsl:apply-templates mode="bookmarks"/>
|
5000
5064
|
<xsl:text> </xsl:text>
|
5001
5065
|
</xsl:template><xsl:template match="*[local-name() = 'figure' or local-name() = 'table' or local-name() = 'permission' or local-name() = 'recommendation' or local-name() = 'requirement']/*[local-name() = 'name']/text()" mode="contents" priority="2">
|
5002
5066
|
<xsl:value-of select="."/>
|
5003
|
-
</xsl:template><xsl:template match="*[local-name() = 'figure' or local-name() = 'table' or local-name() = 'permission' or local-name() = 'recommendation' or local-name() = 'requirement']/*[local-name() = 'name']//text()" mode="bookmarks" priority="2">
|
5067
|
+
</xsl:template><xsl:template match="*[local-name() = 'figure' or local-name() = 'table' or local-name() = 'permission' or local-name() = 'recommendation' or local-name() = 'requirement' or local-name() = 'sourcecode']/*[local-name() = 'name']//text()" mode="bookmarks" priority="2">
|
5004
5068
|
<xsl:value-of select="."/>
|
5005
5069
|
</xsl:template><xsl:template match="node()" mode="contents">
|
5006
5070
|
<xsl:apply-templates mode="contents"/>
|
@@ -5099,14 +5163,14 @@
|
|
5099
5163
|
|
5100
5164
|
|
5101
5165
|
<xsl:variable name="list_of_tables_">
|
5102
|
-
<xsl:for-each select="//*[local-name() = 'table'][@id and *[local-name() = 'name']
|
5166
|
+
<xsl:for-each select="//*[local-name() = 'table'][@id and *[local-name() = 'name']]"> <!-- contains(*[local-name() = 'name'], '—') -->
|
5103
5167
|
<table id="{@id}"><xsl:apply-templates select="*[local-name() = 'name']" mode="bookmarks"/></table>
|
5104
5168
|
</xsl:for-each>
|
5105
5169
|
</xsl:variable>
|
5106
5170
|
<xsl:variable name="list_of_tables" select="xalan:nodeset($list_of_tables_)"/>
|
5107
5171
|
|
5108
5172
|
<xsl:variable name="list_of_figures_">
|
5109
|
-
<xsl:for-each select="//*[local-name() = 'figure'][@id and *[local-name() = 'name'] and
|
5173
|
+
<xsl:for-each select="//*[local-name() = 'figure'][@id and *[local-name() = 'name'] and not(@unnumbered = 'true')] | //*[@id and starts-with(*[local-name() = 'name'], 'Figure ')]"> <!-- contains(*[local-name() = 'name'], '—') -->
|
5110
5174
|
<figure id="{@id}"><xsl:apply-templates select="*[local-name() = 'name']" mode="bookmarks"/></figure>
|
5111
5175
|
</xsl:for-each>
|
5112
5176
|
</xsl:variable>
|
@@ -5159,10 +5223,11 @@
|
|
5159
5223
|
<xsl:with-param name="name" select="'title-list-recommendations'"/>
|
5160
5224
|
</xsl:call-template>
|
5161
5225
|
</fo:bookmark-title>
|
5162
|
-
<xsl:for-each select="//*[local-name() = 'table'][.//*[local-name() = 'p'][@class = 'RecommendationTitle']]">
|
5226
|
+
<!-- <xsl:for-each select="//*[local-name() = 'table'][.//*[local-name() = 'p'][@class = 'RecommendationTitle']]"> -->
|
5227
|
+
<xsl:for-each select="xalan:nodeset($toc_recommendations)/*">
|
5163
5228
|
<xsl:variable name="table_id" select="@id"/>
|
5164
5229
|
<fo:bookmark internal-destination="{@id}">
|
5165
|
-
<fo:bookmark-title><xsl:value-of select="
|
5230
|
+
<fo:bookmark-title><xsl:value-of select="bookmark"/></fo:bookmark-title>
|
5166
5231
|
</fo:bookmark>
|
5167
5232
|
</xsl:for-each>
|
5168
5233
|
</fo:bookmark>
|
@@ -5341,6 +5406,12 @@
|
|
5341
5406
|
|
5342
5407
|
|
5343
5408
|
|
5409
|
+
|
5410
|
+
<xsl:if test="parent::*[local-name() = 'example']">
|
5411
|
+
<fo:block font-size="1pt" line-height="10%" space-after="4pt"> </fo:block>
|
5412
|
+
</xsl:if>
|
5413
|
+
|
5414
|
+
|
5344
5415
|
<fo:block xsl:use-attribute-sets="sourcecode-style">
|
5345
5416
|
<xsl:variable name="_font-size">
|
5346
5417
|
|
@@ -5355,7 +5426,7 @@
|
|
5355
5426
|
|
5356
5427
|
|
5357
5428
|
|
5358
|
-
|
5429
|
+
9.5
|
5359
5430
|
|
5360
5431
|
|
5361
5432
|
|
@@ -5374,13 +5445,25 @@
|
|
5374
5445
|
|
5375
5446
|
|
5376
5447
|
|
5448
|
+
|
5449
|
+
<xsl:if test="parent::*[local-name() = 'example']">
|
5450
|
+
<xsl:attribute name="margin-bottom">0pt</xsl:attribute>
|
5451
|
+
</xsl:if>
|
5452
|
+
|
5453
|
+
|
5377
5454
|
<xsl:apply-templates/>
|
5378
5455
|
</fo:block>
|
5379
|
-
|
5456
|
+
|
5380
5457
|
|
5381
5458
|
<xsl:apply-templates select="*[local-name()='name']" mode="presentation"/>
|
5382
5459
|
|
5383
5460
|
|
5461
|
+
|
5462
|
+
<xsl:if test="parent::*[local-name() = 'example']">
|
5463
|
+
<fo:block font-size="1pt" line-height="10%" space-before="6pt"> </fo:block>
|
5464
|
+
</xsl:if>
|
5465
|
+
|
5466
|
+
|
5384
5467
|
</fo:block-container>
|
5385
5468
|
</fo:block-container>
|
5386
5469
|
</xsl:template><xsl:template match="*[local-name()='sourcecode']/text()" priority="2">
|
@@ -5972,24 +6055,29 @@
|
|
5972
6055
|
</xsl:template><xsl:template match="*[local-name() = 'deprecates']">
|
5973
6056
|
<xsl:variable name="title-deprecated">
|
5974
6057
|
|
5975
|
-
|
5976
|
-
|
5977
|
-
<xsl:with-param name="name" select="'title-deprecated'"/>
|
6058
|
+
<xsl:call-template name="getLocalizedString">
|
6059
|
+
<xsl:with-param name="key">deprecated</xsl:with-param>
|
5978
6060
|
</xsl:call-template>
|
5979
6061
|
|
6062
|
+
|
5980
6063
|
</xsl:variable>
|
5981
6064
|
<fo:block xsl:use-attribute-sets="deprecates-style">
|
5982
6065
|
<xsl:value-of select="$title-deprecated"/>: <xsl:apply-templates/>
|
5983
6066
|
</fo:block>
|
6067
|
+
</xsl:template><xsl:template name="setStyle_preferred">
|
6068
|
+
<xsl:if test="*[local-name() = 'strong']">
|
6069
|
+
<xsl:attribute name="font-weight">normal</xsl:attribute>
|
6070
|
+
</xsl:if>
|
5984
6071
|
</xsl:template><xsl:template match="*[local-name() = 'definition']">
|
5985
6072
|
<fo:block xsl:use-attribute-sets="definition-style">
|
5986
6073
|
<xsl:apply-templates/>
|
5987
6074
|
</fo:block>
|
5988
6075
|
</xsl:template><xsl:template match="*[local-name() = 'definition'][preceding-sibling::*[local-name() = 'domain']]">
|
5989
6076
|
<xsl:apply-templates/>
|
5990
|
-
</xsl:template><xsl:template match="*[local-name() = 'definition'][preceding-sibling::*[local-name() = 'domain']]/*[local-name() = 'p']">
|
6077
|
+
</xsl:template><xsl:template match="*[local-name() = 'definition'][preceding-sibling::*[local-name() = 'domain']]/*[local-name() = 'p'][1]">
|
5991
6078
|
<fo:inline> <xsl:apply-templates/></fo:inline>
|
5992
|
-
<fo:block
|
6079
|
+
<!-- <fo:block> </fo:block> -->
|
6080
|
+
<fo:block/>
|
5993
6081
|
</xsl:template><xsl:template match="/*/*[local-name() = 'sections']/*" priority="2">
|
5994
6082
|
|
5995
6083
|
<fo:block>
|