oga 0.2.2 → 0.2.3
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/doc/changelog.md +9 -0
- data/ext/c/lexer.c +782 -621
- data/ext/c/lexer.rl +5 -5
- data/ext/java/org/liboga/xml/Lexer.java +265 -231
- data/ext/java/org/liboga/xml/Lexer.rl +3 -4
- data/ext/ragel/base_lexer.rl +23 -14
- data/lib/oga/version.rb +1 -1
- data/lib/oga/xml/lexer.rb +6 -7
- data/lib/oga/xml/text.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0a600ef4530a2b62bbec7f94c18bbb2256a0c863
|
4
|
+
data.tar.gz: 69e4f07389226d4abdea959c238d08a548570c09
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 665d474cdb5414c29c92bb16b4bea1bffe5ffebaa7e09c8b861ac8a6020f7ea0ae632920ef18d311021f974ba072d16f4bb7e70a26c2e42b763f9fd41974a010
|
7
|
+
data.tar.gz: eb9f04d4192d9812d8ae294602fbfb513b96062f2f8ccd686b3d9d1cd9c0d8b70aa841d7262ae446834e51a3636fc713b85ef9a4b83b8ca97d7700d353aad8e3
|
data/doc/changelog.md
CHANGED
@@ -3,6 +3,15 @@
|
|
3
3
|
This document contains details of the various releases and their release dates.
|
4
4
|
Dates are in the format `yyyy-mm-dd`.
|
5
5
|
|
6
|
+
## 0.2.3 - 2015-03-04
|
7
|
+
|
8
|
+
This release adds support for lexing HTML `<style>` tags similar to how
|
9
|
+
`<script>` tags are handled. This ensures that the contents of these tags are
|
10
|
+
treated as-is without any HTML entity conversion being applied.
|
11
|
+
|
12
|
+
See commits 78e40b55c0e5941bee5791a5014260e9c2cf8aad and
|
13
|
+
3b2055a30b128aa679a83332dfdfa68314271b24 for more information.
|
14
|
+
|
6
15
|
## 0.2.2 - 2015-03-03
|
7
16
|
|
8
17
|
This release fixes a bug where setting the text of an element using
|