oga 0.3.2-java → 0.3.3-java
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/ext/c/lexer.c +1102 -1011
- data/ext/c/lexer.rl +11 -6
- data/ext/java/org/liboga/xml/Lexer.java +435 -381
- data/ext/java/org/liboga/xml/Lexer.rl +13 -3
- data/ext/ragel/base_lexer.rl +87 -61
- data/lib/liboga.jar +0 -0
- data/lib/oga/version.rb +1 -1
- data/lib/oga/xml/lexer.rb +15 -4
- data/lib/oga/xml/parser.rb +56 -39
- metadata +31 -31
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: oga
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.3
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Yorick Peterse
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-04-
|
11
|
+
date: 2015-04-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ast
|
@@ -142,57 +142,57 @@ executables: []
|
|
142
142
|
extensions: []
|
143
143
|
extra_rdoc_files: []
|
144
144
|
files:
|
145
|
-
- doc/manually_creating_documents.md
|
146
|
-
- doc/DCO.md
|
147
145
|
- doc/xml_namespaces.md
|
146
|
+
- doc/manually_creating_documents.md
|
148
147
|
- doc/css_selectors.md
|
149
148
|
- doc/migrating_from_nokogiri.md
|
149
|
+
- doc/DCO.md
|
150
150
|
- doc/css/common.css
|
151
151
|
- lib/oga.rb
|
152
|
-
- lib/oga/oga.rb
|
153
152
|
- lib/oga/version.rb
|
154
|
-
- lib/oga/lru.rb
|
155
153
|
- lib/oga/entity_decoder.rb
|
154
|
+
- lib/oga/lru.rb
|
155
|
+
- lib/oga/oga.rb
|
156
156
|
- lib/oga/css/lexer.rb
|
157
157
|
- lib/oga/css/parser.rb
|
158
|
-
- lib/oga/html/sax_parser.rb
|
159
|
-
- lib/oga/html/parser.rb
|
160
|
-
- lib/oga/html/entities.rb
|
161
|
-
- lib/oga/xml/lexer.rb
|
162
158
|
- lib/oga/xml/namespace.rb
|
163
|
-
- lib/oga/xml/
|
164
|
-
- lib/oga/xml/character_node.rb
|
165
|
-
- lib/oga/xml/sax_parser.rb
|
166
|
-
- lib/oga/xml/doctype.rb
|
167
|
-
- lib/oga/xml/document.rb
|
168
|
-
- lib/oga/xml/comment.rb
|
169
|
-
- lib/oga/xml/default_namespace.rb
|
170
|
-
- lib/oga/xml/text.rb
|
159
|
+
- lib/oga/xml/lexer.rb
|
171
160
|
- lib/oga/xml/querying.rb
|
172
|
-
- lib/oga/xml/attribute.rb
|
173
|
-
- lib/oga/xml/pull_parser.rb
|
174
161
|
- lib/oga/xml/parser.rb
|
175
|
-
- lib/oga/xml/
|
176
|
-
- lib/oga/xml/
|
162
|
+
- lib/oga/xml/traversal.rb
|
163
|
+
- lib/oga/xml/text.rb
|
177
164
|
- lib/oga/xml/node.rb
|
165
|
+
- lib/oga/xml/document.rb
|
166
|
+
- lib/oga/xml/pull_parser.rb
|
178
167
|
- lib/oga/xml/node_set.rb
|
168
|
+
- lib/oga/xml/sax_parser.rb
|
169
|
+
- lib/oga/xml/cdata.rb
|
179
170
|
- lib/oga/xml/element.rb
|
171
|
+
- lib/oga/xml/character_node.rb
|
172
|
+
- lib/oga/xml/doctype.rb
|
173
|
+
- lib/oga/xml/html_void_elements.rb
|
174
|
+
- lib/oga/xml/entities.rb
|
175
|
+
- lib/oga/xml/default_namespace.rb
|
176
|
+
- lib/oga/xml/attribute.rb
|
180
177
|
- lib/oga/xml/xml_declaration.rb
|
181
|
-
- lib/oga/xml/
|
182
|
-
- lib/oga/xml/
|
178
|
+
- lib/oga/xml/processing_instruction.rb
|
179
|
+
- lib/oga/xml/comment.rb
|
180
|
+
- lib/oga/html/parser.rb
|
181
|
+
- lib/oga/html/sax_parser.rb
|
182
|
+
- lib/oga/html/entities.rb
|
183
183
|
- lib/oga/xpath/lexer.rb
|
184
|
-
- lib/oga/xpath/evaluator.rb
|
185
184
|
- lib/oga/xpath/parser.rb
|
186
|
-
-
|
187
|
-
- ext/c/lexer.rl
|
188
|
-
- ext/c/lexer.h
|
189
|
-
- ext/c/liboga.c
|
190
|
-
- ext/c/extconf.rb
|
191
|
-
- ext/c/liboga.h
|
185
|
+
- lib/oga/xpath/evaluator.rb
|
192
186
|
- ext/ragel/base_lexer.rl
|
193
187
|
- ext/java/Liboga.java
|
194
188
|
- ext/java/org/liboga/xml/Lexer.java
|
195
189
|
- ext/java/org/liboga/xml/Lexer.rl
|
190
|
+
- ext/c/extconf.rb
|
191
|
+
- ext/c/lexer.rl
|
192
|
+
- ext/c/lexer.h
|
193
|
+
- ext/c/liboga.c
|
194
|
+
- ext/c/lexer.c
|
195
|
+
- ext/c/liboga.h
|
196
196
|
- README.md
|
197
197
|
- LICENSE
|
198
198
|
- oga.gemspec
|