libxml-ruby-r19mingw 1.1.4

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.
Files changed (163) hide show
  1. data/CHANGES +481 -0
  2. data/LICENSE +22 -0
  3. data/README +161 -0
  4. data/Rakefile +182 -0
  5. data/doc/css/normal.css +182 -0
  6. data/doc/img/raze-tiny.png +0 -0
  7. data/doc/img/red-cube.jpg +0 -0
  8. data/doc/img/xml-ruby.png +0 -0
  9. data/doc/index.xml +43 -0
  10. data/doc/install.xml +77 -0
  11. data/doc/layout.rhtml +38 -0
  12. data/doc/layout.xsl +67 -0
  13. data/doc/license.xml +32 -0
  14. data/doc/log/changelog.xml +1324 -0
  15. data/doc/log/changelog.xsl +42 -0
  16. data/ext/libxml/Makefile +187 -0
  17. data/ext/libxml/extconf.h +4 -0
  18. data/ext/libxml/extconf.rb +122 -0
  19. data/ext/libxml/libxml.c +77 -0
  20. data/ext/libxml/mkmf.log +880 -0
  21. data/ext/libxml/ruby_libxml.h +93 -0
  22. data/ext/libxml/ruby_xml.c +893 -0
  23. data/ext/libxml/ruby_xml.h +10 -0
  24. data/ext/libxml/ruby_xml_attr.c +352 -0
  25. data/ext/libxml/ruby_xml_attr.h +14 -0
  26. data/ext/libxml/ruby_xml_attr_decl.c +171 -0
  27. data/ext/libxml/ruby_xml_attr_decl.h +13 -0
  28. data/ext/libxml/ruby_xml_attributes.c +277 -0
  29. data/ext/libxml/ruby_xml_attributes.h +17 -0
  30. data/ext/libxml/ruby_xml_cbg.c +86 -0
  31. data/ext/libxml/ruby_xml_document.c +936 -0
  32. data/ext/libxml/ruby_xml_document.h +17 -0
  33. data/ext/libxml/ruby_xml_dtd.c +257 -0
  34. data/ext/libxml/ruby_xml_dtd.h +9 -0
  35. data/ext/libxml/ruby_xml_encoding.c +134 -0
  36. data/ext/libxml/ruby_xml_encoding.h +12 -0
  37. data/ext/libxml/ruby_xml_error.c +1004 -0
  38. data/ext/libxml/ruby_xml_error.h +14 -0
  39. data/ext/libxml/ruby_xml_html_parser.c +92 -0
  40. data/ext/libxml/ruby_xml_html_parser.h +12 -0
  41. data/ext/libxml/ruby_xml_html_parser_context.c +308 -0
  42. data/ext/libxml/ruby_xml_html_parser_context.h +12 -0
  43. data/ext/libxml/ruby_xml_html_parser_options.c +40 -0
  44. data/ext/libxml/ruby_xml_html_parser_options.h +12 -0
  45. data/ext/libxml/ruby_xml_input_cbg.c +191 -0
  46. data/ext/libxml/ruby_xml_input_cbg.h +20 -0
  47. data/ext/libxml/ruby_xml_io.c +30 -0
  48. data/ext/libxml/ruby_xml_io.h +9 -0
  49. data/ext/libxml/ruby_xml_namespace.c +170 -0
  50. data/ext/libxml/ruby_xml_namespace.h +12 -0
  51. data/ext/libxml/ruby_xml_namespaces.c +295 -0
  52. data/ext/libxml/ruby_xml_namespaces.h +11 -0
  53. data/ext/libxml/ruby_xml_node.c +1386 -0
  54. data/ext/libxml/ruby_xml_node.h +13 -0
  55. data/ext/libxml/ruby_xml_parser.c +94 -0
  56. data/ext/libxml/ruby_xml_parser.h +14 -0
  57. data/ext/libxml/ruby_xml_parser_context.c +982 -0
  58. data/ext/libxml/ruby_xml_parser_context.h +12 -0
  59. data/ext/libxml/ruby_xml_parser_options.c +68 -0
  60. data/ext/libxml/ruby_xml_parser_options.h +14 -0
  61. data/ext/libxml/ruby_xml_reader.c +1002 -0
  62. data/ext/libxml/ruby_xml_reader.h +14 -0
  63. data/ext/libxml/ruby_xml_relaxng.c +111 -0
  64. data/ext/libxml/ruby_xml_relaxng.h +10 -0
  65. data/ext/libxml/ruby_xml_sax2_handler.c +322 -0
  66. data/ext/libxml/ruby_xml_sax2_handler.h +12 -0
  67. data/ext/libxml/ruby_xml_sax_parser.c +137 -0
  68. data/ext/libxml/ruby_xml_sax_parser.h +12 -0
  69. data/ext/libxml/ruby_xml_schema.c +159 -0
  70. data/ext/libxml/ruby_xml_schema.h +11 -0
  71. data/ext/libxml/ruby_xml_version.h +9 -0
  72. data/ext/libxml/ruby_xml_xinclude.c +18 -0
  73. data/ext/libxml/ruby_xml_xinclude.h +13 -0
  74. data/ext/libxml/ruby_xml_xpath.c +107 -0
  75. data/ext/libxml/ruby_xml_xpath.h +12 -0
  76. data/ext/libxml/ruby_xml_xpath_context.c +387 -0
  77. data/ext/libxml/ruby_xml_xpath_context.h +11 -0
  78. data/ext/libxml/ruby_xml_xpath_expression.c +83 -0
  79. data/ext/libxml/ruby_xml_xpath_expression.h +12 -0
  80. data/ext/libxml/ruby_xml_xpath_object.c +336 -0
  81. data/ext/libxml/ruby_xml_xpath_object.h +19 -0
  82. data/ext/libxml/ruby_xml_xpointer.c +101 -0
  83. data/ext/libxml/ruby_xml_xpointer.h +13 -0
  84. data/ext/mingw/Rakefile +34 -0
  85. data/ext/mingw/build.rake +41 -0
  86. data/ext/vc/libxml_ruby.sln +26 -0
  87. data/lib/libxml.rb +30 -0
  88. data/lib/libxml/attr.rb +111 -0
  89. data/lib/libxml/attr_decl.rb +78 -0
  90. data/lib/libxml/attributes.rb +12 -0
  91. data/lib/libxml/document.rb +190 -0
  92. data/lib/libxml/error.rb +88 -0
  93. data/lib/libxml/hpricot.rb +76 -0
  94. data/lib/libxml/html_parser.rb +94 -0
  95. data/lib/libxml/namespace.rb +60 -0
  96. data/lib/libxml/namespaces.rb +36 -0
  97. data/lib/libxml/node.rb +385 -0
  98. data/lib/libxml/ns.rb +20 -0
  99. data/lib/libxml/parser.rb +365 -0
  100. data/lib/libxml/properties.rb +21 -0
  101. data/lib/libxml/reader.rb +27 -0
  102. data/lib/libxml/sax_callbacks.rb +178 -0
  103. data/lib/libxml/sax_parser.rb +56 -0
  104. data/lib/libxml/tree.rb +27 -0
  105. data/lib/libxml/xpath_object.rb +14 -0
  106. data/lib/xml.rb +14 -0
  107. data/lib/xml/libxml.rb +8 -0
  108. data/setup.rb +1585 -0
  109. data/test/etc_doc_to_s.rb +19 -0
  110. data/test/ets_doc_file.rb +15 -0
  111. data/test/ets_doc_to_s.rb +21 -0
  112. data/test/ets_gpx.rb +26 -0
  113. data/test/ets_node_gc.rb +21 -0
  114. data/test/ets_test.xml +2 -0
  115. data/test/ets_tsr.rb +9 -0
  116. data/test/model/atom.xml +13 -0
  117. data/test/model/bands.xml +5 -0
  118. data/test/model/books.xml +146 -0
  119. data/test/model/merge_bug_data.xml +58 -0
  120. data/test/model/ruby-lang.html +238 -0
  121. data/test/model/rubynet.xml +79 -0
  122. data/test/model/rubynet_project +1 -0
  123. data/test/model/shiporder.rnc +28 -0
  124. data/test/model/shiporder.rng +86 -0
  125. data/test/model/shiporder.xml +23 -0
  126. data/test/model/shiporder.xsd +31 -0
  127. data/test/model/soap.xml +27 -0
  128. data/test/model/xinclude.xml +5 -0
  129. data/test/tc_attr.rb +170 -0
  130. data/test/tc_attr_decl.rb +131 -0
  131. data/test/tc_attributes.rb +133 -0
  132. data/test/tc_deprecated_require.rb +11 -0
  133. data/test/tc_document.rb +113 -0
  134. data/test/tc_document_write.rb +118 -0
  135. data/test/tc_dtd.rb +123 -0
  136. data/test/tc_error.rb +136 -0
  137. data/test/tc_html_parser.rb +138 -0
  138. data/test/tc_namespace.rb +59 -0
  139. data/test/tc_namespaces.rb +174 -0
  140. data/test/tc_node.rb +181 -0
  141. data/test/tc_node_cdata.rb +49 -0
  142. data/test/tc_node_comment.rb +30 -0
  143. data/test/tc_node_copy.rb +40 -0
  144. data/test/tc_node_edit.rb +158 -0
  145. data/test/tc_node_text.rb +69 -0
  146. data/test/tc_node_write.rb +83 -0
  147. data/test/tc_node_xlink.rb +26 -0
  148. data/test/tc_parser.rb +330 -0
  149. data/test/tc_parser_context.rb +186 -0
  150. data/test/tc_properties.rb +36 -0
  151. data/test/tc_reader.rb +284 -0
  152. data/test/tc_relaxng.rb +51 -0
  153. data/test/tc_sax_parser.rb +274 -0
  154. data/test/tc_schema.rb +51 -0
  155. data/test/tc_traversal.rb +220 -0
  156. data/test/tc_xinclude.rb +19 -0
  157. data/test/tc_xml.rb +224 -0
  158. data/test/tc_xpath.rb +193 -0
  159. data/test/tc_xpath_context.rb +78 -0
  160. data/test/tc_xpath_expression.rb +35 -0
  161. data/test/tc_xpointer.rb +72 -0
  162. data/test/test_suite.rb +33 -0
  163. metadata +260 -0
data/CHANGES ADDED
@@ -0,0 +1,481 @@
1
+ == 1.1.3 / 2009-03-18 Charlie Savage
2
+
3
+ * Improve performance 10 to 20% by turning on libxml2's dictionary
4
+ feature that allows parsers to reuse previously parsed strings.
5
+
6
+ * Fix XML::Node#remove! to work correctly with libxml's dictionary feature.
7
+
8
+ * Correctly set up parser context options.
9
+
10
+ * Simplify DOM modification code (Node#next=, Node#prev=, Node#sibling=) and
11
+ update documentation.
12
+
13
+ * Deprecated Node#add_child and Node#child=, use Node#<< instead
14
+
15
+ * Fix documentation for Node#<<
16
+
17
+ * Added Document#import to enable moving nodes from one document
18
+ to another document.
19
+
20
+
21
+ == 1.1.2 / 2009-03-12 Charlie Savage
22
+
23
+ * Added XML::Node#inner_xml helper method.
24
+
25
+ * Fix segmentation that could occur when calling the mark function on a
26
+ previously freed node.
27
+
28
+ == 1.1.1 / 2009-03-10 Charlie Savage
29
+
30
+ * Fix - Only include extra html parser context methods for versions of libxml
31
+ older than 2.6.27.
32
+
33
+ == 1.1.0 / 2009-03-09 Charlie Savage
34
+
35
+ * Fix bug caused by the mark function being called on partially initialized
36
+ attributes.
37
+
38
+ * Revert back to libxml2's internal memory manager.
39
+
40
+ == 1.0.0 / 2009-03-05 Charlie Savage
41
+
42
+ * OS X (Charlie Savage). Update bindings to support the default installed
43
+ version of libxml2 (2.6.16) on OS X 10.5 and the latest version available
44
+ via MacPorts.
45
+
46
+ == 0.9.9 / 2009-03-05 Charlie Savage
47
+
48
+ * Ruby 1.9.1 support (Charlie Savage). libxml-ruby now compiles and runs on either
49
+ 1.8.6 and 1.9.1. With 1.8.6 all tests should pass while on 1.9.1 all but
50
+ for encoding tests pass. The port to Ruby 1.9.1 revealed two memory
51
+ allocation bugs (one with dtds, one with nodes) which are now fixed.
52
+
53
+ * Better OS X support (Joe Khoobyar). The default version of libxml2
54
+ on OS X 10.5 is fairly old, resulting in this link error:
55
+
56
+ NSLinkModule() error
57
+ dyld: Symbol not found: _htmlNewParserCtxt
58
+
59
+ This can be fixed by using MacPorts to get a newer version of libxml2.
60
+ To make use of MacPorts, the build script has been updated to use xml2-config.
61
+ This can be fine-tuned using the new --with-xml2-config / --without-xml2-config
62
+ options to extconf.rb (default is --without-xml2-config to match existing behavior).
63
+
64
+ * Greatly reduced memory usage (Joe Khoobyar).
65
+ See http://rubyforge.org/pipermail/libxml-devel/2009-February/001375.html.
66
+
67
+ * Add Document#xhtml? and document#node_type methods (Joe Khoobyar)
68
+
69
+ * Add XPath::Object#last (Joe Khoobyar)
70
+
71
+ * Provide finer control over CDATA nodes on a parser by parser basis (Joe Khoobyar).
72
+
73
+ * Bug fix - Namespaces were incorrectly merged with attributes in the new sax2
74
+ handler (Charlie Savage).
75
+
76
+ * Bug fix - Support iterating over nodes and attributes even with blocks
77
+ that call remove! (Charlie Savage)
78
+
79
+ * Bug fix - If reader.node is NULL, return nil instead of crashing (Charlie Savage)
80
+
81
+ * Bug fix - Dtd's owned by documents were freed twice in some circumstances (Joe Khoobyar).
82
+
83
+ * Bug fix - Fix output escaping on attributes nodes (Joe Khoobyar).
84
+
85
+ * Bug fix - Make sure IO objects are not garbage collected when used
86
+ as parser sources (Charlie Savage).
87
+
88
+ == 0.9.8 / 2009-1-24 Charlie Savage
89
+
90
+ * Refactored XML::Parser, XML::HTMLParser, XML::SaxParser and
91
+ XML::Reader to have consistent APIs. All the parsers
92
+ now take a context object in their constructors, allowing fine
93
+ grained control over the parsers for advanced use cases. These
94
+ API changes are backwards compatible except
95
+ for XML::Reader, which now takes an optional hash table as a
96
+ second parameter in its various constructors versus an optional
97
+ boolean value.
98
+
99
+ * Updated all APIs to use the encoding constants defined
100
+ in XML::Encoding versus string values. This API change
101
+ is not backwards compatible.
102
+
103
+ * Added support for attribute declarations in DTD's via the new
104
+ XML::AttrDecl class (Len Lattanzi)
105
+
106
+ * Support libxml's content escaping capabilities for text nodes by
107
+ wrapping libxml's "xmlStringText" and "xmlStringTextNoenc"
108
+ (Joe Khoobyar).
109
+
110
+ * Updated XML::Reader#read API to return true if a node was read,
111
+ false if node was not read and raises an exception on an error.
112
+ Previously #read returned 1 if a node was read, 0 if a node was
113
+ not read and -1 for an error. This change is not backwards
114
+ compatible, but provides a more natural interface for Ruby by
115
+ allowing code like this:
116
+
117
+ while reader.read
118
+ # do stuff
119
+ end
120
+
121
+ * Changed XML::Error exception objects to return copies of nodes that
122
+ cause parse errors instead of the original node. This prevents
123
+ segmentation faults when the error is reraised.
124
+
125
+ * Added XML::Reader#node method.
126
+
127
+ * Fixed compile errors on OS X which uses an older version of libxml.
128
+
129
+ * Fixed memory leak when performing XPath searches.
130
+
131
+ * Fixed rdocs.
132
+
133
+ * Don't override libxml's default settings for entity substitution and
134
+ loading external DTDs. This may break some code - you may need to
135
+ add in a call to XML.default_substitute_entities = true or
136
+ XML.default_load_external_dtd = true.
137
+
138
+
139
+ == 0.9.7 / 2008-12-08 Charlie Savage
140
+
141
+ * Added SAX2 support. SAX handlers now define two new callbacks,
142
+ on_start_element_ns and on_end_element_ns methods. These
143
+ new callbacks support namespaces, making them superior to the older
144
+ callbacks on_start_element and on_end_element methods. The old callbacks
145
+ are still supported, but may be deprecated in the future depending
146
+ on community feedback.
147
+
148
+ * Added SAX support for libxml's structured error handling.
149
+ That menas sax handlers now define a new callback, on_error,
150
+ which takes one parameter, an instance of XML::Error. The older
151
+ on_parser_error, on_parser_warning and on_parser_fatal_error
152
+ callbacks are no longer suported so you must port your code.
153
+ Note that the older callbacks took one string parameter, instead of
154
+ an XML::Error object.
155
+
156
+ * Experimental work-around for libxml error handling bug - see
157
+ http://mail.gnome.org/archives/xml/2008-December/msg00014.html
158
+ for more information.
159
+
160
+ * Fix compilation bugs on Solaris.
161
+
162
+ * Fix Rdoc compilation bug.
163
+
164
+
165
+ == 0.9.6 / 2008-12-08 Charlie Savage
166
+
167
+ * Refactored namespace handling. The existing, and inconsistent,
168
+ namespace methods defined on XML::Node have been deprecated.
169
+ They have been replaced by a the new XML::Namespaces class.
170
+ Use this class to inspect a node's namespace, its default
171
+ namespace, its namespace definitions and which namespaces
172
+ are in scope. It can be accessed via the the
173
+ XML::Node#namespaces method.
174
+
175
+ * Rationalized XML::Document#save, XML::Document#to_s and
176
+ XML::Node#to_s to take an optional hash table of parameters
177
+ that control how output is generated. Supported parameters
178
+ include setting indentation on or off, the indentation level
179
+ and the output encoding. This is an API change and may break
180
+ existing calls to XML::Document#save. However, the previous
181
+ API was broken - setting the encoding resulted in an error so
182
+ its unlikely anyone is using it.
183
+
184
+ * Rationalized XML::Document#debug, XML::Node#debug, XML::XPath::XPathObject#Debug.
185
+
186
+ * Deprecated a number of duplicate dump* and debug_* methods in
187
+ XML::Document and XML::Node.
188
+
189
+ * Additional Ruby 1.9.1 compatability fixes.
190
+
191
+ * Cleaned up header file guards.
192
+
193
+ == 0.9.5 / 2008-11-29 Charlie Savage
194
+
195
+ * Ruby 1.9.1 preview release compatability (Felipe Contreras)
196
+
197
+ * Update Node#remove! to return the removed node and to set
198
+ its document to nil. This allows the node to be either
199
+ moved to another document, another part of the same document
200
+ or to be freed on the next garbage collection once its
201
+ references have gone out of scope.
202
+
203
+ * Fix bug where XPathExpression#compile mistakenly overwrote
204
+ RegExp#compile.
205
+
206
+ * Update Node to use standard ruby allocators and initializers.
207
+
208
+ * Update HTML parser to be more forgiving of invalid documents.
209
+
210
+ * Update include paths for Darwin Ports on OS X.
211
+
212
+ * Updated C code base to use BSD/Allman style
213
+
214
+
215
+ == 0.9.4 / 2008-11-24 Charlie Savage
216
+
217
+ * Update HTML parser so that it can read files, strings and io
218
+ streams.
219
+
220
+ * Update HTML parser to support user specified encodings.
221
+
222
+ * Additional C code cleanup.
223
+
224
+ == 0.9.3 / 2008-11-22 Charlie Savage
225
+
226
+ * Fixed segmentation fault caused by documents being freed
227
+ before xpath results that referenced the document (take 2).
228
+
229
+ * Allowed sax parser to use io stream
230
+
231
+ * Combined encoding and input classes
232
+
233
+ * Cleaned up C code - removed remaining legacy structures,
234
+ added static to most methods, changed C namespace from ruby_xml
235
+ to rxml
236
+
237
+ == 0.9.2 / 2008-11-19 Charlie Savage
238
+
239
+ * Add support for compiled XPath expressions (donated by Pavel Valodzka)
240
+
241
+ * Fixes for compiling on OS X 10.5.4 and 10.5.5
242
+
243
+ == 0.9.1 / 2008-11-18 Charlie Savage
244
+
245
+ * Expose LibXML's encoding support via a new Encoding object.
246
+
247
+ * Revamp error handling to be much easier to use. Errors are now
248
+ wrapped by the new XML::Error class and are thrown as exceptions
249
+ when it is appropriate.
250
+
251
+ * Fixed segmentation fault caused by documents being freed
252
+ before xpath results that referenced the document.
253
+
254
+ * Add Node#register_default_namespace to simplify default namespace handling.
255
+
256
+ * Significantly improve documentation
257
+
258
+ * A number of bug fixes and patches.
259
+
260
+ == 0.9.0 / 2008-11-18 Charlie Savage
261
+
262
+ * Version 0.9.0 was removed due to packaging errors.
263
+
264
+
265
+ == 0.8.3 / 2008-07-21 Charlie Savage
266
+
267
+ * Missed several files in last release
268
+
269
+ == 0.8.2 / 2008-07-21 Charlie Savage
270
+
271
+ * To use LibXML you can either require 'xml' or require 'libxml'.
272
+ The differences is that require 'xml' mixes the LibXML module into
273
+ the global namespace, thereby allowing you to write code such
274
+ as document = XML::Document.new. Note that this is different
275
+ from 0.8.0 and 0.8.1 and may require updating your code.
276
+
277
+ * Support RelaxNG validation (thanks to Morus Walter)
278
+
279
+ * Support passing IO objects to XmlReaders (thanks to Tom Hughes)
280
+
281
+ * Fix segmentation fault caused by adding an attribute to a CDATA node
282
+
283
+ * Moved node checking functions from C to Ruby
284
+
285
+ * Improved Windows support - libxml-ruby should now work out of the box.
286
+
287
+ * Improved Windows support - turned on libxml's zlib and iconv support.
288
+
289
+
290
+ == 0.8.1 / 2008-07-09 Charlie Savage
291
+
292
+ * Reimplmented Node#each_attr for backwards compatability
293
+
294
+ * Moved node type test to Ruby.
295
+
296
+
297
+ == 0.8.0 / 2008-07-09 Charlie Savage
298
+
299
+ * Fixed bug in returning attributes from XPath results
300
+
301
+ * Fixed DOM traversal methods
302
+
303
+ * Changed Node#children to return an array of nodes
304
+
305
+ * Fixed bug in returning attributes from XPath results
306
+
307
+ * Refactored XPath support, providing more user hooks in the XPath::Context class
308
+
309
+ * Added Node#properties for backwards compatibility
310
+
311
+ * Updated setup.rb
312
+
313
+ * Added more tests
314
+
315
+ * Updated rdocs and README file
316
+
317
+ * Moved libxml into LibXML namespace
318
+
319
+
320
+ == 0.7.0 / 2008-07-09 Charlie Savage
321
+
322
+ * Added new attributes class to provide a more natural way of working with attributes
323
+
324
+ * Fixed XML::Attr to better support namespaces
325
+
326
+ * Added documentation on how to use namespaces with XPath
327
+
328
+ * Removed allocation of extraneous structures used to wrap nodes, namespaces and attributes
329
+
330
+ * Cleaned up tests and added new test suite
331
+
332
+ * Updated rdocs and README file
333
+
334
+ * Cleaned out most of the bug list
335
+
336
+
337
+ == 0.6.0 / 2008-07-01 Charlie Savage
338
+
339
+ * Fixed memory allocation errors in Windows. On Windows, it is essential that the same library that allocates memory must free it. Thus ALLOC calls must be matched to ruby_xfree calls, which they were not. In addition, in one case Ruby was allocating memory to be freed by libxml. On Windows, that's a segmentation fault. On Linux it might fly, but still seems like a bad idea.
340
+
341
+ * Fixed segmentation fault in xml reader expand (same xml tree freed twice)
342
+
343
+ * Applied a number of patches from Tom Bagby, including fixes for xpath segmentation faults and fixes for various memory leaks
344
+
345
+ * Cleaned up a number of compiler warnings
346
+
347
+ * Renamed libxml_so.so to libxml_ruby.so (same for xslt). That wasn't actually my original intention, but um, it kind of sort of happened. It should not be noticeable from an end-user perspective.
348
+
349
+ * Added rake files for building with MingW
350
+
351
+ * Added rake files for packing gems. Note that I did this outside the existing rake tasks because I didn't see how they were actually building the gems.
352
+
353
+ * Cleaned up the tests and added a few more based on bug reports from the Tracker and mailing list.
354
+
355
+ * Cleaned out the patch queue and went through about 1/2 the bug list
356
+
357
+
358
+ === 2007-11-16 "Dan Janowski" <danj at 3skel.com>
359
+
360
+ * Merged Dan's MEM2 branch to trunk.
361
+
362
+ == 0.5.3 /
363
+
364
+ === 2007-11-16 "Dan Janowski" <danj at 3skel.com>
365
+
366
+ * Merged Dan's MEM2 branch to trunk.
367
+
368
+
369
+ == 0.5.2 / 2007-10-10
370
+
371
+ === 2007-10-10 "Dan Janowski" <danj at 3skel.com>
372
+
373
+ * (Dan, fill in the major points of the changes you made up to here -thanks)
374
+
375
+ === 2007-01-14 "Laurent Sansonetti" <lrz at chopine.be>
376
+
377
+ * Added some preliminary RDoc comments for XML::Reader.
378
+
379
+ === 2006-12-05 "Laurent Sansonetti" <lrz at chopine.be>
380
+
381
+ * Added XML::Reader, a set of bindings to the xmlTextReader API.
382
+
383
+
384
+ == 0.3.8.4 / 2006-12-02
385
+
386
+ === 2006-04-15 "Ross Bamform" <rosco at roscopeco.co.uk>
387
+
388
+ * Implemented SAX parser callback handling.
389
+
390
+ === 2006-04-12 "Ross Bamford" <rosco at roscopeco.co.uk>
391
+
392
+ * Integrated and tested community patches.
393
+ * Defined XML::Node (hash) equality in terms of XML representation.
394
+
395
+ === 2006-04-12 "Tim Yamin" <plasmaroo at gentoo.org>
396
+
397
+ * Fixed XML::Node#content inoperable bug (plasmaroo) [patch]
398
+ * Fixed memory leak in same
399
+
400
+ === 2006-04-12 "Mark Van Holstyn" <mvette13 at gmail.com>
401
+
402
+ * Added XML::Node::Set#first (mvette13) [patch]
403
+ * Added XML::Node::Set#empty?
404
+ * Fixed XML::Node::Set#to_a
405
+ * Added XML::Node#find_first
406
+ * Added XML::Node#remove!
407
+
408
+ === 2006-03-27 "Ross Bamford" <rosco at roscopeco.co.uk>
409
+
410
+ * Integrated contributed XML::Parser.register_error_handler patch (rosco)
411
+
412
+ === 2006-02-27 "Ross Bamford" <rosco at roscopeco.co.uk>
413
+
414
+ * Fixed all multiple symbol definitions for -fno-common.
415
+ * Removed OSX -fno-common workaround.
416
+
417
+
418
+ == 0.3.6 / 2006-02-23
419
+
420
+ === 2006-02-21 "Ross Bamford" <rosco at roscopeco.co.uk>
421
+
422
+ * Patched extconf.rb with OSX -fno-common workaround
423
+ * Added gem and packaging support to Rakefile
424
+ * Moved version update to Rakefile
425
+ * Removed legacy project utility scripts
426
+
427
+ === 2005-02-19 "Ross Bamford" <rosco at roscopeco.co.uk>
428
+
429
+ * Fixed doublefree bug in ruby_xml_attr.
430
+ * Fixed small leak in parser
431
+
432
+ === 2005-12-18 "Ross Bamford" <rosco at roscopeco.co.uk>
433
+
434
+ * Updated for GCC 4.0 (community patches)
435
+ * Fixed default validation bug
436
+ * Refactored project, removed outdated files, cleaned up tests.
437
+ * Added RDoc documentation across .c files.
438
+ * Fixed up a few strings.
439
+
440
+ === 2004-04-04 "Mangler Jurgen" <et@wkv.at>
441
+
442
+ * ruby_xml_node.cz: fixed ruby_xml_node_property_set. The ill-behaviour
443
+ was, that there was added a second attribute of the same
444
+ name, when you were setting the value of an already existing
445
+ attribute.
446
+
447
+ === 2004-03-17 "Lukas Svoboda" <luks@fi.muni.cz>
448
+
449
+ * ruby_xml_node.c: ruby_xml_node_to_s now returns XML subtree dump.
450
+
451
+ === 2004-02-27 "Martin Povolny" <martin@solnet.cz>
452
+
453
+ * ruby_xml_node.c: added XML::Node.copy, this makes possible building
454
+ of xml documents from nodes taken from other xml documents
455
+ without making ruby SIGSEGV (see tests/copy_bug.rb).
456
+
457
+ === 2004-02-26 "Martin Povolny" <martin@solnet.cz>
458
+
459
+ * ruby_xml_dtd.c, ruby_xml_dtd.h, ruby_xml_schema.c, ruby_xml_schema.h:
460
+ more work on validation, now you can actually validate
461
+ document using dtd or xml schema, also solved warning and
462
+ error propagation (see tests/{dtd|schema}-test.rb).
463
+
464
+ === 2003-12-30 "Martin Povolny" <martin@solnet.cz>
465
+
466
+ * ruby_xml_dtd.c, ruby_xml_dtd.h, ruby_xml_schema.c, ruby_xml_schema.h:
467
+ prelimitary support for dtd and schema validation
468
+
469
+ === 2003-09-15 "Martin Povolny" <martin@solnet.cz>
470
+
471
+ * ruby_xml_input_cbg.c, libxml.c: added class InputCallbacks to make
472
+ possible registering custom input callbacks
473
+ handlers (xmlRegisterInputCallbacks) written in ruby
474
+
475
+ === 2003-08-01 "Martin Povolny" <martin@solnet.cz>
476
+
477
+ * ruby_xml_document.c: corrected argument handling in ruby_xml_document_find
478
+ * ruby_xml_node.c: corrected argument handling in ruby_xml_node_find
479
+
480
+
481
+