avv2word 1.1.25 → 1.1.26
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 +4 -4
- data/lib/avv2word/templates/default.docx +0 -0
- data/lib/avv2word/version.rb +1 -1
- data/lib/avv2word/xslt/base.xslt +18 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7e3a0aa19367cc3c9cbce2081163654b514b08f1dc786386f051fcafad14b55f
|
|
4
|
+
data.tar.gz: 5d0a2a153783790f67f2944b06a6c2ff64be1b914705e0b86dcde98a5248d1af
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: df0fe7da1feb17e5fe224dd4549a8257f3a7fc5b4b71d45186575ed7e635c7200903fb9545691e47dbd9b078e98935167b2322173ea146dce2f77943c09ca5d6
|
|
7
|
+
data.tar.gz: 9ffa5342ce2e963a595a62a56e187990ba06f05cb6a88628c58d0d92344aa2ef490e66d53bbaf3dd92460e306f55303bd44d1cfbc343e88e45a452d59d5a860d
|
|
Binary file
|
data/lib/avv2word/version.rb
CHANGED
data/lib/avv2word/xslt/base.xslt
CHANGED
|
@@ -533,4 +533,22 @@
|
|
|
533
533
|
</xsl:choose>
|
|
534
534
|
</xsl:template>
|
|
535
535
|
|
|
536
|
+
<xsl:template match="insert">
|
|
537
|
+
<xsl:number level="any" count="insert" format="1"/>
|
|
538
|
+
<w:ins w:id="{format-number(count(preceding::insert)+1,'0')}">
|
|
539
|
+
<w:r>
|
|
540
|
+
<w:t><xsl:value-of select="."/></w:t>
|
|
541
|
+
</w:r>
|
|
542
|
+
</w:ins>
|
|
543
|
+
</xsl:template>
|
|
544
|
+
|
|
545
|
+
<xsl:template match="delete">
|
|
546
|
+
<xsl:number level="any" count="insert" format="1"/>
|
|
547
|
+
<w:del w:id="{format-number(count(preceding::delete)+1,'0')}">
|
|
548
|
+
<w:r>
|
|
549
|
+
<w:delText><xsl:value-of select="."/></w:delText>
|
|
550
|
+
</w:r>
|
|
551
|
+
</w:del>
|
|
552
|
+
</xsl:template>
|
|
553
|
+
|
|
536
554
|
</xsl:stylesheet>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: avv2word
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.26
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marián Bilas
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-09-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: actionpack
|