metanorma-csa 2.2.10 → 2.2.11

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5ec8990e49baa6f98f5a7354d3d7b0e488a049540bb1e5fc33085534b8f89745
4
- data.tar.gz: 59eadeae945582a8c9302ce007307bf5adceb90ffc259f4c945369114a0ced91
3
+ metadata.gz: '0354818d41d11101f7b6c8887da47415bc21aa1ea6d09401ca2327123653042d'
4
+ data.tar.gz: ef4b3538d19b0dad0a4e690b6d54bccf94038afb4ccc7b4eb59a3e1ada381f0c
5
5
  SHA512:
6
- metadata.gz: 3c855e74521c51bd16042c69d239a22b96d57676cbac2c9016db610b5a4f81c8966aae2eb3dd15405872a1c2ccb855efd905f4d52253070b38806359da850a49
7
- data.tar.gz: fef69e7d6fab55890c6217d096c90b1750792e2d292f86df167aa379145895ee2dad42a993e9ef7ca8ec78f1eb76207e24f45273d329070013c80a52b433051e
6
+ metadata.gz: df2b1c575115cc72dee940c2f299507562733521fa3ca4885de4cd493e3db6ef437a3d9975eed9264d693e0a3cbcf3b31fccc747900dad16d5d8f23c77e130e9
7
+ data.tar.gz: 320844b64ebad5514704255397a55f818ba32a80a63b402f4590ba8ac100a3d141930fbe1f8f0e69b67439bbe3df27da4b3841e78b32adc439dcccf437654ddf
@@ -1560,6 +1560,10 @@
1560
1560
  </xsl:attribute-set> <!-- formula-stem-number-style -->
1561
1561
  <!-- End Formula's styles -->
1562
1562
 
1563
+ <xsl:template name="refine_formula-stem-number-style">
1564
+
1565
+ </xsl:template>
1566
+
1563
1567
  <xsl:attribute-set name="image-style">
1564
1568
  <xsl:attribute name="text-align">center</xsl:attribute>
1565
1569
 
@@ -2058,13 +2062,13 @@
2058
2062
 
2059
2063
  <xsl:template name="processPrefaceSectionsDefault_Contents">
2060
2064
  <xsl:variable name="nodes_preface_">
2061
- <xsl:for-each select="/*/*[local-name()='preface']/*[not(local-name() = 'note' or local-name() = 'admonition')]">
2065
+ <xsl:for-each select="/*/*[local-name()='preface']/*[not(local-name() = 'note' or local-name() = 'admonition' or @type = 'toc')]">
2062
2066
  <node id="{@id}"/>
2063
2067
  </xsl:for-each>
2064
2068
  </xsl:variable>
2065
2069
  <xsl:variable name="nodes_preface" select="xalan:nodeset($nodes_preface_)"/>
2066
2070
 
2067
- <xsl:for-each select="/*/*[local-name()='preface']/*[not(local-name() = 'note' or local-name() = 'admonition')]">
2071
+ <xsl:for-each select="/*/*[local-name()='preface']/*[not(local-name() = 'note' or local-name() = 'admonition' or @type = 'toc')]">
2068
2072
  <xsl:sort select="@displayorder" data-type="number"/>
2069
2073
 
2070
2074
  <!-- process Section's title -->
@@ -2098,12 +2102,12 @@
2098
2102
  <xsl:apply-templates select="." mode="contents"/>
2099
2103
  </xsl:for-each>
2100
2104
 
2101
- <xsl:for-each select="/*/*[local-name()='annex']">
2105
+ <!-- <xsl:for-each select="/*/*[local-name()='annex']">
2102
2106
  <xsl:sort select="@displayorder" data-type="number"/>
2103
2107
  <xsl:apply-templates select="." mode="contents"/>
2104
- </xsl:for-each>
2108
+ </xsl:for-each> -->
2105
2109
 
2106
- <xsl:for-each select="/*/*[local-name()='bibliography']/*[not(@normative='true') and not(*[local-name()='references'][@normative='true'])][count(.//*[local-name() = 'bibitem'][not(@hidden) = 'true']) &gt; 0] | /*/*[local-name()='bibliography']/*[local-name()='clause'][*[local-name()='references'][not(@normative='true')]][count(.//*[local-name() = 'bibitem'][not(@hidden) = 'true']) &gt; 0]">
2110
+ <xsl:for-each select="/*/*[local-name()='annex'] | /*/*[local-name()='bibliography']/*[not(@normative='true') and not(*[local-name()='references'][@normative='true'])][count(.//*[local-name() = 'bibitem'][not(@hidden) = 'true']) &gt; 0] | /*/*[local-name()='bibliography']/*[local-name()='clause'][*[local-name()='references'][not(@normative='true')]][count(.//*[local-name() = 'bibitem'][not(@hidden) = 'true']) &gt; 0]">
2107
2111
  <xsl:sort select="@displayorder" data-type="number"/>
2108
2112
  <xsl:apply-templates select="." mode="contents"/>
2109
2113
  </xsl:for-each>
@@ -2556,7 +2560,7 @@
2556
2560
  <fo:table-row>
2557
2561
  <fo:table-cell column-number="2">
2558
2562
  <xsl:copy-of select="$table-preamble"/>
2559
- <fo:block>
2563
+ <fo:block role="SKIP">
2560
2564
  <xsl:call-template name="setTrackChangesStyles">
2561
2565
  <xsl:with-param name="isAdded" select="$isAdded"/>
2562
2566
  <xsl:with-param name="isDeleted" select="$isDeleted"/>
@@ -2599,7 +2603,7 @@
2599
2603
  <xsl:param name="continued"/>
2600
2604
  <xsl:if test="normalize-space() != ''">
2601
2605
 
2602
- <fo:block xsl:use-attribute-sets="table-name-style">
2606
+ <fo:block xsl:use-attribute-sets="table-name-style" role="SKIP">
2603
2607
 
2604
2608
  <xsl:call-template name="refine_table-name-style">
2605
2609
  <xsl:with-param name="continued" select="$continued"/>
@@ -2984,8 +2988,8 @@
2984
2988
  <xsl:template name="table-header-title">
2985
2989
  <xsl:param name="cols-count"/>
2986
2990
  <!-- row for title -->
2987
- <fo:table-row>
2988
- <fo:table-cell number-columns-spanned="{$cols-count}" border-left="1.5pt solid white" border-right="1.5pt solid white" border-top="1.5pt solid white" border-bottom="1.5pt solid black">
2991
+ <fo:table-row role="SKIP">
2992
+ <fo:table-cell number-columns-spanned="{$cols-count}" border-left="1.5pt solid white" border-right="1.5pt solid white" border-top="1.5pt solid white" border-bottom="1.5pt solid black" role="SKIP">
2989
2993
 
2990
2994
  <xsl:call-template name="refine_table-header-title-style"/>
2991
2995
 
@@ -2994,7 +2998,7 @@
2994
2998
  </xsl:apply-templates>
2995
2999
 
2996
3000
  <xsl:if test="not(ancestor::*[local-name()='table']/*[local-name()='name'])"> <!-- to prevent empty fo:table-cell in case of missing table's name -->
2997
- <fo:block/>
3001
+ <fo:block role="SKIP"/>
2998
3002
  </xsl:if>
2999
3003
 
3000
3004
  </fo:table-cell>
@@ -3305,7 +3309,7 @@
3305
3309
 
3306
3310
  <xsl:call-template name="refine_table-header-cell-style"/>
3307
3311
 
3308
- <fo:block>
3312
+ <fo:block role="SKIP">
3309
3313
  <xsl:apply-templates/>
3310
3314
  </fo:block>
3311
3315
  </fo:table-cell>
@@ -3358,7 +3362,7 @@
3358
3362
  <xsl:attribute name="text-align">left</xsl:attribute>
3359
3363
  </xsl:if>
3360
3364
 
3361
- <fo:block>
3365
+ <fo:block role="SKIP">
3362
3366
 
3363
3367
  <xsl:if test="$isGenerateTableIF = 'true'">
3364
3368
  <xsl:attribute name="id"><xsl:value-of select="@id"/></xsl:attribute>
@@ -4221,7 +4225,7 @@
4221
4225
  -->
4222
4226
  <fo:table-row>
4223
4227
  <fo:table-cell number-columns-spanned="2">
4224
- <fo:block>
4228
+ <fo:block role="SKIP">
4225
4229
  <xsl:call-template name="note"/>
4226
4230
  </fo:block>
4227
4231
  </fo:table-cell>
@@ -4286,7 +4290,7 @@
4286
4290
 
4287
4291
  <xsl:call-template name="refine_dt-cell-style"/>
4288
4292
 
4289
- <fo:block xsl:use-attribute-sets="dt-block-style">
4293
+ <fo:block xsl:use-attribute-sets="dt-block-style" role="SKIP">
4290
4294
  <xsl:copy-of select="@id"/>
4291
4295
 
4292
4296
  <xsl:if test="normalize-space($key_iso) = 'true'">
@@ -4316,7 +4320,7 @@
4316
4320
 
4317
4321
  <xsl:call-template name="refine_dd-cell-style"/>
4318
4322
 
4319
- <fo:block>
4323
+ <fo:block role="SKIP">
4320
4324
 
4321
4325
  <xsl:if test="$isGenerateTableIF = 'true'">
4322
4326
  <xsl:attribute name="id"><xsl:value-of select="@id"/></xsl:attribute>
@@ -4458,10 +4462,15 @@
4458
4462
  <!-- ========================= -->
4459
4463
  <xsl:template match="*[local-name()='em']">
4460
4464
  <fo:inline font-style="italic">
4465
+ <xsl:call-template name="refine_italic_style"/>
4461
4466
  <xsl:apply-templates/>
4462
4467
  </fo:inline>
4463
4468
  </xsl:template>
4464
4469
 
4470
+ <xsl:template name="refine_italic_style">
4471
+
4472
+ </xsl:template>
4473
+
4465
4474
  <xsl:template match="*[local-name()='strong'] | *[local-name()='b']">
4466
4475
  <xsl:param name="split_keep-within-line"/>
4467
4476
  <fo:inline font-weight="bold">
@@ -4686,11 +4695,41 @@
4686
4695
 
4687
4696
  <xsl:template match="text()[ancestor::*[local-name()='smallcap']]">
4688
4697
  <xsl:variable name="text" select="normalize-space(.)"/>
4689
- <fo:inline font-size="75%">
4698
+ <fo:inline font-size="75%" role="SKIP">
4690
4699
  <xsl:if test="string-length($text) &gt; 0">
4691
- <xsl:call-template name="recursiveSmallCaps">
4692
- <xsl:with-param name="text" select="$text"/>
4693
- </xsl:call-template>
4700
+ <xsl:variable name="smallCapsText">
4701
+ <xsl:call-template name="recursiveSmallCaps">
4702
+ <xsl:with-param name="text" select="$text"/>
4703
+ </xsl:call-template>
4704
+ </xsl:variable>
4705
+ <!-- merge neighboring fo:inline -->
4706
+ <xsl:for-each select="xalan:nodeset($smallCapsText)/node()">
4707
+ <xsl:choose>
4708
+ <xsl:when test="self::fo:inline and preceding-sibling::node()[1][self::fo:inline]"><!-- <xsl:copy-of select="."/> --></xsl:when>
4709
+ <xsl:when test="self::fo:inline and @font-size">
4710
+ <xsl:variable name="curr_pos" select="count(preceding-sibling::node()) + 1"/>
4711
+ <!-- <curr_pos><xsl:value-of select="$curr_pos"/></curr_pos> -->
4712
+ <xsl:variable name="next_text_" select="count(following-sibling::node()[not(local-name() = 'inline')][1]/preceding-sibling::node())"/>
4713
+ <xsl:variable name="next_text">
4714
+ <xsl:choose>
4715
+ <xsl:when test="$next_text_ = 0">99999999</xsl:when>
4716
+ <xsl:otherwise><xsl:value-of select="$next_text_ + 1"/></xsl:otherwise>
4717
+ </xsl:choose>
4718
+ </xsl:variable>
4719
+ <!-- <next_text><xsl:value-of select="$next_text"/></next_text> -->
4720
+ <fo:inline>
4721
+ <xsl:copy-of select="@*"/>
4722
+ <xsl:copy-of select="./node()"/>
4723
+ <xsl:for-each select="following-sibling::node()[position() &lt; $next_text - $curr_pos]"> <!-- [self::fo:inline] -->
4724
+ <xsl:copy-of select="./node()"/>
4725
+ </xsl:for-each>
4726
+ </fo:inline>
4727
+ </xsl:when>
4728
+ <xsl:otherwise>
4729
+ <xsl:copy-of select="."/>
4730
+ </xsl:otherwise>
4731
+ </xsl:choose>
4732
+ </xsl:for-each>
4694
4733
  </xsl:if>
4695
4734
  </fo:inline>
4696
4735
  </xsl:template>
@@ -4702,7 +4741,7 @@
4702
4741
  <xsl:variable name="upperCase" select="java:toUpperCase(java:java.lang.String.new($char))"/>
4703
4742
  <xsl:choose>
4704
4743
  <xsl:when test="$char=$upperCase">
4705
- <fo:inline font-size="{100 div 0.75}%">
4744
+ <fo:inline font-size="{100 div 0.75}%" role="SKIP">
4706
4745
  <xsl:value-of select="$upperCase"/>
4707
4746
  </fo:inline>
4708
4747
  </xsl:when>
@@ -4864,6 +4903,10 @@
4864
4903
 
4865
4904
  <xsl:when test="not(contains($text, $separator))">
4866
4905
  <word>
4906
+ <xsl:if test="ancestor::*[local-name() = 'p'][@from_dl = 'true']">
4907
+ <xsl:text>
4908
+  </xsl:text> <!-- to add distance between dt and dd -->
4909
+ </xsl:if>
4867
4910
  <xsl:call-template name="enclose_text_in_tags">
4868
4911
  <xsl:with-param name="text" select="normalize-space($text)"/>
4869
4912
  <xsl:with-param name="tags" select="$tags"/>
@@ -4872,6 +4915,10 @@
4872
4915
  </xsl:when>
4873
4916
  <xsl:otherwise>
4874
4917
  <word>
4918
+ <xsl:if test="ancestor::*[local-name() = 'p'][@from_dl = 'true']">
4919
+ <xsl:text>
4920
+  </xsl:text> <!-- to add distance between dt and dd -->
4921
+ </xsl:if>
4875
4922
  <xsl:call-template name="enclose_text_in_tags">
4876
4923
  <xsl:with-param name="text" select="normalize-space(substring-before($text, $separator))"/>
4877
4924
  <xsl:with-param name="tags" select="$tags"/>
@@ -5055,6 +5102,10 @@
5055
5102
  <xsl:template name="getSimpleTable">
5056
5103
  <xsl:param name="id"/>
5057
5104
 
5105
+ <!-- <test0>
5106
+ <xsl:copy-of select="."/>
5107
+ </test0> -->
5108
+
5058
5109
  <xsl:variable name="simple-table">
5059
5110
 
5060
5111
  <!-- Step 0. replace <br/> to <p>...</p> -->
@@ -6100,7 +6151,7 @@
6100
6151
  <fo:table-body>
6101
6152
  <fo:table-row>
6102
6153
  <fo:table-cell display-align="center">
6103
- <fo:block xsl:use-attribute-sets="formula-stem-block-style">
6154
+ <fo:block xsl:use-attribute-sets="formula-stem-block-style" role="SKIP">
6104
6155
 
6105
6156
  <xsl:call-template name="refine_formula-stem-block-style"/>
6106
6157
 
@@ -6108,7 +6159,10 @@
6108
6159
  </fo:block>
6109
6160
  </fo:table-cell>
6110
6161
  <fo:table-cell display-align="center">
6111
- <fo:block xsl:use-attribute-sets="formula-stem-number-style">
6162
+ <fo:block xsl:use-attribute-sets="formula-stem-number-style" role="SKIP">
6163
+
6164
+ <xsl:call-template name="refine_formula-stem-number-style"/>
6165
+
6112
6166
  <xsl:apply-templates select="../*[local-name() = 'name']"/>
6113
6167
  </fo:block>
6114
6168
  </fo:table-cell>
@@ -7622,7 +7676,7 @@
7622
7676
  <!-- second td with sourcecode -->
7623
7677
  <xsl:template match="*[local-name() = 'sourcecode'][@linenums = 'true']/*[local-name()='table']//*[local-name()='tr']/*[local-name()='td'][preceding-sibling::*]" priority="2"> <!-- *[local-name()='table'][@type = 'sourcecode'] -->
7624
7678
  <fo:table-cell>
7625
- <fo:block>
7679
+ <fo:block role="SKIP">
7626
7680
  <xsl:apply-templates/>
7627
7681
  </fo:block>
7628
7682
  </fo:table-cell>
@@ -8109,7 +8163,7 @@
8109
8163
 
8110
8164
  <xsl:call-template name="setTableCellAttributes"/>
8111
8165
 
8112
- <fo:block>
8166
+ <fo:block role="SKIP">
8113
8167
  <xsl:apply-templates/>
8114
8168
  </fo:block>
8115
8169
  </fo:table-cell>
@@ -8131,7 +8185,7 @@
8131
8185
 
8132
8186
  <xsl:call-template name="setTableCellAttributes"/>
8133
8187
 
8134
- <fo:block>
8188
+ <fo:block role="SKIP">
8135
8189
  <xsl:apply-templates/>
8136
8190
  </fo:block>
8137
8191
  </fo:table-cell>
@@ -8906,7 +8960,48 @@
8906
8960
  </xsl:choose>
8907
8961
  </xsl:when>
8908
8962
  <xsl:when test="local-name(..) = 'ol' and @label"> <!-- for ordered lists 'ol', and if there is @label, for instance label="1.1.2" -->
8909
- <xsl:value-of select="@label"/>
8963
+
8964
+ <xsl:variable name="label">
8965
+
8966
+ <xsl:variable name="type" select="../@type"/>
8967
+
8968
+ <xsl:variable name="style_prefix_">
8969
+ <xsl:if test="$type = 'roman'">
8970
+ <!-- Example: (i) -->
8971
+ </xsl:if>
8972
+ </xsl:variable>
8973
+ <xsl:variable name="style_prefix" select="normalize-space($style_prefix_)"/>
8974
+
8975
+ <xsl:variable name="style_suffix_">
8976
+ <xsl:choose>
8977
+ <xsl:when test="$type = 'arabic'">
8978
+ )
8979
+ </xsl:when>
8980
+ <xsl:when test="$type = 'alphabet' or $type = 'alphabetic'">
8981
+ )
8982
+ </xsl:when>
8983
+ <xsl:when test="$type = 'alphabet_upper' or $type = 'alphabetic_upper'">
8984
+ )
8985
+ </xsl:when>
8986
+ <xsl:when test="$type = 'roman'">
8987
+ )
8988
+ </xsl:when>
8989
+ <xsl:when test="$type = 'roman_upper'">.</xsl:when> <!-- Example: I. -->
8990
+ </xsl:choose>
8991
+ </xsl:variable>
8992
+ <xsl:variable name="style_suffix" select="normalize-space($style_suffix_)"/>
8993
+
8994
+ <xsl:if test="$style_prefix != '' and not(starts-with(@label, $style_prefix))">
8995
+ <xsl:value-of select="$style_prefix"/>
8996
+ </xsl:if>
8997
+ <xsl:value-of select="@label"/>
8998
+ <xsl:if test="not(java:endsWith(java:java.lang.String.new(@label),$style_suffix))">
8999
+ <xsl:value-of select="$style_suffix"/>
9000
+ </xsl:if>
9001
+ </xsl:variable>
9002
+
9003
+ <xsl:value-of select="normalize-space($label)"/>
9004
+
8910
9005
  </xsl:when>
8911
9006
  <xsl:otherwise> <!-- for ordered lists 'ol' -->
8912
9007
 
@@ -9099,7 +9194,7 @@
9099
9194
  <xsl:call-template name="refine_list-item-style"/>
9100
9195
 
9101
9196
  <fo:list-item-label end-indent="label-end()">
9102
- <fo:block xsl:use-attribute-sets="list-item-label-style">
9197
+ <fo:block xsl:use-attribute-sets="list-item-label-style" role="SKIP">
9103
9198
 
9104
9199
  <xsl:call-template name="refine_list-item-label-style"/>
9105
9200
 
@@ -9113,7 +9208,7 @@
9113
9208
  </fo:block>
9114
9209
  </fo:list-item-label>
9115
9210
  <fo:list-item-body start-indent="body-start()" xsl:use-attribute-sets="list-item-body-style">
9116
- <fo:block>
9211
+ <fo:block role="SKIP">
9117
9212
 
9118
9213
  <xsl:call-template name="refine_list-item-body-style"/>
9119
9214
 
@@ -9392,10 +9487,10 @@
9392
9487
  <fo:table-body>
9393
9488
  <fo:table-row text-align="center" font-weight="bold" background-color="black" color="white">
9394
9489
 
9395
- <fo:table-cell border="1pt solid black"><fo:block>Date</fo:block></fo:table-cell>
9396
- <fo:table-cell border="1pt solid black"><fo:block>Type</fo:block></fo:table-cell>
9397
- <fo:table-cell border="1pt solid black"><fo:block>Change</fo:block></fo:table-cell>
9398
- <fo:table-cell border="1pt solid black"><fo:block>Pages</fo:block></fo:table-cell>
9490
+ <fo:table-cell border="1pt solid black"><fo:block role="SKIP">Date</fo:block></fo:table-cell>
9491
+ <fo:table-cell border="1pt solid black"><fo:block role="SKIP">Type</fo:block></fo:table-cell>
9492
+ <fo:table-cell border="1pt solid black"><fo:block role="SKIP">Change</fo:block></fo:table-cell>
9493
+ <fo:table-cell border="1pt solid black"><fo:block role="SKIP">Pages</fo:block></fo:table-cell>
9399
9494
  </fo:table-row>
9400
9495
  <xsl:apply-templates/>
9401
9496
  </fo:table-body>
@@ -9410,7 +9505,7 @@
9410
9505
 
9411
9506
  <xsl:template match="*[local-name() = 'errata']/*[local-name() = 'row']/*">
9412
9507
  <fo:table-cell border="1pt solid black" padding-left="1mm" padding-top="0.5mm">
9413
- <fo:block><xsl:apply-templates/></fo:block>
9508
+ <fo:block role="SKIP"><xsl:apply-templates/></fo:block>
9414
9509
  </fo:table-cell>
9415
9510
  </xsl:template>
9416
9511
  <!-- ============ -->
@@ -9695,7 +9790,7 @@
9695
9790
  <xsl:for-each select="*[local-name() = 'tab']">
9696
9791
  <xsl:variable name="current_id" select="generate-id()"/>
9697
9792
  <fo:table-cell>
9698
- <fo:block line-height-shift-adjustment="disregard-shifts">
9793
+ <fo:block line-height-shift-adjustment="disregard-shifts" role="SKIP">
9699
9794
  <xsl:call-template name="insert_basic_link">
9700
9795
  <xsl:with-param name="element">
9701
9796
  <fo:basic-link internal-destination="{$target}" fox:alt-text="{.}">
@@ -9713,7 +9808,7 @@
9713
9808
  </xsl:for-each>
9714
9809
  <!-- last column - for page numbers -->
9715
9810
  <fo:table-cell text-align="right" font-size="10pt" font-weight="bold" font-family="Arial">
9716
- <fo:block>
9811
+ <fo:block role="SKIP">
9717
9812
  <xsl:call-template name="insert_basic_link">
9718
9813
  <xsl:with-param name="element">
9719
9814
  <fo:basic-link internal-destination="{$target}" fox:alt-text="{.}">
@@ -0,0 +1,35 @@
1
+ == copyright-statement
2
+ === {blank}
3
+ © {{ docyear }} Cloud Security Alliance, LLC.
4
+
5
+ {% if unpublished %}
6
+ == license-statement
7
+ === Warning for Drafts
8
+
9
+ This document is not a CSA Standard. It is distributed for review and
10
+ comment, and is subject to change without notice and may not be referred to as
11
+ a Standard. Recipients of this draft are invited to submit, with their
12
+ comments, notification of any relevant patent rights of which they are aware
13
+ and to provide supporting documentation.
14
+ {% endif %}
15
+
16
+ == legal-statement
17
+ === {blank}
18
+ All rights reserved. Unless otherwise specified, no part of this
19
+ publication may be reproduced or utilized otherwise in any form or by any
20
+ means, electronic or mechanical, including photocopying, or posting on the
21
+ internet or an intranet, without prior written permission. Permission can
22
+ be requested from the address below.
23
+
24
+ == feedback-statement
25
+ === {blank}
26
+ Cloud Security Alliance
27
+
28
+ [align="left"]
29
+ 2212 Queen Anne Ave N +
30
+ Seattle +
31
+ WA 98109 +
32
+ United States of America +
33
+ +
34
+ copyright@cloudsecurityalliance.com +
35
+ https://www.cloudsecurityalliance.com[www.cloudsecurityalliance.com]
@@ -1,5 +1,5 @@
1
1
  module Metanorma
2
2
  module Csa
3
- VERSION = "2.2.10".freeze
3
+ VERSION = "2.2.11".freeze
4
4
  end
5
5
  end
data/metanorma.yml CHANGED
@@ -27,6 +27,7 @@ header: lib/isodoc/csa/html/header.html
27
27
  wordcoverpage: lib/isodoc/csa/html/word_csa_titlepage.html
28
28
  wordintropage: lib/isodoc/csa/html/word_csa_intro.html
29
29
  wordstylesheet: lib/isodoc/csa/html/wordstyle.scss
30
+ boilerplate: lib/metanorma/csa/boilerplate.adoc
30
31
  webfont:
31
32
  - "https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i|Space+Mono:400,700"
32
33
  - "https://fonts.googleapis.com/css?family=Lato:400,400i,700,900"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metanorma-csa
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.10
4
+ version: 2.2.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-06-05 00:00:00.000000000 Z
11
+ date: 2023-06-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: metanorma-generic
@@ -215,7 +215,7 @@ files:
215
215
  - lib/metanorma/csa/basicdoc.rng
216
216
  - lib/metanorma/csa/biblio-standoc.rng
217
217
  - lib/metanorma/csa/biblio.rng
218
- - lib/metanorma/csa/boilerplate.xml
218
+ - lib/metanorma/csa/boilerplate.adoc
219
219
  - lib/metanorma/csa/converter.rb
220
220
  - lib/metanorma/csa/csa.rng
221
221
  - lib/metanorma/csa/isodoc.rng
@@ -1,48 +0,0 @@
1
- <boilerplate>
2
- <copyright-statement>
3
- <clause>
4
- <p>© {{ docyear }} Cloud Security Alliance, LLC.</p>
5
- </clause>
6
- </copyright-statement>
7
-
8
- {% if unpublished %}
9
- <license-statement>
10
- <clause>
11
- <title>Warning for Drafts</title>
12
-
13
- <p>This document is not a CSA Standard. It is distributed for review and
14
- comment, and is subject to change without notice and may not be referred to as
15
- a Standard. Recipients of this draft are invited to submit, with their
16
- comments, notification of any relevant patent rights of which they are aware
17
- and to provide supporting documentation.
18
- </p>
19
- </clause>
20
- </license-statement>
21
- {% endif %}
22
-
23
- <legal-statement>
24
- <clause>
25
- <p>All rights reserved. Unless otherwise specified, no part of this
26
- publication may be reproduced or utilized otherwise in any form or by any
27
- means, electronic or mechanical, including photocopying, or posting on the
28
- internet or an intranet, without prior written permission. Permission can
29
- be requested from the address below.
30
- </p>
31
- </clause>
32
- </legal-statement>
33
-
34
- <feedback-statement>
35
- <clause>
36
- <p>Cloud Security Alliance</p>
37
- <p align="left">
38
- 2212 Queen Anne Ave N<br />
39
- Seattle<br />
40
- WA 98109<br />
41
- United States of America<br />
42
- <br />
43
- <link target="mailto:copyright@cloudsecurityalliance.com">copyright@cloudsecurityalliance.com</link><br />
44
- <link target="www.cloudsecurityalliance.com">www.cloudsecurityalliance.com</link>
45
- </p>
46
- </clause>
47
- </feedback-statement>
48
- </boilerplate>