File: ChangeLog

package info (click to toggle)
libxml-ruby 0.5.2.0-3%2Blenny1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 652 kB
  • ctags: 875
  • sloc: ansic: 5,874; ruby: 1,524; xml: 144; makefile: 9
file content (426 lines) | stat: -rw-r--r-- 10,299 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
2007-09-05 15:43  danj

	* ChangeLog: svn cannot checkout the file, unknown why.

2007-09-05 15:27  danj

	* ChangeLog: VERSION 0.5.1

2007-09-05 15:23  danj

	* ext/xml/libxml.h: VERSION 0.5.1

2007-09-05 15:22  danj

	* CHANGELOG, ChangeLog: Convert from manual CHANGELOG to
	  autogenerated ChangeLog by http://ch.tudelft.nl/~arthur/svn2cl/

2007-09-05 12:51  danj

	* tests/tc_xml_html_parser.rb: maybe the html parser is changed,
	  but the html doc now gets a wrapping <p>, so the first child
	  content is not the hello. So a child.child is necessary

2007-09-05 12:47  danj

	* ext/xml/ruby_xml_node.c: _child_set now performs implicit copy
	  when adding a non-root node to another node, the return value is
	  the new node. The return value is now the new node or the
	  original if not copied. rb_warning when implicit copy done. added
	  child_add to api so return value can be used after implicit copy.

2007-09-04 20:47  danj

	* ext/xml/ruby_xml_node.c: zero sum change, notes that child=
	  cannot really return anything as ruby will only return the rhs of
	  the assignment

2007-09-04 13:02  danj

	* ext/xml/ruby_xml_node.c, rwtest/copy_bug.rb, rwtest/copy_bug2.rb,
	  rwtest/runner.rb, tests/copy_bug.rb, tests/copy_bug2.rb: fix node
	  << operator, move tests for it (copy_bug.rb, copy_bug2.rb) to
	  rwtests

2007-08-31 15:37  danj

	* ext/xml/libxml.h, ext/xml/ruby_xml_node.c: add create callback to
	  clear _private, hopefully resolving copy problems, elevate to
	  patch level 0.5.0.1

2007-08-31 15:36  danj

	* Rakefile, rwtest/doc_file.rb, rwtest/doc_to_s.rb,
	  rwtest/node_gc.rb, rwtest/runner.rb: add memtests

2007-08-30 12:50  danj

	* ext/xml/libxml.h: change version line to 0.5.0

2007-08-30 12:49  danj

	* rwtest/doc_file.rb, rwtest/test.xml: files for bug 8337

2007-08-29 18:56  danj

	* tests/tc_xml_node4.rb: since object_id will not be the same for
	  the same node, employs to parser/docuemnt sets for comparison
	  test

2007-08-29 18:37  danj

	* rwtest/doc_to_s.rb: test against bug 7945, doc.to_s leak

2007-08-29 18:28  danj

	* ext/xml/ruby_xml_document.c: fix leak doing doc.to_s, freeing the
	  result from xmlDocDump...

2007-08-29 18:00  danj

	* ext/xml/libxml.c, ext/xml/libxml.h, ext/xml/ruby_xml_attr.c,
	  ext/xml/ruby_xml_attr.h, ext/xml/ruby_xml_attribute.c,
	  ext/xml/ruby_xml_attribute.h, ext/xml/ruby_xml_document.c,
	  ext/xml/ruby_xml_document.h, ext/xml/ruby_xml_html_parser.c,
	  ext/xml/ruby_xml_node.c, ext/xml/ruby_xml_node.h,
	  ext/xml/ruby_xml_node_set.c, ext/xml/ruby_xml_parser.c,
	  ext/xml/ruby_xml_parser_context.c, ext/xml/ruby_xml_reader.c,
	  ext/xml/ruby_xml_xpath.c, ext/xml/ruby_xml_xpath_context.c,
	  ext/xml/ruby_xml_xpointer.c, rwtest, rwtest/gpx.rb,
	  rwtest/tsr.rb: initial commit of new memory management. Only 3
	  components have
	  been rewritten: node, document, attr. attribute has been removed.
	  Other modules have been modified to work with new rewritten
	  parts.

2007-08-29 17:46  danj

	* .: create branch for new memory model.

2007-01-14 21:47  lrz

	* : ===== 14.1.2007 Laurent Sansonetti <lrz at chopine.be>
	  * Added some preliminary RDoc comments for XML::Reader.

2006-12-23 18:14  roscopeco

	* : Replaced RSTRING(str)->len with RSTRING_LEN(str) for future
	  compatibility

2006-12-05 12:03  roscopeco

	* : Improved compatibility with MS Visual C:
	  * Replace void* increment and decrement with char* arithmetic.
	  * Predeclare all locals
	  * Removed -Wall (Win32 platform sdk emits *lots* of warnings)
	  * Fixed extconf for win32 libxml2 and dependencies from
	  http://www.zlatkovic.com/pub/libxml/

2006-12-05 11:56  roscopeco

	* : removed object file committed by mistake

2006-12-04 23:40  lrz

	* : ===== 5.12.2006 Laurent Sansonetti <lrz at chopine.be>
	  * Added XML::Reader, a set of bindings to the xmlTextReader API.

2006-12-02 11:06  roscopeco

	* : Merged release task fix from 0.3.8.4

2006-11-30 17:29  roscopeco

	* : Restore default config after tests to prevent wierd failures in
	  other tests

2006-11-27 10:41  roscopeco

	* : Merged from 0.3.8.3:
	  * Fixed a segfault on node.properties with empty props list
	  (patch from Michael Koziarski)
	  * Fixed version macros and release version handling

2006-11-26 12:57  roscopeco

	* : Merged contributed patches #6604, #6839, #6871
	  Slight fix to sax error formatting patch

2006-11-22 14:20  roscopeco

	* : Fixed non-inclusion of Enumerable on Node::Set

2006-11-22 12:41  roscopeco

	* : Fixed parsing with errors bug

2006-11-20 01:39  roscopeco

	* : Merged non-backward-compatible DEV_0_4 changes:
	  
	  * Implemented new HTMLParser interface
	  * Implemented new (faster) SAX callback strategy

2006-11-20 01:22  roscopeco

	* : Merged backward-compatible fixes down from DEV_0_4:
	  
	  * Tested fix of bug #4635
	  * Reimplemented attribute memory handling
	  * Fixed attribute list traversal (bug #4719)
	  * Integrated Luc Van Deuren's cdata/comment node patch
	  * Fixed test-naming bugs
	  * Fixed doc build bug
	  * Reimplemented XML::Node memory management
	  * Reimplemented node copy handling
	  * Fixed parser error handler proc early GC bug
	  * include stdarg.h on ruby_xml_document

2006-11-04 10:04  roscopeco

	* : Merged stdarg fix

2006-10-29 19:42  roscopeco

	* : Remove nodoc from libxml.rb

2006-10-20 12:31  roscopeco

	* : Fixed up new packaging to play nice with 'rake install'

2006-10-20 10:41  roscopeco

	* : Applied gem-build patch from Masashi Shimbo. See:
	  http://rubyforge.org/pipermail/libxml-devel/2006-August/000205.html

2006-10-20 10:39  roscopeco

	* : Another failing test :(

2006-10-20 10:39  roscopeco

	* : Removed debugging printouts

2006-08-15 13:53  roscopeco

	* : Fixed nodelist handling
	  
	  Patches from Stephen Veit:
	  Fixed for windows/visual C compliance
	  Fixed extconf build for Windows
	  
	  (bug 5022,
	  http://rubyforge.org/tracker/index.php?func=detail&aid=5022&group_id=494&atid=1971)

2006-08-15 13:49  roscopeco

	* : Fixed typo in reading example
	  See:
	  http://rubyforge.org/pipermail/libxml-devel/2006-June/000181.html

2006-05-31 18:22  roscopeco

	* : Bugfix: gc_mark both filename and str

2006-05-31 17:26  roscopeco

	* : Fixed a typo bug

2006-05-28 14:06  roscopeco

	* : Allow Node#[] and Node#[]= to handle symbol keys (See
	  http://rubyforge.org/pipermail/libxml-devel/2006-May/000135.html)

2006-05-28 13:29  roscopeco

	* : Applied previous node fix (See bug #4497)

2006-05-10 18:03  roscopeco

	* : Implemented Node#next= and Node#prev=

2006-05-10 18:02  roscopeco

	* : Fixed incorrect class name

2006-05-01 16:42  roscopeco

	* : Removed a duplicate definition (and corresponding warning)

2006-05-01 16:39  roscopeco

	* : dev 0.3.9

2006-04-24 19:40  roscopeco

	* : release 0.3.8

2006-04-24 19:39  roscopeco

	* : Fixed a bug in release version update

2006-04-24 19:29  roscopeco

	* : changelog/readme update for release

2006-04-24 19:17  roscopeco

	* : Fixed tarball installation to site_ruby (added libxml.rb to
	  install)

2006-04-24 18:29  roscopeco

	* : Check compiler supports -Wall before using it

2006-04-24 18:26  roscopeco

	* : Fixed rake testrunner bug

2006-04-17 13:30  roscopeco

	* : Switched .so to libxml_so and introduced libxml.rb to allow
	  easier API prototype / update
	  Fixed testcases for new require setup (use $LOADPATH rather than
	  filename require)

2006-04-17 12:02  roscopeco

	* : Fixed rdoc build in gems

2006-04-14 23:46  roscopeco

	* : Fixed a struct initialization bug I introduced

2006-04-14 14:50  roscopeco

	* : Fixed a build bug I introduced

2006-04-14 14:45  roscopeco

	* : First cut of SAX callback API

2006-04-14 14:45  roscopeco

	* : Include Enumerable

2006-04-12 12:08  roscopeco

	* : From Mark Van Holstyn (mvette13 AT gmail DOT com):
	  * Added XML::Node::Set#first
	  * Added XML::Node::Set#empty?
	  * Fixes to XML::Node::Set#to_a
	  * Added XML::Node#find_first
	  * Added XML::Node#remove!
	  
	  Also:
	  * Tested the above
	  * Defined node (hash) equality in terms of XML representation
	  * Added comparable nodes to TODOs and updated changelog

2006-04-12 10:02  roscopeco

	* : XML::Node#content fix Tim Yamin <plasmaroo AT gentoo DOT org>

2006-04-12 10:00  roscopeco

	* : Added rubygems require to example code

2006-03-27 20:49  roscopeco

	* : Implemented & tested XML::Parser.register_error_handler
	  Doc fixup (XML::DTD -> XML::Dtd)

2006-03-27 20:46  roscopeco

	* : development version roll

2006-03-21 22:41  roscopeco

	* : Updated instructions

2006-03-09 23:12  roscopeco

	* : Added RUBY_LIBXML_VER_xxx defines for libxslt checking
	  Updated release versioning in Rakefile
	  Todo update

2006-03-09 20:04  roscopeco

	* : Fixed copy/paste errors in documentation

2006-02-28 09:57  roscopeco

	* : * Ignored vi .swp files
	  * Updated Changelog
	  * Updated copyright years
	  * Removed done todos

2006-02-27 12:55  roscopeco

	* : * Fixed issues with -fno-common GCC flag
	  * Removed OSX -fno-common workaround
	  * Fixed a couple of typos

2006-02-23 18:30  roscopeco

	* : Release 0.3.6

2006-02-21 20:40  roscopeco

	* : Rearranged source layout to suit RubyGems packaging
	  Removed obsolete (Rubynet) utility scripts

2006-02-21 10:35  roscopeco

	* : Band-aid for OSX build probs

2006-02-20 11:16  roscopeco

	* : * Fixed attribute memory handling
	  (http://rubyforge.org/pipermail/libxml-devel/2005-December/000030.html)
	  * Removed a small leak in ruby_xml_node.
	  * Fixed parser memory_debug_enabled doc
	  * Updated shebang in test runner

2006-01-02 23:19  roscopeco

	* : Cleaned up casts for GCC 4.0
	  Migrated from (obsolete) STR2CSTR to StringValuePtr

2006-01-02 23:18  roscopeco

	* : Fixed Make invocation

2006-01-02 21:31  roscopeco

	* : Cleaned up casts for GCC 4.0
	  Migrated from (obsolete) STR2CSTR to StringValuePtr

2005-12-29 19:10  bshow

	* : Added "doc" to cleanfiles; added new task "pubdoc"

2005-12-29 19:10  bshow

	* : Added "doc"

2005-12-29 19:00  bshow

	* : Prevent RDoc from wrapping copyright notices

2005-12-19 20:51  roscopeco

	* : Removed (forgotten) temporary notice for documentation set

2005-12-19 20:48  roscopeco

	* : MIT license

2005-12-19 19:57  roscopeco

	* : better ignorance

2005-12-19 19:53  roscopeco

	* : Initial import