libxml-ruby 0.5.4 → 0.6.0

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 (139) hide show
  1. data/LICENSE +23 -23
  2. data/README +144 -144
  3. data/ext/libxml/extconf.rb +26 -27
  4. data/ext/libxml/libxml.c +7 -37
  5. data/ext/libxml/{libxml.h → ruby_libxml.h} +93 -98
  6. data/ext/libxml/ruby_xml_attr.c +405 -387
  7. data/ext/libxml/ruby_xml_attr.h +19 -18
  8. data/ext/libxml/ruby_xml_document.c +1111 -1115
  9. data/ext/libxml/ruby_xml_document.h +27 -24
  10. data/ext/libxml/ruby_xml_dtd.c +168 -168
  11. data/ext/libxml/ruby_xml_html_parser.c +449 -450
  12. data/ext/libxml/ruby_xml_html_parser.h +1 -1
  13. data/ext/libxml/ruby_xml_input_cbg.c +158 -158
  14. data/ext/libxml/ruby_xml_node.c +2410 -2395
  15. data/ext/libxml/ruby_xml_node.h +1 -1
  16. data/ext/libxml/ruby_xml_node_set.c +170 -170
  17. data/ext/libxml/ruby_xml_node_set.h +1 -1
  18. data/ext/libxml/ruby_xml_ns.c +153 -153
  19. data/ext/libxml/ruby_xml_ns.h +1 -1
  20. data/ext/libxml/ruby_xml_parser.c +1425 -1422
  21. data/ext/libxml/ruby_xml_parser.h +1 -1
  22. data/ext/libxml/ruby_xml_parser_context.c +750 -716
  23. data/ext/libxml/ruby_xml_parser_context.h +1 -1
  24. data/ext/libxml/ruby_xml_reader.c +900 -896
  25. data/ext/libxml/ruby_xml_sax_parser.c +485 -485
  26. data/ext/libxml/ruby_xml_sax_parser.h +1 -1
  27. data/ext/libxml/ruby_xml_schema.c +146 -142
  28. data/ext/libxml/ruby_xml_state.c +5 -6
  29. data/ext/libxml/ruby_xml_state.h +1 -0
  30. data/ext/libxml/ruby_xml_tree.c +43 -43
  31. data/ext/libxml/ruby_xml_tree.h +1 -1
  32. data/ext/libxml/ruby_xml_xinclude.c +20 -20
  33. data/ext/libxml/ruby_xml_xinclude.h +1 -1
  34. data/ext/libxml/ruby_xml_xpath.c +243 -252
  35. data/ext/libxml/ruby_xml_xpath.h +1 -1
  36. data/ext/libxml/ruby_xml_xpath_context.c +118 -118
  37. data/ext/libxml/ruby_xml_xpath_context.h +1 -1
  38. data/ext/libxml/ruby_xml_xpath_object.c +43 -29
  39. data/ext/libxml/ruby_xml_xpath_object.h +0 -1
  40. data/ext/libxml/ruby_xml_xpointer.c +100 -100
  41. data/ext/libxml/ruby_xml_xpointer.h +1 -1
  42. data/ext/libxml/ruby_xml_xpointer_context.c +21 -21
  43. data/ext/libxml/ruby_xml_xpointer_context.h +1 -1
  44. data/ext/libxml/sax_parser_callbacks.inc +213 -213
  45. data/ext/libxml/version.h +9 -9
  46. data/lib/libxml.rb +24 -3
  47. data/mingw/libiconv-2.dll +0 -0
  48. data/mingw/libxml2-2.dll +0 -0
  49. data/mingw/libxml_ruby.so +0 -0
  50. data/mingw/mingw.rake +36 -0
  51. data/test/dtd-test.rb +24 -24
  52. data/test/etc_doc_to_s.rb +1 -3
  53. data/test/ets_copy_bug.rb +21 -21
  54. data/test/ets_copy_bug2.rb +32 -32
  55. data/test/ets_copy_bug3.rb +38 -0
  56. data/test/ets_doc_file.rb +1 -0
  57. data/test/{model/default_validation_bug.rb → gc.log} +0 -0
  58. data/test/merge_bug.rb +55 -55
  59. data/test/schema-test.rb +74 -74
  60. data/test/tc_well_formed.rb +11 -0
  61. data/test/tc_xml_document.rb +52 -52
  62. data/test/tc_xml_document_write.rb +24 -24
  63. data/test/tc_xml_document_write2.rb +54 -54
  64. data/test/tc_xml_document_write3.rb +96 -96
  65. data/test/tc_xml_html_parser.rb +63 -63
  66. data/test/tc_xml_node.rb +59 -59
  67. data/test/tc_xml_node2.rb +25 -25
  68. data/test/tc_xml_node3.rb +27 -27
  69. data/test/tc_xml_node4.rb +86 -86
  70. data/test/tc_xml_node5.rb +52 -52
  71. data/test/tc_xml_node6.rb +27 -27
  72. data/test/tc_xml_node7.rb +35 -35
  73. data/test/tc_xml_node8.rb +32 -32
  74. data/test/tc_xml_node9.rb +32 -32
  75. data/test/tc_xml_node_set.rb +24 -24
  76. data/test/tc_xml_node_set2.rb +37 -37
  77. data/test/tc_xml_node_xlink.rb +28 -28
  78. data/test/tc_xml_parser.rb +190 -178
  79. data/test/tc_xml_parser2.rb +16 -17
  80. data/test/tc_xml_parser3.rb +23 -23
  81. data/test/tc_xml_parser4.rb +33 -33
  82. data/test/tc_xml_parser5.rb +27 -27
  83. data/test/tc_xml_parser6.rb +23 -23
  84. data/test/tc_xml_parser7.rb +28 -28
  85. data/test/tc_xml_parser8.rb +32 -32
  86. data/test/tc_xml_parser9.rb +11 -0
  87. data/test/tc_xml_parser_context.rb +88 -88
  88. data/test/tc_xml_reader.rb +112 -109
  89. data/test/tc_xml_sax_parser.rb +104 -94
  90. data/test/tc_xml_sax_parser2.rb +51 -0
  91. data/test/tc_xml_xinclude.rb +30 -30
  92. data/test/tc_xml_xpath.rb +38 -38
  93. data/test/tc_xml_xpath2.rb +14 -0
  94. data/test/tc_xml_xpointer.rb +78 -78
  95. data/vc/libxml.sln +20 -0
  96. data/vc/libxml.vcproj +389 -0
  97. data/work/Rakefile +247 -0
  98. data/work/task/make +26 -0
  99. data/work/task/memory +37 -0
  100. data/work/task/rdoc +39 -0
  101. data/work/task/setup +1616 -0
  102. data/work/task/test +29 -0
  103. data/work/test/ets_runner.rb +33 -0
  104. data/work/test/libxml_test.rb +3 -0
  105. data/work/test/runner.rb +0 -0
  106. data/work/test/runner_ets.rb +33 -0
  107. data/work/vc/debug/libxml.exp +0 -0
  108. data/work/vc/debug/libxml.ilk +0 -0
  109. data/work/vc/debug/libxml.lib +0 -0
  110. data/work/vc/debug/libxml.pdb +0 -0
  111. data/work/vc/debug/libxml.so +0 -0
  112. metadata +158 -189
  113. data/MANIFEST +0 -138
  114. data/NOTES +0 -9
  115. data/Rakefile +0 -38
  116. data/TODO +0 -75
  117. data/VERSION +0 -1
  118. data/log/Changelog-0.txt +0 -426
  119. data/log/Changelog.txt +0 -435
  120. data/meta/project.yaml +0 -27
  121. data/meta/unixname +0 -1
  122. data/setup.rb +0 -1472
  123. data/site/css/normal.css +0 -182
  124. data/site/img/raze-tiny.png +0 -0
  125. data/site/img/red-cube.jpg +0 -0
  126. data/site/img/xml-ruby.png +0 -0
  127. data/site/index.xml +0 -43
  128. data/site/install.xml +0 -77
  129. data/site/layout.rhtml +0 -38
  130. data/site/layout.xsl +0 -67
  131. data/site/license.xml +0 -32
  132. data/site/log/changelog.xml +0 -1324
  133. data/site/log/changelog.xsl +0 -42
  134. data/test/model/merge_bug_data.xml +0 -58
  135. data/test/model/rubynet.xml +0 -78
  136. data/test/model/rubynet_project +0 -13
  137. data/test/model/saxtest.xml +0 -5
  138. data/test/model/simple.xml +0 -7
  139. data/test/model/xinclude.xml +0 -5
data/Rakefile DELETED
@@ -1,38 +0,0 @@
1
- require File.join(File.dirname(__FILE__), "setup.rb")
2
-
3
- # Run memory tests
4
- # TODO: Ensure compile first (but only if needed) with make?
5
-
6
- desc "Run memory leak test."
7
- task :memtest do
8
-
9
- live = ENV['live']
10
-
11
- unless live
12
- $LOAD_PATH.unshift(File.expand_path('ext/libxml'))
13
- $LOAD_PATH.unshift(File.expand_path('lib'))
14
- end
15
- $LOAD_PATH.unshift('test') # NEEDED?
16
-
17
- glob = 'test/ets_*.rb'
18
-
19
- Dir[glob].each do |fn|
20
- next if File.directory?(fn)
21
- puts "test #{fn}"
22
- f=Process.fork
23
- if f.nil?
24
- require fn
25
- exit
26
- end
27
- rss_k=0
28
- while (px=Process.wait2(f,Process::WNOHANG)).nil?
29
- sleep 2
30
- rss_k2=`ps -o rss= -p #{f}`.to_i
31
- rss_k=(rss_k2>rss_k) ? rss_k2 : rss_k
32
- end
33
- pid,status=px
34
- puts "\nProcess #{pid} exited status #{status.exitstatus}, max rss(k) #{rss_k}"
35
- end
36
-
37
- end
38
-
data/TODO DELETED
@@ -1,75 +0,0 @@
1
- ==== BUGS
2
-
3
- * Some C funcs need more NULL checking, they're throwing wierd
4
- ArgumentErrors into RubyLand. See TODOs in source.
5
-
6
- ==== ENHANCEMENTS
7
-
8
- * Add warnings to each of the xpath functions if xpath isn't compiled
9
- in.
10
-
11
- * Flush out XML::XPath::Context to more closely mirror the
12
- _xmlXPathContext(libxml/xpath.h) structure.
13
-
14
- * Add XML::Node#sibling= to add siblings to an XML document
15
-
16
- * Cleanup the variable naming schemes and standardize on one. Ideas:
17
-
18
- * All VALUE encapsulated objects are prefixed with the character
19
- 'r'. rnode, rdoc, rctxt, rxpath, rxnset, rxns.
20
-
21
- * Their unwrapped C equiv drops the 'r'. Since operating with
22
- libxml isn't context less, this should help catch the cases
23
- where having routines that are libxml derived (ex: xmlNodePtr)
24
- and ruby-libxml derived (ex: ruby_xml_node) should collide in
25
- the same name space convention. This will act as a reminder
26
- and deterrant against haphazardly returning and using libxml
27
- objects when they should be passed in. ruby-libxml is a set
28
- of tools, not and end result. Put the power and options in
29
- the hands of the user and don't confine or constrain anything
30
- within reason. Just because someone can't think of a use for
31
- it doesn't mean it's not possible or useful to someone. It's
32
- the weird shit that makes a library powerful.
33
-
34
- rnode -> node
35
- rdoc -> doc
36
- rctxt -> ctxt
37
- rxpath -> xpath
38
-
39
- * Should sweep through the code and remove all instances of
40
- 'return(Qnil)' with exceptions if 'return(Qnil)' is being used for
41
- signaling an error or inability to process the document.
42
-
43
- * Need to add the ability to create namespace objects and modify them
44
- accordingly.
45
-
46
- * Need to figure out how to easily apply a namespace object to either a
47
- document or a node.
48
-
49
- * Add an XML::DTD class.
50
-
51
- * Add ability to dynamically create DTD's.
52
-
53
- * Add ability to set auto-parse on XML::Parser classes.
54
-
55
- * Add ability to set auto-set on XML::XPath classes.
56
-
57
- * What's the counter part to XML::Node#sibling= ? XML::Node#next ??
58
- There's a certain degree of othogonality that I'm missing in the API
59
- at the moment and it's picking away at my brain like a bad Dan Quale
60
- quote.
61
-
62
- * Add a way of inspecting an XML::Node so that it can be serialized.
63
-
64
- * Have XML::Node#child= accept ChildNodeLists.
65
-
66
- * Add ability to append hashes and arrays via the XML::Node#<< method.
67
-
68
- * Node (etc.) #[] should support symbol keys.
69
-
70
- * Make nodes comparable (on qualified name?)
71
-
72
- ==== Data Serialization
73
-
74
- * Need to define DTD for basic ruby types that have been XML serialized
75
- and deserialized.
data/VERSION DELETED
@@ -1 +0,0 @@
1
- 0.5.4 stable (2008-03-26)
data/log/Changelog-0.txt DELETED
@@ -1,426 +0,0 @@
1
- 2007-09-05 15:43 danj
2
-
3
- * ChangeLog: svn cannot checkout the file, unknown why.
4
-
5
- 2007-09-05 15:27 danj
6
-
7
- * ChangeLog: VERSION 0.5.1
8
-
9
- 2007-09-05 15:23 danj
10
-
11
- * ext/xml/libxml.h: VERSION 0.5.1
12
-
13
- 2007-09-05 15:22 danj
14
-
15
- * CHANGELOG, ChangeLog: Convert from manual CHANGELOG to
16
- autogenerated ChangeLog by http://ch.tudelft.nl/~arthur/svn2cl/
17
-
18
- 2007-09-05 12:51 danj
19
-
20
- * tests/tc_xml_html_parser.rb: maybe the html parser is changed,
21
- but the html doc now gets a wrapping <p>, so the first child
22
- content is not the hello. So a child.child is necessary
23
-
24
- 2007-09-05 12:47 danj
25
-
26
- * ext/xml/ruby_xml_node.c: _child_set now performs implicit copy
27
- when adding a non-root node to another node, the return value is
28
- the new node. The return value is now the new node or the
29
- original if not copied. rb_warning when implicit copy done. added
30
- child_add to api so return value can be used after implicit copy.
31
-
32
- 2007-09-04 20:47 danj
33
-
34
- * ext/xml/ruby_xml_node.c: zero sum change, notes that child=
35
- cannot really return anything as ruby will only return the rhs of
36
- the assignment
37
-
38
- 2007-09-04 13:02 danj
39
-
40
- * ext/xml/ruby_xml_node.c, rwtest/copy_bug.rb, rwtest/copy_bug2.rb,
41
- rwtest/runner.rb, tests/copy_bug.rb, tests/copy_bug2.rb: fix node
42
- << operator, move tests for it (copy_bug.rb, copy_bug2.rb) to
43
- rwtests
44
-
45
- 2007-08-31 15:37 danj
46
-
47
- * ext/xml/libxml.h, ext/xml/ruby_xml_node.c: add create callback to
48
- clear _private, hopefully resolving copy problems, elevate to
49
- patch level 0.5.0.1
50
-
51
- 2007-08-31 15:36 danj
52
-
53
- * Rakefile, rwtest/doc_file.rb, rwtest/doc_to_s.rb,
54
- rwtest/node_gc.rb, rwtest/runner.rb: add memtests
55
-
56
- 2007-08-30 12:50 danj
57
-
58
- * ext/xml/libxml.h: change version line to 0.5.0
59
-
60
- 2007-08-30 12:49 danj
61
-
62
- * rwtest/doc_file.rb, rwtest/test.xml: files for bug 8337
63
-
64
- 2007-08-29 18:56 danj
65
-
66
- * tests/tc_xml_node4.rb: since object_id will not be the same for
67
- the same node, employs to parser/docuemnt sets for comparison
68
- test
69
-
70
- 2007-08-29 18:37 danj
71
-
72
- * rwtest/doc_to_s.rb: test against bug 7945, doc.to_s leak
73
-
74
- 2007-08-29 18:28 danj
75
-
76
- * ext/xml/ruby_xml_document.c: fix leak doing doc.to_s, freeing the
77
- result from xmlDocDump...
78
-
79
- 2007-08-29 18:00 danj
80
-
81
- * ext/xml/libxml.c, ext/xml/libxml.h, ext/xml/ruby_xml_attr.c,
82
- ext/xml/ruby_xml_attr.h, ext/xml/ruby_xml_attribute.c,
83
- ext/xml/ruby_xml_attribute.h, ext/xml/ruby_xml_document.c,
84
- ext/xml/ruby_xml_document.h, ext/xml/ruby_xml_html_parser.c,
85
- ext/xml/ruby_xml_node.c, ext/xml/ruby_xml_node.h,
86
- ext/xml/ruby_xml_node_set.c, ext/xml/ruby_xml_parser.c,
87
- ext/xml/ruby_xml_parser_context.c, ext/xml/ruby_xml_reader.c,
88
- ext/xml/ruby_xml_xpath.c, ext/xml/ruby_xml_xpath_context.c,
89
- ext/xml/ruby_xml_xpointer.c, rwtest, rwtest/gpx.rb,
90
- rwtest/tsr.rb: initial commit of new memory management. Only 3
91
- components have
92
- been rewritten: node, document, attr. attribute has been removed.
93
- Other modules have been modified to work with new rewritten
94
- parts.
95
-
96
- 2007-08-29 17:46 danj
97
-
98
- * .: create branch for new memory model.
99
-
100
- 2007-01-14 21:47 lrz
101
-
102
- * : ===== 14.1.2007 Laurent Sansonetti <lrz at chopine.be>
103
- * Added some preliminary RDoc comments for XML::Reader.
104
-
105
- 2006-12-23 18:14 roscopeco
106
-
107
- * : Replaced RSTRING(str)->len with RSTRING_LEN(str) for future
108
- compatibility
109
-
110
- 2006-12-05 12:03 roscopeco
111
-
112
- * : Improved compatibility with MS Visual C:
113
- * Replace void* increment and decrement with char* arithmetic.
114
- * Predeclare all locals
115
- * Removed -Wall (Win32 platform sdk emits *lots* of warnings)
116
- * Fixed extconf for win32 libxml2 and dependencies from
117
- http://www.zlatkovic.com/pub/libxml/
118
-
119
- 2006-12-05 11:56 roscopeco
120
-
121
- * : removed object file committed by mistake
122
-
123
- 2006-12-04 23:40 lrz
124
-
125
- * : ===== 5.12.2006 Laurent Sansonetti <lrz at chopine.be>
126
- * Added XML::Reader, a set of bindings to the xmlTextReader API.
127
-
128
- 2006-12-02 11:06 roscopeco
129
-
130
- * : Merged release task fix from 0.3.8.4
131
-
132
- 2006-11-30 17:29 roscopeco
133
-
134
- * : Restore default config after tests to prevent wierd failures in
135
- other tests
136
-
137
- 2006-11-27 10:41 roscopeco
138
-
139
- * : Merged from 0.3.8.3:
140
- * Fixed a segfault on node.properties with empty props list
141
- (patch from Michael Koziarski)
142
- * Fixed version macros and release version handling
143
-
144
- 2006-11-26 12:57 roscopeco
145
-
146
- * : Merged contributed patches #6604, #6839, #6871
147
- Slight fix to sax error formatting patch
148
-
149
- 2006-11-22 14:20 roscopeco
150
-
151
- * : Fixed non-inclusion of Enumerable on Node::Set
152
-
153
- 2006-11-22 12:41 roscopeco
154
-
155
- * : Fixed parsing with errors bug
156
-
157
- 2006-11-20 01:39 roscopeco
158
-
159
- * : Merged non-backward-compatible DEV_0_4 changes:
160
-
161
- * Implemented new HTMLParser interface
162
- * Implemented new (faster) SAX callback strategy
163
-
164
- 2006-11-20 01:22 roscopeco
165
-
166
- * : Merged backward-compatible fixes down from DEV_0_4:
167
-
168
- * Tested fix of bug #4635
169
- * Reimplemented attribute memory handling
170
- * Fixed attribute list traversal (bug #4719)
171
- * Integrated Luc Van Deuren's cdata/comment node patch
172
- * Fixed test-naming bugs
173
- * Fixed doc build bug
174
- * Reimplemented XML::Node memory management
175
- * Reimplemented node copy handling
176
- * Fixed parser error handler proc early GC bug
177
- * include stdarg.h on ruby_xml_document
178
-
179
- 2006-11-04 10:04 roscopeco
180
-
181
- * : Merged stdarg fix
182
-
183
- 2006-10-29 19:42 roscopeco
184
-
185
- * : Remove nodoc from libxml.rb
186
-
187
- 2006-10-20 12:31 roscopeco
188
-
189
- * : Fixed up new packaging to play nice with 'rake install'
190
-
191
- 2006-10-20 10:41 roscopeco
192
-
193
- * : Applied gem-build patch from Masashi Shimbo. See:
194
- http://rubyforge.org/pipermail/libxml-devel/2006-August/000205.html
195
-
196
- 2006-10-20 10:39 roscopeco
197
-
198
- * : Another failing test :(
199
-
200
- 2006-10-20 10:39 roscopeco
201
-
202
- * : Removed debugging printouts
203
-
204
- 2006-08-15 13:53 roscopeco
205
-
206
- * : Fixed nodelist handling
207
-
208
- Patches from Stephen Veit:
209
- Fixed for windows/visual C compliance
210
- Fixed extconf build for Windows
211
-
212
- (bug 5022,
213
- http://rubyforge.org/tracker/index.php?func=detail&aid=5022&group_id=494&atid=1971)
214
-
215
- 2006-08-15 13:49 roscopeco
216
-
217
- * : Fixed typo in reading example
218
- See:
219
- http://rubyforge.org/pipermail/libxml-devel/2006-June/000181.html
220
-
221
- 2006-05-31 18:22 roscopeco
222
-
223
- * : Bugfix: gc_mark both filename and str
224
-
225
- 2006-05-31 17:26 roscopeco
226
-
227
- * : Fixed a typo bug
228
-
229
- 2006-05-28 14:06 roscopeco
230
-
231
- * : Allow Node#[] and Node#[]= to handle symbol keys (See
232
- http://rubyforge.org/pipermail/libxml-devel/2006-May/000135.html)
233
-
234
- 2006-05-28 13:29 roscopeco
235
-
236
- * : Applied previous node fix (See bug #4497)
237
-
238
- 2006-05-10 18:03 roscopeco
239
-
240
- * : Implemented Node#next= and Node#prev=
241
-
242
- 2006-05-10 18:02 roscopeco
243
-
244
- * : Fixed incorrect class name
245
-
246
- 2006-05-01 16:42 roscopeco
247
-
248
- * : Removed a duplicate definition (and corresponding warning)
249
-
250
- 2006-05-01 16:39 roscopeco
251
-
252
- * : dev 0.3.9
253
-
254
- 2006-04-24 19:40 roscopeco
255
-
256
- * : release 0.3.8
257
-
258
- 2006-04-24 19:39 roscopeco
259
-
260
- * : Fixed a bug in release version update
261
-
262
- 2006-04-24 19:29 roscopeco
263
-
264
- * : changelog/readme update for release
265
-
266
- 2006-04-24 19:17 roscopeco
267
-
268
- * : Fixed tarball installation to site_ruby (added libxml.rb to
269
- install)
270
-
271
- 2006-04-24 18:29 roscopeco
272
-
273
- * : Check compiler supports -Wall before using it
274
-
275
- 2006-04-24 18:26 roscopeco
276
-
277
- * : Fixed rake testrunner bug
278
-
279
- 2006-04-17 13:30 roscopeco
280
-
281
- * : Switched .so to libxml_so and introduced libxml.rb to allow
282
- easier API prototype / update
283
- Fixed testcases for new require setup (use $LOADPATH rather than
284
- filename require)
285
-
286
- 2006-04-17 12:02 roscopeco
287
-
288
- * : Fixed rdoc build in gems
289
-
290
- 2006-04-14 23:46 roscopeco
291
-
292
- * : Fixed a struct initialization bug I introduced
293
-
294
- 2006-04-14 14:50 roscopeco
295
-
296
- * : Fixed a build bug I introduced
297
-
298
- 2006-04-14 14:45 roscopeco
299
-
300
- * : First cut of SAX callback API
301
-
302
- 2006-04-14 14:45 roscopeco
303
-
304
- * : Include Enumerable
305
-
306
- 2006-04-12 12:08 roscopeco
307
-
308
- * : From Mark Van Holstyn (mvette13 AT gmail DOT com):
309
- * Added XML::Node::Set#first
310
- * Added XML::Node::Set#empty?
311
- * Fixes to XML::Node::Set#to_a
312
- * Added XML::Node#find_first
313
- * Added XML::Node#remove!
314
-
315
- Also:
316
- * Tested the above
317
- * Defined node (hash) equality in terms of XML representation
318
- * Added comparable nodes to TODOs and updated changelog
319
-
320
- 2006-04-12 10:02 roscopeco
321
-
322
- * : XML::Node#content fix Tim Yamin <plasmaroo AT gentoo DOT org>
323
-
324
- 2006-04-12 10:00 roscopeco
325
-
326
- * : Added rubygems require to example code
327
-
328
- 2006-03-27 20:49 roscopeco
329
-
330
- * : Implemented & tested XML::Parser.register_error_handler
331
- Doc fixup (XML::DTD -> XML::Dtd)
332
-
333
- 2006-03-27 20:46 roscopeco
334
-
335
- * : development version roll
336
-
337
- 2006-03-21 22:41 roscopeco
338
-
339
- * : Updated instructions
340
-
341
- 2006-03-09 23:12 roscopeco
342
-
343
- * : Added RUBY_LIBXML_VER_xxx defines for libxslt checking
344
- Updated release versioning in Rakefile
345
- Todo update
346
-
347
- 2006-03-09 20:04 roscopeco
348
-
349
- * : Fixed copy/paste errors in documentation
350
-
351
- 2006-02-28 09:57 roscopeco
352
-
353
- * : * Ignored vi .swp files
354
- * Updated Changelog
355
- * Updated copyright years
356
- * Removed done todos
357
-
358
- 2006-02-27 12:55 roscopeco
359
-
360
- * : * Fixed issues with -fno-common GCC flag
361
- * Removed OSX -fno-common workaround
362
- * Fixed a couple of typos
363
-
364
- 2006-02-23 18:30 roscopeco
365
-
366
- * : Release 0.3.6
367
-
368
- 2006-02-21 20:40 roscopeco
369
-
370
- * : Rearranged source layout to suit RubyGems packaging
371
- Removed obsolete (Rubynet) utility scripts
372
-
373
- 2006-02-21 10:35 roscopeco
374
-
375
- * : Band-aid for OSX build probs
376
-
377
- 2006-02-20 11:16 roscopeco
378
-
379
- * : * Fixed attribute memory handling
380
- (http://rubyforge.org/pipermail/libxml-devel/2005-December/000030.html)
381
- * Removed a small leak in ruby_xml_node.
382
- * Fixed parser memory_debug_enabled doc
383
- * Updated shebang in test runner
384
-
385
- 2006-01-02 23:19 roscopeco
386
-
387
- * : Cleaned up casts for GCC 4.0
388
- Migrated from (obsolete) STR2CSTR to StringValuePtr
389
-
390
- 2006-01-02 23:18 roscopeco
391
-
392
- * : Fixed Make invocation
393
-
394
- 2006-01-02 21:31 roscopeco
395
-
396
- * : Cleaned up casts for GCC 4.0
397
- Migrated from (obsolete) STR2CSTR to StringValuePtr
398
-
399
- 2005-12-29 19:10 bshow
400
-
401
- * : Added "doc" to cleanfiles; added new task "pubdoc"
402
-
403
- 2005-12-29 19:10 bshow
404
-
405
- * : Added "doc"
406
-
407
- 2005-12-29 19:00 bshow
408
-
409
- * : Prevent RDoc from wrapping copyright notices
410
-
411
- 2005-12-19 20:51 roscopeco
412
-
413
- * : Removed (forgotten) temporary notice for documentation set
414
-
415
- 2005-12-19 20:48 roscopeco
416
-
417
- * : MIT license
418
-
419
- 2005-12-19 19:57 roscopeco
420
-
421
- * : better ignorance
422
-
423
- 2005-12-19 19:53 roscopeco
424
-
425
- * : Initial import
426
-