blob: 1675186756b4ba83826d7204055ff814dbc8d419 [file] [log] [blame]
Daniel Veillardd9d32ae2003-07-05 20:32:43 +00001Sat Jul 5 22:30:25 CEST 2003 Daniel Veillard <daniel@veillard.com>
2
3 * parser.c HTMLparser.c: use the character() SAX callback
4 if the cdataBlock ain't defined.
5 * xpath.c: fix bug #115349 allowing compilation when configured
6 with --without-xpath since the Schemas code needs NAN and co.
7
William M. Brack59002e72003-07-04 17:01:59 +00008Sat Jul 5 00:51:30 HKT 2003 William Brack <wbrack@mmm.com.hk>
9
10 Fixed problem with multi-threading, shown by the test program
11 testThreads. After fix, ran mutiple tests on various speed
12 machines (single and dual processor X86), which all seem okay.
13
14 * catalog.c: added missing xmlRMutexUnlock in xmlLoadCatalog
15
16 * threads.c: added missing initialisation for condition variable
17 in xmlNewRMutex.
18
Daniel Veillardde2a67b2003-06-21 14:20:04 +000019Sat Jun 21 16:10:24 CEST 2003 Daniel Veillard <daniel@veillard.com>
20
21 Applying IPv6 patch from Archana Shah <archana.shah@wipro.com>
22 closing bug #114837
23
24 * configure.in: Added checks for IPv6 support and getaddrinfo().
25
26 * acconfig.h: Defined HAVE_GETADDRINFO and SUPPORT_IP6.
27
28 * config.h.in: Defined HAVE_GETADDRINFO and SUPPORT_IP6.
29
30 * nanoftp.c: Structure xmlNanoFTPCtxt contains either sockaddr_storage
31 field or sockaddr_in field, depending upon the availability of IPv6
32 support.
33 have_ipv6(): Added to check for run-time IPv6 support.
34 (xmlNanoFTPScanURL), (xmlNanoFTPUpdateURL), (xmlNanoFTPScanProxy):
35 Modified to parse a URI with IPv6 address given in [].
36 (xmlNanoFTPConnect): Changed to use getaddrinfo for address
37 resolution, if it is available on the system, as gethostbyname
38 does not return IPv6 addresses on some platforms.
39 (xmlNanoFTPGetConnection): Modified type of dataAddr variable to
40 sockaddr_storage or sockaddr_in depending upon the IPv6 support.
41 Sending EPSV, EPRT or PASV, PORT depending upon the type of address
42 we are dealing with.
43
44 * nanohttp.c: (have_ipv6): Added to check for run-time IPv6 support.
45 (xmlNanoHTTPScanURL), (xmlNanoHTTPScanProxy): Modified to parse
46 a URI with IPv6 address given in [].
47 (xmlNanoHTTPConnectHost): Modified to use getaddrinfo if it is
48 available on the system. Also IPv6 addresses will be resolved by
49 gethostbyname only if IPv6 run-time support is available.
50 (xmlNanoHTTPConnectAttempt): Modified to deal with IPv6 address.
51
Igor Zlatkovic72f92a82003-06-14 16:48:26 +000052Sat Jun 14 18:46:51 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com>
53
54 * win32/configure.js include/win32config.h
55 include/libxml/xmlversion.h.in: Applied the patch for BCB
56 by Eric Zurcher.
57
Daniel Veillardd7cec922003-06-13 12:30:10 +000058Fri Jun 13 14:27:19 CEST 2003 Daniel Veillard <daniel@veillard.com>
59
60 * doc/Makefile.am doc/html/*: reverted back patch for #113521,
61 due to #115104 and while fixing #115101 . HTML URLs must not
62 be version dependant.
63
Daniel Veillard8265a182003-06-13 10:05:56 +000064Fri Jun 13 12:03:30 CEST 2003 Daniel Veillard <daniel@veillard.com>
65
66 * entities.c: do not generate &quot; for " outside of attributes
67 * result//*: this changes the output of some tests
68
Daniel Veillard4e9b1bc2003-06-09 10:30:33 +000069Mon Jun 9 12:28:58 CEST 2003 Daniel Veillard <daniel@veillard.com>
70
71 * parser.c xmlIO.c: trying to fix #114277 about when file
72 remapping and escaping should really be attempted.
73
Daniel Veillarda37aab82003-06-09 09:10:36 +000074Mon Jun 9 11:06:09 CEST 2003 Daniel Veillard <daniel@veillard.com>
75
76 * doc/*: applied a patch from Gman for building docs
77 * valid.c xmllint.c include/libxml/valid.h: applied a patch from
78 Gary Pennington to provide an allocator for xmlValidCtxt
79 * xmlreader.c: applied patch from Jacek Konieczny fixing bug
80 #113580 about data not being passed immediately.
81
Daniel Veillarde1326112003-06-05 09:32:20 +000082Thu Jun 5 11:31:02 CEST 2003 Daniel Veillard <daniel@veillard.com>
83
84 * tree.c: applied a couple of patches from Mark Itzcovitz
85 to handle saving back "UTF-16" documents.
86
Daniel Veillarda84c0b32003-06-02 16:58:46 +000087Mon Jun 2 21:56:15 MVT 2003 Daniel Veillard <daniel@veillard.com>
88
89 * relaxng.c xmlschemas.c include/libxml/schemasInternals.h: commiting
90 some work done while in the Maldives (hence the timezone on the
91 laptop !)
92 * result/schemas/length3* test/schemas/deter0_*
93 test/schemas/group0_*: some tests added too
94
Daniel Veillard8caa9c22003-06-02 13:35:24 +000095Mon Jun 2 15:34:17 CEST 2003 Daniel Veillard <daniel@veillard.com>
96
97 * encoding.c: small fix
98 * xmlIO.c: fixed an error message
99
Daniel Veillard0e0f37a2003-05-20 12:22:41 +0000100Tue May 20 14:21:23 CEST 2003 Daniel Veillard <daniel@veillard.com>
101
102 * parserInternals.c: fixing Red Hat bug #91013 where xmllint was
103 accepting an improper UTF8 sequence
104
Igor Zlatkovic84f8c6d2003-05-17 10:55:38 +0000105Sat May 17 12:53:11 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com>
106
107 * threads.c: applied the patch from Stéphane Bidoul for getting
108 rid of extra threads in a dynamic library.
Igor Zlatkovicfb7f0842003-05-17 11:31:20 +0000109 * win32/configure.js: threads default to 'native' now.
Igor Zlatkovic84f8c6d2003-05-17 10:55:38 +0000110
Daniel Veillard5f5b7bb2003-05-16 17:19:40 +0000111Fri May 16 13:17:52 EDT 2003 Daniel Veillard <daniel@veillard.com>
112
113 * HTMLtree.c: fixing bug #112904: html output method escaped
114 plus sign character in URI attribute.
115
Daniel Veillard781ac8b2003-05-15 22:11:36 +0000116Thu May 15 18:06:18 EDT 2003 Daniel Veillard <daniel@veillard.com>
117
118 * build_glob.py global.data globals.c parser.c
119 include/libxml/globals.h: patch from Stéphane Bidoul for setting
120 up threads global defaults.
121 * doc/libxml2-api.xml: this extends the API with new functions
122 * python/tests/Makefile.am python/tests/reader2.py
123 python/tests/thread2.py: integrated the associated testcase and
124 fixed the error string used in reader2
125
Daniel Veillard38b80a82003-05-14 18:59:00 +0000126Wed May 14 14:56:46 EDT 2003 Daniel Veillard <daniel@veillard.com>
127
128 * configure.in libxml.spec.in python/Makefile.am: trying
129 to conciliate --with-python= requirements and RPM builds,
130 a PITA really...
131
Daniel Veillard104caa32003-05-13 22:54:05 +0000132Tue May 13 18:30:34 EDT 2003 Daniel Veillard <daniel@veillard.com>
133
134 * HTMLparser.c: oops last commit introduced a memory leak.
135
Daniel Veillarde8b09e42003-05-13 22:14:13 +0000136Tue May 13 18:10:38 EDT 2003 Daniel Veillard <daniel@veillard.com>
137
138 * xmllint.c doc/xmllint.xml: added --nonet option
139 * doc/Makefile.am: fixing #112803 by adding --nonet when calling
140 xsltproc or xmllint
141 * doc/xmllint.xml doc/xmllint.1: also added --schema doc and
142 rebuilt
143 * HTMLparser.c: cleaned up the HTML parser context build when
144 using an URL
145
Daniel Veillardd437d322003-05-13 21:07:01 +0000146Tue May 13 16:35:04 EDT 2003 Daniel Veillard <daniel@veillard.com>
147
148 * libxml.spec.in: added a comment about bug #112902
149
William M. Brack3dd57f72003-05-13 02:06:18 +0000150Mon May 12 21:58:00 EDT 2003 William Brack <wbrack@mmm.com.hk>
151
152 * minor cleanup of configure '--help' display
153 * error.c: enhanced xmlParserPrintFileContext to fix bug #109942
154
Daniel Veillardd72c7e32003-05-12 21:55:03 +0000155Mon May 12 17:53:30 EDT 2003 Daniel Veillard <daniel@veillard.com>
156
157 * tree.c: PI nodes in external subset were not freed :-\
158 fixes bug #112842
159
Daniel Veillard75bb3bb2003-05-12 15:25:56 +0000160Mon May 12 11:23:27 EDT 2003 Daniel Veillard <daniel@veillard.com>
161
162 * xmllint.c: added --schema option to run WXS schema validation
163 * xmlschemas.c xmlschemastypes.c include/libxml/schemasInternals.h:
164 tried to improve error reporting in the Schema code, some cleanup
165 too.
166
Daniel Veillard82bbbd42003-05-11 20:16:09 +0000167Sun May 11 16:13:20 EDT 2003 Daniel Veillard <daniel@veillard.com>
168
169 * xmlschemas.c: fixed some problems in the handling of errors,
170 and attributes addressed by references.
171 * test/schemas/* result/schemas/*: dropped the verbosity level
172 and added a couple of new tests
173
Daniel Veillardadbb0e62003-05-10 20:02:45 +0000174Sat May 10 16:01:21 EDT 2003 Daniel Veillard <daniel@veillard.com>
175
176 * relaxng.c: Stéphane Bidoul found an off by one addressing
177 error on the error handling.
178
Daniel Veillarda77cf712003-05-09 23:09:55 +0000179Fri May 9 19:08:20 EDT 2003 Daniel Veillard <daniel@veillard.com>
180
181 * xmlschemastypes.c: trying to fix #112673
182
Daniel Veillardc3ca5ba2003-05-09 22:26:28 +0000183Fri May 9 18:14:16 EDT 2003 Daniel Veillard <daniel@veillard.com>
184
185 * DOCBparser.c catalog.c parser.c relaxng.c: removed multiple
186 warning, this fixed a bug and should close #111574
187
Daniel Veillard37fc84d2003-05-09 19:38:15 +0000188Fri May 9 15:34:32 EDT 2003 Daniel Veillard <daniel@veillard.com>
189
190 * xmlschemas.c: fixing bug #104081 with xs:all with an element
191 holding minOccurs="0"
192 * test/schemas/all_* result/schemas/all_*: added some regression
193 tests for that bug
194 * xmllint.c xmlreader.c: patches from Joerg Schmitz-Linneweber and
195 Garry Pennington to compile without schemas support.
196
Daniel Veillarda067e652003-05-01 08:03:46 +0000197Thu May 1 10:02:35 CEST 2003 Daniel Veillard <daniel@veillard.com>
198
199 * tree.c: fixed a problem with xmlUnlinkNode() for DTDs.
200
Daniel Veillard61c52202003-04-30 12:20:34 +0000201Wed Apr 30 14:16:08 CEST 2003 Daniel Veillard <daniel@veillard.com>
202
203 * xml2-config.in: try to fix Red hat bug #89957, do not
204 output -L/usr/lib64
205 * xmlreader.c: fixed a typo in a comment
206
MDT 2003 John Fleck6d68f612003-04-29 13:33:21 +0000207Tue Apr 29 07:32:02 MDT 2003 John Fleck <jfleck@inkstain.ent>
208
209 * doc/tutorial/aph.html, ix01.html
210 forgot to cvs add the new files. Thanks to Roland van Laar
211 for pointing this out
212
Daniel Veillardd4330462003-04-29 12:40:16 +0000213Tue Apr 29 14:36:49 CEST 2003 Daniel Veillard <daniel@veillard.com>
214
215 * xmlschemas.c doc/libxml2-api.xml: fixing a function comment
216 * doc/Makefile.am doc/apibuild.py doc/gnome-xml.sgml: switching
217 to the XML/XSLT doc generation closing #111799
218 * doc/html/*: complete update of the HTML results
219
Igor Zlatkovica28d2362003-04-28 12:56:01 +0000220Mon Apr 28 14:51:41 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com>
221
222 * win32/defgen.xsl: fixed the conditional for unicode map,
223 removed hardcoded schema entries
224
225Mon Apr 28 02:19:00 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com>
226
227 * win32/defgen.xsl: new file, stylesheet for generating
228 win32/libxml2.def.src from doc/libxml2-api.xml
229 * win32/libxml2.def.src: is autogenerated from now on, changes
230 to this file will not appear here anymore
231
Daniel Veillard94bb2f12003-04-27 22:14:07 +0000232Mon Apr 28 00:12:11 CEST 2003 Daniel Veillard <daniel@veillard.com>
233
234 * win32/configure.js python/setup.py.in: applied patch
235 from Stéphane Bidoul for the Python bindings on the new
236 release.
237
Igor Zlatkovic34656b42003-04-27 16:00:05 +0000238Sun Apr 27 17:56:21 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com>
239
240 * debugXML.c: included libxml/uri.h for xmlCanonicPath
241 declaration
242 * win32/configure.js: thread-enabled build is now default
243 * win32/libxml2.def.src: added more exports
244
Daniel Veillard1177ca42003-04-26 22:29:54 +0000245Sun Apr 27 00:23:05 CEST 2003 Daniel Veillard <daniel@veillard.com>
246
247 * NEWS doc/*.xsl doc/*.html: updated the web site separated
248 developers from common pages, made the transition to XHTML1,
249 added validity checking to the makefile rules.
250
Daniel Veillard329456a2003-04-26 21:21:00 +0000251Sat Apr 26 23:17:51 CEST 2003 Daniel Veillard <daniel@veillard.com>
252
253 * parser.c: fix for xmlIOParseDTD same as previous and reported
254 by Petr Pajas
255
Daniel Veillardc6abc3d2003-04-26 13:27:30 +0000256Sat Apr 26 15:26:04 CEST 2003 Daniel Veillard <daniel@veillard.com>
257
258 * parser.c: applied fix to xmlSAXParseDTD from Malcolm Tredinnick
259 closing #111638
260
Daniel Veillard2b32e6f2003-04-26 12:03:54 +0000261Sat Apr 26 14:00:58 CEST 2003 Daniel Veillard <daniel@veillard.com>
262
263 * python/generator.py: fixed a problem in the generator where
264 the way functions are remapped as methods on classes was
265 not symetric and dependant on python internal hash order,
266 as reported by Stéphane Bidoul
267
MDT 2003 John Fleck8aff3b72003-04-26 03:54:07 +0000268Fri Apr 25 21:52:33 MDT 2003 John Fleck <jfleck@inkstain.net>
269
270 * doc/tutorial:
271 xmltutorial.xml
272 xmltutorial.pdf
273 *.html
274 add appendix on generating compiler flags, more indexing
275
Daniel Veillard1c960272003-04-25 23:12:22 +0000276Sat Apr 26 01:10:48 CEST 2003 Daniel Veillard <daniel@veillard.com>
277
278 * triodef.h vms/build_libxml.com: applied patch from Craig A. Berry
279 to get libxml-2.5.7 to compile on OpenVMS
280
Daniel Veillardc5573462003-04-25 16:43:49 +0000281Fri Apr 25 18:42:35 CEST 2003 Daniel Veillard <daniel@veillard.com>
282
283 * parser.c: fixing an xmlParseDTD bug raised by Petr Pajas
284
Daniel Veillardfd583412003-04-25 13:22:10 +0000285Fri Apr 25 15:20:29 CEST 2003 Daniel Veillard <daniel@veillard.com>
286
287 * doc/Makefile.am doc/xmlcatalog.1 doc/xmlcatalog_man.xml
288 doc/xmllint.1 doc/xmllint.xml: automated the generation of the
289 man page based on xsltproc and a stylesheet PI in the XML.
290
Daniel Veillarddc07e182003-04-25 10:39:38 +0000291Fri Apr 25 12:37:33 CEST 2003 Daniel Veillard <daniel@veillard.com>
292
293 * doc/xmllint.*: trying to fix #110541 where &nbsp; generated
294 character preventing rendering by the man command.
295
Daniel Veillard92fc02c2003-04-24 23:12:35 +0000296Fri Apr 25 01:09:23 CEST 2003 Daniel Veillard <daniel@veillard.com>
297
298 * NEWS configure.in: preparing release 2.5.7
299 * doc/*: updated and rebuilt the docs
300 * doc/apibuild.py: fixed the script
301
Daniel Veillardde0a0a52003-04-24 17:12:57 +0000302Thu Apr 24 19:11:12 CEST 2003 Daniel Veillard <daniel@veillard.com>
303
304 * Makefile.am doc/apibuild.py: make sure the OOM code don't
305 get in the way of the builds
306 * doc/libxml2-api.xml python/libxml2class.txt: automatic update
307
Daniel Veillarda76fe5c2003-04-24 16:06:47 +0000308Thu Apr 24 18:01:46 CEST 2003 Daniel Veillard <daniel@veillard.com>
309
310 * Makefile.am testOOM.c testOOMlib.[ch] : integrated the Out Of
311 Memory test from Havoc Pennington #109368
312 * SAX.c parser.c parserInternals.c tree.c uri.c valid.c
313 xmlmemory.c xmlreader.c xmlregexp.c include/libxml/tree.h
314 include/libxml/parser.h: a lot of memory allocation cleanups
315 based on the results of the OOM testing
316 * check-relaxng-test-suite2.py: seems I forgot to commit the
317 script.
318
Daniel Veillard18f113d2003-04-23 15:18:26 +0000319Wed Apr 23 17:16:41 CEST 2003 Daniel Veillard <daniel@veillard.com>
320
321 * xmlschemastypes.c: trivial fix for 109774 removing a warning
322
Daniel Veillard85095e22003-04-23 13:56:44 +0000323Wed Apr 23 15:49:32 CEST 2003 Daniel Veillard <daniel@veillard.com>
324
325 * DOCBparser.c SAX.c catalog.c debugXML.c parser.c: try to find
326 more places where xmlCanonicPath() must be used to convert
327 filenames to URLs, trying to fix #111088
328
Daniel Veillard54396242003-04-23 07:36:50 +0000329Wed Apr 23 09:35:12 CEST 2003 Daniel Veillard <daniel@veillard.com>
330
331 * python/libxml.c python/libxml.py: applied patch from
332 Brent M Hendricks adding binding for xmlCatalogAddLocal
333
Daniel Veillard45269b82003-04-22 13:21:57 +0000334Tue Apr 22 15:18:01 CEST 2003 Daniel Veillard <daniel@veillard.com>
335
336 * HTMLparser.c: tried to fix #98879 again in a more solid
337 way.
338
Igor Zlatkovic94f48842003-04-22 12:00:37 +0000339Tue Apr 22 13:58:43 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com>
340
341 * win32/libxml2.def.src: added more exports from the relaxng and
342 xmlreader clan
343
Daniel Veillardf431eb82003-04-22 08:37:26 +0000344Tue Apr 22 10:35:13 CEST 2003 Daniel Veillard <daniel@veillard.com>
345
346 * SAX.c test/valid/ns* test/result/ns*: applied the patch
347 provided by Brent Hendricks fixing #105992 and integrated the
348 examples in the testsuite.
349
Daniel Veillardc4f65ab2003-04-21 23:07:45 +0000350Tue Apr 22 01:06:09 CEST 2003 Daniel Veillard <daniel@veillard.com>
351
352 * TODO: updated a bit
353 * configure.in: fixed the comment, threads now default to on
354 * parserInternals.c: fixed an erroneous xmlMallocAtomic() call
355
Daniel Veillarda880b122003-04-21 21:36:41 +0000356Mon Apr 21 23:33:38 CEST 2003 Daniel Veillard <daniel@veillard.com>
357
358 * globals.c libxml.h parser.c parserInternals.c tree.c xmllint.c
359 xmlreader.c include/libxml/parser.h: a lot of performance work
360 especially the speed of streaming through the reader and push
361 interface. Some thread related optimizations. Nearly doubled the
362 speed of parsing through the reader.
363
MDT 2003 John Fleck83c8a5c2003-04-20 16:45:07 +0000364Sun Apr 20 10:36:05 MDT 2003 John Fleck <jfleck@inkstain.net>
365
366 * doc/xmllint.xml
367 * doc/xmllint.1
368 update man page to explain use of --stream
369
Daniel Veillard3c908dc2003-04-19 00:07:51 +0000370Sat Apr 19 02:03:24 CEST 2003 Daniel Veillard <daniel@veillard.com>
371
372 * DOCBparser.c HTMLparser.c c14n.c catalog.c encoding.c globals.c
373 nanohttp.c parser.c parserInternals.c relaxng.c tree.c uri.c
374 xmlmemory.c xmlreader.c xmlregexp.c xpath.c xpointer.c
375 include/libxml/globals.h include/libxml/xmlmemory.h: added
376 xmlMallocAtomic() to be used when allocating blocks which
377 do not contains pointers, add xmlGcMemSetup() and xmlGcMemGet()
378 to allow registering the full set of functions needed by
379 a garbage collecting allocator like libgc, ref #109944
380
Daniel Veillard84942712003-04-18 14:40:05 +0000381Fri Apr 18 16:37:41 CEST 2003 Daniel Veillard <daniel@veillard.com>
382
383 * configure.in: switched to have thread support enabled by default,
384 didn't got troubles with ABI compatibility on Linux, hope it
385 won't break on strange OSes, if yes, report the system ID
386 * doc/libxml2-api.xml: just rebuilt the API
387
Daniel Veillard3e59fc52003-04-18 12:34:58 +0000388Fri Apr 18 14:31:15 CEST 2003 Daniel Veillard <daniel@veillard.com>
389
390 * libxml.h include/libxml/parser.h parser.c xmlIO.c DOCBparser.c:
391 added support for large file, tested with a 3+GB instance,
392 and some cleanup.
393 * catalog.c: added a TODO
394 * Makefile.am: added some "make tests" comments
395
Daniel Veillardac297932003-04-17 12:55:35 +0000396Thu Apr 17 14:51:57 CEST 2003 Daniel Veillard <daniel@veillard.com>
397
398 * relaxng.c: some cleanups
399 * doc/xmlreader.html: extended the document to cover RelaxNG and
400 tree operations
401 * python/tests/Makefile.am python/tests/reader[46].py: added some
402 xmlReader example/regression tests
403 * result/relaxng/tutor*.err: updated the output of a number of tests
404
Daniel Veillard62163602003-04-17 09:36:38 +0000405Thu Apr 17 11:35:37 CEST 2003 Daniel Veillard <daniel@veillard.com>
406
407 * relaxng.c: valgrind pointed out an uninitialized variable error.
408
Daniel Veillard33300b42003-04-17 09:09:19 +0000409Thu Apr 17 11:06:28 CEST 2003 Daniel Veillard <daniel@veillard.com>
410
411 * include/libxml/relaxng.h relaxng.c include/libxml/xmlreader.h
412 xmlreader.c: augnemting the APIs, cleanups.
413 * parser.c: cleanup bug #111005
414 * xmlIO.c: added some missing comments
415
Daniel Veillardce192eb2003-04-16 15:58:05 +0000416Wed Apr 16 17:46:50 CEST 2003 Daniel Veillard <daniel@veillard.com>
417
418 * relaxng.c xmllint.c: more work on RelaxNG streaming validation
419 trying to improve the subset compiled, and more testing.
420 * doc/downloads.html doc/xml.html doc/xmlmem.html: some updates on the
421 documentation
422 * test/relaxng/tutor11_1_3.xml: fixes the DTD path
423 * result/relaxng/*.err: fix some of the outputs
424
Daniel Veillardf4e55762003-04-15 23:32:22 +0000425Wed Apr 16 01:28:15 CEST 2003 Daniel Veillard <daniel@veillard.com>
426
427 * relaxng.c xmlreader.c xmllint.c include/libxml/relaxng.h
428 include/libxml/xmlreader.h: implemented streaming of
429 RelaxNG (when possible) on top of the xmlReader interface,
430 provided it as xmllint --stream --relaxng .rng .xml
431 This seems to mostly work.
432 * Makefile.am: updated to test RelaxNG streaming
433
Daniel Veillardc58f4ef2003-04-14 16:11:26 +0000434Mon Apr 14 18:08:33 CEST 2003 Daniel Veillard <daniel@veillard.com>
435
436 * relaxng.c include/libxml/relaxng.h: integrated the regexp
437 based validity checking of fragments of the document for
438 which the RNG can be compiled to regexps. Works on all regression
439 tests, only fix needed is related to error messages.
440
Daniel Veillard52b48c72003-04-13 19:53:42 +0000441Sun Apr 13 21:51:00 CEST 2003 Daniel Veillard <daniel@veillard.com>
442
443 * relaxng.c xmlregexp.c include/libxml/xmlautomata.h
444 include/libxml/xmlregexp.h: Starting work precompiling
445 parts of RelaxNG schemas. Not plugged onto validity checking
446 yet, just the regexp building part. Needed to extend some
447 of the automata and regexp APIs.
448
Daniel Veillardf6bad792003-04-11 19:38:54 +0000449Fri Apr 11 21:36:21 CEST 2003 Daniel Veillard <daniel@veillard.com>
450
451 * xmllint.c xmlreader.c include/libxml/xmlreader.h: make sure
452 xmllint --stream and xmllint --stream --valid returns errors
453 code appropriately
454
Daniel Veillardc6cae7b2003-04-11 09:02:11 +0000455Fri Apr 11 10:59:24 CEST 2003 Daniel Veillard <daniel@veillard.com>
456
457 * xmlreader.c include/libxml/xmlreader.h: Added the Expand()
458 and Next() operation to work on subtrees within the reader
459 framework.
460 * doc/libxml2-api.xml python/libxml2class.txt: resulting updates
461 * python/tests/reader5.py: added an example for those new
462 functions of the reader.
463
Daniel Veillard645c6902003-04-10 21:40:49 +0000464Thu Apr 10 23:38:13 CEST 2003 Daniel Veillard <daniel@veillard.com>
465
466 * HTMLtree.c: patch from Vasily Tchekalkin to fix #109865
467
Daniel Veillard9e077102003-04-10 13:36:54 +0000468Thu Apr 10 15:32:44 CEST 2003 Daniel Veillard <daniel@veillard.com>
469
470 * xmlreader.c: fixing HasValue for namespace as raised by
471 Denys Duchier
472
Daniel Veillard02ea1412003-04-09 12:08:47 +0000473Wed Apr 9 14:07:18 CEST 2003 Daniel Veillard <daniel@veillard.com>
474
475 * HTMLparser.c include/libxml/HTMLparser.h: exported
476 htmlCreateMemoryParserCtxt() it was static
477
Daniel Veillardd3b9cd82003-04-09 11:24:17 +0000478Wed Apr 9 13:21:48 CEST 2003 Daniel Veillard <daniel@veillard.com>
479
480 * xmlschemas.c xmlschemastypes.c include/libxml/xmlschemas.h:
481 update from Charles Bozeman for date and duration types
482 * test/schemas/date_0.* test/schemas/dur_0.*
483 result/schemas/date_0.* result/schemas/dur_0.*: updated too
484
Daniel Veillardc00cda82003-04-07 10:22:39 +0000485Mon Apr 7 12:19:26 CEST 2003 Daniel Veillard <daniel@veillard.com>
486
487 * tree.c valid.c xpath.c include/libxml/tree.h include/libxml/valid.h:
488 fixing bug #107129, removing excessive allocation and calls
489 to *printf in the code to build QName strings.
490
Igor Zlatkovic69651182003-04-05 09:43:30 +0000491Sat Apr 5 11:41:36 CEST 2003 Igoe Zlatkovic <igor@zlatkovic.com>
492
493 * win32/libxml2.def.src: fixed conditional exports, reported by
494 Luke Murray.
495
Daniel Veillardadba5f12003-04-04 16:09:01 +0000496Fri Apr 4 18:08:00 CEST 2003 Daniel Veillard <daniel@veillard.com>
497
498 * parser.c: fixed a possible problem with xmlRecoverMemory()
499
Daniel Veillarda48ed3d2003-04-03 15:28:28 +0000500Thu Apr 3 17:24:44 CEST 2003 Daniel Veillard <daniel@veillard.com>
501
502 * trio.c trio.h triodef.h trionan.c trionan.h triop.h triostr.c
503 triostr.h: Bjorn sent an update for the TRIO portability layer.
504
Igor Zlatkovicd6c86502003-04-01 20:00:42 +0000505Tue Apr 1 21:57:26 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com>
506
507 * win32/libxml2.def.src: exported new functions
508
Daniel Veillardc2d4a932003-04-01 11:13:05 +0000509Tue Apr 1 13:09:46 CEST 2003 Daniel Veillard <daniel@veillard.com>
510
511 * configure.in NEWS: preparing release 2.5.6
512 * doc/*: updated and rebuilt the docs
513
Daniel Veillarde5020412003-04-01 09:55:20 +0000514Tue Apr 1 11:52:15 CEST 2003 Daniel Veillard <daniel@veillard.com>
515
516 * SAX.c: fixed an uninitialized memory access pointed by valgrind
517 on C14Ntests
518
Daniel Veillard7fe1f3a2003-03-31 22:13:33 +0000519Tue Apr 1 00:12:28 CEST 2003 Daniel Veillard <daniel@veillard.com>
520
521 * relaxng.c: one more fixup of error message reporting
522
Daniel Veillard5f1946a2003-03-31 16:38:16 +0000523Mon Mar 31 18:36:32 CEST 2003 Daniel Veillard <daniel@veillard.com>
524
525 * relaxng.c: more work on bug #109225, and fixed an uninitialized
526 variable pointed out by valgrind
527
Daniel Veillarda507fbf2003-03-31 16:09:37 +0000528Mon Mar 31 18:05:22 CEST 2003 Daniel Veillard <daniel@veillard.com>
529
530 * relaxng.c: try to work on bug #109225 and provide better
531 error reports.
532 * result/relaxng/* : this change the output of a number of tests
533 * xinclude.c: fixing the parsed entity redefinition problem
534 raised on the list.
535 * test/schemas/date_0.xsd: updated the date test c.f. E2-12
536
Daniel Veillardb3721c22003-03-31 11:22:25 +0000537Mon Mar 31 13:19:04 CEST 2003 Daniel Veillard <daniel@veillard.com>
538
539 * xmlschemastypes.c: fixed date comparison to handle the tzo
540 The only failures left are disagreements on Notations and
541 '+1' not being allowed for ulong, uint, ushort and ubyte.
542
Daniel Veillard455cc072003-03-31 10:13:23 +0000543Mon Mar 31 12:11:47 CEST 2003 Daniel Veillard <daniel@veillard.com>
544
545 * xmlschemastypes.c: fixed gMonth parsing routine accordingly
546 to the XML Schemas errata
547 http://www.w3.org/2001/05/xmlschema-errata#e2-12
548
Daniel Veillarde637c4a2003-03-30 21:10:09 +0000549Sun Mar 30 23:04:18 CEST 2003 Daniel Veillard <daniel@veillard.com>
550
551 * relaxng.c xmlschemastypes.c: more work on XML Schemas datatypes
552 and facets support. Currently only schemas with binHex or
553 base64 don't compile. A few error left in the test suite:
554 found 1035 test instances: 919 success 23 failures
555 most are gdate or gdateyear failing check, and a few cases where
556 James clark tests results are strange.
557 * valid.c: allow to reuse the Notation checking routine without
558 having a validation context.
559 * SAX.c: removed a #if 0
560
Daniel Veillardb6c7f412003-03-29 16:41:55 +0000561Sat Mar 29 17:35:05 CET 2003 Daniel Veillard <daniel@veillard.com>
562
563 * xinclude.c: forgot to apply one check from #106931 patch
564 * xmlschemastypes.c: more work on XML Schemas datatypes
565
Daniel Veillardc4c21552003-03-29 10:53:38 +0000566Sat Mar 29 11:49:25 CET 2003 Daniel Veillard <daniel@veillard.com>
567
568 * relaxng.c include/libxml/relaxng.h xmlschemastypes.c: more work
569 on cleaning up XML Schemas datatypes based on James Clark tests
570 test/xsdtest/xsdtest.xml
571
Daniel Veillard80b19092003-03-28 13:29:53 +0000572Fri Mar 28 14:24:08 CET 2003 Daniel Veillard <daniel@veillard.com>
573
574 * relaxng.c: implemented comparisons for Schemas values.
575 * xmlschemastypes.c include/libxml/xmlschemastypes.h: fixed
576 some bugs in duration handling, comparisons for durations
577 and decimals, removed all memory leaks pointed out by James
578 testsuite. Current status is now
579 found 238 test schemas: 197 success 41 failures
580 found 1035 test instances: 803 success 130 failures
581
Daniel Veillard91a13252003-03-27 23:44:43 +0000582Fri Mar 28 00:41:55 CET 2003 Daniel Veillard <daniel@veillard.com>
583
584 * xmlschemas.c include/libxml/xmlschemas.h: fixed bugs and memory
585 leaks in the W3C XML Schemas code
586 * xmlschemastypes.c: implemented nonPositiveInteger
587 * test/schemas/length2_0.xsd result/schemas/length2_0_0.err:
588 fixed the test and result.
589
Daniel Veillard6560a422003-03-27 21:25:38 +0000590Thu Mar 27 22:23:07 CET 2003 Daniel Veillard <daniel@veillard.com>
591
592 * HTMLparser.c tree.c: two patches from James Bursa on the HTML
593 parser and a typo
594 * xmlschemastypes.c: reindenting, fixing a memory access
595 problem with dates.
596
Daniel Veillard6c5b2d32003-03-27 14:55:52 +0000597Thu Mar 27 15:53:35 CET 2003 Daniel Veillard <daniel@veillard.com>
598
599 * parser.c: fixing #109227 providing more context in case of
600 start/end tag mismatch
601 * python/tests/ctxterror.py python/tests/readererr.py: update the
602 tests accordingly
603
Daniel Veillardd9b72832003-03-27 14:24:00 +0000604Thu Mar 27 15:22:41 CET 2003 Daniel Veillard <daniel@veillard.com>
605
606 * xinclude.c: should fix #109327 errors on memory accesses
607
Daniel Veillardc7e9b192003-03-27 14:08:24 +0000608Thu Mar 27 15:06:13 CET 2003 Daniel Veillard <daniel@veillard.com>
609
610 * HTMLtree.c: Fixed reopening of #78662 <form action="...">
611 is an URI reference
612
Daniel Veillarde209b332003-03-26 21:40:13 +0000613Wed Mar 26 22:38:39 CET 2003 Daniel Veillard <daniel@veillard.com>
614
615 * xpath.c: fixed bug #109160 on non-ASCII IDs
616
Daniel Veillard642104e2003-03-26 16:32:05 +0000617Wed Mar 26 17:30:37 CET 2003 Daniel Veillard <daniel@veillard.com>
618
619 * parser.c: Norm suggested a nicer error message for xml:space values
620 errors
621
Daniel Veillarde4fa2932003-03-26 00:38:10 +0000622Wed Mar 26 01:34:19 CET 2003 Daniel Veillard <daniel@veillard.com>
623
624 * xpath.c include/libxml/xpath.h: first part of the fix to
625 performance bug #108905, adds xmlXPathOrderDocElems() providing
626 document order for nodes.
627 * python/libxml.c: Python may require TRIO as Albert Chin pointed out
628
Daniel Veillard09628212003-03-25 15:10:27 +0000629Tue Mar 25 16:07:00 CET 2003 Daniel Veillard <daniel@veillard.com>
630
631 * xmlschemastypes.c: removing a warning with Sun compiler
632 bug #109154
633
MST 2003 John Fleckda271742003-03-25 14:05:17 +0000634Tue Mar 25 07:02:56 MST 2003 John Fleck <jfleck@inkstain.net>
635
636 * doc/xmllint.xml
637 * doc/xmllint.1
638 update xmllint man page with --relaxng option
639
Daniel Veillard2032d292003-03-25 11:09:40 +0000640Tue Mar 25 12:07:03 CET 2003 Daniel Veillard <daniel@veillard.com>
641
642 * python/setup.py.in : was missing "drv_libxml2.py"
643
Daniel Veillard9adc0462003-03-24 18:39:54 +0000644Mon Mar 24 19:38:05 CET 2003 Daniel Veillard <daniel@veillard.com>
645
646 * tree.c xpath.c: some changes related to the new way of
647 handling Result Value Tree, before 2.5.5
648
Daniel Veillardd8da01c2003-03-24 15:58:23 +0000649Mon Mar 24 16:36:23 CET 2003 Daniel Veillard <daniel@veillard.com>
650
651 * configure.in NEWS: preparing release 2.5.5
652 * doc/* : updated the documentation and regenerated it.
653
Daniel Veillardef0b4502003-03-24 13:57:34 +0000654Mon Mar 24 14:56:01 CET 2003 Daniel Veillard <daniel@veillard.com>
655
656 * xpath.c: fixed some problems related to #75813 about handling
657 of Result Value Trees
658
Daniel Veillard9231ff92003-03-23 22:00:51 +0000659Sun Mar 23 22:57:20 CET 2003 Daniel Veillard <daniel@veillard.com>
660
661 * uri.c: applied a set of patches from Lorenzo Viali correcting
662 URI parsing errors.
663
Daniel Veillard5f8d1a32003-03-23 21:02:00 +0000664Sun Mar 23 22:00:14 CET 2003 Daniel Veillard <daniel@veillard.com>
665
666 * parser.c: validity status was not passed back when validating in
667 entities, but raised by Oliver Fischer
668
Daniel Veillard04ee2f22003-03-23 20:31:46 +0000669Sun Mar 23 21:30:50 CET 2003 Daniel Veillard <daniel@veillard.com>
670
671 * HTMLtree.c: avoid escaping ',' in URIs
672
Daniel Veillardef8dd7b2003-03-23 12:02:56 +0000673Sun Mar 23 12:57:00 CET 2003 Daniel Veillard <daniel@veillard.com>
674
675 * parser.c: fixing bug #108976 get the ID/REFs to reference
676 the ID in the document content and not in the entity copy
677 * SAX.c include/libxml/parser.h: more checking of the ID/REF
678 stuff, better solution for #107208
679 * xmlregexp.c: removed a direct printf, dohhh
680 * xmlreader.c: fixed a bug on streaming validation of empty
681 elements in entities
682 * result/VC/ElementValid8 test/VCM/v20.xml result/valid/xhtml1.xhtml:
683 cleanup of the validation tests
684 * test/valid/id* test/valid/dtds/destfoo.ent result/valid/id*:
685 added more ID/IDREF tests to the suite
686
Daniel Veillard2cfd9df2003-03-22 22:39:16 +0000687Sat Mar 22 23:38:08 CET 2003 Daniel Veillard <daniel@veillard.com>
688
689 * xmlreader.c: fixed #107043 removing 2 warnings with Sun One
690 compiler.
691
Daniel Veillard20863822003-03-22 17:51:47 +0000692Sat Mar 22 18:50:45 CET 2003 Daniel Veillard <daniel@veillard.com>
693
694 * relaxng.c: valgrind'ed and cleaned up a couple of memory issues.
695
Daniel Veillard9ff2d472003-03-22 15:18:01 +0000696Sat Mar 22 16:15:50 CET 2003 Daniel Veillard <daniel@veillard.com>
697
698 * SAX.c: fix bug #107208 avoid false duplicates when ID/REFs are
699 defined in entities content
700
Daniel Veillard99737f52003-03-22 14:55:50 +0000701Sat Mar 22 15:53:27 CET 2003 Daniel Veillard <daniel@veillard.com>
702
703 * SAX.c: Fixed validation bug #108858 on namespace names using
704 entities and reported by Brent Hendricks
705 * xmllint.c: report xmlTextReaderHasValue() result in --stream
706 --debug output.
707
Daniel Veillard48ef4c92003-03-22 12:38:15 +0000708Sat Mar 22 13:32:39 CET 2003 Daniel Veillard <daniel@veillard.com>
709
710 * xmlreader.c: fixed bug #108801 reported by Malcolm Tredinnick
711 about the DocType node not being reported sometimes.
712 * python/tests/reader.py: added to test to the regression checks
713
Daniel Veillard120e8eb2003-03-22 01:00:34 +0000714Sat Mar 22 01:57:40 CET 2003 Daniel Veillard <daniel@veillard.com>
715
716 * xmlreader.c: fixed bug #108546 on long CDATA (or text nodes)
717 reported by Edd Dumbill
718
Daniel Veillard77a90a72003-03-22 00:04:05 +0000719Sat Mar 23 01:00:24 CET 2003 Daniel Veillard <daniel@veillard.com>
720
721 * HTMLparser.c parser.c parserInternals.c: patch from
722 johan@evenhuis.nl for #107937 fixing some line counting
723 problems, and some other cleanups.
724 * result/HTML/: this result in some line number changes
725
Daniel Veillard580ced82003-03-21 21:22:48 +0000726Fri Mar 21 22:19:14 CET 2003 Daniel Veillard <daniel@veillard.com>
727
728 * configure.in Makefile.am: fixed Red Hat bug #86118 use libxml2.spec
729 instead of libxml.spec
730 * relaxng.c: fixed some of the error reporting excessive
731 verbosity
732 * catalog.c debugXML.c valid.c xmlreader.c xmlschemas.c xpath.c
733 xmlschemastypes.c: removed some warnings from gcc
734 * doc/libxml2-api.xml: rebuilt
735
Daniel Veillarde063f482003-03-21 16:53:17 +0000736Fri Mar 21 17:25:23 CET 2003 Daniel Veillard <daniel@veillard.com>
737
738 * relaxng.c: another optimization, for choice this time
739 * result/relaxng/spec1* result/relaxng/tutor12_1*
740 result/relaxng/tutor3_7: cleanups.
741
Daniel Veillard0e3d3ce2003-03-21 12:43:18 +0000742Fri Mar 21 13:41:23 CET 2003 Daniel Veillard <daniel@veillard.com>
743
744 * relaxng.c: fixed xmlRelaxNGNodeMatchesList
745 * test/relaxng/testsuite.xml: augmented the test suite
746 * result/relaxng/spec1* result/relaxng/tutor12_1*: this fixes
747 some schemas validation tests in the presence of foreign
748 namespaces.
749
Daniel Veillardbbb78b52003-03-21 01:24:45 +0000750Fri Mar 21 02:23:34 CET 2003 Daniel Veillard <daniel@veillard.com>
751
752 * relaxng.c: added another interleave speedup.
753
Daniel Veillardef2e4ec2003-03-20 16:23:26 +0000754Thu Mar 20 17:22:00 CET 2003 Daniel Veillard <daniel@veillard.com>
755
756 * xmlschemastypes.c: added integer and fixed one of the
757 IDREFS regression tests pbm
758 * result/relaxng/docbook_0.err: updated
759
Daniel Veillard249d7bb2003-03-19 21:02:29 +0000760Wed Mar 19 21:58:47 CET 2003 Daniel Veillard <daniel@veillard.com>
761
762 * valid.c xmlschemastypes.c: attempt to cope with ID/IDREF(S)
763 declared both in the DTD and in the Schemas <grin/>
764 * relaxng.c: more debug, added a big optimization for <mixed>
765 * test/relaxng/testsuite.xml: augmented the testsuite
766 * test/relaxng/ result/relaxng: added the RelaxNG spec and a
767 DocBook example to the regression tests
768
Daniel Veillard798024a2003-03-19 10:36:09 +0000769Wed Mar 19 11:34:10 CET 2003 Daniel Veillard <daniel@veillard.com>
770
771 * check-xsddata-test-suite.py: cosmetic change for output
772 * relaxng.c: try to minimize calls to malloc/free for states.
773
Daniel Veillarda1a9d042003-03-18 16:53:17 +0000774Tue Mar 18 17:50:31 CET 2003 Daniel Veillard <daniel@veillard.com>
775
776 * tree.c: removed a warning
777 * xmlschemastypes.c: more cleanup, added ENTITY and ENTITIES
778 support
779 * check-relaxng-test-suite.py check-xsddata-test-suite.py:
780 cleanup/improvements of the regression tests batch
781 * test/relaxng/testsuite.xml: augmented libxml2 own testsuite
782
Daniel Veillard28c52ab2003-03-18 11:39:17 +0000783Tue Mar 18 12:36:22 CET 2003 Daniel Veillard <daniel@veillard.com>
784
785 * relaxng.c: fixed error msg cleanup deallocation
786 * xmlschemastypes.c: added a function to handle lists of
787 atomic types, added support for IDREFS
788
Daniel Veillardc3da18a2003-03-18 00:31:04 +0000789Tue Mar 18 01:28:15 CET 2003 Daniel Veillard <daniel@veillard.com>
790
791 * relaxng.c valid.c xmlschemastypes.c: added Datatype ID
792 and IDREF, usable from RelaxNG now
793 * include/libxml/xmlschemastypes.h: need to add a new interface
794 because the validation modifies the infoset
795 * test/relaxng/testsuite.xml: extended the testsuite
796
Daniel Veillard952379b2003-03-17 15:37:12 +0000797Mon Mar 17 16:34:07 CET 2003 Daniel Veillard <daniel@veillard.com>
798
799 * relaxng.c: fixed the last core RelaxNG bug known #107083,
800 shemas datatype ID/IDREF support still missing though.
801 * xmlreader.c: fix a crashing bug with prefix raised by
802 Merijn Broeren
803 * test/relaxng/testsuite.xml: augmented the testsuite with
804 complex inheritance tests
805
Daniel Veillardfd573f12003-03-16 17:52:32 +0000806Sun Mar 16 18:45:50 CET 2003 Daniel Veillard <daniel@veillard.com>
807
808 * relaxng.c: switched back to the previous Relax-NG code base,
809 the derivation algorithm need severe constraining code to avoid
810 combinatorial explosion. Fixed the problem with Sebastian Rahtz
811 TEI based example and other bugs
812 * result/relaxng/*err: updated the results
813 * test/relaxng/testsuite.xml: started a new test suite
814
Daniel Veillard1564e6e2003-03-15 21:30:25 +0000815Sat Mar 15 22:26:46 CET 2003 Daniel Veillard <daniel@veillard.com>
816
817 * relaxng.c include/libxml/relaxng.h: After coming to the conclusion
818 that the original RelaxNG validation code was un-fixeable, it got
819 rewritten to use the derivation algorithm from James Clark and
820 redebugged it (nearly) from scratch:
821 found 373 test schemas: 372 success 1 failures
822 found 529 test instances: 529 success 0 failures
823
Daniel Veillard39eb88b2003-03-11 11:21:28 +0000824Tue Mar 11 12:08:23 CET 2003 Daniel Veillard <daniel@veillard.com>
825
826 * SAX.c parser.c: fix some recursion problems introduced in the
827 last release.
828 * relaxng.c: more debugging of the RNG validation engine, still
829 problems though.
830
Daniel Veillard5add8682003-03-10 13:13:58 +0000831Mon Mar 10 14:10:47 CET 2003 Daniel Veillard <daniel@veillard.com>
832
833 * Makefile.am: stop generating wrong result file with * in name
834 * relaxng.c: fixing the include bug raised by Sebastian Rahtz
835 * result/relaxng/demo* test/relaxng/demo: added the tests from
836 Sebastian reproducing the problem.
837
MST 2003 John Fleck5094cb22003-03-10 01:03:53 +0000838Sun Mar 9 18:02:31 MST 2003 John Fleck <jfleck@inkstain.net>
839
Daniel Veillard5add8682003-03-10 13:13:58 +0000840 * doc/xmllint.1: regenerating man page from xmllint.xml to pick
841 up Aleksey's change
MST 2003 John Fleck5094cb22003-03-10 01:03:53 +0000842
Aleksey Sanin693c9bc2003-03-09 22:36:52 +0000843Sun Mar 9 13:53:16 2003 Aleksey Sanin <aleksey@aleksey.com>
844
845 * xmllint.c doc/xmllint.xml: use $XMLLINT_INDENT environment
846 variable to control the indentation for the xmllint "--format"
847 option
848
Igor Zlatkovic47ba1c72003-03-08 13:29:42 +0000849Sat Mar 8 14:27:43 CET 2003 Igor Zlatkovic <igor@zlatkovic.com>
850
851 * encoding.c: applied Gennady's patch against buffer overrun
852
Daniel Veillard42f12e92003-03-07 18:32:59 +0000853Fri Mar 7 19:29:40 CET 2003 Daniel Veillard <daniel@veillard.com>
854
855 * test/xsdtest/xsdtest.xml uri.c: after and exchange with James
856 Clark it appeared I had bug in URI parsing code ...
857 * relaxng.c include/libxml/relaxng.h: completely revamped error
858 reporting to not loose message from optional parts.
859 * xmllint.c: added timing for RNG validation steps
860 * result/relaxng/*: updated the result, all error messages changed
861
Daniel Veillardedfd5882003-03-07 14:20:40 +0000862Fri Mar 7 15:18:32 CET 2003 Daniel Veillard <daniel@veillard.com>
863
864 * xpath.c: fix bug #107804, the algorithm used for document order
865 computation was failing on attributes.
866
Daniel Veillard83391282003-03-06 21:37:30 +0000867Thu Mar 6 22:35:50 CET 2003 Daniel Veillard <daniel@veillard.com>
868
869 * valid.c: fix bug #107764 , possibility of buffer overflow
870 in xmlValidDebug()
871
Daniel Veillard6c73cb82003-03-05 16:45:40 +0000872Wed Mar 5 17:41:37 CET 2003 Daniel Veillard <daniel@veillard.com>
873
874 * nanoftp.c include/libxml/nanoftp.h: adding xmlNanoFTPDele()
875 from Philipp Dunkel
876
Daniel Veillard5f704af2003-03-05 10:01:43 +0000877Wed Mar 5 10:57:09 CET 2003 Daniel Veillard <daniel@veillard.com>
878
879 * xmlschemastype.c: made powten array static it should not be exported
880 * HTMLparser.c: fix bug #107361 by reusing the code from the XML
881 parser function.
882 * testHTML.c: get rid of valgrind messages on the HTML SAX tests
883
Daniel Veillard7b72ee52003-02-27 23:24:53 +0000884Fri Feb 28 00:23:00 CET 2003 Daniel Veillard <daniel@veillard.com>
885
886 * tree.c: fixed a node dump crash on attributes
887 * test/xsdtest/xsdtest.xml test/xsdtest/xsdtest.xsl: fixed
888 an URI test bug and get better output.
889
Daniel Veillard463a5472003-02-27 21:30:32 +0000890Thu Feb 27 22:28:40 CET 2003 Daniel Veillard <daniel@veillard.com>
891
892 * check-xsddata-test-suite.py: give more infos
893 * relaxng.c: fix a bug reported by Sebastian Rahtz and
894 REF->DEF in attribute values.
895
Daniel Veillardeb7189f2003-02-27 20:11:13 +0000896Thu Feb 27 21:09:32 CET 2003 Daniel Veillard <daniel@veillard.com>
897
898 * check-xsddata-test-suite.py test/xsdtest/xsdtest.xml
899 test/xsdtest/xsdtest.xsl: import of the XSD Datatype
900 regression tests from James Clark.
901
Daniel Veillard8bc6cf92003-02-27 17:42:22 +0000902Thu Feb 27 18:40:04 CET 2003 Daniel Veillard <daniel@veillard.com>
903
904 * relaxng.c xmlschemas.c xmlschemastypes.c
905 include/libxml/xmlschemastypes.h: added param support for relaxng
906 type checking, started to increment the pool of simple types
907 registered, still much work to be done on simple types and
908 facets checkings.
909
Daniel Veillard19ab45b2003-02-26 15:49:03 +0000910Wed Feb 26 16:45:39 CET 2003 Daniel Veillard <daniel@veillard.com>
911
912 * entities.c: fixes again one of the problem raised by
913 James Clark in #106788
914
Daniel Veillardc482e262003-02-26 14:48:48 +0000915Wed Feb 26 15:46:48 CET 2003 Daniel Veillard <daniel@veillard.com>
916
917 * relaxng.c: Fixed a couple of problem raised by James Clark
918 in bug #107083, the support for ID/IDREF/IDREFS at the WXS
919 datatype level still not fixed though.
920
Daniel Veillard17bed982003-02-24 20:11:43 +0000921Mon Feb 24 21:09:19 CET 2003 Daniel Veillard <daniel@veillard.com>
922
923 * configure.in: preparing release 2.5.4
924 * doc/*: updated and rebuilt the docs
925 * relaxng.c: removed warnings
926 * result/relaxng/*: updated the results
927
Daniel Veillardf4be0182003-02-24 19:54:33 +0000928Mon Feb 24 20:53:17 CET 2003 Daniel Veillard <daniel@veillard.com>
929
930 * valid.c: fixes a DTD regexp generation problem.
931
Daniel Veillard02111c12003-02-24 19:14:52 +0000932Mon Feb 24 20:12:57 CET 2003 Daniel Veillard <daniel@veillard.com>
933
934 * parser.c: fixes bug #105998 about false detection of
935 attribute consumption loop.
936
Daniel Veillard2406abd2003-02-24 18:16:47 +0000937Mon Feb 24 19:14:57 CET 2003 Daniel Veillard <daniel@veillard.com>
938
939 * xinclude.c: Fixes bug #106931 in XInclude entities merging.
940
Daniel Veillardfcc822e2003-02-24 17:52:08 +0000941Mon Feb 24 18:50:35 CET 2003 Daniel Veillard <daniel@veillard.com>
942
943 * SAX.c: fixed bug #105992
944
Daniel Veillard3ebc7d42003-02-24 17:17:58 +0000945Mon Feb 24 18:14:16 CET 2003 Daniel Veillard <daniel@veillard.com>
946
947 * tree.c: fixed xmlSetProp and al. when the node passed is not an
948 element.
949 * relaxng.c: fixed bugs 7.3 (though not complete) and memory leaks
950 found 373 test schemas: 369 success 4 failures
951 found 529 test instances: 525 success 4 failures
952 * check-relaxng-test-suite.py: added memory debug reporting
953
Daniel Veillardc64b8e92003-02-24 11:47:13 +0000954Mon Feb 24 12:41:54 CET 2003 Daniel Veillard <daniel@veillard.com>
955
956 * uri.c parser.c: some warning removal on Igor's patch
957 * tree.c: seems I messed up with #106788 fix
958 * python/libxml.c: fixed some base problems when Python provides
959 the resolver.
960 * relaxng.c: fixed the interleave algorithm
961 found 373 test schemas: 364 success 9 failures
962 found 529 test instances: 525 success 4 failures
963 the resulting failures are bug in the algorithm from 7.3 and
964 lack of support for params
965
Daniel Veillard0046c0f2003-02-23 13:52:30 +0000966Sun Feb 23 14:49:39 CET 2003 Daniel Veillard <daniel@veillard.com>
967
968 * parser.c: another fix for nodeinfo in entities problem
969 * tree.c entities.c: fixed bug #106788 from James Clark
970 some spaces need to be serialized as character references.
971
Igor Zlatkovic40ed73b2003-02-23 13:40:12 +0000972Sat Feb 22 18:28:16 CET 2003 Igor Zlatkovic <igor@zlatkovic.com>
973
974 * parser.c uri.c: fixed the bug I introduced in the path
975 handling, reported by Sebastian Bergmann
976
Daniel Veillard44e1dd02003-02-21 23:23:28 +0000977Sat Feb 22 00:19:48 CET 2003 Daniel Veillard <daniel@veillard.com>
978
979 * parser.c: fixing some nodeinfo in entities problem raised
980 by Glenn W. Bach
981 * relaxng.c: implemented the first section 7.3 check
982 * result/relaxng/*: updated the results
983
Daniel Veillardc5312d72003-02-21 17:14:10 +0000984Fri Feb 21 18:12:19 CET 2003 Daniel Veillard <daniel@veillard.com>
985
986 * relaxng.c: fixed some problems in the previous commit
987 and finished implementing 4.16 rules checking
988 found 373 test schemas: 353 success 20 failures
989 found 529 test instances: 519 success 6 failures
990 * result/relaxng/*: updated the results
991
Daniel Veillard4c5cf702003-02-21 15:40:34 +0000992Fri Feb 21 16:37:39 CET 2003 Daniel Veillard <daniel@veillard.com>
993
994 * relaxng.c: implemented checks from section 7.2
995
Daniel Veillard77648bb2003-02-20 15:03:22 +0000996Thu Feb 20 16:00:31 CET 2003 Daniel Veillard <daniel@veillard.com>
997
998 * relaxng.c: implemented the checks from section 7.1, fixed
999 some of the 4.20 and 4.21 problems.
1000 found 373 test schemas: 338 success 35 failures
1001 found 529 test instances: 519 success 6 failures
1002 * result/relaxng/*: updated the results
1003
Daniel Veillard1c745ad2003-02-20 00:11:02 +00001004Thu Feb 20 01:09:24 CET 2003 Daniel Veillard <daniel@veillard.com>
1005
1006 * relaxng.c: implemented the 4.20 and 4.21 simplification rules.
1007 * result/relaxng/*: updated the results
1008
Daniel Veillardce14fa52003-02-19 17:32:48 +00001009Wed Feb 19 18:30:30 CET 2003 Daniel Veillard <daniel@veillard.com>
1010
1011 * relaxng.c: more bugfixes
1012 * result/relaxng/*: updated the results
1013
Igor Zlatkovic7e1d1582003-02-19 14:51:44 +00001014Wed Feb 19 15:39:56 CET 2003 Igor Zlatkovic <igor@zlatkovic.com>
1015
1016 * DOCBparser.c: obsoleted xmlNormalizeWindowsPath
1017 * HTMLparser.c: obsoleted xmlNormalizeWindowsPath
1018 * SAX.c: ensured xmlDoc.URL is always canonic
1019 * parser.c: obsoleted xmlNormalizeWindowsPath
1020 * uri.c include/libxml/uri.h: introduced xmlCanonicPath
1021 * xmlIO.c include/libxml/xmlIO.h: obsoleted xmlNormalizeWindowsPath
1022 * win32/libxml2.def.src: added few exports
1023
1024
Daniel Veillard2e9b1652003-02-19 13:29:45 +00001025Wed Feb 19 14:26:51 CET 2003 Daniel Veillard <daniel@veillard.com>
1026
1027 * Makefile.am configure.in: patched to have shared libraries
1028 for Python regression tests and static binaries for gdb debug
1029 in my development environment
1030 * relaxng.c: more bugfixes
1031 found 373 test schemas: 296 success 77 failures
1032 found 529 test instances: 516 success 8 failures
1033 * result/relaxng/*: updated the results
1034
Daniel Veillard8fe98712003-02-19 00:19:14 +00001035Wed Feb 19 01:17:48 CET 2003 Daniel Veillard <daniel@veillard.com>
1036
1037 * relaxng.c: guess what ! Relax-NG bugfixing, what a surprize...
1038
Daniel Veillardd4310742003-02-18 21:12:46 +00001039Tue Feb 18 22:09:50 CET 2003 Daniel Veillard <daniel@veillard.com>
1040
1041 * xmlschemastypes.c: float/double check bugfix
1042 * tree.c include/libxml/tree.h: exported a function for NMTOKEN
1043 validation
1044 * xmlreader.c: add a TODO for Jody
1045 * relaxng.c: bugfix bugfix bugfix
1046 found 373 test schemas: 300 success 73 failures
1047 found 529 test instances: 507 success 10 failures
1048 * result/relaxng/*: updated the results
1049
Daniel Veillard2df2de22003-02-17 23:34:33 +00001050Tue Feb 18 00:33:17 CET 2003 Daniel Veillard <daniel@veillard.com>
1051
1052 * relaxng.c check-relaxng-test-suite.py: more RelaxNG bug hunting
1053
Daniel Veillard416589a2003-02-17 17:25:42 +00001054Mon Feb 17 18:23:32 CET 2003 Daniel Veillard <daniel@veillard.com>
1055
1056 * relaxng.c check-relaxng-test-suite.py: more work on the
1057 RelaxNG implementation conformance testing.
1058 found 373 test schemas: 284 success 89 failures
1059 found 529 test instances: 448 success 47 failures
1060 * result/relaxng/*: updated the results
1061
Daniel Veillard784b9352003-02-16 15:50:27 +00001062Sun Feb 16 16:48:38 CET 2003 Daniel Veillard <daniel@veillard.com>
1063
1064 * ChangeLog tree.c doc/libxml-doc.el doc/libxml2-api.xml: applied
1065 a patch from Kjartan Maraas to fix some typos
1066
Daniel Veillardfebcca42003-02-16 15:44:18 +00001067Sun Feb 16 16:40:52 CET 2003 Daniel Veillard <daniel@veillard.com>
1068
1069 * relaxng.c: more bug-hunting
1070 * testRelax.c include/libxml/relaxng.h: added --tree to dump the
1071 intermediate rng tree
1072 * python/generator.py: patch from Stephane Bidoul to fix the generator
1073 on python < 2.2
1074
Daniel Veillardd2298792003-02-14 16:54:11 +00001075Fri Feb 14 17:49:26 CET 2003 Daniel Veillard <daniel@veillard.com>
1076
1077 * check-relaxng-test-suite.py relaxng.c: more testing on the
1078 Relax-NG front, cleaning up the regression tests failures
1079 current state and I forgot support for "mixed":
1080 found 373 test schemas: 280 success 93 failures
1081 found 529 test instances: 401 success 68 failures
1082 * tree.c include/libxml/tree.h xmlschemastypes.c: finished and
1083 moved the Name, NCName and QName validation routine in tree.c
1084 * uri.c: fixed handling of URI ending up with #, i.e. having
1085 an empty fragment ID.
1086 * result/relaxng/*: updated the results
1087
Daniel Veillard9a237c92003-02-13 15:52:58 +00001088Thu Feb 13 16:49:24 CET 2003 Daniel Veillard <daniel@veillard.com>
1089
1090 * check-xinclude-test-suite.py: improved the script accordingly
1091 to the XInclude regression tests updates
1092 * xpointer.c: Implemented XPointer element() Scheme W3C PR of 13
1093 November 2002
1094 * result/XPath/xptr/chapterschildseq result/XPath/xptr/vidchildseq
1095 test/XPath/xptr/chapterschildseq test/XPath/xptr/vidchildseq:
1096 augmented the Xpointer testsuite for the element() scheme
1097
Daniel Veillardf4b4f982003-02-13 11:02:08 +00001098Thu Feb 13 12:00:30 CET 2003 Daniel Veillard <daniel@veillard.com>
1099
1100 * relaxng.c: added TODO for the DTD compatibility spec
1101 * xinclude.c: more bug fixes driven by the testsuite
1102
Daniel Veillardd581b7e2003-02-11 18:03:05 +00001103Tue Feb 11 19:01:02 CET 2003 Daniel Veillard <daniel@veillard.com>
1104
1105 * check-xinclude-test-suite.py xinclude.c: Work on the W3C/NIST
1106 regression tests for XInclude, improved the script, improving
1107 XInclude error reporting mechanism
1108
Daniel Veillard1d788d22003-02-10 16:21:58 +00001109Mon Feb 10 17:19:14 CET 2003 Daniel Veillard <daniel@veillard.com>
1110
1111 * NEWS doc/* configure.in: preparing release 2.5.3
1112
Daniel Veillardfd7ce5f2003-02-10 16:12:39 +00001113Mon Feb 10 17:11:22 CET 2003 Daniel Veillard <daniel@veillard.com>
1114
1115 * tree.c: trying to fix #104934 about some XHTML1 serialization
1116 issues.
1117
Daniel Veillard809faa52003-02-10 15:43:53 +00001118Mon Feb 10 16:41:13 CET 2003 Daniel Veillard <daniel@veillard.com>
1119
1120 * encoding.c xmlIO.c: fixing bug #104646 about iconv based
1121 encoding conversion when the input buffer stops in the
1122 middle of a multibyte char
1123
Daniel Veillard1703c5f2003-02-10 14:28:44 +00001124Mon Feb 10 15:24:47 CET 2003 Daniel Veillard <daniel@veillard.com>
1125
1126 * test/relaxng/OASIS/spectest.xml: OASIS RelaxNG testsuite
1127 * check-relaxng-test-suite.py: python script to run regression
1128 against OASIS RelaxNG testsuite
1129 * relaxng.c: some cleanup tweaks
1130 * HTMLparser.c globals.c: cleanups in comments
1131 * doc/libxml2-api.xml: updated the API
1132 * result/relaxng/*: errors moved files, so large diffs but
1133 no changes at the semantic level.
1134
Daniel Veillard6aa2f602003-02-10 00:01:56 +00001135Mon Feb 10 01:00:31 CET 2003 Daniel Veillard <daniel@veillard.com>
1136
1137 * tree.c: fixing #105678 problem when dumping a namespace node.
1138
Daniel Veillard591b4be2003-02-09 23:33:36 +00001139Mon Feb 10 00:30:01 CET 2003 Daniel Veillard <daniel@veillard.com>
1140
1141 * xpath.c: fixed doc comment problems
1142 * python/generator.py python/libxml_wrap.h python/types.c: adding
1143 RelaxNG wrappers
1144 * python/tests/Makefile.am python/tests/relaxng.py: added a specific
1145 test of those early Python RelaxNG bindings
1146
1147Sun Feb 9 15:18:43 CET 2003 Daniel Veillard <daniel@veillard.com>
Daniel Veillard231d7912003-02-09 14:22:17 +00001148
1149 * libxml.spec.in: fixes a libtool problem on AMD 64bits builds
1150 * relaxng.c: found the validation problem I had with interleave
1151 when not covering all remaining siblings
1152 * Makefile.am test.relaxng/* result/relaxng/*: augmented the
1153 testsuite and check the RNG schemas against the RNG schemas
1154 given in appendix A
1155
Igor Zlatkovic6dacee62003-02-08 17:52:57 +00001156Sat Feb 8 18:55:43 CET 2003 Igor Zlatkovic <igor@zlatkovic.com>
1157
1158 * win32/Makefile.msvc: updates for RelaxNG
1159 * win32/Makefile.mingw: updates for RelaxNG
1160 * win32/libxml2.def.src: added RelaxNG exports
1161
Daniel Veillard97fd5672003-02-07 13:01:54 +00001162Fri Feb 7 14:00:53 CET 2003 Daniel Veillard <daniel@veillard.com>
1163
1164 * xinclude.c: applied another bug fix from Sean Chittenden
1165
Daniel Veillardef4d3bc2003-02-07 12:38:22 +00001166Fri Feb 7 13:34:08 CET 2003 Daniel Veillard <daniel@veillard.com>
1167
1168 * configure.in xmllint.c: I f...ed up the default configuration
1169 of schemas and --relaxng option display in xmllint, pointed by
1170 Morus Walter.
1171 * xlink.c: Sean Chittenden pointed a couple of errors in the XLink
1172 detection module, fixes bug #105374.
1173
Daniel Veillardc5a70f22003-02-06 23:41:59 +00001174Fri Feb 7 01:43:38 CET 2003 Daniel Veillard <daniel@veillard.com>
1175
1176 * xmlschemastypes.c: added the boolean base type.
1177
Daniel Veillard96a4b252003-02-06 08:22:32 +00001178Thu Feb 6 10:23:52 CET 2003 Daniel Veillard <daniel@veillard.com>
1179
1180 * xmlschemastypes.c: started implementing some of the missing
1181 default simple types
1182 * result/relaxng/*: updated the results
1183
Daniel Veillard72fef162003-02-05 14:31:19 +00001184Wed Feb 5 15:28:04 CET 2003 Daniel Veillard <daniel@veillard.com>
1185
1186 * NEWS doc/*: updated the docs, ready for 2.5.2 release
1187
Daniel Veillard71531f32003-02-05 13:19:53 +00001188Wed Feb 5 14:15:59 CET 2003 Daniel Veillard <daniel@veillard.com>
1189
1190 * HTMLparser.c tree.c xmlIO.c: comments cleanups
1191 * Makefile.am: use xmllint for doing the RelaxNG tests
1192 * configure.in: preparing 2.5.2 made schemas support default to
1193 on instead of off
1194 * relaxng.c: removed the verbosity
1195 * xmllint.c: added --relaxng option
1196 * python/generator.py python/libxml_wrap.h: prepared the integration
1197 of the new RelaxNG module and schemas
1198 * result/relaxng/*: less verbose output
1199
Daniel Veillardec498e12003-02-05 11:01:50 +00001200Wed Feb 5 12:00:36 CET 2003 Daniel Veillard <daniel@veillard.com>
1201
1202 * valid.c: do not run content model validation if the
1203 content is not determinist
1204
Daniel Veillardde590ca2003-02-05 10:45:26 +00001205Wed Feb 5 11:43:58 CET 2003 Daniel Veillard <daniel@veillard.com>
1206
1207 * SAX.c: added the redefinition of namespaced attribute
1208 check that was missing as Fabrice Desré pointed out.
1209
Daniel Veillard930dfb62003-02-05 10:17:38 +00001210Wed Feb 5 11:09:29 CET 2003 Daniel Veillard <daniel@veillard.com>
1211
1212 * HTMLparser.c include/libxml/HTMLparser.h: applied HTML
1213 improvements from Nick Kew, allowing to do more checking
1214 to HTML elements and attributes.
1215
Daniel Veillard4287c572003-02-04 22:48:53 +00001216Tue Feb 4 23:47:06 CET 2003 Daniel Veillard <daniel@veillard.com>
1217
1218 * xinclude.c: fixing bug #105137 about entities declaration
1219 needing to be copied to the including document.
1220
Daniel Veillard652d8a92003-02-04 19:28:49 +00001221Tue Feb 4 20:26:22 CET 2003 Daniel Veillard <daniel@veillard.com>
1222
1223 * catalog.c: fixed bug #104817 with delegateURI
1224 * xpath.c: fixing bugs #104123 and #104125
1225
Daniel Veillard0e298ad2003-02-04 16:14:33 +00001226Tue Feb 4 17:12:56 CET 2003 Daniel Veillard <daniel@veillard.com>
1227
1228 * configure.in valid.c xmlreader.c python/libxml_wrap.h
1229 python/types.c: fixing #104096 to compile without regexps
1230
Daniel Veillard57e79b32003-02-04 15:33:12 +00001231Tue Feb 4 16:31:55 CET 2003 Daniel Veillard <daniel@veillard.com>
1232
1233 * valid.c: fixing bug #103969 forgot to add an epsilon transition
1234 when building the automata for elem*
1235
Daniel Veillard358a9892003-02-04 15:22:32 +00001236Tue Feb 4 16:21:07 CET 2003 Daniel Veillard <daniel@veillard.com>
1237
1238 * HTMLparser.c: applied patch from Arne de Bruijn fixing
1239 bug #103827
1240
Daniel Veillardeb137172003-02-04 15:18:06 +00001241Tue Feb 4 16:17:09 CET 2003 Daniel Veillard <daniel@veillard.com>
1242
1243 * HTMLparser.c: updating a comment, fixing #103776
1244
Daniel Veillard8d589042003-02-04 15:07:21 +00001245Tue Feb 4 16:05:53 CET 2003 Daniel Veillard <daniel@veillard.com>
1246
1247 * parser.c: fixing bug 105049 for validity checking of content
1248 within recursive entities.
1249
Daniel Veillarde5b110b2003-02-04 14:43:39 +00001250Tue Feb 4 15:40:54 CET 2003 Daniel Veillard <daniel@veillard.com>
1251
1252 * HTMLparser.c: try to fix # 105049
1253 * relaxng.c xmlschemastypes.c: a couple of changes and extensions
1254 * tree.c: updated a function comment
1255
Daniel Veillard419a7682003-02-03 23:22:49 +00001256Tue Feb 4 00:20:58 CET 2003 Daniel Veillard <daniel@veillard.com>
1257
1258 * relaxng: more work on grammars and refs/defs
1259 * test/relaxng/* result/relaxng/*: augmented/updated the
1260 regression tests
1261
Daniel Veillard144fae12003-02-03 13:17:57 +00001262Mon Feb 3 14:16:59 CET 2003 Daniel Veillard <daniel@veillard.com>
1263
1264 * relaxng: more work on name classes, except support
1265 * test/relaxng/* result/relaxng/*: augmented/updated the
1266 regression tests
1267
Daniel Veillard1ed7f362003-02-03 10:57:45 +00001268Mon Feb 3 11:56:05 CET 2003 Daniel Veillard <daniel@veillard.com>
1269
1270 * relaxng: more work on name classes, the "validate all" schemas
1271 seems to work now.
1272 * test/relaxng/* result/relaxng/*: augmented/updated the
1273 regression tests
1274
Daniel Veillard3b2e4e12003-02-03 08:52:58 +00001275Mon Feb 3 09:50:26 CET 2003 Daniel Veillard <daniel@veillard.com>
1276
1277 * python/libxml.c: removed an unprotedted debug message Aleksi Suhonen
1278 * parser.c: put a guard against infinite document depth, basically
1279 trying to avoid another kind of DoS attack.
1280 * relaxng.c: some code w.r.t. nameClasses
1281
Daniel Veillardfc1a4502003-02-02 16:02:55 +00001282Sun Feb 2 17:01:43 CET 2003 Daniel Veillard <daniel@veillard.com>
1283
1284 * test/relaxng/* result/relaxng/*: check all the namespace support
1285 was actually correct based on tutorial section 10.
1286
Daniel Veillarde2a5a082003-02-02 14:35:17 +00001287Sun Feb 2 15:33:38 CET 2003 Daniel Veillard <daniel@veillard.com>
1288
1289 * relaxng: include seems to work okay now
1290 * test/relaxng/* result/relaxng/*: augmented/updated the
1291 regression tests
1292
Daniel Veillarda9d912d2003-02-01 17:43:10 +00001293Sat Feb 1 19:44:58 CET 2003 Daniel Veillard <daniel@veillard.com>
1294
1295 * relaxng.c: a bit of work done in the train back.
1296 * test/relaxng/*: added one of the include tests
1297
Daniel Veillard154877e2003-01-30 12:17:05 +00001298Thu Jan 30 14:06:55 CET 2003 Daniel Veillard <daniel@veillard.com>
1299
1300 * relaxng: more work done in the train
1301 * test/relaxng/* result/relaxng/*: augmented/updated the
1302 regression tests
1303
Daniel Veillarde431a272003-01-29 23:02:33 +00001304Wed Jan 29 23:44:58 CET 2003 Daniel Veillard <daniel@veillard.com>
1305
1306 * relaxng.c: debugging of externalRef
1307 * test/relaxng/* result/relaxng/*: augmented/updated the
1308 regression tests
1309
Daniel Veillardd41f4f42003-01-29 21:07:52 +00001310Wed Jan 29 22:06:04 CET 2003 Daniel Veillard <daniel@veillard.com>
1311
1312 * relaxng.c: more work on Relax-NG, implementing externalRef
1313 * test/relaxng/* result/relaxng/*: augmented/updated the
1314 regression tests
1315 * Makefile.am: cleanup to Relaxtests target
1316
Daniel Veillardb08c9812003-01-28 23:09:49 +00001317Wed Jan 29 00:08:38 CET 2003 Daniel Veillard <daniel@veillard.com>
1318
1319 * relaxng.c: more work on Relax-NG, implementing interleave
1320 * test/relaxng/* result/relaxng/*: augmented/updated the
1321 regression tests
1322
Daniel Veillard76fc5ed2003-01-28 20:58:15 +00001323Tue Jan 28 21:56:49 CET 2003 Daniel Veillard <daniel@veillard.com>
1324
1325 * relaxng.c: more work on Relax-NG, implementing interleave
1326 * test/relaxng/* result/relaxng/*: augmented/updated the
1327 regression tests
1328
MST 2003 John Fleckda81d192003-01-27 14:35:56 +00001329Mon Jan 27 07:35:29 MST 2003 John Fleck <jfleck@inkstain.net>
1330
1331 * doc/tutorial/customfo.xsl
1332 * doc/tutorial/customhtml.xsl
1333 adding stylesheet customizations used to generate fo
1334 for pdf and html
1335
Daniel Veillardc6e997c2003-01-27 12:35:42 +00001336Mon Jan 27 13:29:43 CET 2003 Daniel Veillard <daniel@veillard.com>
1337
1338 * relaxng.c: more work on Relax-NG
1339 * test/relaxng/* result/relaxng/*: augmented/updated the
1340 regression tests
1341 * xmlschemastypes.c: added a number of base type definition but not
1342 the associated checks, those are still TODOs
1343
MST 2003 John Fleck731967e2003-01-27 00:39:50 +00001344Sun Jan 26 17:37:06 MST 2003 John Fleck <jfleck@inkstain.net>
1345
1346 in docs/tutorial:
1347 * apa.html
1348 * apb.html
1349 * apc.html
1350 * apd.html
1351 * ape.html
1352 * apf.html
1353 * apg.html
1354 * ar01s02.html
1355 * ar01s03.html
1356 * ar01s04.html
1357 * ar01s05.html
1358 * ar01s06.html
1359 * ar01s07.html
1360 * ar01s08.html
1361 * index.html
1362 * xmltutorial.pdf
1363 * xmltutorial.xml
1364 add index to tutorial
1365
MST 2003 John Fleck937362d2003-01-27 00:04:32 +00001366Sun Jan 26 17:02:29 MST 2003 John Fleck <jfleck@inkstain.net>
1367
1368 * doc/xmlcatalog.1
1369 * doc/xmlcatalog_man.html
1370 * doc/xmlcatalog_man.xml
1371 belatedly fixing bug #93622 (adds rewriteURI type to
1372 "--add" option in xmlcatalog man page
1373
Daniel Veillard3be27512003-01-26 19:49:04 +00001374Sun Jan 26 20:47:26 CET 2003 Daniel Veillard <daniel@veillard.com>
1375
Daniel Veillardc6e997c2003-01-27 12:35:42 +00001376 * xmlcatalog.c xmllint.c: applied patch for NetBSD by
Daniel Veillard3be27512003-01-26 19:49:04 +00001377 Julio Merino, closing #104475
1378
Daniel Veillardea3f3982003-01-26 19:45:18 +00001379Sun Jan 26 20:38:43 CET 2003 Daniel Veillard <daniel@veillard.com>
1380
1381 * relaxng.c: more work on Relax-NG
1382 * test/relaxng/* result/relaxng/*: augmented/updated the
1383 regression tests
1384
Daniel Veillardedc91922003-01-26 00:52:04 +00001385Sun Jan 26 01:49:58 CET 2003 Daniel Veillard <daniel@veillard.com>
1386
1387 * relaxng.c: more work on Relax-NG
1388 * test/relaxng/* result/relaxng/*: augmented/updated the
1389 regression tests
1390
Daniel Veillarddd1655c2003-01-25 18:01:32 +00001391Sat Jan 25 18:59:54 CET 2003 Daniel Veillard <daniel@veillard.com>
1392
1393 * README: updated the policy on private mail answers
1394 * relaxng.c: more work on Relax-NG
1395 * test/relaxng/* result/relaxng/*: augmented/updated the
1396 regression tests
1397
Daniel Veillard7424eb62003-01-24 14:14:52 +00001398Fri Jan 24 15:12:44 CET 2003 Daniel Veillard <daniel@veillard.com>
1399
1400 * error.c parser.c tree.c: applied a documentation patch from
1401 Stefan Kost
1402
Daniel Veillard276be4a2003-01-24 01:03:34 +00001403Fri Jan 24 02:00:50 CET 2003 Daniel Veillard <daniel@veillard.com>
1404
1405 * relaxng.c: more work on Relax-NG
1406 * doc/*: regenerated the docs
1407 * test/relaxng/* result/relaxng/*: updated and augmented the
1408 Relax-NG regression tests and results
1409
Daniel Veillard6eadf632003-01-23 18:29:16 +00001410Thu Jan 23 19:26:20 CET 2003 Daniel Veillard <daniel@veillard.com>
1411
1412 * Makefile.am configure.in relaxng.c include/libxml/relaxng.h:
1413 First commit of the new Relax-NG validation code, not generally
1414 useful yet.
1415 * test/relaxng/* result/relaxng/*: current state of the regression
1416 tests
1417
Daniel Veillard814a76d2003-01-23 18:24:20 +00001418Thu Jan 23 19:22:54 CET 2003 Daniel Veillard <daniel@veillard.com>
1419
1420 * tree.c: minimized the memory allocated for GetContent
1421 and a bit of cleanup.
1422
Daniel Veillardff12c492003-01-23 16:42:55 +00001423Thu Jan 23 17:41:37 CET 2003 Daniel Veillard <daniel@veillard.com>
1424
1425 * python/generator.py: seems there is no good reasons to
1426 not generate bindings for XPointer
1427
Daniel Veillard540a31a2003-01-21 11:21:07 +00001428Tue Jan 21 13:19:35 CET 2003 Daniel Veillard <daniel@veillard.com>
1429
1430 * xmlreader.c doc/apibuild.py: applied a new patch from
1431 Stéphane Bidoul for cleanups
1432 * doc/libxml2-api.xml: rebuilt the API description with
1433 new entry points
1434
Daniel Veillard417be3a2003-01-20 21:26:34 +00001435Mon Jan 20 23:25:00 CET 2003 Daniel Veillard <daniel@veillard.com>
1436
1437 * xmlreader.c python/drv_libxml2.py python/generator.py
1438 python/libxml.c python/libxml.py python/libxml_wrap.h
1439 python/types.c: patch from Stéphane Bidoul for better per
1440 context error message APIs
1441 * python/tests/ctxterror.py python/tests/readererr.py:
1442 update of the tests
1443
MST 2003 John Fleck97ddfc02003-01-20 00:09:57 +00001444Sun Jan 19 17:09:28 MST 2003 John Fleck <jfleck@inkstain.net>
1445
1446 * doc/guidelines.html
1447 grammar and spelling cleanup
1448
Daniel Veillard26f70262003-01-16 22:45:08 +00001449Fri Jan 17 00:31:30 CET 2003 Daniel Veillard <daniel@veillard.com>
1450
1451 * xmlreader.c include/libxml/xmlreader.h python/generator.py
1452 python/libxml.c python/libxml.py win32/libxml2.def.src: applied
1453 a patch from Stéphane Bidoul to allow per XMLtextReader error
1454 and warning handling
1455 * python/tests/Makefile.am python/tests/readererr.py: adding the
1456 specific regression test
1457
Daniel Veillard71f9d732003-01-14 16:07:16 +00001458Tue Jan 14 17:00:08 CET 2003 Daniel Veillard <daniel@veillard.com>
1459
1460 * xpath.c: Alexey Efimov pointed out that concat('a', 'b', )
1461 should raise a syntax error
1462
Daniel Veillarde4a07e72003-01-14 14:40:25 +00001463Tue Jan 14 15:39:14 CET 2003 Daniel Veillard <daniel@veillard.com>
1464
1465 * python/libxml.c: cleanup patch from Stéphane Bidoul
1466
Daniel Veillard81601f92003-01-14 13:42:37 +00001467Tue Jan 14 14:41:18 CET 2003 Daniel Veillard <daniel@veillard.com>
1468
1469 * encoding.c: fixing bug #103100 with a dummy UTF8ToUTF8 copy
1470
Daniel Veillarde6227e02003-01-14 11:42:39 +00001471Tue Jan 14 12:40:29 CET 2003 Daniel Veillard <daniel@veillard.com>
1472
1473 * python/generator.py python/libxml.c python/libxml.py
1474 python/libxml_wrap.h python/types.c: applied and fixed a patch
Daniel Veillarde4a07e72003-01-14 14:40:25 +00001475 from Stéphane Bidoul to provide per parser error handlers at the
Daniel Veillarde6227e02003-01-14 11:42:39 +00001476 Python level.
1477 * python/tests/Makefile.am python/tests/ctxterror.py: added a
1478 regression test for it.
1479
Daniel Veillard4dbe77a2003-01-14 00:17:42 +00001480Tue Jan 14 01:15:04 CET 2003 Daniel Veillard <daniel@veillard.com>
1481
1482 * xmlreader.c: fixed the streaming property of the reader,
1483 it was generating tree faster than consuming it. Pointed out
1484 by Nate Myers
1485 * tree.c: fixed a bug in xmlSaveFormatFileEnc if passed a NULL doc
1486
Igor Zlatkovic9df24742003-01-12 21:15:55 +00001487Sun Jan 12 22:18:02 CET 2003 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
1488
Igor Zlatkovicd31876c2003-01-12 21:43:13 +00001489 * win32/libxml2.def.src: added more xmlreader and other exports
Igor Zlatkovic9df24742003-01-12 21:15:55 +00001490
Daniel Veillard8e7e1c02003-01-10 17:06:09 +00001491Fri Jan 10 18:04:32 CET 2003 Daniel Veillard <daniel@veillard.com>
1492
1493 * xpath.c: fix to the XPath implementation for parent and
1494 ancestors axis when operating on a Result Value Tree.
1495 Fixes bug #100271
1496
Daniel Veillardcacbe5d2003-01-10 16:09:51 +00001497Fri Jan 10 17:07:01 CET 2003 Daniel Veillard <daniel@veillard.com>
1498
1499 * nanoftp.c nanohttp.c xmlIO.c: patch from Stefano Zacchiroli
1500 to fix some URI/file escaping problems
1501
Daniel Veillard3b87b6b2003-01-10 15:21:50 +00001502Fri Jan 10 16:20:34 CET 2003 Daniel Veillard <daniel@veillard.com>
1503
1504 * python/generator.py: fixed a bug raised by Raymond Wiker,
1505 docSetRootElement() should not raise an exception if the
1506 return is None
1507
Daniel Veillard3e20a292003-01-10 13:14:40 +00001508Fri Jan 10 14:13:03 CET 2003 Daniel Veillard <daniel@veillard.com>
1509
1510 * python/libxml.py python/libxml.c python/libxml2-python-api.xml:
1511 fixed bug #102181 by applying the suggested change and fixing
1512 the generation/registration problem.
1513
Daniel Veillarde55e8e42003-01-10 12:50:02 +00001514Fri Jan 10 13:47:55 CET 2003 Daniel Veillard <daniel@veillard.com>
1515
1516 * HTMLparser.c: fixed bug #102960 by reusing the XML name parsing
1517 routines.
1518
Daniel Veillard8f872442003-01-09 23:19:02 +00001519Fri Jan 10 00:16:49 CET 2003 Daniel Veillard <daniel@veillard.com>
1520
1521 * parser.c: one more IsEmptyElement crazyness, that time in
1522 external parsed entities if substitution is asked.
1523 * python/tests/reader3.py: added a specific test.
1524
Daniel Veillarde329fc22003-01-09 21:36:42 +00001525Thu Jan 9 22:35:31 CET 2003 Daniel Veillard <daniel@veillard.com>
1526
1527 * python/drv_libxml2.py: update from Stéphane Bidoul: python 2.1
1528 support and improved error handler registration
1529
Daniel Veillard5ecaf7f2003-01-09 13:19:33 +00001530Thu Jan 9 14:16:38 CET 2003 Daniel Veillard <daniel@veillard.com>
1531
1532 * HTMLtree.c tree.c: fixes #102920 about namespace handling in
1533 HTML output and section 16.2 "HTML Output Method" of XSLT-1.0
1534 * README: fixed a link
1535
Daniel Veillarde2830f12003-01-08 17:47:49 +00001536Wed Jan 8 18:32:25 CET 2003 Daniel Veillard <daniel@veillard.com>
1537
1538 * configure.in doc/* NEWS: preparing 2.5.1 release
1539 * SAX.c parser.c: fixing XmlTextReader bug
1540
Daniel Veillard8bf70b92003-01-07 23:14:24 +00001541Wed Jan 8 00:13:01 CET 2003 Daniel Veillard <daniel@veillard.com>
1542
1543 * SAX.c: fuck, I introduced a memory leak on external parsed
1544 entities in 2.5.0 :-(
1545
Daniel Veillard56ada1d2003-01-07 11:17:25 +00001546Tue Jan 7 12:12:45 CET 2003 Daniel Veillard <daniel@veillard.com>
1547
1548 * xmllint.c: another fix needed as pointed by Christophe Merlet
1549 for --stream --debug if compiled without debug support.
1550
MST 2003 John Fleck7e54be12003-01-07 03:54:25 +00001551Mon Jan 6 20:53:08 MST 2003 John Fleck <jfleck@inkstain.net>
1552
1553 * doc/xmllint.xml
Daniel Veillard56ada1d2003-01-07 11:17:25 +00001554 * doc/xmllint.1:
MST 2003 John Fleck7e54be12003-01-07 03:54:25 +00001555 update man page with --stream and --chkregister
1556
Daniel Veillard8326e732003-01-07 00:19:07 +00001557Tue Jan 7 01:17:26 CET 2003 Daniel Veillard <daniel@veillard.com>
1558
1559 * globals.c: fixed --with-threads compile
1560 * xmllint.c: fixed --without-debug compile
1561 * include/libxml/globals.h: cleanup
1562 * include/libxml/schemasInternals.h: add a missing include
1563
Daniel Veillard7b4b2f92003-01-06 13:11:20 +00001564Mon Jan 6 14:06:07 CET 2003 Daniel Veillard <daniel@veillard.com>
1565
1566 * configure.in NEWS: preparing 2.5.0 release
1567 * SAX.c: only warn in pedantic mode about namespace name
1568 brokeness
1569 * globals.c: fix a doc generation problem
1570 * uri.c: fix #101520
1571 * doc/*: updated and rebuilt the doc for the release, includuding
1572 stylesheet update
1573 * python/Makefile.am: fix a filename bug
1574
1575Mon Jan 6 12:05:12 CET 2003 Daniel Veillard <daniel@veillard.com>
1576
1577 * doc/tutorial/* : fixed #101894 if doc == NULL xmlFreeDoc
1578 should not be called.
1579
1580Mon Jan 6 11:59:09 CET 2003 Daniel Veillard <daniel@veillard.com>
1581
1582 * libxml-2.0.pc.in: applied the patch to fix #101894
1583
1584Sun Jan 5 23:35:47 CET 2003 Daniel Veillard <daniel@veillard.com>
1585
1586 * tree.c : applied patch from Lukas Schroeder for register callbacks
1587 * valid.c: modified patch from Lukas Schroeder to test
1588 register callbacks with --chkregister
1589
1590Sun Jan 5 02:23:20 CET 2003 Daniel Veillard <daniel@veillard.com>
1591
1592 * xmlreader.c: seriously changed the way data are pushed to
1593 the underlying parser, go by block of 512 bytes instead of
1594 tryng to detect tag boundaries at that level. Changed the
1595 way empty element are detected and tagged.
1596 * python/tests/reader.py python/tests/reader2.py
1597 python/tests/reader3.py: small changes mostly due to context
1598 reporting being different and DTD node being reported. Some
1599 errors previously undetected are now caught and fixed.
1600 * doc/xmlreader.html: flagged last section as TODO
1601
1602Sat Jan 4 20:40:28 CET 2003 Daniel Veillard <daniel@veillard.com>
1603
1604 * python/libxml.py: integrated the Python 2.2 optimizations
1605 from Hannu Krosing, while maintaining compatibility with
1606 1.5 and 2.1
1607
1608Sat Jan 4 17:33:17 CET 2003 Daniel Veillard <daniel@veillard.com>
1609
1610 * xmllint.c: a bit of cleanup
1611 * xmlreader.c: small fix
1612 * doc/xmlreader.html: more work on the XmlTextReader tutorial
1613 * python/libxml.py: a few fixes pointed out by Hannu Krosing
1614
1615Sat Jan 4 13:46:14 CET 2003 Daniel Veillard <daniel@veillard.com>
1616
1617 * python/setup.py.in: patch from Stéphane Bidoul to include
1618 drv_libxml2.py in setup.py
1619
1620Sat Jan 4 01:43:06 CET 2003 Daniel Veillard <daniel@veillard.com>
1621
1622 * doc/xmlreader.html: starting documenting the new XmlTextReader
1623 interface.
1624
1625Fri Jan 3 17:18:32 CET 2003 Daniel Veillard <daniel@veillard.com>
1626
1627 * xmllint.c: added the --stream flag to use the TextReader API
1628 * xmlreader.c: small performance tweak
1629
1630Fri Jan 3 13:50:55 CET 2003 Daniel Veillard <daniel@veillard.com>
1631
1632 * xmlreader.c python/tests/reader2py: okay the DTD validation
1633 code on top of the XMLTextParser API should be solid now.
1634
1635Fri Jan 3 02:17:18 CET 2003 Daniel Veillard <daniel@veillard.com>
1636
1637 * xmlreader.c python/tests/reader2py: Fixing some more mess
1638 with validation and recursive entities while using the
1639 reader interface, it's getting a bit messy...
1640
1641Thu Jan 2 15:15:26 CET 2003 Daniel Veillard <daniel@veillard.com>
1642
1643 * xmlreader.c python/tests/reader.py: another couple of problem
1644 related to IsEmptyElement reported by Stéphane Bidoul needed
1645 some fixes.
1646
1647Thu Jan 2 13:57:07 CET 2003 Daniel Veillard <daniel@veillard.com>
1648
1649 * libxml.spec.in python/Makefile.am python/drv_libxml2.py:
1650 integrated drv_libxml2.py Python xml.sax driver from Stéphane Bidoul
1651 based on the python XmlTextReader interface.
1652
1653Wed Jan 1 22:05:40 CET 2003 Daniel Veillard <daniel@veillard.com>
1654
1655 * tree.c: backing out one change in the last patch which broke the
1656 regression tests
1657
1658Wed Jan 1 21:57:28 CET 2003 Daniel Veillard <daniel@veillard.com>
1659
1660 * global.data globals.c tree.c include/libxml/globals.h: applied
1661 an old patch from Lukas Schroeder to track node creation and
1662 destruction. Probably missing a lot of references at the moment
1663 and not usable reliably.
1664
1665Wed Jan 1 20:12:07 CET 2003 Daniel Veillard <daniel@veillard.com>
1666
1667 * NEWS doc/Makefile.am doc/news.xsl: generate the NEWS file
1668 from doc/news.html and a stylesheet
1669
1670Wed Jan 1 16:09:57 CET 2003 Daniel Veillard <daniel@veillard.com>
1671
1672 * xmlreader.c python/tests/reader.py: fixed another couple of
1673 xmlreader bugs reported by Stéphane Bidoul and added tests.
1674
1675Wed Jan 1 15:42:54 CET 2003 Daniel Veillard <daniel@veillard.com>
1676
1677 * xmlreader.c python/tests/reader2.py: fixed another validity
1678 checking in external parsed entities raised by Stéphane Bidoul
1679 and added a specific regression test.
1680 * python/tests/reader3.py: cleanup
1681
1682Tue Dec 31 15:44:02 CET 2002 Daniel Veillard <daniel@veillard.com>
1683
1684 * xmlreader.c python/tests/reader2.py: fixed a problem with
1685 validation within entities pointed by Stéphane Bidoul, augmented
1686 the tests to catch those.
1687
1688Tue Dec 31 12:15:37 CET 2002 Daniel Veillard <daniel@veillard.com>
1689
1690 * python/generator.py: modified the generator to allow keeping
1691 class references when creating new classes, needed to fix a bug
1692 pointed by Stéphane Bidoul where the input buffer of the
1693 xmlTextReader instance gets destroyed if the python wrapper for
1694 the input is not referenced anymore.
1695
1696Mon Dec 30 19:39:36 CET 2002 Daniel Veillard <daniel@veillard.com>
1697
1698 * xmlreader.c python/tests/reader.py: fixed another pair of problem
1699 pointed by Stéphane Bidoul: depth start at 0 and a parse problem.
1700
1701Mon Dec 30 13:36:50 CET 2002 Daniel Veillard <daniel@veillard.com>
1702
1703 * xmlreader.c python/tests/reader.py: fixed another problem
1704 pointed by Stéphane Bidoul
1705
1706Mon Dec 30 12:39:55 CET 2002 Daniel Veillard <daniel@veillard.com>
1707
1708 * xmlreader.c python/tests/reader.py: fixed a limit case problem
1709 with "<a/>"
1710
1711Mon Dec 30 11:53:44 CET 2002 Daniel Veillard <daniel@veillard.com>
1712
1713 * SAX.c: warn on xmlns:prefix="foo"
1714 * xmlreader.c python/tests/reader.py: fixed a couple of problem
1715 for namespace attributes handling.
1716
1717Mon Dec 30 00:59:07 CET 2002 Daniel Veillard <daniel@veillard.com>
1718
1719 * entities.c parser.c tree.c include/libxml/entities.h: Fixed
1720 a really nasty problem raised by a DocBook XSLT transform
1721 provided by Sebastian Bergmann
1722
1723Sun Dec 29 12:13:18 CET 2002 Daniel Veillard <daniel@veillard.com>
1724
1725 * xmlreader.c python/tests/reader.py: fixed a bug pointed out
1726 by Stéphane Bidoul and integrated it into the tests
1727
1728Sat Dec 28 23:49:12 CET 2002 Daniel Veillard <daniel@veillard.com>
1729
1730 * xmlreader.c include/libxml/xmlreader.h doc/libxml2-api.xml:
1731 extended the XmlTextReader API a bit, addding accessors for
1732 the current doc and node, and an entity substitution mode for
1733 the parser.
1734 * python/libxml.py python/libxml2class.txt: related updates
1735 * python/tests/Makefile.am python/tests/reader.py
1736 python/tests/reader2.py python/tests/reader3.py: updated a bit
1737 the old tests and added a new one to test the entities handling
1738
1739Sat Dec 28 22:11:57 CET 2002 Daniel Veillard <daniel@veillard.com>
1740
1741 * python/generator.py python/libxml2class.txt
1742 python/tests/reader.py python/tests/reader2.py: changed the
1743 generator to provide casing for the XmlTextReader similar to
1744 C# so that examples and documentation are more directly transposable.
1745 Fixed the couple of tests in the suite.
1746
1747Sat Dec 28 15:55:32 CET 2002 Daniel Veillard <daniel@veillard.com>
1748
1749 * doc/guidelines.html: added a document on guildeline for
1750 publishing and deploying XML
1751
1752Fri Dec 27 20:35:15 CET 2002 Daniel Veillard <daniel@veillard.com>
1753
1754 * valid.c xmlreader.c: final touch running DTD validation
1755 on the XmlTextReader
1756 * python/tests/Makefile.am python/tests/reader2.py: added a
1757 specific run based on the examples from test/valid/*.xml
1758
1759Fri Dec 27 15:17:20 CET 2002 Daniel Veillard <daniel@veillard.com>
1760
1761 * python/libxml.py: added a few predefined xmlTextReader parser
1762 configuration values.
1763
1764Fri Dec 27 12:57:22 CET 2002 Daniel Veillard <daniel@veillard.com>
1765
1766 * python/libxml_wrap.h: trying to fix #102037
1767
1768Fri Dec 27 12:18:14 CET 2002 Daniel Veillard <daniel@veillard.com>
1769
1770 * SAX.c: fixing bug #95296, when the predefined entities
1771 are redefined in the DTD the default one must be used
1772 instead anyway.
1773
1774Wed Dec 25 19:22:06 MST 2002 John Fleck <jfleck@inkstain.net>
1775
1776 * doc/xmllint.xml
1777 * doc/xmllint.1
1778 Add discussion of XML_DEBUG_CATALOG to xmllint man
1779 page - bug #100907
1780
1781
1782Mon Dec 23 16:54:22 CET 2002 Daniel Veillard <daniel@veillard.com>
1783
1784 * xmlreader.c: Fixed the empty node detection to avoid reporting
1785 an inexistant close tag.
1786
1787Mon Dec 23 15:42:24 CET 2002 Daniel Veillard <daniel@veillard.com>
1788
1789 * python/libxml.c python/setup.py.in: patch from Stéphane Bidoul
1790 for Python 2.1
1791
1792Sun Dec 22 11:24:06 CET 2002 Daniel Veillard <daniel@veillard.com>
1793
1794 * testC14N.c vms/config.vms: applied Craig A. Berry patches for VMS
1795
1796Fri Dec 20 11:27:49 CET 2002 Daniel Veillard <daniel@veillard.com>
1797
1798 * doc/libxml2-api.xml python/tests/reader.py: one really need
1799 to provide the base URI information when creating a reader parser
1800 from an input stream. Updated the API and the example using it.
1801
1802Fri Dec 20 01:11:30 CET 2002 Daniel Veillard <daniel@veillard.com>
1803
1804 * testReader.c xmlreader.c valid.c include/libxml/tree.h
1805 include/libxml/valid.h include/libxml/xmlreader.h: working on
1806 DTD validation on top of xml reader interfaces. Allows to
1807 validate arbitrary large instances. This required some extensions
1808 to the valid module interface and augmenting the size of xmlID
1809 and xmlRef structs a bit.
1810 * uri.c xmlregexp.c: simple cleanup.
1811
1812Wed Dec 18 15:51:22 CET 2002 Daniel Veillard <daniel@veillard.com>
1813
1814 * xmlreader.c include/libxml/xmlreader.h doc/libxml2-api.xml: more
1815 work on the xml reader interfaces.
1816 * AUTHORS MAINTAINERS doc/* win32/*: updated Igor's mail and the
1817 Web page for the Windows binaries.
1818
1819Tue Dec 17 19:31:07 CET 2002 Daniel Veillard <daniel@veillard.com>
1820
1821 * xmlIO.c: applied a patch for VMS following the report by
1822 Nigel Hall
1823
1824Tue Dec 17 11:29:41 CET 2002 Daniel Veillard <daniel@veillard.com>
1825
1826 * parser.c: the parseStartTag bug fix wasn't complete.
1827
1828Mon Dec 16 23:00:05 CET 2002 Daniel Veillard <daniel@veillard.com>
1829
1830 * parser.c: Vyacheslav Pindyura managed to trigger a bug in
1831 parseStartTag, fixing it.
1832 * test/att4 result/att4 result/noent/att4: adding the test
1833 * xmlreader.c include/libxml/xmlreader.h doc/libxml2-api.xml: added
1834 more methods to XmlTextReader.
1835
1836Mon Dec 16 19:31:16 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
1837
1838 * win32/libxml2.def.src: added more xml reader exports
1839 * win32/Makefile.msvc win32/Makefile.mingw: added xml reader interface
1840 to the build
1841
1842Mon Dec 16 06:36:54 MST 2002 John Fleck <jfleck@inkstain.net>
1843
1844 * doc/tutorial/xmltutorial.xml
1845 plus generated html and pdf
1846 Updating tutorial again based on further comments from Niraj
1847 Tolia on the last iteration
1848
1849Sun Dec 15 21:27:30 MST 2002 John Fleck <jfleck@inkstain.net>
1850
1851 * doc/tutorial/xmltutorial.xml
1852 * doc/tutorial/includekeyword.c
1853 * doc/tutorial/includegetattribute.c
1854 plus generated html and pdf
1855 Adding fix from Niraj Tolia to tutorial to properly free memory.
1856
1857
1858Mon Dec 16 00:34:25 CET 2002 Daniel Veillard <daniel@veillard.com>
1859
1860 * xmlreader.c include/libxml/xmlreader.h doc/libxml2-api.xml: added
1861 more methods of XmlTextReader.
1862 * python/libxml2class.txt python/tests/reader.py: this increased the
1863 methods in the bndings, augmented the test to check those new
1864 functions.
1865
1866Sat Dec 14 23:57:39 CET 2002 Daniel Veillard <daniel@veillard.com>
1867
1868 * xmlreader.c doc/libxml2-api.xml: added the close and getattribute
1869 methods of XmlTextReader.
1870 * python/generator.py python/libxml_wrap.h python/types.c
1871 python/libxml2class.txt: added the reader to the Python bindings
1872 * python/tests/Makefile.am python/tests/reader.py: added a specific
1873 test for the Python bindings of the Reader APIs
1874 * parser.c: small cleanup.
1875
1876Fri Dec 13 11:39:44 CET 2002 Daniel Veillard <daniel@veillard.com>
1877
1878 * xinclude.c: fallback was only copying the first child not the
1879 full child list of the fallback element, closes #89684 as reopened
1880 by Bernd Kuemmerlen
1881
1882Thu Dec 12 13:34:59 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
1883
1884 * win32/libxml2.def.src: exported htmlNodeDumpOutput
1885
1886Thu Dec 12 10:59:11 CET 2002 Daniel Veillard <daniel@veillard.com>
1887
1888 * configure.in: preparing release of 2.4.30
1889 * doc/apibuild.py doc/libxml2-api.xml: fixups to the api builder,
1890 gives enum values, fix functype return type, put back fields in
1891 structs
1892 * doc/*: updated the docs rebuilt
1893
1894Thu Dec 12 01:09:34 CET 2002 Daniel Veillard <daniel@veillard.com>
1895
1896 * HTMLtree.c include/libxml/HTMLtree.h: patch from Mark Vadok
1897 about htmlNodeDumpOutput location.
1898 * xpath.c: removed an undefined function signature
1899 * doc/apibuild.py doc/libxml2-api.xml: the script was exporting
1900 too many symbols in the API breaking the python bindings.
1901 Updated with the libxslt/libexslt changes.
1902
1903Wed Dec 11 20:26:15 CET 2002 Daniel Veillard <daniel@veillard.com>
1904
1905 * configure.in: preparing release of 2.4.29
1906 * doc/*: rebuilt the docs and API
1907 * xmlreader.c: a few more fixes for the XmlTextReader API
1908
1909Wed Dec 11 18:01:15 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
1910
1911 * include/win32config.h: applied mingw patch from Magnus Henoch
1912
1913Wed Dec 11 16:58:48 CET 2002 Daniel Veillard <daniel@veillard.com>
1914
1915 * catalog.c doc/libxml2-api.xml: a bit more cleanup
1916
1917Wed Dec 11 14:54:47 CET 2002 Daniel Veillard <daniel@veillard.com>
1918
1919 * doc/apibuild.py doc/libxml2-api.xml doc/Makefile.am: new API
1920 building Python script, does the C parsing directly, generates
1921 a better API description including structure fieds defs and
1922 enums. Still a couple of bugs, but good enough for the python
1923 wrappers now.
1924 * DOCBparser.c SAX.c nanohttp.c parser.c parserInternals.c tree.c
1925 valid.c xmlIO.c xmlmemory.c xmlreader.c xmlregexp.c xmlschemas.c
1926 include/libxml/schemasInternals.h include/libxml/tree.h: more
1927 cleanup based on the python analysis script reports.
1928 * libxml.spec.in: make sure the API XML description is part of the
1929 devel package.
1930
1931Tue Dec 10 16:16:34 CET 2002 Daniel Veillard <daniel@veillard.com>
1932
1933 * DOCBparser.c HTMLparser.c c14n.c debugXML.c encoding.c hash.c
1934 nanoftp.c nanohttp.c parser.c parserInternals.c testC14N.c
1935 testDocbook.c threads.c tree.c valid.c xmlIO.c xmllint.c xmlmemory.c
1936 xmlreader.c xmlregexp.c xmlschemas.c xmlschemastypes.c xpath.c:
1937 code cleanup, especially the function comments.
1938 * tree.c: fixed a small bug when freeing nodes which are XInclude ones.
1939
1940Mon Dec 9 15:08:17 CET 2002 Daniel Veillard <daniel@veillard.com>
1941
1942 * Makefile.am xmlreader.c include/libxml/Makefile.am
1943 include/libxml/xmlreader.h: Adding a new set of APIs based on
1944 the C# TextXmlReader API but converted to C. Allow to parse
1945 in constant memory usage, far simpler to program and explain
1946 than the SAX like APIs, unfinished but working.
1947 * testReader.c: test program
1948
1949Sun Dec 8 18:36:01 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
1950
1951 * win32/libxml2.def.src: applied YALDSP from Mark Vakoc
1952
1953Wed Dec 4 16:08:49 CET 2002 Daniel Veillard <daniel@veillard.com>
1954
1955 * tree.c: Chip turner indicated that XHTML1 serialization
1956 rule for style actually break on both IE and Mozilla,
1957 try to avoid the rule if escaping ain't necessary
1958
1959Wed Dec 4 12:43:28 CET 2002 Daniel Veillard <daniel@veillard.com>
1960
1961 * nanhttp.c: handle HTTP URL escaping, problem reported by
1962 Glen Nakamura and Stefano Zacchiroli
1963
1964Sat Nov 30 12:19:17 CET 2002 Daniel Veillard <daniel@veillard.com>
1965
1966 * DOCBparser.c HTMLparser.c parser.c valid.c xpath.c: code cleanup
1967
1968Thu Nov 28 12:53:22 CET 2002 Daniel Veillard <daniel@veillard.com>
1969
1970 * uri.c: Johann Richard pointed out some XPointer problems for
1971 URN based URI references in XInclude. Modified the URI parsing
1972 and saving routines to allow correct parsing and saving of
1973 XPointers, especially when attached to "opaque" scheme accordingly
1974 to RFC 2396
1975
1976Wed Nov 27 20:36:08 CET 2002 Daniel Veillard <daniel@veillard.com>
1977
1978 * HTMLtree.c include/libxml/HTMLtree.h: applied the same kind
1979 of refactoring to the HTML saving code.
1980 * doc/libxml2-*.xml doc/API*.html: slight API changes got reflected
1981 in the doc.
1982
1983Wed Nov 27 12:40:16 CET 2002 Daniel Veillard <daniel@veillard.com>
1984
1985 * tree.c include/libxml/tree.h: refactored the XML dump of a node
1986 to a buffer API to reuse the generic dump to an OutputIO layer,
1987 this reduces code, fixes xmlNodeDump() for XHTML, also made
1988 xmlNodeDump() now return the number of byte written.
1989
1990Wed Nov 27 09:00:00 CET 2002 Daniel Veillard <daniel@veillard.com>
1991
1992 * python/setup.py.in: another patch from Stéphane Bidoul for
1993 Python bindings on Windows
1994 * doc/parsedecl.py: small cleanup
1995
1996Mon Nov 25 17:28:53 CET 2002 Daniel Veillard <daniel@veillard.com>
1997
1998 * libxml.spec.in configure.in: add a line in %changelog for releases
1999
2000Mon Nov 25 14:18:27 CET 2002 Daniel Veillard <daniel@veillard.com>
2001
2002 * parser.c: patch from Marcus Clarke fixing a problem in entities
2003 parsing that was detected in KDe documentations environment.
2004
2005Mon Nov 24 14:13:21 CET 2002 ERDI Gergo <cactus@cactus.rulez.org>
2006
2007 * python/libxml.c (libxml_prev): Return the previous as opposed to
2008 the next node (I guess this is the result of some cut & paste programming:)
2009
2010Sat Nov 23 17:22:22 CET 2002 Daniel Veillard <daniel@veillard.com>
2011
2012 * doc/Makefile.am: Jan Rafaj pointed a bug in the Makefile.
2013
2014Sat Nov 23 12:21:24 CET 2002 Daniel Veillard <daniel@veillard.com>
2015
2016 * python/generator.py python/libxml.c python/setup.py.in: trying
2017 to fix the Python bindings build on Windows (Stéphane Bidoul)
2018
2019Fri Nov 22 22:41:34 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
2020
2021 * win32/configure.js: added option for python bindings
2022 * win32/libxml2.def.src: added more exports
2023
2024Fri Nov 22 18:50:34 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
2025
2026 * win32/Makefile.mingw: fixed unresolved symbols when linking with
2027 pthreads
2028 * win32/wince/*: applied updates to Windows CE port from Javier
2029
2030Fri Nov 22 15:51:22 CET 2002 Daniel Veillard <daniel@veillard.com>
2031
2032 * configure.in: preparing 2.4.28
2033 * libxml.spec.in doc/Makefile.am: some cleanup
2034 * doc/*: updated the news and regenerated.
2035
2036Fri Nov 22 14:15:14 CET 2002 Daniel Veillard <daniel@veillard.com>
2037
2038 * HTMLparser.c: final touch at closing #87235 </p> end tags
2039 need to be generated.
2040 * result/HTML/cf_128.html result/HTML/test2.html result/HTML/test3.html:
2041 this change slightly the output of a few tests
2042 * doc/*: regenerated
2043
2044Fri Nov 22 13:26:19 CET 2002 Daniel Veillard <daniel@veillard.com>
2045
2046 * parserInternals.c: fixing bug #99190 when UTF8 document are
2047 parsed using the progressive parser and the end of the chunk
2048 is in the middle of an UTF8 multibyte character.
2049
2050Fri Nov 22 13:13:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
2051
2052 * threads.c: fixed initialization problem in xmlNewGlobalState
2053 which was causing crash.
2054 * globals.c: removed duplicate call to initxmlDefaultSAXHandler
2055 in xmlInitializeGlobalState.
2056 * parserInternals.c: cleaned up ctxt->sax initialisation.
2057
2058Thu Nov 21 15:05:45 CET 2002 Daniel Veillard <daniel@veillard.com>
2059
2060 * tree.c include/libxml/tree.h: modified the existing APIs
2061 to handle XHTML1 serialization rules automatically, also add
2062 xmlIsXHTML() to libxml2 API. Some tweaking to make sure
2063 libxslt serialization uses it when needed without changing
2064 the library API.
2065 * test/xhtml1 result/noent/xhtml1 result/valid/xhtml1.xhtml
2066 result/xhtml1: added a new test specifically for xhtml1 output
2067 and updated the result of one XHTML1 test
2068
2069Wed Nov 20 14:24:56 CET 2002 Daniel Veillard <daniel@veillard.com>
2070
2071 * xinclude.c parserInternals.c encoding.c: fixed #99082
2072 for xi:include encoding="..." support on text includes.
2073 * result/XInclude/tstencoding.xml test/XInclude/docs/tstencoding.xml
2074 test/XInclude/ents/isolatin.txt : added a specific regression test
2075 * python/generator.py python/libxml2class.txt: fixed the generator
2076 the new set of comments generated for doc/libxml2-api.xml were
2077 breaking the python generation.
2078
2079Tue Nov 19 23:25:47 CET 2002 Daniel Veillard <daniel@veillard.com>
2080
2081 * doc/Makefile.am: repair some problem if gtk-doc fail or such
2082 * configure.in: patch for Solaris on new autoconf closes #98880
2083 * doc/parsedecl.py: repair the frigging API building script,
2084 did I say that python xmllib sucks ?
2085 * doc/libxml2-api.xml doc/libxml2-refs.xml: regenerated, reordering
2086 and some comment are no more truncated.
2087
2088Tue Nov 19 09:09:04 CET 2002 Daniel Veillard <daniel@veillard.com>
2089
2090 * parser.c: Martin Stoilov pointed out a potential leak in
2091 xmlCreateMemoryParserCtxt
2092
2093Mon Nov 18 16:05:51 CET 2002 Daniel Veillard <daniel@veillard.com>
2094
2095 * HTMLparser.c: fixed bug #98879 a corner case when 0 is
2096 included in HTML documents and using the push parser.
2097
2098Mon Nov 18 00:11:24 CET 2002 ERDI Gergo <cactus@cactus.rulez.org>
2099
2100 * configure.in (PYTHON_SITE_PACKAGES): If --with-python is
2101 specified, look for the Python interpreter not just in the
2102 specified root but also in the specified location. Fixes #98825
2103
2104Sun Nov 17 23:36:06 CET 2002 Daniel Veillard <daniel@veillard.com>
2105
2106 * python/libxml.c: fixing bug #98792 , node may have no doc
2107 and dereferencing without checking ain't good ...
2108
2109Sun Nov 17 10:25:43 CET 2002 Daniel Veillard <daniel@veillard.com>
2110
2111 * configure.in: preparing release 2.4.27
2112 * doc/* : updated and rebuilt the docs
2113 * doc/Makefile.am libxml.spec.in: try to make sure the tutorial
2114 and all the docs are actually packaged and in the final RPMs
2115 * parser.c parserInternals.c include/libxml/parser.h: restore
2116 xmllint --recover feature.
2117
2118Sat Nov 16 16:30:25 CET 2002 Daniel Veillard <daniel@veillard.com>
2119
Daniel Veillard784b9352003-02-16 15:50:27 +00002120 * parser.c xpath.c: fixing #96925 wich was also dependent on the
Daniel Veillard7b4b2f92003-01-06 13:11:20 +00002121 processing of parsed entities, and XPath computation on sustitued
2122 entities.
2123 * testXPath.c: make sure entities are substitued.
2124
2125Fri Nov 15 16:22:54 CET 2002 Daniel Veillard <daniel@veillard.com>
2126
Daniel Veillard784b9352003-02-16 15:50:27 +00002127 * parser.c: fixed #96594, which was totally dependent on the
Daniel Veillard7b4b2f92003-01-06 13:11:20 +00002128 processing of internal parsed entities, which had to be changed.
2129
2130Fri Nov 15 12:16:07 CET 2002 Daniel Veillard <daniel@veillard.com>
2131
2132 * Makefile.am python/Makefile.am python/tests/Makefile.am:
2133 trying to fix bug #98517 about building outside the source tree
2134 * doc/xml.html doc/FAQ.html: fixed the link to libiconv #94585
2135
2136Thu Nov 14 18:41:55 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
2137
2138 * include/win32config.h: cleanup
2139 * win32/Makefile.mingw: integrated mingw in JScript configure
2140 * win32/Makefile.msvc: modified to allow mingw coexistence
2141 * win32/configure.js: integrated mingw
2142 * win32/Readme.txt: cleanup
2143
2144Tue Nov 12 22:06:45 CET 2002 Daniel Veillard <daniel@veillard.com>
2145
2146 * HTMLparser.c: strengthen the guard in the Pop macros,
2147 like in the XML parser, closes bug #97315
2148
2149Tue Nov 12 21:56:39 CET 2002 Daniel Veillard <daniel@veillard.com>
2150
2151 * include/libxml/parser.h: fixed bug #98338 , fatalError SAX
2152 callback is never used.
2153
2154Tue Nov 12 13:32:50 CET 2002 Daniel Veillard <daniel@veillard.com>
2155
2156 * parserInternals.c: fixed the initialization of the SAX structure
2157 which was breaking xsltproc
2158 * xpath.c: patch from Petr Pajas for CDATA nodes
2159 * tree.c: patch from Petr Pajas improving xmlGetNodePath()
2160 * parser.c include/libxml/parser.h: patch from Peter Jones
2161 removing a leak in xmlSAXParseMemory() and adding the
2162 function xmlSAXParseMemoryWithData()
2163
2164Mon Nov 11 20:47:03 MST 2002 John Fleck <jfleck@inkstain.net>
2165
2166 adding pdf of tutorial, changing web page to link to it
2167 * doc/tutorial/xmltutorial.pdf
2168 * doc/xml.html
2169 * doc/docs.html
2170
2171Sun Nov 10 20:48:57 MST 2002 John Fleck <jfleck@inkstain.net>
2172
2173 * doc/tutorial/ar01s08.html
2174 adding file what I forgot for tutorial
2175
2176
2177Sun Nov 10 20:33:13 MST 2002 John Fleck <jfleck@inkstain.net>
2178
2179 Adding encoding discussion to tutorial
2180 Added:
2181 * doc/tutorial/images/*.png: DocBook admonition image files
2182 * doc/tutorial/apf.html, apg.html: new generated html
2183 * doc/tutorial/includeconvert.c: conversion code entity file
2184 changed:
2185 * doc/tutorial/xmltutorial.xml: DocBook original
2186 * doc/tutorial/*.html: generated html
2187
2188Fri Nov 8 17:59:32 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
2189
2190 * include/libxml/*.h: retired xmlwin32version.h
2191 * doc/Makefile.am: retired xmlwin32version.h
2192 * win32/configure.js: retired xmlwin32version.h
2193
2194Fri Nov 8 16:55:47 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
2195
2196 * win32/libxml2.def.src: exported additional symbols
2197 * include/libxml/xmlmemory.h: exported the rest of the xmlMem*
2198 sisterhood
2199
2200Fri Nov 8 16:08:13 CET 2002 Daniel Veillard <daniel@veillard.com>
2201
2202 * globals.c: fixed a typo pointed out by Igor
2203 * xpath.c: try to speed up node compare using line numbers
2204 if available.
2205
2206Thu Nov 7 15:16:02 CET 2002 Daniel Veillard <daniel@veillard.com>
2207
2208 * tree.c: make xmlFreeNode() handle attributes correctly.
2209
2210Wed Nov 6 23:51:11 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
2211
2212 * catalog.c: completed the #96963 fix, as reported by Karl
2213 Eichwalder
2214
2215Wed Nov 6 16:48:44 CET 2002 Daniel Veillard <daniel@veillard.com>
2216
2217 * xpointer.c: tried to fix bug #97852 reported by Nicolas Noffke
2218
2219Sun Nov 3 10:43:44 CET 2002 Daniel Veillard <daniel@veillard.com>
2220
2221 * Makefile.am: switched the order of a couple of includes
2222 to fix bugs #97100
2223
2224Thu Oct 31 17:11:46 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
2225
2226 * catalog.c: fixed bug #96963, reverted to the old behaviour of
2227 xmlLoadCatalogs that used to separate directories with a ':'.
2228
2229Thu Oct 31 16:55:21 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
2230
2231 * threads.c: improvements to the Windows-side of thread handling
2232 * testThreads.c: conditionally excluded unistd.h
2233 * testThradsWin32.c: broke overlong lines
2234 * include/win32config.h: adapted thread-related macros to the new
2235 scheme and for pthreads on Windows
2236 * win32/Makefile.msvc: introduced a more flexible thread build,
2237 added testThreads[Win32].c to the build
2238 * win32/configure.js: introduced a more flexible thread config
2239
22402002-10-31 John Fleck <jfleck@inkstain.net>
2241
2242 * doc/xml.html (and, by implication, FAQ.html)
2243 added UTF-8 conversaion FAQ from Marcus Labib Iskander
2244
2245Tue Oct 29 18:32:33 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
2246
2247 * configure.in: removed xmlwin32version.h
2248 * include/libxml/Makefile.am: removed xmlwin32version.h
2249
2250Mon Oct 28 14:01:29 CET 2002 Daniel Veillard <daniel@veillard.com>
2251
2252 * tree.c: applied patch from Brian Stafford to fix a bug
2253 in xmlReconciliateNs()
2254
2255Mon Oct 28 13:51:55 CET 2002 Daniel Veillard <daniel@veillard.com>
2256
2257 * tree.c: applied patch from Christian Glahn to allow
2258 xmlNewChild() on document fragment nodes
2259
2260Sat Oct 26 15:27:00 CEST 2002 Daniel Veillard <daniel@veillard.com>
2261
2262 * parser.c: Christian Glahn found a problem with a recent
2263 patch to xmlParseBalancedChunkMemoryRecover()
2264 * xmlschemas.c: Charles Bozeman fixed some Schemas validation
2265 problems
2266 * result/schemas/elem* result/schemas/seq* test/schemas.elem*
2267 test/schemas/seq*: added the test cases from Charles
2268
2269Wed Oct 23 16:42:29 CEST 2002 Daniel Veillard <daniel@veillard.com>
2270
2271 * Makefile.am config.h.in libxml.spec.in doc/Makefile.am:
2272 serious cleanup of the spec file and associated changes
2273 in the Makefiles.
2274 * valid.c: try to remove some warnings on x86_64
2275
2276Wed Oct 23 10:53:42 CEST 2002 Daniel Veillard <daniel@veillard.com>
2277
2278 * include/Makefile.am: added winsockcompat.h to EXTRA_DIST to
2279 fix bug #96586
2280
2281Tue Oct 22 21:13:06 CEST 2002 Daniel Veillard <daniel@veillard.com>
2282
2283 * HTMLparser.c: Mikhail Sogrine pointed out a bug in HTML
2284 parsing, applied his patch
2285 * result/HTML/attrents.html result/HTML/attrents.html.err
2286 result/HTML/attrents.html.sax test/HTML/attrents.html:
2287 added the test and result case provided by Mikhail Sogrine
2288
2289Tue Oct 22 19:33:20 CEST 2002 Daniel Veillard <daniel@veillard.com>
2290
2291 * vms/build_libxml.com vms/config.vms vms/readme.vms
2292 include/libxml/parser.h include/libxml/parserInternals.h
2293 include/libxml/tree.h include/libxml/xmlIO.h
2294 HTMLparser.c catalog.c debugXML.c parser.c parserInternals.c
2295 tree.c triodef.h trionan.c uri.c xmlIO.c xpath.c:
2296 Applied the VMS update patch from Craig A. Berry
2297 * doc/*.html: update
2298
2299Tue Oct 22 16:27:31 CEST 2002 Daniel Veillard <daniel@veillard.com>
2300
2301 * include/libxml/encoding.h encoding.c: made xmlGetUTF8Char public
2302
2303Tue Oct 22 16:25:18 CEST 2002 Daniel Veillard <daniel@veillard.com>
2304
2305 * debugXML.c: adding a grep command to --shell in xmllint
2306 for T.V. Raman
2307
2308Tue Oct 22 16:23:57 CEST 2002 Daniel Veillard <daniel@veillard.com>
2309
2310 * xmlcatalog.c: tried to fix some of the problem with --sgml
2311
2312Mon Oct 21 09:57:10 CEST 2002 Daniel Veillard <daniel@veillard.com>
2313
2314 * parser.c: tried to fix bug #91500 where doc->children may
2315 be overriden by a call to xmlParseBalancedChunkMemory()
2316
2317Mon Oct 21 09:04:32 CEST 2002 Daniel Veillard <daniel@veillard.com>
2318
2319 * catalog.c: tried to fix bug #90945 w.r.t. parsing of system
2320 identifiers in SGML catalogs containing '&'
2321
2322Sun Oct 20 23:31:47 CEST 2002 Daniel Veillard <daniel@veillard.com>
2323
2324 * python/types.c: fixed bugs when passing result value tree
2325 to Python functions.
2326
2327Fri Oct 18 13:18:53 CEST 2002 Daniel Veillard <daniel@veillard.com>
2328
2329 * configure.in: preparing the release of 2.4.26
2330 * doc/*: updated and rebuilt the documentation
2331
2332Wed Oct 16 20:01:46 CEST 2002 Daniel Veillard <daniel@veillard.com>
2333
2334 * parser.c: fixed a XML Namespace compliance bug reported by
2335 Alexander Grimalovsky
2336
2337Wed Oct 16 17:18:42 CEST 2002 Daniel Veillard <daniel@veillard.com>
2338
2339 * HTMLtree.c: fixed serialization of script and style when
2340 they are not lowercase (i.e. added using the API to the tree).
2341
2342Wed Oct 16 16:31:05 CEST 2002 Daniel Veillard <daniel@veillard.com>
2343
2344 * valid.c: make xmlValidateDocument emit a warning msg if there
2345 is no DTD, pointed by Christian Glahn
2346
2347Wed Oct 16 16:05:38 CEST 2002 Daniel Veillard <daniel@veillard.com>
2348
2349 * xmlregexp.c xmlschemas.c: fixed the validation of sequences
2350 content model when some of the blocks have min or max, and a couple
2351 of bugs found in the process.
2352 * result/schemas/list0* test/schemas/list0*: added some specific
2353 regression tests
2354
2355Tue Oct 15 12:41:01 CEST 2002 Daniel Veillard <daniel@veillard.com>
2356
2357 * README: updated the contact informations
2358
2359Tue Oct 15 10:35:57 CEST 2002 Daniel Veillard <daniel@veillard.com>
2360
2361 * Makefile.am: use test -f instead of test -e since Solaris /bin/sh
2362 misses it, reported by Peter Bray.
2363
2364Mon Oct 14 17:37:32 CEST 2002 Daniel Veillard <daniel@veillard.com>
2365
2366 * tree.c: investigating xmlNodeGetContent() on namespace nodes
2367 and removed a few warnings
2368
2369Mon Oct 14 13:12:55 CEST 2002 Daniel Veillard <daniel@veillard.com>
2370
2371 * parser.c: Christian Glahn found a small bug in the push parser.
2372 * xmlIO.c include/libxml/xmlIO.h: cleaned up and made xmlCheckFilename
2373 public
2374
2375Wed Oct 9 23:11:02 CEST 2002 Daniel Veillard <daniel@veillard.com>
2376
2377 * xmlschemas.c include/libxml/xmlschemas.h: added
2378 xmlSchemaNewMemParserCtxt to parse a schemas from a memory area
2379 * testSchemas.c: added --memory to test the new interface
2380
2381Wed Oct 9 16:22:54 CEST 2002 Daniel Veillard <daniel@veillard.com>
2382
2383 * doc/index.py doc/search.php: integrated the XSLT indexing,
2384 a few fixed in the indexer, added a scope selection at the
2385 search level.
2386
2387Wed Oct 9 12:18:37 CEST 2002 Daniel Veillard <daniel@veillard.com>
2388
2389 * valid.c: Joe Marcus Clarke reported a segfault on FBsd
2390 this was due to uninitialized parts of the validation context
2391
2392Tue Oct 8 23:24:20 CEST 2002 Daniel Veillard <daniel@veillard.com>
2393
2394 * debugXML.c: applied patch from Mark Vakoc except the API
2395 change, preserved it.
2396 * doc/*: updated the docs to point to the search engine for
2397 information lookup or before bug/help reports.
2398
2399Tue Oct 8 18:53:31 CEST 2002 Daniel Veillard <daniel@veillard.com>
2400
2401 * doc/index.py doc/search.php: added mailing-list archives
2402 indexing and lookup
2403
2404Tue Oct 8 10:25:07 CEST 2002 Daniel Veillard <daniel@veillard.com>
2405
2406 * tree.c: patch from Mark Vakoc to fix xmlNodeGetPath()
2407
2408Mon Oct 7 13:12:03 CEST 2002 Daniel Veillard <daniel@veillard.com>
2409
2410 * doc/index.py: improved HTML indexing
2411 * doc/search.php: make the queries also lookup the HTML based indexes
2412
2413Sun Oct 6 23:50:29 CEST 2002 Daniel Veillard <daniel@veillard.com>
2414
2415 * doc/index.py: added HTML page indexing
2416
2417Fri Oct 4 15:33:55 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
2418
2419 * xmlIO.c: extended Windows path normalisation to fix the base
2420 problem in libxslt.
2421 * catalog.c: fixed list handling in XML_CATALOG_FILES
2422
2423Fri Oct 4 13:43:02 CEST 2002 Daniel Veillard <daniel@veillard.com>
2424
2425 * valid.c: typo/bug found by Christian Glahn
2426
2427Sun Sep 29 19:44:10 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
2428
2429 * xmlIO.c: applied Windows CE patch from Javier.
2430 * win32/wince: new directory, contains support for the PocketPC
2431 with Windows CE from Javier.
2432 * include/win32config.h: reorganised, removed duplicate
2433 definitions and applied WinCE patch from Javier.
2434 * include/wsockcompat.h: new file, now contains WinSock
2435 compatibility macros.
2436 * win32/Makefile.msvc: introduced double-run compilation.
2437
2438Thu Sep 26 19:48:06 CEST 2002 Daniel Veillard <daniel@veillard.com>
2439
2440 * configure.in include/libxml/xmlwin32version.h: preparing release
2441 of 2.4.25
2442 * doc/*: updated and regenerated teh docs and web pages.
2443
2444Thu Sep 26 17:33:46 CEST 2002 Daniel Veillard <daniel@veillard.com>
2445
2446 * SAX.c valid.c include/libxml/valid.h: fixed bug #92518 validation
2447 error were not covering namespace declarations.
2448 * result/valid/dia.xml test/valid/dia.xml: the test wasn't valid,
2449 it was missing the attribute declaration for the namespace
2450 * result/VC/NS3: the fix now report breakages in that test
2451
2452Thu Sep 26 14:39:07 CEST 2002 Daniel Veillard <daniel@veillard.com>
2453
2454 * HTMLtree.c: fixing bug #94241 on HTML boolean attributes
2455
2456Thu Sep 26 14:25:33 CEST 2002 Daniel Veillard <daniel@veillard.com>
2457
2458 * doc/*: added the 3 new modules xmlregexp xmlautomata and xmlunicode
2459 and regenerated the docs and web site
2460
2461Thu Sep 26 11:45:42 CEST 2002 Daniel Veillard <daniel@veillard.com>
2462
2463 * xinclude.c xmlschemas.c xmlschemastypes.c xpath.c: make sure
2464 ATTRIBUTE_UNUSED is always put after the attribute declaration,
2465 not before
2466
2467Thu Sep 26 11:33:28 CEST 2002 Daniel Veillard <daniel@veillard.com>
2468
2469 * python/generator.py python/libxml2class.txt: fixed a stupid error
2470 breaking the python API
2471
2472Thu Sep 26 00:31:46 CEST 2002 Daniel Veillard <daniel@veillard.com>
2473
2474 * trio.c trio.h triodef.h trionan.c trionan.h triop.h
2475 triostr.c triostr.h: applied a trio update patch from
2476 Bjorn Reese which should work with MinGW
2477
2478Thu Sep 26 00:21:18 CEST 2002 Daniel Veillard <daniel@veillard.com>
2479
2480 * tree.c: improving some documentation comments
2481 * xmlregexp.c: found and fixed a mem leak with python regression tests
2482 * doc/*: rebuilt the doc and the API XML file including the
2483 xmlregexp.h xmlautomata.h and xmlunicode.h headers
2484 * python/generator.py python/libxml2class.txt python/libxml_wrap.h
2485 python/types.c: added access to the XML Schemas regexps from
2486 python
2487 * python/tests/Makefile.am python/tests/regexp.py: added a
2488 simple regexp bindings test
2489
2490Tue Sep 24 08:10:48 MDT 2002 John Fleck <jfleck@inkstain.net>
2491
2492 * doc/xml.html:
2493 fixing ftp links - thanks to Vitaly Ostanin
2494
2495Tue Sep 24 16:08:17 CEST 2002 Daniel Veillard <daniel@veillard.com>
2496
2497 * xmlregexp.c: fixed the data callback on transition functionality
2498 which was broken when using the compact form
2499 * result/schemas/*: updated the results, less verbose, all tests
2500 pass like before
2501 * DOCBparser.c testAutomata.c testC14N.c testSchemas.c testThreads.c
2502 testXPath.c valid.c xinclude.c xmllint.c xmlregexp.c xmlschemas.c
2503 xmlschemastypes.c xpath.c python/libxml.c: removed a bunch of
2504 annoying warnings
2505 * xpath.c: try to provide better error report when possible
2506
2507Sat Sep 21 14:56:37 CEST 2002 Daniel Veillard <daniel@veillard.com>
2508
2509 * Makefile.am: fixed a breakage raised by Jacob
2510
2511Fri Sep 20 20:08:18 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
2512
2513 * include/win32config.h: added HAVE_ERRNO_H definition for parts
2514 which don't use sockets
2515
2516Fri Sep 20 18:40:50 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
2517
2518 * win32/Makefile.msvc: applied zlib patch from Daniel Gehriger
2519 * win32/configure.js: applied zlib patch from Daniel Gehriger
2520
2521Fri Sep 20 15:40:14 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
2522
2523 * win32/configure.js: applied the patch from Mark Vakoc for
2524 regexp support
2525 * win32/libxml2.def.src: applied the patch from Mark Vakoc
2526 for regexp support
2527
2528Fri Sep 20 15:35:33 CEST 2002 Daniel Veillard <daniel@veillard.com>
2529
2530 * xmlschemastypes.c: as pointed by Igor Float and Double
2531 parsing ain't finished yet
2532
2533Fri Sep 20 14:00:16 CEST 2002 Daniel Veillard <daniel@veillard.com>
2534
2535 * Makefile.am configure.in: trying to fix #88412 by bypassing
2536 all the python subdir if python ain't detected
2537
2538Thu Sep 19 21:46:53 CEST 2002 Daniel Veillard <daniel@veillard.com>
2539
2540 * Makefile.am configure.in include/libxml/xmlversion.h.in:
2541 made configuring with regexps/automata/unicode the default
2542 but without schemas ATM
2543 * testRegexp.c valid.c xmlregexp.c include/libxml/xmlregexp.h:
2544 fixed the regexp based DTD validation performance and memory
2545 problem by switching to a compact form for determinist regexps
2546 and detecting the determinism property in the process. Seems
2547 as fast as the old DTD validation specific engine :-) despite
2548 the regexp built and compaction process.
2549
2550Wed Sep 18 18:27:26 CEST 2002 Daniel Veillard <daniel@veillard.com>
2551
2552 * valid.c: determinism is debugged, new DTD checking code now works
2553 but xmlFAComputesDeterminism takes far too much CPU and the whole
2554 set usues too much memory to be really usable as-is
2555
2556Wed Sep 18 00:54:30 CEST 2002 Daniel Veillard <daniel@veillard.com>
2557
2558 * tree.c: fixed another stupid bug in xmlGetNodePath()
2559 * xmllint.c: --version now report the options compiled in
2560
2561Tue Sep 17 23:48:07 CEST 2002 Daniel Veillard <daniel@veillard.com>
2562
2563 * HTMLparser.c: small cleanup
2564 * valid.c xmlregexp.c: switched DTD validation to use only regexp
2565 when configured with them. A bit of debugging around the determinism
2566 checks is still needed
2567
2568Tue Sep 17 21:22:25 CEST 2002 Daniel Veillard <daniel@veillard.com>
2569
2570 * python/libxml_wrap.h: stupid bug found by mattam@netcourrier.com
2571
2572Tue Sep 17 19:58:26 CEST 2002 Daniel Veillard <daniel@veillard.com>
2573
2574 * xmlIO.c: small portability glitch fixed.
2575
2576Mon Sep 17 12:38:08 CEST 2002 Daniel Veillard <daniel@veillard.com>
2577
2578 * xmlschemastypes.c: incomplete steps for real/double support
2579 * testAutomata.c include/libxml/xmlautomata.h
2580 include/libxml/xmlregexp.h: avoiding a compilation problem
2581 * valid.c include/libxml/valid.h: starting the work toward using
2582 the regexps for actual DTD validation
2583
2584Fri Sep 13 16:46:14 CEST 2002 Daniel Veillard <daniel@veillard.com>
2585
2586 * hash.c: cosmetic cleanup
2587 * valid.c include/libxml/tree.h include/libxml/valid.h: started
2588 integrating a DTD validation layer based on the regexps
2589
2590Thu Sep 12 18:01:29 CEST 2002 Daniel Veillard <daniel@veillard.com>
2591
2592 * xmlregexp.c xmlschemas.c: fixed a bug reported by Jeff Goff,
2593 the determinism was tested before eliminating the epsilon
2594 transitions :-(
2595
2596Thu Sep 12 16:57:45 CEST 2002 Daniel Veillard <daniel@veillard.com>
2597
2598 * python/generator.py python/libxml.c python/libxml.py
2599 python/libxml2-python-api.xml python/libxml2class.txt
2600 python/libxml_wrap.h python/types.c: updated the python
2601 bindings, added code for easier File I/O, and the ability to
2602 define a resolver from Python fixing bug #91635
2603 * python/tests/Makefile.am python/tests/inbuf.py
2604 python/tests/outbuf.py python/tests/pushSAXhtml.py
2605 python/tests/resolver.py python/tests/serialize.py: updated
2606 and augmented the set of Python tests.
2607
2608Tue Sep 10 21:05:28 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
2609
2610 * win32/configure.js: added more readme info for the binary
2611 package.
2612
2613Tue Sep 10 14:15:18 CEST 2002 Daniel Veillard <daniel@veillard.com>
2614
2615 * xmlIO.c: fixed a stupid out of bound array error
2616
2617Tue Sep 10 13:09:14 CEST 2002 Daniel Veillard <daniel@veillard.com>
2618
2619 * include/libxml/xmlIO.h xmlIO.c parser.c HTMLparser.c DOCBparser.c:
2620 messing around with support for Windows path, cleanups,
2621 trying to identify and fix the various code path to the
2622 filename access. Added xmlNormalizeWindowsPath()
2623
2624Thu Sep 5 16:19:18 CEST 2002 Daniel Veillard <daniel@veillard.com>
2625
2626 * error.c valid.c: working on better error reporting of validity
2627 errors, especially providing an accurate context.
2628 * result/valid/xlink.xml.err result/valid/rss.xml.err: better
2629 error reports in those cases.
2630
2631Thu Sep 5 13:29:47 CEST 2002 Daniel Veillard <daniel@veillard.com>
2632
2633 * DOCBparser.c HTMLparser.c c14n.c entities.c list.c
2634 parser.c parserInternals.c xmlIO.c: get rid of all the
2635 perror() calls made in the library execution paths. This
2636 should fix both #92059 and #92385
2637
2638Thu Sep 5 13:13:17 CEST 2002 Daniel Veillard <daniel@veillard.com>
2639
2640 * xmllint.c: memory leak reporting was broken after a change
2641 of the preprocessor symbol used to activate it.
2642
2643Thu Sep 5 13:10:57 CEST 2002 Daniel Veillard <daniel@veillard.com>
2644
2645 * tree.c: try to make the copy function work for node of
2646 type XML_DOCUMENT_FRAG_NODE, they are only created by the
2647 DOM layers though, not libxml2 itself.
2648
2649Thu Sep 5 12:57:38 CEST 2002 Daniel Veillard <daniel@veillard.com>
2650
2651 * valid.c: try to provide file and line informations, not all
2652 messages are covered, but it's a (good) start
2653
2654Thu Sep 5 12:49:35 CEST 2002 Daniel Veillard <daniel@veillard.com>
2655
2656 * xinclude.c: reimplemented a large part of the XInclude
2657 processor, trying to minimize resources used, James Henstridge
2658 provided a huge test case which was exhibiting severe memory
2659 consumption problems.
2660
2661Thu Sep 5 10:07:13 CEST 2002 Daniel Veillard <daniel@veillard.com>
2662
2663 * python/Makefile.am: applied patch from Christophe Merlet to
2664 reestablish DESTDIR
2665
2666Wed Sep 4 14:13:34 CEST 2002 Daniel Veillard <daniel@veillard.com>
2667
2668 * libxml.spec.in: fixes libary path for x86_64 AMD
2669
2670Tue Sep 3 21:14:19 MDT 2002 John Fleck <jfleck@inkstain.net>
2671
2672 * doc/tutorial/includekeyword.c
2673 * doc/tutorial/xmltutorial.xml:
2674 (plus resulting generated html files)
2675 fixing one spot I missed in the tutorial where I hadn't freed
2676 memory properly
2677
2678Sat Aug 31 19:31:17 MDT 2002 John Fleck <jfleck@inkstain.net>
2679
2680 * doc/tutorial/includeaddattribute.c
2681 * doc/tutorial/includeaddkeyword.c
2682 * doc/tutorial/includegetattribute.c
2683 * doc/tutorial/includekeyword.c
2684 * doc/tutorial/xmltutorial.xml
2685 * doc/tutorial/*.html:
2686 update tutorial to properly free memory (thanks to Christopher
2687 R. Harris for pointing out that this needs to be done)
2688 * doc/tutorial/images/callouts/*.png:
2689 added image files so the callouts are graphical, making it
2690 easier to read ( use "--param callout.graphics 1" to generate
2691 html with graphical callouts)
2692
2693Wed Aug 28 13:44:54 CEST 2002 Daniel Veillard <daniel@veillard.com>
2694
2695 * doc/Libxml2-Logo-180x168.gif doc/Libxml2-Logo-90x34.gif:
2696 nice logos generated by Marc Liyanage
2697 * doc/site.xsl *.html: changed the stylesheet to show the new
2698 logo and regenerated the pages
2699
2700Sun Aug 25 16:38:05 CEST 2002 Daniel Veillard <daniel@veillard.com>
2701
2702 * xmlIO.c: handle Windows sepecific file://localhost/ semantic ...
2703
2704Thu Aug 22 22:03:19 CEST 2002 Daniel Veillard <daniel@veillard.com>
2705
2706 * xpath.c: possible mem leak patch from Jason Adams
2707
2708Thu Aug 22 17:27:30 CEST 2002 Daniel Veillard <daniel@veillard.com>
2709
2710 * xpath.c: integrated xf:escape-uri() from Wesley Terpstra
2711 in the XQuery namespace
2712 * configure.in: preparing 2.4.24
2713 * doc/*.html: updated the web pages
2714
2715Thu Aug 22 16:19:42 CEST 2002 Daniel Veillard <daniel@veillard.com>
2716
2717 * python/generator.py: closing bug #85258 by generating conditional
2718 compile check to avoid linking to routines not configured in.
2719
27202002-08-22 Havoc Pennington <hp@pobox.com>
2721
2722 * autogen.sh: update error message for missing automake
2723
2724Thu Aug 22 11:45:50 CEST 2002 Daniel Veillard <daniel@veillard.com>
2725
2726 * python/Makefile.am: typo in target name resulted in libxml2.py
2727 to not be rebuilt. fixed DESTDIR similary to the libxslt one.
2728
2729Thu Aug 22 09:15:00 CEST 2002 Daniel Veillard <daniel@veillard.com>
2730
2731 * win32/win32/Makefile.mingw: updated with version from
2732 Elizabeth Barham at http://soggytrousers.net/repository/
2733
2734Tue Aug 20 16:40:48 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
2735
2736 * win32/Makefile.msvc: added the prefix location to the include
2737 and lib search path.
2738
27392002-08-18 Havoc Pennington <hp@pobox.com>
2740
2741 * autogen.sh: hardcode aclocal-1.4/automake-1.4 so that users with
2742 both automake 1.6 and 1.4 installed get the right automake. Means
2743 compilation from CVS will now require the latest automake 1.4
2744 release, or manually creating symlinks called "automake-1.4" and
2745 "aclocal-1.4"
2746
2747Wed Aug 14 18:54:19 CEST 2002 Daniel Veillard <daniel@veillard.com>
2748
2749 * configure.in python/Makefile.am: more AMD 64 induced changes from
2750 Frederic Crozat
2751
2752Wed Aug 14 16:43:53 CEST 2002 Daniel Veillard <daniel@veillard.com>
2753
2754 * xinclude.c: oops I was missing the xml:base fixup too
2755 * result/XInclude/*.xml: this adds xml:base attributes to most
2756 results of the tests
2757
2758Wed Aug 14 16:05:37 CEST 2002 Daniel Veillard <daniel@veillard.com>
2759
2760 * xinclude.c: quick but apparently working implementation of
2761 xi:fallback, should close bug #89684
2762 * Makefile.am test/XInclude/docs/fallback.xml
2763 result/XInclude/fallback.xml: added a basic test for fallback,
2764 and run with --nowarning to avoid a spurious warning
2765 * configure.in: applied patch from Frederic Crozat for python
2766 bindings on AMD 64bits machines.
2767
2768Wed Aug 14 10:47:46 CEST 2002 Daniel Veillard <daniel@veillard.com>
2769
2770 * parser.c: xmlSAXUserParseMemory() really ought to fail if
2771 the caller don't pass a SAX callback block.
2772
2773Wed Aug 14 10:29:02 CEST 2002 Daniel Veillard <daniel@veillard.com>
2774
2775 * tree.c: applied the same fix for the XML-1.0 namespace to
2776 xmlSearchNsByHref() as was done for xmlSearchNs()
2777
2778Mon Aug 12 16:52:08 CEST 2002 Daniel Veillard <daniel@veillard.com>
2779
2780 * libxml.3: small cleanup of the man page
2781 * HTMLtree.c: fixed a potential problem raised by Petr Vandrovec
2782 when serializing HREF attributes generated by XSLT.
2783
2784Mon Aug 12 15:24:05 CEST 2002 Daniel Veillard <daniel@veillard.com>
2785
2786 * HTMLtree.c include/libxml/HTMLtree.h: integrated a cleaned up
2787 version of Marc Liyanage' patch for boolean attributes in HTML
2788 output
2789
2790Mon Aug 12 14:11:59 CEST 2002 Daniel Veillard <daniel@veillard.com>
2791
2792 * python/tests/serialize.py: fixed the test results, indenting
2793 behaviour changed slightly
2794
2795Thu Aug 8 11:00:26 2002 Aleksey Sanin <aleksey@aleksey.com>
2796
2797 * win32/dsp/libxml2.def.src win32/libxml2.def.src: added
2798 new c14n function to Windows def files
2799
2800Fri Aug 2 16:46:46 2002 Aleksey Sanin <aleksey@aleksey.com>
2801
2802 * c14n.c: fixed a memory leak in c14n code
2803
2804Sat Aug 3 00:15:06 CEST 2002 Daniel Veillard <daniel@veillard.com>
2805
2806 * parser.c include/libxml/parser.h: adding a new API for Christian
2807 Glahn: xmlParseBalancedChunkMemoryRecover
2808 * valid.c: patch from Rick Jones for some grammar cleanup in
2809 validation messages
2810 * result/VC/* result/valid/*: this slightly change some of the
2811 regression tests outputs
2812
2813Thu Aug 1 14:50:28 CEST 2002 Daniel Veillard <daniel@veillard.com>
2814
2815 * tree.c: trying to fix a problem in namespaced attribute handling
2816 raised by Christian Glahn
2817
2818Thu Aug 1 12:17:30 CEST 2002 Daniel Veillard <daniel@veillard.com>
2819
2820 * encoding.c include/libxml/encoding.h: Opening the interface
2821 xmlNewCharEncodingHandler as requested in #89415
2822 * python/generator.py python/setup.py.in: applied cleanup
2823 patches from Marc-Andre Lemburg
2824 * tree.c: fixing bug #89332 on a specific case of loosing
2825 the XML-1.0 namespace on xml:xxx attributes
2826
2827Wed Jul 31 23:27:42 2002 Aleksey Sanin <aleksey@aleksey.com>
2828
2829 * c14n.c include/libxml/c14n.h: fixed one more c14n + namespaces
2830 corner case from new Merlin's test suite and added a callback
2831 that will be used to improve xmlsec performance
2832
2833
2834Mon Jul 29 18:22:00 CEST 2002 Daniel Veillard <daniel@veillard.com>
2835
2836 * HTMLtree.c: trying to fix the <style> escaping problem in
2837 HTML serialization bug #89342
2838
2839Thu Jul 25 01:33:47 CEST 2002 Daniel Veillard <daniel@veillard.com>
2840
2841 * doc/xml.html doc/*.html: applied syntax patch from Rick Jones
2842 and rebuilt the web site.
2843
2844Mon Jul 22 11:04:48 PDT 2002 Aleksey Sanin <aleksey@aleksey.com>
2845
2846 * include/libxml/tree.h: added _private member to xmlNs struct
2847
2848Sun Jul 21 17:48:47 CEST 2002 Daniel Veillard <daniel@veillard.com>
2849
2850 * HTMLparser.c: fixing bug #84876 based on the xml working
2851 code.
2852
2853Sun Jul 21 19:15:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
2854
2855 * python/Makefile.am: enhanced to fix bug 72012 (errors
2856 when using '-jX' make parameter)
2857
2858Fri Jul 19 16:35:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
2859
2860 * xpath.c: small additional enhancement for booleans
2861 compared to nodesets
2862
2863Wed Jul 17 19:48:14 CEST 2002 Daniel Veillard <daniel@veillard.com>
2864
2865 * HTMLtree.c: changed the order of the encoding declaration
2866 attributes in the meta tags due to a bug in IE/Mac
2867
2868Fri Jul 12 08:45:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
2869
2870 * xpath.c: enhanced handling of booleans (especially '='
2871 and '!=' for nodesets) - fixes bug 85256. Added new
2872 routine xmlXPathNotEqualValues for more proper handling
2873 of '!=' when nodesets are involved.
2874
2875Thu Jul 11 21:45:52 CEST 2002 Daniel Veillard <daniel@veillard.com>
2876
2877 * doc/Makefile.am: fixing Red Hat bug #68614 by adding the
2878 doc/xmlcatalog_man.xml to the source distribution
2879
2880Wed Jul 10 21:26:13 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
2881
2882 * win32/Makefile.msvc: Added a copy *.pdb to install, few have
2883 asked for this.
2884
2885Sat Jul 6 21:55:59 CEST 2002 Daniel Veillard <daniel@veillard.com>
2886
2887 * configure.in: preparing 2.4.23
2888 * doc/*: rebuilt the docs
2889
2890Sat Jul 6 21:11:20 CEST 2002 Daniel Veillard <daniel@veillard.com>
2891
2892 * parser.c: fixing bug #84169 by fixing the
2893 comment of xmlCreatePushParserCtxt to describe the
2894 encoding detection parameters better.
2895
2896Sat Jul 6 19:44:56 CEST 2002 Daniel Veillard <daniel@veillard.com>
2897
2898 * valid.c: fixing bug #79331 in one path the lookup for
2899 ID attributes on a namespaced node wasn't handled correctly :-\
2900
2901Fri Jul 5 20:07:43 CEST 2002 Daniel Veillard <daniel@veillard.com>
2902
2903 * HTMLparser.c: trying to fix 87235 about discarded white
2904 spaces in the HTML parser.
2905 * result/HTML/*: this changes the output of a number of HTML
2906 regression tests
2907
2908Mon Jul 1 23:23:41 CEST 2002 Daniel Veillard <daniel@veillard.com>
2909
2910 * xpath.c: applied patch from Richard Jinks for the namespace
2911 axis + fixed a memory error.
2912 * parser.c parserInternals.c: applied patches from Peter Jacobi
2913 removing ctxt->token for good.
2914 * xmlschemas.c xmlschemastypes.c: fixed a few memory leaks
2915 popped out by the regression tests.
2916 * Makefile.am: patch for threads makefile from Gary Pennington
2917
2918Fri Jun 28 19:38:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
2919
2920 * xpath.c: enhanced behaviour of position() after usage of
2921 expressions involving preceding-sibling (et al).
2922
2923Tue Jun 18 09:58:48 CEST 2002 Daniel Veillard <daniel@veillard.com>
2924
2925 * hash.c: applied a patch from Peter Jacobi to solve a problem
2926 when compiling with the Watcom C on Win32
2927 * result/schemas/*.err: the change of hashing algo generated
2928 permutations in the output
2929
2930Mon Jun 17 19:02:49 CEST 2002 Daniel Veillard <daniel@veillard.com>
2931
2932 * hash.c: applied patch from Sander Vesik improving the quality of
2933 the hash function.
2934
29352002-06-14 Aleksey Sanin <aleksey@aleksey.com>
2936
2937 * DOCBparser.c HTMLparser.c debugXML.c encoding.c
2938 nanoftp.c nanohttp.c parser.c tree.c uri.c xmlIO.c
2939 xmllint.c xpath.c: replaced sprintf() with snprintf()
2940 to prevent possible buffer overflow (the bug was pointed
2941 out by Anju Premachandran)
2942
2943Thu Jun 13 17:30:25 CEST 2002 Daniel Veillard <daniel@veillard.com>
2944
2945 * parser.c: removed an uninitialized data error popped by valgrind
2946 on PE references
2947
2948Wed Jun 12 21:38:46 MDT 2002 John Fleck <jfleck@inkstain.net>
2949
2950 * doc/xml.html
2951 adding tutorial reference to the web page
2952
2953Wed Jun 12 21:26:08 MDT 2002 John Fleck <jfleck@inkstain.net>
2954
2955 * doc/tutorial/xmltutorial.xml
2956 * doc/tutorial/ar01s07.html
2957 * doc/tutorial/ape.html
2958 * doc/tutorial/includegetattribute.c
2959 adding section to tutorial about retrieving an attribute
2960 value
2961
2962Tue Jun 11 12:07:04 CEST 2002 Daniel Veillard <daniel@veillard.com>
2963
2964 * parser.c: applied a couple of patches from Peter Jacobi to start
2965 to get rid of ctxt->token, with a possible significant speed
2966 improvement to be gained once done. Better compliance with PE
2967 references constructs in DTDs too.
2968 * test/valid/t[0-9]* result/valid/t[0-9]*: added a set of tests
2969 from Peter too
2970
2971Tue Jun 11 09:25:12 CEST 2002 Daniel Veillard <daniel@veillard.com>
2972
2973 * parser.c: Babak Vahedipour-Kunze reported that openTag in
2974 xmlParseElement was likely to have been deallocated at the
2975 time of the report, possibly leading to segfault. Just report
2976 the tag name now.
2977
2978Mon Jun 10 18:00:02 CEST 2002 Daniel Veillard <daniel@veillard.com>
2979
2980 * xpath.c: patch from Richard Jinks for XPath substring() function
2981 * result/XPath/expr/strings test/XPath/expr/strings: new set of tests
2982
29832002-06-06 Aleksey Sanin <aleksey@aleksey.com>
2984
2985 * xmlIO.c: patch from Rachel Hestilow to fix bug #84340
2986
2987Wed Jun 5 19:14:49 MDT 2002 John Fleck <jfleck@inkstain.net>
2988
2989 *doc/FAQ.html
2990 fixing typos in FAQ, thanks to Robert Funnell for the
2991 editing help
2992
2993Wed Jun 5 14:50:24 CEST 2002 Daniel Veillard <daniel@veillard.com>
2994
2995 * NEWS: got complaints from rpmlint that it was empty
2996
2997Tue Jun 4 09:09:18 MDT 2002 John Fleck <jfleck@inkstain.net>
2998
2999 * added doc/tutorial, including:
3000 apa.html
3001 apb.html
3002 apc.html
3003 apd.html
3004 ar01s02.html
3005 ar01s03.html
3006 ar01s04.html
3007 ar01s05.html
3008 ar01s06.html
3009 includeaddattribute.c
3010 includeaddkeyword.c
3011 includekeyword.c
3012 includestory.xml
3013 index.html
3014 xmltutorial.xml
3015 libxml tutorial, including generated html
3016
3017Mon Jun 3 21:21:26 2002 Aleksey Sanin <aleksey@aleksey.com>
3018
3019 * result/c14n/exc-without-comments/merlin-c14n-two-*
3020 result/c14n/without-comments/merlin-c14n-two-*
3021 test/c14n/exc-without-comments/merlin-c14n-two-*
3022 test/c14n/without-comments/merlin-c14n-two-*
3023 testC14N.c Makefile.am: added merlin-c14n-two.tar.gz tests for
3024 c14n/exc-c14n and slightly modified test script to handle
3025 these test cases
3026 * c14n.c: fixed bugs for complicated nodes set (namespace
3027 without node and others from merlin-c14n-two.tar.gz)
3028 * include/libxml/xpathInternals.h win32/dsp/libxml2.def.src
3029 win32/libxml2.def.src: "opened" xmlXPathNodeSetFreeNs() function
3030 for xmlsec performance patch
3031 * xpath.c: fixed self::node() for namespaces and attributes
3032
3033Mon Jun 03 00:04:21 2002 Chema Celorio <chema@ximian.com>
3034
3035 * tree.h: added xmlDocFormatDump which is just as xmlDocDump
3036 but with the format parameter
3037 * tree.c: made xmlDocDump a wrapper arround xmlDocFormatDump
3038
3039Fri May 31 12:16:48 2002 Aleksey Sanin <aleksey@aleksey.com>
3040
3041 * Makefile.am: updated c14n tests suite
3042 * c14n.c: performance improvement for previous c14n patch
3043
3044Fri May 31 11:47:12 CEST 2002 Daniel Veillard <daniel@veillard.com>
3045
3046 * parser.c: another peroformance patch from Peter Jacobi, that
3047 time on parsing attribute values.
3048
3049Thu May 30 23:34:27 2002 Aleksey Sanin <aleksey@aleksey.com>
3050
3051 * Makefile.am result/c14n/* test/c14n/*: C14N tests integrated
3052 into LibXML2 test suite
3053
3054Thu May 30 21:23:06 2002 Aleksey Sanin <aleksey@aleksey.com>
3055
3056 * c14n.c: propagating xpath ancesstors node fix to c14n
3057 plus small performance improvement to reduce number of
3058 mallocs
3059 * xpath.c: fixed ancestors axis processing for namespace nodes
3060
3061Wed May 29 10:21:39 CEST 2002 Daniel Veillard <daniel@veillard.com>
3062
3063 * SAX.c parser.c tree.c include/libxml/tree.h: performance patch from
3064 Peter Jacobi
3065
3066Mon May 27 23:18:33 CEST 2002 Daniel Veillard <daniel@veillard.com>
3067
3068 * configure.in: preparing 2.4.22
3069
3070Mon May 27 16:44:04 CEST 2002 Daniel Veillard <daniel@veillard.com>
3071
3072 * HTMLparser.c win32/libxml2.def.src win32/dsp/libxml2.def.src
3073 include/libxml/HTMLparser.h: fixing #79334 making htmlParseDocument
3074 a public entry point.
3075 * doc/*: rebuilt the API and docs
3076
3077Mon May 27 14:16:28 CEST 2002 Daniel Veillard <daniel@veillard.com>
3078
3079 * xpath.c: patch from Richard Jinks to fix a problem introduced
3080 in the previous patch and pointed by Norm
3081
3082Fri May 24 13:10:22 CEST 2002 Daniel Veillard <daniel@veillard.com>
3083
3084 * libxml.spec.in: fixing bug #81112
3085
3086Fri May 24 13:03:24 CEST 2002 Daniel Veillard <daniel@veillard.com>
3087
3088 * uri.c: fixing bug #82848
3089
3090Fri May 24 09:54:49 CEST 2002 Daniel Veillard <daniel@veillard.com>
3091
3092 * result/catalogs/mycatalog.full: Aleksey's commit changed the
3093 output of one catalog test
3094
3095Fri 24 May 2002 12:17:45 AM PDT Aleksey Sanin <aleksey@aleksey.com>
3096
3097 * global.data globals.c tree.c include/libxml/globals.h
3098 win32/libxml2.def.src win32/dsp/libxml2.def.src: changed
3099 default value for global parameter xmlIndentTreeOutput to 1 and
3100 introduced new global parameter xmlTreeIndentString (the string
3101 used to do one-level indent) with default value " " (as it was
3102 in tree.c)
3103
3104Thu May 23 13:55:57 CEST 2002 Daniel Veillard <daniel@veillard.com>
3105
3106 * Makefile.am: Merijn Broeren pointed out a problem when compiling
3107 with trio and schemas.
3108
3109Wed May 22 11:57:49 CEST 2002 Daniel Veillard <daniel@veillard.com>
3110
3111 * xpath.c: patch from Richard Jinks to fix the problem raised in
3112 http://mail.gnome.org/archives/xml/2002-April/msg00246.htm
3113
3114Wed May 22 08:38:19 CEST 2002 Daniel Veillard <daniel@veillard.com>
3115
3116 * xmlschemas.c: a bit of work on import.
3117 * xmlschemastypes.c: Charles Bozeman provided a compare function
3118 for date/time types so min/max facet restrictions should work,
3119 indeterminate comparisons return an error instead of equal.
3120 * test/schemas/date_0* result/schemas/date_0_0: specific test
3121 from Charles Bozeman too
3122
3123Sat May 18 09:54:12 CEST 2002 Daniel Veillard <daniel@veillard.com>
3124
3125 * libxml.3 doc/buildDocBookCatalog: apply a couple of patches
3126 from Christian Cornelssen fixing the man pages and the Catalog
3127 building script.
3128 * xmlschemas.c include/libxml/schemasInternals.h: nothing new yet
3129 next step is <xs:import> I now have a reasonable understanding
3130 of how it works.
3131
3132Thu May 16 10:43:26 CEST 2002 Daniel Veillard <daniel@veillard.com>
3133
3134 * xmlIO.c: applied a small buffer performance patch from Gary Pennington
3135
3136Wed May 15 00:25:34 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
3137
3138 * win32/libxml2.def.src: exported xmlXPathNodeSetAddNs()
3139
3140Tue May 14 13:00:48 CEST 2002 Daniel Veillard <daniel@veillard.com>
3141
3142 * xpath.c: fixing an XPath function evalutation bug pointed out
3143 by Alexey Efimov where the context was lost when evaluating
3144 the function arguments
3145
3146Mon 13 May 2002 11:37:39 PM PDT Aleksey Sanin <aleksey@aleksey.com>
3147
3148 * xpath.c include/libxml/xpathInternals.h: maked xmlXPathNodeSetAddNs()
3149 function public for XMLSec performance optimizations
3150
3151Mon May 13 12:32:22 CEST 2002 Daniel Veillard <daniel@veillard.com>
3152
3153 * python/generator.py python/libxml2class.txt : fixed a problem
3154 with the HTML parser pointed by Gary Benson
3155 * python/tests/Makefile.am python/tests/pushSAXhtml.py: sdding the
3156 example
3157
3158Thu 09 May 2002 11:19:00 AM PDT Aleksey Sanin <aleksey@aleksey.com>
3159 * parser.c: fixed bug #81159 (memory growth in SAX)
3160
3161Tue 07 May 2002 09:20:21 AM PDT Aleksey Sanin <aleksey@aleksey.com>
3162 * xpath.c: fixed bug #78858 (the real fix)
3163
3164Sat 04 May 2002 11:56:31 PM PDT Aleksey Sanin <aleksey@aleksey.com>
3165 * xpath.c: fixed bug #78858 (quick and durty fix to hide the problem)
3166
3167Sun May 5 08:57:08 CEST 2002 Daniel Veillard <daniel@veillard.com>
3168
3169 * tree.c: modified xmlNodeSetBase to allow changing the
3170 base of a document.
3171
3172Fri May 3 09:20:41 CEST 2002 Daniel Veillard <daniel@veillard.com>
3173
3174 * xmlschemastypes.c: patch Charles Bozeman for validation of
3175 all the date, time, and duration types
3176 * test/schemas/dur_0* result/schemas/dur_0*: associated tests
3177 * configure.in: fixed an error pointed by an user
3178 * xml2-config.in: fixed an error pointed by an user
3179
3180Wed 01 May 2002 11:29:27 AM PDT Aleksey Sanin <aleksey@aleksey.com>
3181
3182 * include/libxml/xmlIO.h win32/dsp/libxml2.def.src
3183 win32/libxml2.def.src xmlIO.c: exported default
3184 'file:', 'http:' and 'ftp:' protocols input handlers
3185 and maked protocols comparisson case insensitive
3186
3187Tue Apr 30 16:29:05 CEST 2002 Daniel Veillard <daniel@veillard.com>
3188
3189 * configure.in: Neven Has detected a typo
3190
3191Tue Apr 30 08:48:11 CEST 2002 Daniel Veillard <daniel@veillard.com>
3192
3193 * AUTHORS HACKING: added Aleksey Sanin <aleksey@aleksey.com>
3194 as one of the persons allowed to commit directly to the
3195 module.
3196
3197Mon Apr 29 17:48:26 CEST 2002 Daniel Veillard <daniel@veillard.com>
3198
3199 * configure.in include/libxml/xmlwin32version.h: preparing 2.4.21
3200 * valid.c: raised a too low limit
3201 * doc/*: rebuilt the docs
3202
3203Wed Apr 24 13:41:03 CEST 2002 Daniel Veillard <daniel@veillard.com>
3204
3205 * test/XPath/expr/floats test/XPath/expr/functions
3206 result/XPath/expr/floats result/XPath/expr/functions
3207 xpath.c: another XPath conformance patch from Richard Jinks
3208
3209Tue Apr 23 19:50:40 CEST 2002 Daniel Veillard <daniel@veillard.com>
3210
3211 * xmlschemas.c: fixed validation of attribute groups.
3212 * test/schemas result/schemas: added an example from the primer
3213
3214Tue Apr 23 09:11:37 CEST 2002 Daniel Veillard <daniel@veillard.com>
3215
3216 * Makefile.am xmlschemas.c xmlschemastypes.c: more work on Schemas
3217 * test/schemas result/schemas: updated the test list
3218
3219Mon Apr 22 17:59:14 CEST 2002 Daniel Veillard <daniel@veillard.com>
3220
3221 * TODO: updated a bit
3222 * parser.c: made a comment more specific
3223 * xmlregexp.c xmlschemas.c xmlschemastypes.c: more work on the
3224 Schemas conformance.
3225 * test/schemas result/schemas: updated the test list
3226
3227Sat Apr 20 19:36:39 CEST 2002 Daniel Veillard <daniel@veillard.com>
3228
3229 * xmlregexp.c xmlschemas.c include/libxml/xmlautomata.h:
3230 implementing xs:all with minOccurs = 0
3231 * tes/schemas/* result/schemas/*: added more tests covering
3232 xs:all
3233
3234Sat Apr 20 09:22:50 CEST 2002 Daniel Veillard <daniel@veillard.com>
3235
3236 * xmlregexp.c: first implementation of the all particle, this
3237 may need to be revisited for case where not all transitions
3238 must be crossed.
3239
3240Fri Apr 19 18:26:04 CEST 2002 Daniel Veillard <daniel@veillard.com>
3241
3242 * tree.c: another entity processing update from Markus Henke
3243
3244Fri Apr 19 17:14:24 CEST 2002 Bjorn Reese <breese@users.sourceforge.net>
3245
3246 * trionan.c: fixed crash on OSF/1
3247
3248Fri Apr 19 09:00:56 CEST 2002 Daniel Veillard <daniel@veillard.com>
3249
3250 * xmlschemas.c: more Schemas work
3251 * test/schemas/* result/schemas/*: added more tests coming
3252 from the spec.
3253
3254Thu Apr 18 23:00:02 CEST 2002 Daniel Veillard <daniel@veillard.com>
3255
3256 * c14n.c: patch from Aleksey Sanin reflecting a change in the
3257 ExcC14N specification
3258
3259Thu Apr 18 18:38:30 CEST 2002 Daniel Veillard <daniel@veillard.com>
3260
3261 * tree.c: patch from Markus Henke, fix for recursive entities.
3262
3263Thu Apr 18 17:49:24 CEST 2002 Daniel Veillard <daniel@veillard.com>
3264
3265 * xpath.c: fix a problem with string() on a document node.
3266
3267Thu Apr 18 16:40:42 CEST 2002 Daniel Veillard <daniel@veillard.com>
3268
3269 * Makefile.am xmlschemas.c: more Schemas work
3270 * test/schemas/* result/schemas/*: added more tests coming
3271 from the spec.
3272
3273Thu Apr 18 13:52:52 CEST 2002 Daniel Veillard <daniel@veillard.com>
3274
3275 * HTMLtree.c: fixed & serialization bug introduced in 2.4.20
3276 * result/HTML/*: this changes a few things in the results
3277
3278Wed Apr 17 20:34:37 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
3279
3280 * include/libxml/tree.h: eliminated 'declaration different than
3281 prototype' warning
3282 * include/win32config.h: "resolved" conflicts with errno.h
3283
3284Wed Apr 17 18:26:07 CEST 2002 Daniel Veillard <daniel@veillard.com>
3285
3286 * xmlregexp.c xmlschemas.c include/libxml/xmlautomata.h: more work
3287 on the automata interfaces and debug of counted choices
3288 * test/schemas/* result/schemas/*: added a number of tests
3289
3290Wed Apr 17 11:03:03 CEST 2002 Daniel Veillard <daniel@veillard.com>
3291
3292 * xmlschemas.c xmlschemastypes.c include/libxml/xmlschemas.h:
3293 a bit of work on Schemas
3294 * testSchemas.c: try to make it more useful
3295 * test/schemas/* result/schemas/* Makefile.am: changed the
3296 Schemas regression test procedure, started adding a few samples
3297
3298Tue Apr 16 19:52:01 CEST 2002 Igor Zlatkovic <izlatkovic@stud.fh-frankfurt.de>
3299
3300 * include/libxml/encoding.h: Patch for the Borland C++ builder
3301 * include/libxml/tree.h: Patch for the Borland C++ builder
3302 * threads.c: Patch for the Borland C++ builder
3303 * win32/bcb5: New directory for the Borland C++ builder
3304 project files
3305
3306Tue Apr 16 19:46:55 CEST 2002 Igor Zlatkovic <izlatkovic@stud.fh-frankfurt.de>
3307
3308 * win32/Makefile.msvc: Update for XML Schema support
3309 * win32/configure.js: Update for XML Schema support
3310 * win32/libxml2.def.src: Update for XML Schema support
3311
3312Tue Apr 16 17:46:43 CEST 2002 Daniel Veillard <daniel@veillard.com>
3313
3314 * Makefile.am TODO_SCHEMAS configure.in genUnicode.py testAutomata.c
3315 testRegexp.c testSchemas.c xmlregexp.c xmlschemas.c xmlschemastypes.c
3316 xmlunicode.c include/libxml/Makefile.am
3317 include/libxml/schemasInternals.h include/libxml/xmlautomata.h
3318 include/libxml/xmlregexp.h include/libxml/xmlschemas.h
3319 include/libxml/xmlschemastypes.h include/libxml/xmlunicode.h
3320 include/libxml/xmlversion.h.in : merged the current state of
3321 XML Schemas implementation, it is not configured in by default,
3322 a specific --schemas configure option has been added.
3323 * test/automata test/regexp test/schemas Makefile.am
3324 result/automata result/regexp result/schemas:
3325 merged automata/regexp/schemas regression tests
3326
3327Tue Apr 16 09:48:44 CEST 2002 Daniel Veillard <daniel@veillard.com>
3328
3329 * xpath.c: Gary found a compile time problem, fixes #78823
3330
3331Mon Apr 15 19:11:36 CEST 2002 Daniel Veillard <daniel@veillard.com>
3332
3333 * configure.in: release of 2.4.20
3334 * doc/*: updated and rebuilt the docs
3335
3336Mon Apr 15 14:55:53 CEST 2002 Daniel Veillard <daniel@veillard.com>
3337
3338 * python/Makefile.am: patch from Cristian Gafton to build on
3339 Red Hat 6.2, should also fix #75779
3340
3341Mon Apr 15 12:14:49 CEST 2002 Daniel Veillard <daniel@veillard.com>
3342
3343 * valid.c: first part of fixing #78729
3344
3345Sun Apr 14 23:44:58 CEST 2002 Daniel Veillard <daniel@veillard.com>
3346
3347 * HTMLtree.c uri.c: fixing bug #78662 i.e. add proper
3348 escaping of URI when saving HTML files.
3349 * result/HTML/*: this impacted some tests
3350
3351Sun Apr 14 14:55:15 CEST 2002 Daniel Veillard <daniel@veillard.com>
3352
3353 * configure.in: trying to fix #77441
3354
3355Fri Apr 12 23:02:16 CEST 2002 Daniel Veillard <daniel@veillard.com>
3356
3357 * include/libxml/xmlIO.h: Hallski complained it could not be
3358 included by itself.
3359
3360Thu Apr 11 10:23:36 CEST 2002 Daniel Veillard <daniel@veillard.com>
3361
3362 * configure.in: applied an IEEE flag patch for OSF/1 #77825
3363
3364Wed Apr 10 23:31:34 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
3365
3366 * win32/configure.js: patch from Nilo for the c14n option
3367 * win32/Makefile.msvc: fixed libxml2.def generation with threads
3368
3369Wed Apr 10 21:24:16 CEST 2002 Daniel Veillard <daniel@veillard.com>
3370
3371 * xpath.c include/libxml/xmlwin32version.h.in: Silvan Minghetti
3372 pointed erroneous use of LIBXML_THREADS_ENABLED instead of
3373 LIBXML_THREAD_ENABLED
3374
3375Wed Apr 10 18:12:52 CEST 2002 Daniel Veillard <daniel@veillard.com>
3376
3377 * xpath.c: another patch from Richard Jinks for substring conformance
3378 * test/XPath/expr/floats test/XPath/expr/strings
3379 result/XPath/expr/floats result/XPath/expr/strings: update of the
3380 test suite to check those.
3381
3382Wed Apr 10 13:29:49 CEST 2002 Daniel Veillard <daniel@veillard.com>
3383
3384 * xpath.c: patch from Richard Jinks for .x float parsing.
3385
3386Tue Apr 9 18:09:31 CEST 2002 Daniel Veillard <daniel@veillard.com>
3387
3388 * parser.c: patch from Markus Henke when an encoding ain't recognized
3389
3390Tue Apr 9 15:47:14 CEST 2002 Daniel Veillard <daniel@veillard.com>
3391
3392 * libxml.m4: got a report that #include <string.h> was needed
3393
3394Tue Apr 9 11:51:25 CEST 2002 Daniel Veillard <daniel@veillard.com>
3395
3396 * xmllint.c: applied a fix from Anthony Jones for -o /--output
3397
3398Tue Apr 2 20:27:11 MST 2002 John Fleck <jfleck@inkstain.net>
3399
3400 * doc/example.html: fixing typo
3401
3402Mon Apr 1 10:02:57 CEST 2002 Daniel Veillard <daniel@veillard.com>
3403
3404 * xpath.c: fixed a bug in the nodeset to boolean comparison code
3405 pointed out by Melvyn Sopacua.
3406
3407Fri Mar 29 23:41:53 CET 2002 Daniel Veillard <daniel@veillard.com>
3408
3409 * libxml.m4: Frédéric Crozat gave a patch related to the change
3410 of Include paths breaking the libxml.m4
3411
3412Fri Mar 29 18:25:54 CET 2002 Daniel Veillard <daniel@veillard.com>
3413
3414 * xpath.c: Fix bug #76927 forgot to save some context
3415 when evaluating binary expressions
3416
3417Thu Mar 28 19:22:48 CET 2002 Daniel Veillard <daniel@veillard.com>
3418
3419 * configure.in: fixed configure for MPE/iX from Markus Henke
3420 * xmlmemory.c: fixed initialization problems
3421 * xpath.c: another set of patches from Richard Jinks this
3422 fixes "make XPathtests" on linux
3423
3424Wed Mar 27 17:09:43 CET 2002 Daniel Veillard <daniel@veillard.com>
3425
3426 * trionan.c trionan.h xpath.c: more patches from Richard Jinks
3427 * test/XPath/expr/compare test/XPath/expr/equality
3428 test/XPath/expr/floats test/XPath/expr/functions
3429 test/XPath/expr/strings result/XPath/expr/compare
3430 result/XPath/expr/equality result/XPath/expr/floats
3431 result/XPath/expr/functions result/XPath/expr/strings: Updated
3432 tests though they show a divergence on Linux
3433
3434Wed Mar 27 10:06:53 CET 2002 Daniel Veillard <daniel@veillard.com>
3435
3436 * xpath.c trionan.c: previous commit also included patches
3437 from Richard Jinks on some IEEE support corner case
3438
3439Wed Mar 27 10:03:11 CET 2002 Daniel Veillard <daniel@veillard.com>
3440
3441 * AUTHORS HACKING: Added Igor Zlatkovic as official maintainer
3442 * python/Makefile.am python/tests/Makefile.am: Albert Chin pointed
3443 that $(datadir) should be used for docs
3444
3445Tue Mar 26 13:43:16 CET 2002 Daniel Veillard <daniel@veillard.com>
3446
3447 * xmlIO.c: Thomas Steinborn pointed out #76404 that libxml2
3448 could leak filedescriptors
3449
3450Tue Mar 26 08:55:53 CET 2002 Daniel Veillard <daniel@veillard.com>
3451
3452 * configure.in nanohttp.c: applied patch from Allan Clark for
3453 UnixWare/OpenServer
3454
3455Mon Mar 25 17:45:44 CET 2002 Daniel Veillard <daniel@veillard.com>
3456
3457 * configure.in: preparing 2.4.19
3458 * doc/*: rebuilt the docs
3459
3460Mon Mar 25 17:34:06 CET 2002 Daniel Veillard <daniel@veillard.com>
3461
3462 * nanohttp.c: fixing #76043, got fed up with non-portability
3463 of that piece of code.
3464
3465Mon Mar 25 13:08:21 CET 2002 Daniel Veillard <daniel@veillard.com>
3466
3467 * valid.c SAX.c: Never commit without running "make tests" :-(
3468 fix a couple of stupidities in the previous commit
3469 * result/*: a few changes in some attribute order result of previous
3470 commit.
3471
3472Mon Mar 25 11:46:05 CET 2002 Daniel Veillard <daniel@veillard.com>
3473
3474 * valid.c SAX.c: fixed bug #76168, attribute redeclared in
3475 the internal subset should not raise duplicate ID errors,
3476 also there was a small bug in conjunction to namespace
3477 declarations defaulted and xml:xxx attributes DTD definitions.
3478
3479Fri Mar 22 15:13:49 CET 2002 Daniel Veillard <daniel@veillard.com>
3480
3481 * xpath.c: Richard Jinks also raised some rounding problems
3482 this tries to fix them
3483
3484Fri Mar 22 13:22:09 CET 2002 Daniel Veillard <daniel@veillard.com>
3485
3486 * xpath.c: Richard Jinks spotted an incoherent memory allocation
3487 behaviour in xmlXPathCastToString()
3488
3489Thu Mar 21 14:25:29 CET 2002 Daniel Veillard <daniel@veillard.com>
3490
3491 * encoding.c: fixed a bug in the ISO-Latin 1 to UTF8 encoder
3492 raised by Morus Walter
3493
3494Thu Mar 21 14:07:13 CET 2002 Daniel Veillard <daniel@veillard.com>
3495
3496 * xmlcatalog.c include/libxml/xmlversion.h.in: applied 2 fixups
3497 from Igor
3498
3499Thu Mar 21 13:30:06 CET 2002 Daniel Veillard <daniel@veillard.com>
3500
3501 * xpath.c: fixing #75619, related to a problem when trying
3502 to evaluate condition when the current node set resulting
3503 from that sub-step evaluation is empty. Also fixes 2 potential
3504 problem with previous-sibling and next-siblings axis.
3505
3506Thu Mar 21 09:03:59 CET 2002 Daniel Veillard <daniel@veillard.com>
3507
3508 * c14n.c: patch from Mark Vakoc to build C14N if DocBook and
3509 HTML support is not configured in.
3510
3511Wed Mar 20 22:42:42 CET 2002 Daniel Veillard <daniel@veillard.com>
3512
3513 * HTMLparser.c error.c parser.c parserInternals.c tree.c xmlIO.c
3514 include/libxml/tree.h: dohh I really didn't intended to commit
3515 this test version :-(
3516
3517Wed Mar 20 20:20:57 CET 2002 Daniel Veillard <daniel@veillard.com>
3518
3519 * testSAX.c: I wanted to see the real speed at the SAX interface
3520 after a little too many Ximianer started complaining about the
3521 parser speed.
3522 added a --quiet option:
3523 paphio:~/XML -> ls -l db100000.xml
3524 -rw-rw-r-- 1 veillard www 20182040 Mar 20 10:30 db100000.xml
3525 paphio:~/XML -> time ./testSAX --quiet db100000.xml
3526 3200006 callbacks generated
3527 real 0m1.270s
3528 Which means 16MBytes/s and 3Mcallback/s
3529
3530Tue Mar 19 19:33:57 CET 2002 Daniel Veillard <daniel@veillard.com>
3531
3532 * xpath.c: valgrind spotted another error that time when running
3533 on libxslt regression tests
3534
3535Tue Mar 19 15:24:49 CET 2002 Daniel Veillard <daniel@veillard.com>
3536
3537 * Makefile.am: adding "make valgrind" running the full regression
3538 tests (except python ones) under Valgrind (using valgrind -q
3539 which was kindly added by the author).
3540 * valid.c: stupid bug pinpointed by Valgrind, the regression tests
3541 passes cleanly now except an obcure floating point initialization
3542 raised in log10() in one XPath regression test ???
3543 * tree.c: edited some comments to close #75244
3544
3545Tue Mar 19 12:15:20 CET 2002 Daniel Veillard <daniel@veillard.com>
3546
3547 * xpath.c: pretty insane thing, the xmlXPathFormatNumber()
3548 was not serializing 1 as "1" if LC_ALL=sv_SE :-( and in the
3549 context of ScrollKeeper, made sure that if the number is
3550 an integer, the serialization follows the description at
3551 http://www.w3.org/TR/xpath#section-String-Functions
3552
3553Mon Mar 18 19:18:13 CET 2002 Daniel Veillard <daniel@veillard.com>
3554
3555 * configure.in: preparing 2.4.18
3556 * doc/*: updated and rebuilt the web site
3557 * *.c libxml.h: implement the new IN_LIBXML scheme discussed with
3558 the Windows and Cygwin maintainers.
3559 * parser.c: humm, changed the way the SAX parser work when
3560 xmlSubstituteEntitiesDefault(1) is set, it will then
3561 do the entity registration and loading by itself in case the
3562 user provided SAX getEntity() returns NULL.
3563 * testSAX.c: added --noent to test the behaviour.
3564
3565Mon Mar 18 12:44:23 CET 2002 Daniel Veillard <daniel@veillard.com>
3566
3567 * parser.c: Wilfried Teiken provided a hackish but working
3568 way to get context reported back on entities when parsing
3569 with SAX and without breaking the DOM build.
3570
3571Sun Mar 17 11:31:55 CET 2002 Daniel Veillard <daniel@veillard.com>
3572
3573 * c14n.c: applied a new patch from Aleksey Sanin
3574 * doc/site.xsl doc/xml.html doc/*.html: updated the documentation
3575 to reference Aleksey implementation of XML digital Signatures
3576
3577Sat Mar 16 23:01:42 CET 2002 Daniel Veillard <daniel@veillard.com>
3578
3579 * xpath.c: small fix to avoid potential problem due to
3580 ordering of freeing data
3581 * python/Makefile.am: people were complaining about
3582 the generated file in python dir not being built
3583
3584Fri Mar 15 23:21:40 CET 2002 Daniel Veillard <daniel@veillard.com>
3585
3586 * libxml.spec.in python/Makefile.am python/tests/Makefile.am
3587 python/generator.py python/libxml.c python/types.c: Cleanup
3588 of the python Makefiles based on Jacob and James feedback,
3589 fixed the spec file accordingly, fixed the number of warning
3590 that passing my pedantic CFLAGS was generating. Conclusion
3591 is that Python includes are real crap.
3592
3593Fri Mar 15 19:41:25 CET 2002 Daniel Veillard <daniel@veillard.com>
3594
3595 * configure,in: it was reported quite a few times that
3596 xml2-config --cflags should not output
3597 -I$includeprefix/libxml2/libxml because libxml2 header names
3598 clashes with existing names like list.h from C++ stl.
3599 Includes should be #include<libxml/xxx.h> so ...
3600
3601Fri Mar 15 10:41:50 CET 2002 Daniel Veillard <daniel@veillard.com>
3602
3603 * c14n.c: another patch from Aleksey Sanin
3604
3605Fri Mar 15 08:55:55 CET 2002 Daniel Veillard <daniel@veillard.com>
3606
3607 * c14n.c: applied patch from Aleksey Sanin fixing a problem in the
3608 canonicalization algorithm
3609 * doc/xml.html doc/index.html: added the C14N references on the
3610 index page.
3611
36122002-03-13 jacob berkman <jacob@ximian.com>
3613
3614 * python/Makefile.am: remove LDADD and CFLAGS as this is broken
3615 usage, redundant, and gcc specific
3616
3617Wed Mar 13 11:00:59 CET 2002 Daniel Veillard <daniel@veillard.com>
3618
3619 * xpath.c: speedup some node selection operations, this can
3620 have a significant impact on DocBook Norm's stylesheets
3621 * nanohttp.c: someone reported that SOCKLEN_T may not be defined
3622 make sure it's always the case
3623 * debugXML.c: distinguish CDATA and comments in ls operations
3624
3625Tue Mar 12 19:45:24 CET 2002 Daniel Veillard <daniel@veillard.com>
3626
3627 * include/libxml/*.h: Heiko W. Rupp fixed a lot of comments
3628 to generate better API descriptions etc...
3629
3630Mon Mar 11 10:10:30 CET 2002 Daniel Veillard <daniel@veillard.com>
3631
3632 * c14n.c: Fixing #74186, made sure all boolean expressions
3633 get fully parenthesized, ran indent on the output
3634 * configure.in HTMLtree.c SAX.c c14n.c debugXML.c tree.c xpointer.c
3635 include/libxml/tree.h: also #74186 related, removed the
3636 --with-buffers option, and all the preprocessor conditional
3637 sections that were resulting from it.
3638
3639Sun Mar 10 17:47:58 CET 2002 Daniel Veillard <daniel@veillard.com>
3640
3641 * valid.c: applied patch from Dodji Seketeli fixing an
3642 uninitailized variable in xmlValidGetValidElements()
3643
3644Sat Mar 9 15:10:49 CET 2002 Daniel Veillard <daniel@veillard.com>
3645
3646 * c14n.c: fixed a few comments
3647 * doc/*.html doc/*/*.html: regenerated the docs and added
3648 the C14N API
3649 * doc/api.xsl doc/gnome-xml.sgml: fixups and added IDs
3650
3651Sat Mar 9 11:16:11 CET 2002 Daniel Veillard <daniel@veillard.com>
3652
3653 * check-xml-test-suite.py: fix to adapt varaiations in the
3654 bindings
3655 * configure.in python/setup.py python/setup.py.in: fixed to
3656 have the version of the python scripts automatically updated
3657
3658Fri Mar 8 16:45:55 CET 2002 Daniel Veillard <daniel@veillard.com>
3659
3660 * tree.c: fixed a bug newly introduced and pointed by Uwe Fechner
3661 in xmlCopyProp()
3662
3663Fri Mar 8 15:49:10 CET 2002 Daniel Veillard <daniel@veillard.com>
3664
3665 * configure.in: preparing 2.4.17 release
3666 * doc/*: updated and rebuilt the docs
3667 * xpath.c: fixed a comment
3668 * python/libxml.c: fixed a possible reentrancy problem
3669
3670Thu Mar 7 23:19:28 CET 2002 Daniel Veillard <daniel@veillard.com>
3671
3672 * tree.c python/tests/Makefile.am python/tests/attribs.py:
3673 fixed xmlHasNsProp() bugs for defaulted from DTD attribs,
3674 added a specific regression test
3675 * python/generator.py: xmlHasNsProp() and xmlHasProp() shall
3676 not raise exceptions when failing to find the attribute.
3677
3678Thu Mar 7 16:11:35 CET 2002 Daniel Veillard <daniel@veillard.com>
3679
3680 * configure.in xmllint.c: owen pointed out a problem with the
3681 ftme fix, gettimeofday() was not detected by configure and
3682 the ftime header wasn't included, dohhh
3683
3684Thu Mar 7 12:19:36 CET 2002 Daniel Veillard <daniel@veillard.com>
3685
3686 * configure.in xmllint.c: trying to fix #71457 for timing
3687 precision when gettimeofday() is not availble but ftime() is
3688
3689Thu Mar 7 11:24:02 CET 2002 Daniel Veillard <daniel@veillard.com>
3690
3691 * libxml.spec.in doc/Makefile.am: Fixed #73408 missing images
3692 are now copied on install and part of the -devel RPM
3693
3694Thu Mar 7 09:34:16 CET 2002 Daniel Veillard <daniel@veillard.com>
3695
3696 * xpath.c: trying to avoid bug #72150 which was apparently
3697 caused by a gcc bug (or a processor problem) as detailed
3698 at http://veillard.com/gcc.bug
3699
3700Thu Mar 7 01:02:37 CET 2002 Daniel Veillard <daniel@veillard.com>
3701
3702 * tree.c python/tests/Makefile.am python/tests/cutnpaste.py:
3703 fixed xmlReconciliateNs(), added a Python test/example for
3704 inter-document cut'n paste
3705 * python/libxml.py: fixed node.doc on document nodes and added
3706 xpathEval() onto node objects
3707
3708Wed Mar 6 22:38:03 CET 2002 Daniel Veillard <daniel@veillard.com>
3709
3710 * HTMLtree.c: fixed some htmlSetMetaEncoding() problems
3711 * python/libxml.c python/tests/Makefile.am python/tests/serialize.py:
3712 fixup and integrated tests for the serialization stuff
3713
3714Wed Mar 6 19:40:57 CET 2002 Daniel Veillard <daniel@veillard.com>
3715
3716 * Makefile.am libxml.3 libxml.4 libxml.spec.in: Fixed bug #72570
3717 moved the libxml man page to section 3
3718
3719Wed Mar 6 18:34:07 CET 2002 Daniel Veillard <daniel@veillard.com>
3720
3721 * tree.c: fix bug #72490
3722 * python/libxml.c python/libxml.py: added methods serialize()
3723 and saveTo() to all node elements.
3724
3725Tue Mar 5 21:27:03 CET 2002 Daniel Veillard <daniel@veillard.com>
3726
3727 * xmlIO.c: closed #73430, don't read from an input source
3728 which indicated an end-of-file or an error.
3729
3730Tue Mar 5 16:33:42 CET 2002 Daniel Veillard <daniel@veillard.com>
3731
3732 * parser.c: make sure SAX endDocument is always called as
3733 this could result in a Python memory leak otherwise (it's
3734 used to decrement ref-counting)
3735 * python/generator.py python/libxml.c python/libxml.py
3736 python/libxml2-python-api.xml python/libxml2class.txt
3737 python/tests/error.py python/tests/xpath.py: implemented
3738 the suggestions made by Gary Benson and extended the tests
3739 to match it.
3740
3741Tue Mar 5 10:35:24 CET 2002 Daniel Veillard <daniel@veillard.com>
3742
3743 * python/generator.py: applied patch fixing #73450
3744
3745Mon Mar 4 17:59:29 CET 2002 Daniel Veillard <daniel@veillard.com>
3746
3747 * xpath.c: fixing #61290 "namespace nodes have no parent"
3748 long standing divergence from the XPath REC. NodeSets
3749 simply hold a copy of namespace nodes and those node ->next
3750 points to the parent (which may not be the node carrying the
3751 definition).
3752 * include/libxml/xpath.h: flagged but didn't added a possible
3753 speedup
3754 * DOCBparser.c HTMLparser.c: removed some warnings from push
3755 parser due to new state being added.
3756 * tree.c: new fix from Boris Erdmann
3757 * configure.in c14n.c include/libxml/c14n.h testC14N.c: added
3758 the XML Canonalization support from Aleksey Sanin
3759
3760Sun Mar 3 15:12:42 CET 2002 Daniel Veillard <daniel@veillard.com>
3761
3762 * tree.c: patch from Boris Erdmann fixing some namespace odities
3763 with xmlCopyNode()
3764
3765Sat Mar 2 10:33:04 CET 2002 Daniel Veillard <daniel@veillard.com>
3766
3767 * xmlIO.c: fix bug #72706 when loading a NULL entity
3768
3769Fri Mar 1 17:14:42 CET 2002 Daniel Veillard <daniel@veillard.com>
3770
3771 * SAX.c: Fixed #72346, about handling of xmlns:foo="", this could
3772 actually change in a future XML Namespace revision.
3773
3774Fri Mar 1 17:12:15 CET 2002 Daniel Veillard <daniel@veillard.com>
3775
3776 * python/types.c python/tests/Makefile.am python/tests/xpathret.py:
3777 added the possibility of returning nodesets from XPath extension
3778 functions written in Python
3779
3780Fri Mar 1 13:56:12 CET 2002 Daniel Veillard <daniel@veillard.com>
3781
3782 * python/*: commiting some Python bindings work done while travelling
3783
3784Fri Mar 1 10:11:15 CET 2002 Daniel Veillard <daniel@veillard.com>
3785
3786 * xmllint.c: close #72663 and #72658, don't memdump unless compiled
3787 explicitely with memory debugging switched on
3788
3789Sat Feb 23 11:08:09 CET 2002 Daniel Veillard <daniel@veillard.com>
3790
3791 * python/generator.py python/libxml.c python/libxml2-python-api.xml
3792 python/libxml2class.txt python/libxml_wrap.h python/types.c:
3793 Added wrapper for the xmlURIPtr type, provided accessors, fixed
3794 the accessor generator for strings
3795 * python/tests/Makefile.am python/tests/tstURI.py: added a specific
3796 regression test.
3797
3798Fri Feb 22 23:44:57 CET 2002 Daniel Veillard <daniel@veillard.com>
3799
3800 * python/README python/generator.py python/libxml.c python/setup.py:
3801 added the 'usual' setup.py to allow building a libxml2-python
3802 module based on the same code. The initialization is however
3803 different the 2 .so files fo libxml2 and libxslt are identical and
3804 they entry point initialize both libraries. this is done to avoid
3805 some possible nasty problem since the Python don't merge the maps
3806 of all shared modules.
3807
3808Wed Feb 20 23:16:08 CET 2002 Daniel Veillard <daniel@veillard.com>
3809
3810 * parser.c: fixed a push/encoding bug reported by Michael
3811 on librsvg
3812
3813Wed Feb 20 19:54:05 CET 2002 Daniel Veillard <daniel@veillard.com>
3814
3815 * include/libxml/parserInternals.h: fixes a misplaced #endif
3816
3817Wed Feb 20 17:47:55 CET 2002 Daniel Veillard <daniel@veillard.com>
3818
3819 * parser.c valid.c: found and fixed a couple of allocation bugs
3820
3821Wed Feb 20 15:36:03 CET 2002 Daniel Veillard <daniel@veillard.com>
3822
3823 * doc/xml.html doc/python.html doc/*: added a Python and binding
3824 page describing the current state of the Python bindings and
3825 giving pointers to the other languages wrappers.
3826
3827Wed Feb 20 11:16:15 CET 2002 Daniel Veillard <daniel@veillard.com>
3828
3829 * configure.in include/libxml/xmlwin32version.h: preparing 2.4.16
3830 * doc/* python/libxml2class.txt: updated and rebuilt the docs,
3831 rebuilt the API and web site
3832 * xpath.c: fixed #71978 portability bugs
3833
3834Tue Feb 19 22:49:36 CET 2002 Daniel Veillard <daniel@veillard.com>
3835
3836 * SAX.c: oops broke automatic defaulting of namespaces attributes.
3837
3838Tue Feb 19 22:01:35 CET 2002 Daniel Veillard <daniel@veillard.com>
3839
3840 * include/libxml/parserInternals.h parser.c: had to change
3841 2 internal parsing API when processing document content
3842 to check the start and end of element content are defined
3843 in the same entity
3844 * valid.c include/libxml/valid.h: attribute normalization can
3845 generate a validity error added xmlValidCtxtNormalizeAttributeValue()
3846 with the context to report it.
3847 * SAX.c: fixed the last known bugs, crazy validation constraints
3848 when a document is standalone seems correctly handled. There
3849 is a couple of open issues left which need consideration especially
3850 PE93 on external unparsed entities and standalone status.
3851 Ran 1819 tests: 1817 suceeded, 2 failed and 0 generated an error in 8.26 s.
3852 The 2 tests left failing are actually in error. Cleanup done.
3853
3854Tue Feb 19 15:17:02 CET 2002 Daniel Veillard <daniel@veillard.com>
3855
3856 * valid.c: implemented E59 spaces in CDATA does not match the
3857 nonterminal S
3858
3859Tue Feb 19 14:44:53 CET 2002 Daniel Veillard <daniel@veillard.com>
3860
3861 * SAX.c parser.c valid.c: more validation test fixups
3862 * check-xml-test-suite.py: added duration info for the tests
3863
3864Mon Feb 18 23:25:08 CET 2002 Daniel Veillard <daniel@veillard.com>
3865
3866 * parser.c valid.c: a couple of errors were reported but not
3867 saved back as such in the parsing context. Down to 1% failure rate
3868 Ran 1819 tests: 1801 suceeded, 18 failed and 0 generated an error
3869
3870Mon Feb 18 20:16:15 CET 2002 Daniel Veillard <daniel@veillard.com>
3871
3872 * xmlInternald.c: isExtender was missing a char
3873 * parser.c include/libxml/parser.h: % are acceptable in the
3874 internal subset if within a PUBLIC ID
3875
3876Mon Feb 18 19:27:32 CET 2002 Daniel Veillard <daniel@veillard.com>
3877
3878 * SAX.c parserInternals.c valid.c: more work on the conformance
3879 suite. Took the step to finally block documents with encoding
3880 errors. It's a fatal error per the spec, people should have fixed
3881 their documents by now.
3882
3883Mon Feb 18 15:30:14 CET 2002 Daniel Veillard <daniel@veillard.com>
3884
3885 * check-xml-test-suite.py: fixed the test script after some discussion
3886 on the semantic of TYPE="error"
3887 * Makefile.am: added the script to the distrib
3888
3889Mon Feb 18 12:17:41 CET 2002 Daniel Veillard <daniel@veillard.com>
3890
3891 * SAX.c entities.c: fixed a couple of conformances issues deep
3892 into the validation code (standalone and undeclared Notations)
3893
3894Mon Feb 18 00:17:24 CET 2002 Daniel Veillard <daniel@veillard.com>
3895
3896 * parser.c: fixed #71741 supid typo an a bug about encoding parsing
3897 stayed there for years !
3898
3899Mon Feb 18 00:06:42 CET 2002 Daniel Veillard <daniel@veillard.com>
3900
3901 * valid.c SAX.c: fixed #71740 NotationDecl with a required field
3902 missing
3903
3904Sun Feb 17 23:45:40 CET 2002 Daniel Veillard <daniel@veillard.com>
3905
3906 * check-xml-test-suite.py: improved the behaviour a bit as
3907 well as the logs
3908 * parser.c valid.c SAX.c: fixed a few more bugs
3909 "Ran 1819 tests: 1778 suceeded, 41 failed, and 0 generated an error"
3910
3911Sun Feb 17 20:41:37 CET 2002 Daniel Veillard <daniel@veillard.com>
3912
3913 * check-xml-test-suite.py: python script to run regression tests
3914 against the XML Test suite of W3C/OASis
3915 * SAX.c: fixed a validation bug
3916 * parser.c: fixed 3 errors pointed by the test suite
3917 * doc/buildDocBookCatalog: fixed a typo pointed by drake
3918 * python/Makefile.am: fixed a dependendy
3919
3920Fri Feb 15 21:47:13 CET 2002 Daniel Veillard <daniel@veillard.com>
3921
3922 * xmlmemory.c: avoid a warning bug #71594
3923
3924Wed Feb 13 22:13:33 CET 2002 Daniel Veillard <daniel@veillard.com>
3925
3926 * xmlmemory.c: Jesse Perry provided a patch to remove a few
3927 warning on alpha/Tru64
3928
3929Wed Feb 13 14:30:49 CET 2002 Daniel Veillard <daniel@veillard.com>
3930
3931 * include/libxml/entities.h: fixing a comment
3932 * valid.c: fixing some troubles with validity check on namespaces
3933 * result/VC/NS3 test/VC/NS3: added a specific regression test
3934
3935Wed Feb 13 14:05:24 CET 2002 Daniel Veillard <daniel@veillard.com>
3936
3937 * tree.c: Fixing #71342 serializing '\n' in attribute values
3938 * result/noent/att3 result/att3 test/att3: added a specific
3939 test.
3940
3941Tue Feb 12 14:45:32 CET 2002 Daniel Veillard <daniel@veillard.com>
3942
3943 * python/libxml.c: couple of bug fixes
3944
3945Mon Feb 11 19:41:29 CET 2002 Daniel Veillard <daniel@veillard.com>
3946
3947 * python/*.py: removed tabs and used spaces.
3948
3949Mon Feb 11 19:25:44 CET 2002 Daniel Veillard <daniel@veillard.com>
3950
3951 * configure.in include/libxml/xmlwin32version.h: preparing 2.4.15
3952 * doc/news.html doc/xml.html doc/xmlio.html: rebuilt some docs
3953
3954Mon Feb 11 14:53:24 CET 2002 Daniel Veillard <daniel@veillard.com>
3955
3956 * doc/xmlcatalog_man.xml: trying to close Red Hat bug #58707
3957 https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=58707
3958
3959Mon Feb 11 09:53:02 CET 2002 Daniel Veillard <daniel@veillard.com>
3960
3961 * include/libxml/encoding.h include/libxml/entities.h
3962 include/libxml/globals.h include/libxml/parser.h
3963 include/libxml/threads.h include/libxml/tree.h
3964 include/libxml/xmlmemory.h: trying to fix the include mess
3965
3966Mon Feb 11 08:53:33 CET 2002 Daniel Veillard <daniel@veillard.com>
3967
3968 * include/libxml/xmlmemory.h: reverted part of the previous
3969 attempt to provide #69655, this was breaking the build.
3970
3971Sun Feb 10 14:13:34 CET 2002 Daniel Veillard <daniel@veillard.com>
3972
3973 * HTMLtree.c Makefile.am build_glob.py configure.in debugXML.c
3974 globals.c parser.c threads.c tree.c valid.c xmlmemory.c
3975 xpath.c xpointer.c include/libxml/globals.h include/libxml/parser.h
3976 include/libxml/parserInternals.h include/libxml/tree.h
3977 include/libxml/xmlmemory.h include/libxml/xpathInternals.h:
3978 Tentatively fixed #69655 , make compiling with -Wredundant-decls
3979 clean.
3980 * python/libxml.c: fixed a warning.
3981
3982Sun Feb 10 12:02:59 CET 2002 Daniel Veillard <daniel@veillard.com>
3983
3984 * tree.c valid.c xinclude.c: fix #68882, cleanup the XInclude
3985 copying of node, merge back IDs in the target document.
3986 * result/XInclude/docids.xml test/XInclude/docs/docids.xml
3987 test/XInclude/ents/ids.xml: test case
3988 * result/VC/ElementValid4: output changed due to a typo fix
3989
3990Sat Feb 9 23:15:04 CET 2002 Daniel Veillard <daniel@veillard.com>
3991
3992 * python/Makefile.am: seems some version of automake didn't
Daniel Veillard784b9352003-02-16 15:50:27 +00003993 generate the dependencies right as Jacob found out. Add
3994 an extra dependency rule.
Daniel Veillard7b4b2f92003-01-06 13:11:20 +00003995
3996Sat Feb 9 18:59:23 CET 2002 Daniel Veillard <daniel@veillard.com>
3997
3998 * parserInternals.c valid.c: Justin Fletcher found some parts
3999 of the code needing cleanup
4000 * libxml.spec.in python/Makefile.am python/generator.py
4001 python/libxml.c python/libxml.py: Fixed the python Makefiles
4002 corrected a bug showing up on ia64, changed the name of the
4003 python internal module too
4004
4005Fri Feb 8 15:19:28 CET 2002 Daniel Veillard <daniel@veillard.com>
4006
4007 * Makefile.am: applied patch from Andris Pavenis for binary
4008 name suffixes
4009
4010Fri Feb 8 14:43:17 CET 2002 Daniel Veillard <daniel@veillard.com>
4011
4012 * xmllint.c win32/win32config.h: fixing #68748
4013
4014Fri Feb 8 14:37:05 CET 2002 Daniel Veillard <daniel@veillard.com>
4015
4016 * valid.c: fixing #70166
4017
4018Fri Feb 8 14:31:24 CET 2002 Daniel Veillard <daniel@veillard.com>
4019
4020 * valid.c: fixing #70077
4021
4022Fri Feb 8 14:24:02 CET 2002 Daniel Veillard <daniel@veillard.com>
4023
4024 * Copyright Makefile.am README configure.in libxml.spec.in:
4025 Changed to the MIT Licence
4026 * doc/FAQ.html doc/catalog.html doc/intro.html doc/xml.html
4027 doc/xmlio.html: updated the doc accordingly
4028 * include/libxml/xmlwin32version.h configure.in: preparing
4029 2.4.14 release
4030 * python/generator.py python/libxml.c python/libxml2-python-api.xml
4031 python/libxml2class.txt python/libxml_wrap.h python/types.c:
4032 fixed the const xmlChar * wrapper and generator, XPath extension
4033 functions now use the context as first argument
4034 * python/tests/tstxpath.py python/tests/xpath.py
4035 python/tests/xpathext.py: Updated the tests accordingly
4036 * tree.c: fixed bug #70067
4037
4038Thu Feb 7 17:33:58 CET 2002 Daniel Veillard <daniel@veillard.com>
4039
4040 * Makefile.am: cleanup
4041 * debugXML.c: always use stdout if output is NULL
4042 * xmlIO.c: don't close filedescriptors passed to outputBuffers
4043 * python/Makefile.am python/generator.py python/libxml2class.txt
4044 python/libxml_wrap.h python/types.c: augmented the number of bindings
4045 handling FILE * and XPath contexts
4046 * python/tests/Makefile.am: avoid a stupid problem due to the
4047 use of TEST.
4048
4049Wed Feb 6 23:37:07 CET 2002 Daniel Veillard <daniel@veillard.com>
4050
4051 * configure.in: fixed stupid bug #70738 found by alfons hoogervorst
4052
4053Wed Feb 6 17:04:51 CET 2002 Daniel Veillard <daniel@veillard.com>
4054
4055 * python/TODO python/libxml.c: cleanup the extension function lookup
4056 * xmlmemory.c include/libxml/xmlmemory.h: always compile the list
4057
4058Tue Feb 5 17:33:30 CET 2002 Daniel Veillard <daniel@veillard.com>
4059
4060 * configure.in python/Makefile.am: do not install outside
4061 of prefix
4062
4063Mon Feb 4 15:05:55 CET 2002 Daniel Veillard <daniel@veillard.com>
4064
4065 * python/TODO python/libxml.c: started adding SAX interfaces
4066 * python/tests/Makefile.am python/tests/pushSAX.py: added a basic
4067 SAX test
4068
4069Mon Feb 4 01:12:42 CET 2002 Daniel Veillard <daniel@veillard.com>
4070
4071 * tree.c: hardened the addChild function
4072 * python/generator.py python/libxml.c python/libxml2-python-api.xml
4073 python/libxml2class.txt python/libxml_wrap.h python/TODO:
4074 added accessors needed for xmlNode, a bit more testing and
4075 extension of interfaces
4076 * python/tests/Makefile.am python/tests/build.py: added a test
4077 build from scratch/save/load/check
4078
4079Sun Feb 3 21:10:39 CET 2002 Daniel Veillard <daniel@veillard.com>
4080
4081 * parserInternals.c: change a small bit in the way valididy
4082 error messages get initialized
4083 * python/TODO python/libxml.c python/libxml2-python-api.xml
4084 python/libxml2class.txt python/libxml_wrap.h python/types.c:
4085 added some memory debugging to track leaks at the libxml2 level
4086 * python/tests/*.py: changed all tests to check for leaks,
4087 there is just one left in XPath extension registrations.
4088
4089Sun Feb 3 17:50:46 CET 2002 Daniel Veillard <daniel@veillard.com>
4090
4091 * python/TODO python/generator.py python/libxml2-python-api.xml
4092 python/libxml2class.txt: more accessor classes for the parser
4093 context, allow to switch on and check validity
4094 * python/tests/Makefile.am python/tests/error.py
4095 python/tests/invalid.xml python/tests/valid.xml
4096 python/tests/validate.py: attded more test and and added error.py
4097 which I forgot to commit in the last step
4098
4099Sun Feb 3 16:03:55 CET 2002 Daniel Veillard <daniel@veillard.com>
4100
4101 * python/Makefile.am python/types.c: cleanup
4102 * python/libxml.c python/libxml.py python/libxml_wrap.h
4103 python/generator.py python/libxml2-python-api.xml
4104 python/libxml2class.txt: added class for parser context, added
4105 first cut for push mode support. Added a framework to generate
4106 accessors functions.
4107 * python/tests/Makefile.am python/tests/push.py: added a push
4108 test
4109
4110Sun Feb 3 00:17:26 CET 2002 Daniel Veillard <daniel@veillard.com>
4111
4112 * python/Makefile.am python/TODO python/libxml.py: fixed a small
4113 bug a bit of cleanup.
4114
4115Sat Feb 2 22:47:10 CET 2002 Daniel Veillard <daniel@veillard.com>
4116
4117 * python/Makefile.am python/libxml.c python/libxml2-python-api.xml
4118 python/libxml2class.txt: adding error redirections and preformat
4119 to a python handler
4120 * python/tests/Makefile.am python/tests/*.py: cleanup made all
4121 tests self checking
4122
4123Sat Feb 2 13:18:54 CET 2002 Daniel Veillard <daniel@veillard.com>
4124
4125 * python/libxml.c python/libxml.py: fixed a stupid bug when renaming
4126 a function
4127
4128Sat Feb 2 11:25:51 CET 2002 Daniel Veillard <daniel@veillard.com>
4129
4130 * libxml.spec.in python/Makefile.am python/TODO python/generator.py
4131 python/libxml.c python/libxml2-python-api.xml
4132 python/libxml2class.txt: Progressing through the TODOs, class
4133 description output, extra XML API, RPM now builds the wrappers
4134 for all python installed versions
4135
4136Sat Feb 2 10:13:52 CET 2002 Daniel Veillard <daniel@veillard.com>
4137
4138 * configure.in libxml.spec.in python/Makefile.am python/TODO
4139 python/generator.py python/libxml2class.txt: added more informations
4140 in the libxml2-python package including docs. Slightly changed
4141 the class hierarchy
4142 * python/tests/*: added basic regression tests infrastructure too
4143
4144Fri Feb 1 23:11:58 CET 2002 Daniel Veillard <daniel@veillard.com>
4145
4146 * configure.in libxml.spec.in example/Makefile.am python/Makefile.am:
4147 added libxml2-python as part of the packages installed
4148
4149Fri Feb 1 18:48:19 CET 2002 Daniel Veillard <daniel@veillard.com>
4150
4151 * python/Makefile.am python/generator.py python/libxml.c
4152 python/libxml.py: more work, now able to extend the
4153 XPath interpreter with functions written in python.
4154
4155Fri Feb 1 10:28:51 CET 2002 Daniel Veillard <daniel@veillard.com>
4156
4157 * python/Makefile.am: Jacob sent a patch to allow building from
4158 tarfile.
4159
4160Fri Feb 1 00:40:48 CET 2002 Daniel Veillard <daniel@veillard.com>
4161
4162 * python/Makefile.am python/libxml.c configure.in Makefile.am:
4163 inserted the python wrappers build, I hope this won't be too
4164 unportable
4165
4166Thu Jan 31 21:27:37 CET 2002 Daniel Veillard <daniel@veillard.com>
4167
4168 * xpath.c: minor optimization
4169 * python/generator.py python/libxml.c python/libxml.py
4170 python/libxml_wrap.h: more work on the python bindings,
4171 they now support XPath and there is no evident leak
4172
4173Thu Jan 31 00:48:06 CET 2002 Daniel Veillard <daniel@veillard.com>
4174
4175 * python/generator.py python/libxml.c python/libxml.py:
4176 more work on the python bindings generator.
4177
4178Wed Jan 30 21:51:26 CET 2002 Daniel Veillard <daniel@veillard.com>
4179
4180 * python/generator.py python/libxml.c python/libxml_wrap.h:
4181 more work on the python bindings.
4182
4183Wed Jan 30 17:35:33 CET 2002 Daniel Veillard <daniel@veillard.com>
4184
4185 * python/generator.py python/libxml.c python/libxml.py
4186 python/libxml_wrap.h: commited early version of a python binding
4187 for private use only ATM
4188
4189Sat Jan 26 22:41:13 CET 2002 Daniel Veillard <daniel@veillard.com>
4190
4191 * entities.c tree.c include/libxml/entities.h: applied patch
4192 from Anthony Jones to implement copy of DTD subtree too. Had
4193 just to keep 2 function private which really ought to become
4194 public ones.
4195
4196Fri Jan 25 15:14:55 CET 2002 Daniel Veillard <daniel@veillard.com>
4197
4198 * xmllint.c: added pointers to the web pages in the usage()
4199
4200Thu Jan 24 17:04:04 CET 2002 Daniel Veillard <daniel@veillard.com>
4201
4202 * tree.c: more fixes from Petr Kozelka for attribute handling
4203 in the tree API to align the semantic with DOM.
4204
4205Thu Jan 24 16:00:53 CET 2002 Daniel Veillard <daniel@veillard.com>
4206
4207 * valid.c tree.c entities.c: another set of patches from
4208 Anthony Jones for copy operations cleanup and robustness
4209
4210Wed Jan 23 18:53:55 CET 2002 Daniel Veillard <daniel@veillard.com>
4211
4212 * doc/APIchunk*.html doc/parsedecl.py doc/api.xsl: generated
4213 an alphabetic index based on comments content
4214 * doc/*: rebuilt the web site with the new references
4215
4216Wed Jan 23 15:14:22 CET 2002 Daniel Veillard <daniel@veillard.com>
4217
4218 * parserInternals.h: Greg Sjaardema suggested to use an
4219 eponential buffer groth policy in xmlParserAddNodeInfo()
4220
4221Wed Jan 23 13:32:40 CET 2002 Daniel Veillard <daniel@veillard.com>
4222
4223 * doc/api.xsl doc/APIconstructors.html doc/APIfiles.html
4224 doc/APIfunctions.html doc/APIsymbols.html doc/libxml2-refs.xml
4225 doc/parsedecl.py doc/Makefile.am: updated the python extractor
4226 to generate cross-references, and added/updated the stylesheets
4227 to generate and link API indexes. The generic keyword index
4228 is not done yet.
4229 * doc/*.html: regenerated all the usual docs too
4230
4231Tue Jan 22 23:11:26 CET 2002 Daniel Veillard <daniel@veillard.com>
4232
4233 * debugXML.c: added an xpath function to the shell for T. V. Raman
4234
4235Tue Jan 22 22:42:23 CET 2002 Daniel Veillard <daniel@veillard.com>
4236
4237 * debugXML.c: patch from Anthony Jones to catch NULL nodes in
4238 debug routines.
4239
4240Tue Jan 22 22:38:42 CET 2002 Daniel Veillard <daniel@veillard.com>
4241
4242 * tree.c: apply an patch from Petr Kozelka for unlink and replace
4243 support of attribute nodes
4244
4245Tue Jan 22 19:12:06 CET 2002 Daniel Veillard <daniel@veillard.com>
4246
4247 * doc/libxml2-api.xml doc/parsedecl.py: Build a new version
4248 hopefully near complete and fully documented of the API in XML
4249 * HTMLtree.c SAX.c debugXML.c error.c globals.c parser.c tree.c
4250 xmlIO.c xmlmemory.c include/libxml/catalog.h include/libxml/hash.h
4251 include/libxml/list.h include/libxml/parser.h include/libxml/tree.h
4252 include/libxml/parserInternals.h include/libxml/valid.hi
4253 include/libxml/xmlIO.h include/libxml/xmlerror.hi
4254 include/libxml/xmlmemory.h include/libxml/xmlversion.h.ini
4255 include/libxml/xpath.h include/libxml/xpathInternals.h:
4256 Cleaned up the doc comments a lot in the process, the interface
4257 coverage is now 100%
4258
4259Tue Jan 22 00:12:58 CET 2002 Daniel Veillard <daniel@veillard.com>
4260
4261 * doc/libxml2-api.xml doc/parsedecl.py: improved the script to
4262 extracts comments from the gtk-doc DocBook output (a bit
4263 convoluted but seems to work).
4264
4265Mon Jan 21 18:29:19 CET 2002 Daniel Veillard <daniel@veillard.com>
4266
4267 * Makefile.am doc/Makefile.am doc/libxml2-api.xml doc/parsedecl.py:
4268 added an XML description of the API, moved the script generating
4269 it here. Added a "make api" target
4270
4271Mon Jan 21 14:34:37 CET 2002 Daniel Veillard <daniel@veillard.com>
4272
4273 * tree.c: Adam Lounds pointed out a bug in xmlSearchNs()
4274
4275Mon Jan 21 09:55:21 CET 2002 Daniel Veillard <daniel@veillard.com>
4276
4277 * xpath.c include/libxml/xpathInternals.h: the change made to
4278 xmlXPathFuncLookupFunc was incompatible roll it back
4279
4280Sun Jan 20 23:03:41 CET 2002 Daniel Veillard <daniel@veillard.com>
4281
4282 * SAX.c: cleanup patch from Anthony Jones
4283 * doc/Makefile.am: fix the headers to avoid in make scan
4284 * parserInternals.c xpath.c include/libxml/*.h: cleanup of the
4285 includes, * vs Ptr and general cleanup
4286 * parsedecl.py: first version of a script to extract the
4287 module interfaces, the goal will be to provide .decl or XML
4288 specification of the interfaces to build wrappers.
4289
4290Sun Jan 20 13:38:22 CET 2002 Daniel Veillard <daniel@veillard.com>
4291
4292 * doc/xmlcatalog_man.xml xmlcatalog.c: Fixed bug #68830, xmlcatalog
4293 now provides return codes in case of errors
4294
4295Sat Jan 19 16:36:21 CET 2002 Bjorn Reese <breese@users.sourceforge.net>
4296
4297 * trio.h trio.c triodef.h triop.h trionan.h trionan.c Makefile.am:
4298 Upgraded to trio baseline 1.6
4299 * strio.h strio.c: Replaced by triostr.h and triostr.c
4300
4301Fri Jan 18 17:22:50 CET 2002 Daniel Veillard <daniel@veillard.com>
4302
4303 * globals.c xmlIO.c xmlcatalog.c: removed the last occurences
4304 of strdup usage in the code
4305
4306Fri Jan 18 12:47:15 CET 2002 Daniel Veillard <daniel@veillard.com>
4307
4308 * parser.c error.c: Keith Isdale complained rightly that
4309 xmlInitParser() did not preserve value set by xmlSetGenericErrorFunc
4310
4311Thu Jan 17 09:44:44 CET 2002 Daniel Veillard <daniel@veillard.com>
4312
4313 * tree.c: fixed the funxtion to set the xml: attributes
4314 * debugXML.c: added "setbase" to test it.
4315
4316Wed Jan 16 16:36:08 CET 2002 Daniel Veillard <daniel@veillard.com>
4317
4318 * tree.c: update xmlNodeSetContent() and xmlNodeSetContentLen()
4319 to allow updating an attribute content
4320
4321Tue Jan 15 18:09:23 CET 2002 Daniel Veillard <daniel@veillard.com>
4322
4323 * libxml.h: try to avoid problems when compiling on Windows
4324
4325Mon Jan 14 18:56:25 CET 2002 Daniel Veillard <daniel@veillard.com>
4326
4327 * hash.c: patch from Anthony Jones for hash.c allocation size
4328 * Makefile.am: trying to work around Yet Another Libtool Madness
4329 and build the 2.4.13 release finally ...
4330
4331Mon Jan 14 18:27:19 CET 2002 Daniel Veillard <daniel@veillard.com>
4332
4333 * configure.in include/libxml/xmlwin32version.h: updated to 2.4.13
4334 * doc/* : update of the documentation
4335
4336Mon Jan 14 17:53:41 CET 2002 Daniel Veillard <daniel@veillard.com>
4337
4338 * debugXML.c tree.c: some cleanup after an unsuccessful attempt
4339 at fixing #61290 :-(
4340
4341Sun Jan 13 21:30:54 CET 2002 Daniel Veillard <daniel@veillard.com>
4342
4343 * tree.c: fixed xmlSaveFormatFileEnc() when encoding == NULL
4344 Fixes bug #67229
4345
4346Sun Jan 13 17:14:06 CET 2002 Daniel Veillard <daniel@veillard.com>
4347
4348 * tree.c: trying to avoid troubles when a subtree is copied
4349 and coalesced in part with the target tree. Should fix
4350 bug #67407
4351
4352Sun Jan 13 16:37:15 CET 2002 Daniel Veillard <daniel@veillard.com>
4353
4354 * valid.c: fixed validation of attributes content of type
4355 NAME NAMES NMTOKEN and NMTOKENS to accept internationalized
4356 values, very old bug. Fixes #67671
4357
4358Sun Jan 13 15:07:49 CET 2002 Daniel Veillard <daniel@veillard.com>
4359
4360 * parser.c include/libxml/parserInternals.h tree.c: integrated
4361 a couple of fixes and a new API function xmlSetEntityReferenceFunc()
4362 from Keith Isdale and dedicated to xsldbg the XSLT debugger.
4363
4364Sun Jan 13 14:23:21 CET 2002 Daniel Veillard <daniel@veillard.com>
4365
4366 * threads.c: applied Serguei Narojnyi's patch to add native
4367 thread support on the Win32 platform
4368 * testThreadsWin32.c Makefile.am: added the test program also
4369 from Serguei, Win32 specific
4370 * include/win32config.h include/libxml/xmlwin32version.h.in:
4371 added patch from Igor for the Windows thread specific defines.
4372
4373Wed Jan 9 12:50:39 CET 2002 Daniel Veillard <daniel@veillard.com>
4374
4375 * entities.c: Anthony Jones pointed a bug in xmlCopyEntity()
4376
4377Tue Jan 8 14:23:22 CET 2002 Daniel Veillard <daniel@veillard.com>
4378
4379 * doc/*.html doc/site.xsl doc/Makefile: renamed XML.html
4380 output page into XMLinfo.html. Close bug #66951 and
4381 raised by Robert Collins too.
4382
4383Tue Jan 8 14:13:18 CET 2002 Daniel Veillard <daniel@veillard.com>
4384
4385 * encoding.c: Paul Keogh pointed out a possibility of segfault
4386 on repeted xmlAddEncodingAlias() / xmlCleanupEncodingAlias().
4387 Closes bug # 68238
4388
4389Tue Jan 8 12:48:27 CET 2002 Daniel Veillard <daniel@veillard.com>
4390
4391 * doc/*.html: updated the Gdome2 links
4392
4393Tue Jan 8 11:32:30 CET 2002 Daniel Veillard <daniel@veillard.com>
4394
4395 * libxml.h: Applied following patches from Robert Collins
4396 and make sure IN_LIBXML is defined when compiling it
4397 -------
4398 * include/libxml/xmlversion.h.in (LIBXML_DLL_IMPORT): Use on Cygwin
4399 as well as Visual C.
4400 * parser.c (XML_DIR_SEP): Don't use '\\' for Cygwin.
4401 * parserInternals.c (XML_DIR_SEP): Don't use '\\' for Cygwin.
4402 * strio.c (PLATFORM_UNIX): Define for Cygwin.
4403 * triodef.h (TRIO_PLATFORM_UNIX): Define for Cygwin.
4404 * xmlIO.c (xmlFileOpen): Use unix behaviour for Cygwin.
4405 Use binary mode opens for Cygwin (xmlFileOpenW xmlParserGetDirectory
4406 xmlSysIDExists xmlNoNetExists).
4407 * xmllint.c: Don't include winsock2.h for Cygwin.
4408
4409Mon Jan 7 17:52:48 CET 2002 Daniel Veillard <daniel@veillard.com>
4410
4411 * parser.c: Jirka Kosek pointer out a bug in xmlParseTextDecl()
4412 when the version info is not present.
4413
4414Mon Jan 7 00:03:58 CET 2002 Daniel Veillard <daniel@veillard.com>
4415
4416 * tree.c: Anthony Jones pointed out a problem in
4417 xmlStringGetNodeList() and provided a fix for it
4418
4419Sun Jan 6 13:45:49 CET 2002 Daniel Veillard <daniel@veillard.com>
4420
4421 * parser.c: patch from Frank J Franklin to remove a bug in
4422 xmlCreatePushParserCtxt() when the initial buffer passed
4423 is large.
4424
4425Sat Jan 5 19:24:23 CET 2002 Daniel Veillard <daniel@veillard.com>
4426
4427 * win32/*: big cleanup of the Windows/MSVC project files
4428 from Igor Zlatkovic
4429
4430Wed Jan 2 14:11:35 CET 2002 Daniel Veillard <daniel@veillard.com>
4431
4432 * doc/Makefile.am: should fix #67674 and avoid troubles if
4433 xsltproc is not available or fails in the prefix provided
4434
4435Tue Jan 1 17:48:56 CET 2002 Daniel Veillard <daniel@veillard.com>
4436
4437 * xmlmemory.c: one more doc patch from Charlie Bozeman.
4438
4439Mon Dec 31 17:35:40 CET 2001 Daniel Veillard <daniel@veillard.com>
4440
4441 * DOCBparser.c parser.c valid.c include/libxml/parserInternals.h
4442 include/libxml/xmlerror.h include/libxml/xpathInternals.h:
4443 Fixed a few other problems raised by Charlie Bozeman.
4444 * result/VC/ElementValid[5-7]: fixed the output
4445
4446Mon Dec 31 17:13:34 CET 2001 Daniel Veillard <daniel@veillard.com>
4447
4448 * *.c include/libxml/*.h doc/html/*: applied 42 documentation
4449 patches from Charlie Bozeman. Regenerated the HTML docs.
4450
4451Thu Dec 20 14:59:52 CET 2001 Daniel Veillard <daniel@veillard.com>
4452
4453 * include/libxml/debugXML.h win32/dsp/libxml2.def.src: fixes
4454 for Windows from Igor
4455
4456Tue Dec 18 12:13:33 CET 2001 Daniel Veillard <daniel@veillard.com>
4457
4458 * xmllint.c: applied Justin Fletcher patch for --output or -o
4459
4460Tue Dec 18 08:52:32 CET 2001 Daniel Veillard <daniel@veillard.com>
4461
4462 * win32/libxml2/libxml2.def.src: close #67019
4463
4464Tue Dec 18 08:08:51 CET 2001 Daniel Veillard <daniel@veillard.com>
4465
4466 * xmllint.c: applied Justin Fletcher generic timing patch
4467 similar to the one already applied to xsltproc.
4468
4469Mon Dec 17 16:29:08 CET 2001 Daniel Veillard <daniel@veillard.com>
4470
4471 * include/libxml/tree.h tree.c: applied documentation patches
4472 from Charlie Bozeman
4473
4474Thu Dec 13 21:24:16 MST 2001 John Fleck <jfleck@inkstain.net>
4475
4476 *doc/xmllint.xml, xmllint.1 - document --dropdtd
4477
4478Thu Dec 13 23:19:50 CET 2001 Daniel Veillard <daniel@veillard.com>
4479
4480 * valid.c: fix the xmlStrdup() used in the previous patch.
4481 * valid.c: added --dropdtd
4482 * tree.c: fixed xmlUnlinkNode so it also removes the references
4483 from the document if the node is a DTD
4484
4485Thu Dec 13 15:54:35 CET 2001 Daniel Veillard <daniel@veillard.com>
4486
4487 * HTMLtree.c valid.c: cleanup some static declarations
4488
4489Thu Dec 13 15:23:04 CET 2001 Daniel Veillard <daniel@veillard.com>
4490
4491 * xmllint.c: removed another strdup()
4492 * doc/FAQ: removed the HP/UX entry
4493
4494Thu Dec 13 09:44:58 CET 2001 Daniel Veillard <daniel@veillard.com>
4495
4496 * valid.c: fix bug #66816 when validating.
4497 * xmllint.c: don't use sys/time.h if configure did not found it
4498
4499Mon Dec 10 21:39:55 MST 2001 John Fleck <jfleck@inkstain.net>
4500
4501 * docs/xmllint.1, xmllint.xml, xmlcatalog.1, xmlcatalog_man.html,
4502 xmlcatalog_man.xml
4503
4504Mon Dec 10 22:06:16 CET 2001 Daniel Veillard <daniel@veillard.com>
4505
4506 * include/libxml/xmlmemory.h: Hietaniemi Jarkko pointed out that
4507 xmlInitMemory() was declared twice
4508
4509Sun Dec 9 14:59:23 CET 2001 Daniel Veillard <daniel@veillard.com>
4510
4511 * globals.c: do not reference strdup() !
4512 * configure.in libxml-2.0.pc.in: trying to fix the libs
4513 of the various config extraction modules
4514
4515Fri Dec 7 15:21:33 CET 2001 Daniel Veillard <daniel@veillard.com>
4516
4517 * configure.in : preparing 2.4.12
4518 * doc/* : updated and rebuilt the docs
4519
4520Fri Dec 7 12:32:00 CET 2001 Daniel Veillard <daniel@veillard.com>
4521
4522 * uri.c: closed bug #66159
4523 * testURI.c: added --escape option
4524 * configure.in: some cleanup for xml2-config --cflags
4525
4526Thu Dec 6 15:31:30 CET 2001 Daniel Veillard <daniel@veillard.com>
4527
4528 * globals.c testThreads.c: removed some misplaced includes
4529 of xmlversion.h
4530
4531Thu Dec 6 09:06:08 EST 2001 Daniel Veillard <daniel@veillard.com>
4532
4533 * threads.c: patch from Gary Pennington fixing a possible
4534 problem at initialization time.
4535
4536Wed Dec 5 13:01:37 CET 2001 Daniel Veillard <daniel@veillard.com>
4537
4538 * configure.in libxml.h parser.c testThreads.c macos/: integrated
4539 Eric Lavigne contribution to build libxml2 on MacOS using
4540 CodeWarrior.
4541
4542Tue Dec 4 14:13:44 CET 2001 Daniel Veillard <daniel@veillard.com>
4543
4544 * xmllint.c: applied Geert Kloosterman's patch to fix
4545 --repeat --timing output
4546
4547Thu Nov 29 17:10:22 CET 2001 Daniel Veillard <daniel@veillard.com>
4548
4549 * parser.c: Robin Berjon <robin@knowscape.com> found a case
4550 where non-wellformed XML declaractions were not detected.
4551
4552Wed Nov 28 15:41:40 CET 2001 Daniel Veillard <daniel@veillard.com>
4553
4554 * xpointer.c: fixed a compilation bug pointed by Danny Jamshy
4555
4556Wed Nov 28 10:09:51 CET 2001 Daniel Veillard <daniel@veillard.com>
4557
4558 * xmlIO.c: as robert pointed again, xmlInputCallbackInitialized
4559 gets reset by xmlCleanupInputCallbacks() and this makes the
4560 function useless. Same for output.
4561
4562Tue Nov 27 17:22:36 CET 2001 Daniel Veillard <daniel@veillard.com>
4563
4564 * xmlIO.c: robert pointed out a loop error in callback cleanups
4565
4566Mon Nov 26 16:56:00 CET 2001 Daniel Veillard <daniel@veillard.com>
4567
4568 * tree.c debugXML.c include/libxml/tree.h include/libxml/debugXML.h:
4569 moved xmlGetLineNo() and xmlGetNodePath() into the main tree module,
4570 they are not really tied to debugging
4571
4572Mon Nov 26 11:31:36 CET 2001 Daniel Veillard <daniel@veillard.com>
4573
4574 * configure.in include/libxml/xmlwin32version.h: preparing 2.4.11
4575 * xmllint.c: better --catalogs description
4576
4577Sun Nov 25 11:34:24 CET 2001 Daniel Veillard <daniel@veillard.com>
4578
4579 * tree.c: fixed a couple of problems in xmlSetProp()
4580
4581Thu Nov 22 19:19:10 CET 2001 Daniel Veillard <daniel@veillard.com>
4582
4583 * debugXML.c tree.c xmlIO.c xmlmemory.c: some cleanups when chasing
4584 unappropriate stdout output.
4585
4586Thu Nov 22 13:58:14 CET 2001 Daniel Veillard <daniel@veillard.com>
4587
4588 * include/libxml/tree.h: Fixed a couple of macro errors pointed out
4589 by Denis Beurive, closes #65111
4590
4591Tue Nov 20 10:34:01 CET 2001 Daniel Veillard <daniel@veillard.com>
4592
4593 * valid.c: in case of content model validity error, don't
4594 print it if validity warnings were not requested.
4595
4596Tue Nov 20 09:30:02 CET 2001 Daniel Veillard <daniel@veillard.com>
4597
4598 * nanoftp.c: applied a couple of patches from Brian D Ripley.
4599 * parserInternals.c: removed the last exit() call. Print an
4600 unmaskable error on stderr instead (library mismatch detection)
4601
4602Sat Nov 17 17:16:51 MST 2001 John Fleck <jfleck@inkstain.net>
4603
4604 * doc/xmllint.xml, doc/xmllint.1 - update xmllint man page with
4605 shell instructions from Heiko Rupp
4606
4607Thu Nov 15 14:53:42 CET 2001 Daniel Veillard <daniel@veillard.com>
4608
4609 * catalog.c: use the URL notation file:// for default catalog paths
4610
4611Wed Nov 14 16:03:02 CET 2001 Daniel Veillard <daniel@veillard.com>
4612
4613 * include/libxml/tree.h: better comments for _private fields
4614 * tree.c: removed a problem when copying an entity reference.
4615
4616Tue Nov 13 16:23:04 CET 2001 Daniel Veillard <daniel@veillard.com>
4617
4618 * vms/*: updated instructions and diffs from John A Fotheringham
4619
4620Mon Nov 12 23:43:22 CET 2001 Daniel Veillard <daniel@veillard.com>
4621
4622 * include/libxml/xmlerror.h: avoid an include problem if
4623 #include <libxml/xmlerror.h> happens first in code
4624 seems to be the case in KDE libs
4625
4626Mon Nov 12 22:32:41 CET 2001 Daniel Veillard <daniel@veillard.com>
4627
4628 * win32/dsp/* include/libxml/xmlwin32version.h.in: update
4629 from Igor for Windows
4630
4631Mon Nov 12 10:19:41 CET 2001 Daniel Veillard <daniel@veillard.com>
4632
4633 * Makefile.am: Gary Pennington pointed out a missing prefix
4634
4635Sat Nov 10 12:55:42 CET 2001 Daniel Veillard <daniel@veillard.com>
4636
4637 * configure.in include/libxml/xmlwin32version.h: preparing 2.4.10
4638 * doc/*: upgraded and rebuilt the docs
4639
4640Sat Nov 10 12:33:38 CET 2001 Daniel Veillard <daniel@veillard.com>
4641
4642 * HTMLparser.c: fix comment in scripts element parsing.
4643 * result/HTML/doc3*: updated the results.
4644
4645Sat Nov 10 11:18:18 CET 2001 Daniel Veillard <daniel@veillard.com>
4646
4647 * uri.c: another URI bug fix #63336, using Joel Young patch.
4648
4649Sat Nov 10 11:07:26 CET 2001 Daniel Veillard <daniel@veillard.com>
4650
4651 * debugXML.c include/libxml/debugXML.h: add xmlGetNodePath()
4652 a cleaned up version of the Pwd shell string generation.
4653
4654Fri Nov 9 00:34:13 CET 2001 Daniel Veillard <daniel@veillard.com>
4655
4656 * valid.c include/libxml/tree.h: trying to fix namespaces +
4657 validation problems for good, closing #63619 in the process
4658 * result/valid/dia.xml test/valid/dia.xml: the Dia test was
4659 wrong in this respect, fixed it.
4660
4661Thu Nov 8 18:31:40 CET 2001 Daniel Veillard <daniel@veillard.com>
4662
4663 * xmllint.c: Morus Walter patch to allow --format and --encode
4664
4665Thu Nov 8 14:52:18 CET 2001 Daniel Veillard <daniel@veillard.com>
4666
4667 * debugXML.c: Stefan Kost provided an help command for the shell
4668
4669Wed Nov 7 14:32:55 CET 2001 Daniel Veillard <daniel@veillard.com>
4670
4671 * debugXML.c: Heiko Rupp pointed that the shell would crash
4672 on empty nodesets returns.
4673
4674Wed Nov 7 13:52:36 CET 2001 Daniel Veillard <daniel@veillard.com>
4675
4676 * Makefile.am: Weiqi Gao pointed out that xmlcatalog
4677 migh need the history libraries
4678
4679Tue Nov 6 23:49:09 CET 2001 Daniel Veillard <daniel@veillard.com>
4680
4681 * HTMLparser.c test/HTML/lt.html result/HTML/lt.html*:
4682 handle the case of < in quoted attributes, Bastian Kleineidam
4683
4684Tue Nov 6 16:21:33 CET 2001 Daniel Veillard <daniel@veillard.com>
4685
4686 * configure.in include/libxml/xmlwin32version.h: releasing 2.4.9
4687 fixing catalog breakages
4688 * Makefile.am catalog.c result/catalogs/catal
4689 result/catalogs/mycatalog.* test/catalogs/catal*:
4690 fixed more problems in catalog support, added more regression tests
4691 for both XML and SGML catalog handling
4692
4693Mon Nov 5 20:26:41 CET 2001 Daniel Veillard <daniel@veillard.com>
4694
4695 * debugXML.c: applied an improvement to xmlGetLineNo() from
4696 Keith Isdale
4697
4698Mon Nov 5 15:20:16 CET 2001 Daniel Veillard <daniel@veillard.com>
4699
4700 * catalog.c: dohhhh XML catalog add and remove ops were broken too.
4701 Side effect of the progressive catalog loading
4702
4703Mon Nov 5 12:40:54 CET 2001 Daniel Veillard <daniel@veillard.com>
4704
4705 * Makefile.am: confexecdir and confexec_DATA were defined twice
4706 pointed out by Karl Eichwalder
4707
4708Sun Nov 4 23:18:34 CET 2001 Daniel Veillard <daniel@veillard.com>
4709
4710 * xmlcatalog.c: avoid unlink() and use remove() instead.
4711
4712Sun Nov 4 23:12:38 CET 2001 Daniel Veillard <daniel@veillard.com>
4713
4714 * libxml.spec.in: cleanup
4715 * include/libxml/xmlwin32version.h: updated with 2.4.8
4716
4717Sun Nov 4 21:17:24 CET 2001 Daniel Veillard <daniel@veillard.com>
4718
4719 * encoding.c global.data globals.c testThreads.c: fix bug #63752
4720 of compiling libxml with a non standard set of options
4721
4722Sun Nov 4 13:11:41 MST 2001 John Fleck <jfleck@inkstain.net
4723
4724 * doc/xmllint.xml, xmllint.1 - updating xmllint man page to
4725 document --sgml option, fixing gnome bugzilla #63382
4726
4727Sun Nov 4 20:56:53 CET 2001 Daniel Veillard <daniel@veillard.com>
4728
4729 * include/libxml/catalog.h catalog.c: Fixed SGML catalogs
4730 breakage of 2.4.7, added a couple of really needed APIs
4731 like xmlCatalogIsEmpty() and xmlNewCatalog()
4732 * xmlcatalog.c: updated --sgml --noout to be a suitable replacement
4733 for install-catalog
4734 * configure.in: preparing 2.4.8
4735
4736Thu Nov 1 15:29:31 CET 2001 Daniel Veillard <daniel@veillard.com>
4737
4738 * HTMLtree.c tree.c include/libxml/HTMLtree.h
4739 include/libxml/tree.h include/libxml/xmlIO.h: more include
4740 cleanups, export cleanly one html output + format function.
4741
4742Thu Nov 1 14:12:12 CET 2001 Daniel Veillard <daniel@veillard.com>
4743
4744 * parser.c: removed initGenericErrorDefaultFunc call from
4745 xmlInitParser() since it could destroy previous calls to
4746 xsltSetGenericErrorFunc() effects
4747
4748Thu Nov 1 09:37:13 CET 2001 Daniel Veillard <daniel@veillard.com>
4749
4750 * debugXML.c include/libxml/debugXML.h: bool can be a reserved
4751 keyword.
4752
4753Wed Oct 31 18:50:08 CET 2001 Daniel Veillard <daniel@veillard.com>
4754
4755 * Makefile.am: cleanup
4756 * threads.c: cleanup too
4757 * xmlIO.c include/libxml/xmlIO.h: added xmlNoNetExternalEntityLoader()
4758 from xsltproc
4759 * include/libxml/tree.h include/libxml/parser.h: trying to break a
Daniel Veillard784b9352003-02-16 15:50:27 +00004760 dependency loop.
Daniel Veillard7b4b2f92003-01-06 13:11:20 +00004761
4762Tue Oct 30 18:38:53 CET 2001 Daniel Veillard <daniel@veillard.com>
4763
4764 * catalog.c: Justin Fletcher pointed out that xmlParseXMLCatalog
4765 was not used anymore !
4766
4767Tue Oct 30 13:33:13 CET 2001 Daniel Veillard <daniel@veillard.com>
4768
4769 * configure.in: preparing 2.4.7
4770 * Makefile.am doc/Makefile.am: switched to the latest xmllint
4771 manual page from John
4772 * doc/*: updated the doc and rebuilt the generated pages
4773
4774Tue Oct 30 11:31:19 CET 2001 Daniel Veillard <daniel@veillard.com>
4775
4776 * xmlIO.c: closing bug #62711, the library should never
4777 close stdin or stdout.
4778
4779Tue Oct 30 10:46:12 CET 2001 Daniel Veillard <daniel@veillard.com>
4780
4781 * uri.c: second pass at fixing #63336, using Joel Young
4782 final patch. looks okay.
4783
4784Tue Oct 30 00:56:05 CET 2001 Daniel Veillard <daniel@veillard.com>
4785
4786 * uri.c include/libxml/uri.h: trying to clear #63336
4787 allowing the escaping routine to parse unconformant
4788 URI-References.
4789
4790Mon Oct 29 19:09:46 CET 2001 Daniel Veillard <daniel@veillard.com>
4791
4792 * vms/readme.vms vms/build_libxml.com nanoftp.c
4793 include/libxml/xmlversion.h.in: a few VMS updates from
4794 John A Fotheringham
4795 * include/libxml/xmlIO.h xmlIO.c: added xmlCleanupInputCallbacks()
4796 and xmlCleanupOutputCallbacks() for the Perl binding people.
4797
4798Mon Oct 29 12:44:17 CET 2001 Daniel Veillard <daniel@veillard.com>
4799
4800 * parser.c globals.c DOCBparser.c HTMLparser.c error.c:
4801 apply fixes to close #63271 and avoid segfaults when
4802 the error routine gets callbed before xmlInitParser()
4803 get called.
4804 * nanoftp.c error.c: Applied patches from Justin Fletcher
4805 correcting some xmlGenericError misuses.
4806
4807Sat Oct 27 14:04:45 MDT 2001 John Fleck <jfleck@inkstain.net>
4808
4809 *doc/xmllint.xml, doc/xmllint.1
4810 New and improved man page for xmllint - .xml is the original, .1
4811 is the generated man page
4812
4813Wed Oct 24 14:34:25 CEST 2001 Daniel Veillard <daniel@veillard.com>
4814
4815 * doc/site.xsl doc/*.html doc/Makefile.am: now autogenerate
4816 the web site from the main HTML document.
4817
4818Tue Oct 23 14:32:04 CEST 2001 Daniel Veillard <daniel@veillard.com>
4819
4820 * parser.c: fixed an erroneous validation bug when PE refs
4821 occurs in external parsed entities referenced from the
4822 internals subset
4823 * test/valid/index.xml test/valid/dtds/nitf-2-5.dtd
4824 test/valid/dtds/NewsMLv1.0.dtd result/valid/index.xml*:
4825 added the associated testcase, it's a nice one.
4826 * HTMLparser.c: generate the DTD node as HTML still ...
4827 * HTMLtree.c: fixed errors in Set/GetMetaEncoding
4828
4829Mon Oct 22 14:20:17 CEST 2001 Daniel Veillard <daniel@veillard.com>
4830
4831 * HTMLparser.c: fixed a bug in htmlNewDoc()
4832
4833Mon Oct 22 11:32:36 CEST 2001 Daniel Veillard <daniel@veillard.com>
4834
4835 * test/threads/*: added entities testing to the Thread test
4836 * testThreads.c: make the test reasonable
4837 * DOCBparser.c: fix the DTD public and system ID
4838 * xmllint.c: added --sgml for SGML DocBook importing
4839 * Makefile.am: added Docbtests target
4840
4841Fri Oct 19 11:47:13 CEST 2001 Daniel Veillard <daniel@veillard.com>
4842
4843 * nanoftp.c: use only "anonymous@" string for anonymous passwds
4844 * testThreads.c: removed bogus include
4845
4846Thu Oct 18 16:56:23 CEST 2001 Daniel Veillard <daniel@veillard.com>
4847
4848 * parser.c valid.c result/valid/rss.xml result/valid/rss.xml.err:
4849 fixed a very serious (looping) validation bug
4850
4851Wed Oct 17 11:56:25 EDT 2001 Daniel Veillard <daniel@veillard.com>
4852
4853 * include/libxml/globals.h include/libxml/threads.h threads.c
4854 testThreads.c: far more testing, cleaning up bugs
4855 * *.c : make sure globals.h is always included.
4856
4857Wed Oct 17 17:41:41 CEST 2001 Daniel Veillard <daniel@veillard.com>
4858
4859 * HTMLparser.c: try to get rid of parser loops for good.
4860
4861Wed Oct 17 13:29:02 CEST 2001 Daniel Veillard <daniel@veillard.com>
4862
4863 * configure.in: fixed some bugs in CFLAGS passing.
4864 * test/threads Makefile.am testThreads.c: added a specific
4865 threaded test case (really nasty, guaranteed).
4866
4867Tue Oct 16 23:01:49 CEST 2001 Daniel Veillard <daniel@veillard.com>
4868
4869 * catalog.c: serious cleanup on the management of the
4870 XML catalog tree, more tests done, especially with
4871 the catalog PI.
4872
4873Tue Oct 16 08:43:43 EDT 2001 Daniel Veillard <daniel@veillard.com>
4874
4875 * catalog.c: avoid a problem in catalog cleanup on SMP if
4876 catalogs were not initialized.
4877
4878Tue Oct 16 14:33:19 CEST 2001 Daniel Veillard <daniel@veillard.com>
4879
4880 * catalog.c xpath.c: trying to cleanup the not thread safe
4881 parts of the library.
4882
4883Mon Oct 15 14:30:11 CEST 2001 Daniel Veillard <daniel@veillard.com>
4884
4885 * include/libxml/globals.h configure.in global.data: make
4886 the allocation be per-thread a configure option
4887 * encoding.c include/libxml/parser.h: fixed compilation
4888 errors
4889
4890Mon Oct 15 12:45:03 CEST 2001 Daniel Veillard <daniel@veillard.com>
4891
4892 * include/libxml/parser.h: Norm reported that a few lines
4893 added were breaking libxslt compile, removed them for now
4894
4895Sun Oct 14 05:55:01 EDT 2001 Daniel Veillard <daniel@veillard.com>
4896
4897 * parser.c parserInternals.c threads.c: debugged and fixed
4898 initialization problems which were giving troubles on SMP
4899 boxes.
4900
4901Sat Oct 13 16:17:13 CEST 2001 Daniel Veillard <daniel@veillard.com>
4902
4903 * include/libxml/Makefile.am: missing globals.h
4904
4905Sat Oct 13 14:15:00 CEST 2001 Daniel Veillard <daniel@veillard.com>
4906
4907 * globals.c: added a couple of standard includes.
4908
4909Sat Oct 13 11:08:20 CEST 2001 Daniel Veillard <daniel@veillard.com>
4910
4911 * include/libxml/SAX.h include/libxml/globals.h include/libxml/parser.h
4912 include/libxml/parserInternals.h include/libxml/tree.h
4913 include/libxml/xmlerror.h HTMLparser.c SAX.c error.c globals.c
4914 nanoftp.c nanohttp.c parser.c parserInternals.c testDocbook.c
4915 testHTML.c testSAX.c tree.c uri.c xlink.c xmlmemory.c:
4916 Applied the last patches from Gary, cleanup, activated threading
4917 all user accessible global variables are now handled in globals.[ch]
4918 Still a bit rought but make tests passes with either
4919 --with-threads defined at configure time or not.
4920 * Makefile.am example/Makefile.am: added globals.[ch] and threads
4921 linking options
4922
4923Fri Oct 12 19:25:55 CEST 2001 Daniel Veillard <daniel@veillard.com>
4924
4925 * Makefile.am include/libxml/Makefile.am
4926 include/libxml/globals.h globals.c include/libxml/threads.h
4927 threads.c build_glob.py global.data xmlcatalog.c acconfig.h
4928 configure.in: started integrating the core of the thread support
4929 not activated yet but half integrated. The code should still
4930 compile and work anyway.
4931
4932Fri Oct 12 00:53:03 CEST 2001 Daniel Veillard <daniel@veillard.com>
4933
4934 * HTMLtree.c catalog.c debugXML.c entities.c nanoftp.c
4935 parser.c valid.c xmlmemory.c xpath.c xpointer.c: started
4936 integrating the non-controversial parts of Gary Pennington
4937 multithread patches
4938 * catalog.c: corrected a small bug introduced
4939
4940Thu Oct 11 20:58:15 CEST 2001 Daniel Veillard <daniel@veillard.com>
4941
4942 * catalog.c include/libxml/catalog.h: very serious cleanup,
4943 isolating unportable code and as much as possible the accesses
4944 to the global shared catalog. May need more testing !
4945
4946Thu Oct 11 11:10:31 CEST 2001 Daniel Veillard <daniel@veillard.com>
4947
4948 * include/libxml/debugXML.h debugXML.c tree.c: integrating
4949 Keith Isdale patches for the XSLT debugger interfaces. Some
4950 cleanup
4951
4952Thu Oct 11 08:44:01 CEST 2001 Daniel Veillard <daniel@veillard.com>
4953
4954 * win32/Makefile.mingw: update from Tobias Peters for 2.4.5
4955 * DOCBparser.c: generate line nubers in elements
4956
4957Wed Oct 10 11:35:45 CEST 2001 Daniel Veillard <daniel@veillard.com>
4958
4959 * configure.in: preparing 2.4.6 release
4960 * doc/xml.html doc/html/*: updated and rebuilt the docs
4961 * include/libxml/*.h *.c: fixed a number of teh/the widht/width typos
4962
4963Mon Oct 8 20:38:27 MDT 2001 John Fleck <jfleck@inkstain.net>
4964
4965 * doc/xmlcatalog_man.xml, xmlcatalog.1, xmlcatalog_man.html
4966 adding documentation for DV's supercatalog support
4967
4968Mon Oct 8 17:00:16 CEST 2001 Daniel Veillard <daniel@veillard.com>
4969
4970 * include/libxml/catalog.h catalog.c xmlcatalog.c: adding SGML
4971 super catalog support adding one API and one flag --sgml to
4972 xmlcatalog
4973
4974Sun Oct 7 16:43:57 MDT 2001 John Fleck <jfleck@inkstain.net>
4975
4976 * doc/xmlcatalog_man.xml, xmlcatalog.1
4977 One more crack at
4978 https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=54392
4979
4980
4981Sun Oct 7 18:47:02 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
4982
4983 * xpath.c: implemented xmlXPathObjectCopy for external objects
4984 * include/libxml/xpathInternals.h: added xmlXPathStackIsExternal
4985
4986Sat Oct 6 16:25:52 MDT 2001 John Fleck <jfleck@inkstain.net>
4987
4988 *doc/xmlcatalog_man.xml, xmlcatalog_man.html, xmlcatalog.1
4989 finishing up fix to
4990 https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=54392, making
4991 the xmlcatalog man page display more elegantly
4992
4993Sat Oct 6 15:27:12 CEST 2001 Daniel Veillard <daniel@veillard.com>
4994
4995 * configure.in: closing bug #61832
4996 * HTMLparser.c: removed a warning
4997
4998Sat Oct 6 15:07:14 CEST 2001 Daniel Veillard <daniel@veillard.com>
4999
5000 * xpath.c: fixing #61673 part I, do not loose doc information
5001 when copying result value trees.
5002
5003Sat Oct 6 11:58:58 CEST 2001 Daniel Veillard <daniel@veillard.com>
5004
5005 * xpath.c: trying to harden the XPath interpreter
5006
5007Fri Oct 5 20:37:51 MDT 2001 John Fleck <jfleck@inkstain.net>
5008
5009 * doc/xmlcatalog.1 updated using a new stylesheet to address, in
5010 part, https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=54392
5011
5012Fri Oct 5 23:35:00 HKT 2001 William Brack <wbrack@mmm.com.hk>
5013
5014 * HTMLparser: repaired another loop problem
5015
5016Fri Oct 5 11:16:21 CEST 2001 Daniel Veillard <daniel@veillard.com>
5017
5018 * uri.c: applied fix from Mathias Hasselmann about a bug in URI
5019 parsing.
5020 * xpath.c: fix bug #61291 the default XML namespace node is
5021 missing from the namespace axis.
5022 * tree.c: refuse to create namespaces nodes with prefix "xml"
5023
5024Thu Oct 4 16:47:44 CEST 2001 Daniel Veillard <daniel@veillard.com>
5025
5026 * SAX.c: ouch a non-defined namespace could lead to a crash,
5027 fixed #61215
5028
5029Thu Oct 4 16:24:26 CEST 2001 Daniel Veillard <daniel@veillard.com>
5030
5031 * parserInternals.c: closed bug #61054
5032
5033Wed Oct 3 15:19:04 CEST 2001 Daniel Veillard <daniel@veillard.com>
5034
5035 * include/libxml/Makefile.am: closing #60708
5036
5037Tue Oct 2 15:52:05 CEST 2001 Daniel Veillard <daniel@veillard.com>
5038
5039 * win32/dsp/libxml2.def.src include/libxml/parser.h parser.c:
5040 adding xmlSAXParseFileWithData following Marco Stipek suggestion
5041
5042Tue Oct 2 11:27:58 CEST 2001 Daniel Veillard <daniel@veillard.com>
5043
5044 * valid.c: close bug #61550 when xml: wasn't considered a namespace
5045
5046Tue Oct 2 11:18:32 CEST 2001 Daniel Veillard <daniel@veillard.com>
5047
5048 * win32/dsp/libxml2.def.src: Igor Zlatkovic patches
5049 * DOCBparser.c HTMLparser.c parser.c: fixed typos
5050
5051Mon Oct 1 09:34:51 CEST 2001 Daniel Veillard <daniel@veillard.com>
5052
5053 * catalog.c: Justin Fletcher provided cleaup code in case
5054 HAVE_STAT is not defined
5055 * include/win32config.h: Igor Zlatkovic suggested to have
5056 HAVE_STAT defined there
5057
5058Sat Sep 29 00:15:00 HKT 2001 William Brack <wbrack@mmm.com.hk>
5059
5060 * catalog.c - fixed typing error reported by M. Barros
5061
5062Sun Sep 23 21:02:39 MDT 2001 John Fleck <jfleck@inkstain.net>
5063
5064 * xmllint.c - fixing typo
5065
5066Sat Sep 22 10:00:00 HKT 2001 William Brack <wbrack@mmm.com.hk>
5067
5068 * HTMLparser.c: small enhancement to prevent loop on
5069 unrecognizable data
5070
5071Fri Sep 21 11:45:53 CEST 2001 Daniel Veillard <daniel@veillard.com>
5072
5073 * parserInternals.c: applying patch from bug #60757 this
5074 should close it
5075
5076Thu Sep 20 15:54:29 CEST 2001 Daniel Veillard <daniel@veillard.com>
5077
5078 * catalog.c xmlcatalog.c: removed a couple of warning
5079 * xpath.c: try to solve the linking problem on platforms
5080 needing trio to compile
5081
5082Wed Sep 19 10:01:37 CEST 2001 Daniel Veillard <daniel@veillard.com>
5083
5084 * Makefile.am libxml.spec.in: backing up non-documented changes
5085 commited without review or aproval by Jens Finke <jens@gnome.org>
5086 * HACKING: made 100% clear that no commit should be done directly
5087
5088Mon Sep 17 18:52:37 CEST 2001 Daniel Veillard <daniel@veillard.com>
5089
5090 * configure.in: Joe Orton provided a patch fixing a problem
5091 when iconv is specified to be in a non-standard directory
5092 but wasn't exported in xml2-config --cflags
5093
5094Fri Sep 14 19:32:43 CEST 2001 Daniel Veillard <daniel@veillard.com>
5095
5096 * configure.in: let's ship 2.4.5 before getting too much
5097 troubles with 2.4.4 errors.
5098
5099Fri Sep 14 12:26:58 CEST 2001 Daniel Veillard <daniel@veillard.com>
5100
5101 * encoding.c entities.c: do not output hexadecimal charrefs
5102 when serializing HTML since some version of Netscape can't
5103 grok it, generate decimal ones.
5104 * result/HTML/doc3.htm: output changed due to previous test
5105 * parserInternals.c: repair xmlKeepBlanksDefault() broken in 2.4.4
5106
5107Thu Sep 13 13:34:27 CEST 2001 Daniel Veillard <daniel@veillard.com>
5108
5109 * libxml-2.0.pc.in: dohh generated the wrong include path :-(
5110 * doc/Makefile.am libxml.spec.in: re-dohh forgot the new manpage :-(
5111
5112Wed Sep 12 22:14:55 CEST 2001 Daniel Veillard <daniel@veillard.com>
5113 Released 2.4.4
5114
5115 * config.h.in configure.in libxml.spec.in include/libxml/Makefile.am
5116 libxml-2.0.pc.in: moved includes to includedir/libxml2/libxml,
5117 updated the configuration scripts systems accordingly
5118
5119Wed Sep 12 20:49:32 CEST 2001 Daniel Veillard <daniel@veillard.com>
5120
5121 * configure.in: preparing for 2.4.4
5122 * doc/xml.html doc/html/*: updated and rebuilt the docs
5123
5124Wed Sep 12 16:58:16 CEST 2001 Daniel Veillard <daniel@veillard.com>
5125
5126 * win32/dsp/libxml2.def.src: tried to incorporate comments
5127 from bug #59220
5128
5129Tue Sep 11 11:25:36 CEST 2001 Daniel Veillard <daniel@veillard.com>
5130
5131 * parser.c result/noent/wml.xml: fixed bug #59981 related
5132 to handling of '&' in attributes when entities are substitued
5133
5134Mon Sep 10 22:14:42 CEST 2001 Daniel Veillard <daniel@veillard.com>
5135
5136 * libxml.h include/libxml/xmlversion.h.in
5137 include/libxml/xmlwin32version.h include/libxml/xmlwin32version.h.in:
5138 Tried to close bug #60131
5139
5140Mon Sep 10 20:46:03 CEST 2001 Daniel Veillard <daniel@veillard.com>
5141
5142 * SAX.c: fixed a bug in the HTML parser introduced Sep 9
5143
5144Mon Sep 10 20:13:09 CEST 2001 Daniel Veillard <daniel@veillard.com>
5145
5146 * SAX.c: fixing bug #59946 on xmlns=""
5147
5148Mon Sep 10 16:39:42 CEST 2001 Daniel Veillard <daniel@veillard.com>
5149
5150 * include/libxml/xmlerror.h SAX.c: fixing bug 59732, simple
5151 but allocates a new error code.
5152
5153Sun Sep 9 10:33:15 CEST 2001 Daniel Veillard <daniel@veillard.com>
5154
5155 * xmllint.c: John Fleck fixed typos in the options output
5156 * parser.c SAX.c: fix ignorable white space SAX selection
5157
5158Sat Sep 8 11:43:53 CEST 2001 Daniel Veillard <daniel@veillard.com>
5159
5160 * entities.c: Steve Underwood found the possibility of an
5161 ininite loop in case of error.
5162
5163Fri Sep 7 11:35:00 CEST 2001 Daniel Veillard <daniel@veillard.com>
5164
5165 * Makefile.am: Need $(ICONV_LIBS) in libxml2_la_LIBADD
5166
5167Wed Sep 5 17:47:43 CEST 2001 Daniel Veillard <daniel@veillard.com>
5168
5169 * parser.c: warn if version is not 1.0 but it's not
5170 strictly speaking an error after analyzing the spec
5171
5172Mon Sep 3 10:07:03 MDT 2001 John Fleck <jfleck@inkstain.net>
5173
5174 *doc/catalog.html - add link to the html version of the
5175 man page, other linguistic cleanups
5176
5177Mon Sep 3 09:10:08 MDT 2001 John Fleck <jfleck@inkstain.net>
5178
5179 * doc/xmlcatalog_man.xml, xmlcatalog_man.html, xmlcatalog.1
5180 adding documentation for xmlcatalog. Note: xmlcatalog.1, the man
5181 file, has not yet been included in the build.
5182
5183Sat Sep 1 18:17:47 CEST 2001 Daniel Veillard <daniel@veillard.com>
5184
5185 * catalog.c: removed a duplicate affectation Justin Fletcher
5186
5187Fri Aug 31 22:02:10 CEST 2001 Daniel Veillard <daniel@veillard.com>
5188
5189 * tree.c: Armin Sander pointed a possible text coalescing
5190 problem, completed his patch.
5191
5192Fri Aug 31 18:30:28 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
5193
5194 * trionan.c: Fixed const and volatile re-definition problem
5195
5196Fri Aug 31 16:51:28 CEST 2001 Daniel Veillard <daniel@veillard.com>
5197
5198 * libxml.4 parser.c: doc updates from Heiko Rupp
5199 * parserInternals.c: 2 sanity checks from Heiko Rupp
5200
5201Tue Aug 28 22:38:45 CEST 2001 Daniel Veillard <daniel@veillard.com>
5202
5203 * tree.c: applied patch from Armin Sander to make some pointers
5204 const in xmlCopyNode()
5205 * include/libxml/tree.h: added fix to the header
5206
5207Mon Aug 27 16:24:47 CEST 2001 Daniel Veillard <daniel@veillard.com>
5208
5209 * xpath.c: hum, restrict the integer usage gcc bug workaround
5210 to only gcc compilers so that other architecture don't get
5211 penalized by this limitation.
5212 * include/libxml/xpath.h: small typo fix from Heiko W. Rupp
5213
5214Sun Aug 26 20:45:04 CEST 2001 Daniel Veillard <daniel@veillard.com>
5215
5216 * valid.c: fixed a Windows compiler warning (Chris Poblete)
5217 * xpath.c: fix for mod when dividend is 0 (Chris Poblete)
5218
5219Sat Aug 25 15:30:17 CEST 2001 Daniel Veillard <daniel@veillard.com>
5220
5221 * include/libxml/catalog.h catalog.c xmlcatalog.c: added a
5222 --convert option to xmlcatalog to convert SGML ones to
5223 the XML syntax.
5224 * xmllint.c: small cleanup for $SGML_CATALOG_FILES support.
5225
5226 2.4.3 got released at that point
5227Thu Aug 23 23:16:32 CEST 2001 Daniel Veillard <daniel@veillard.com>
5228
5229 * catalog.c xmlIO.c: started some serious testing and fixed
5230 a few bug and optmization needs.
5231
5232Thu Aug 23 17:26:58 CEST 2001 Daniel Veillard <daniel@veillard.com>
5233
5234 * Makefile.am configure.in include/libxml/xmlwin32version.h:
5235 preparing for a 2.4.3 release even if it may not be ready yet
5236 * catalog.c parser.c xmlIO.c include/libxml/catalog.h: redirected
5237 all file parsing lookup to go through the entity resolver, add
5238 to add an API to bypass it (needed to load catalogs themselves),
5239 some cleanup on the catalog code too.
5240 * nanoftp.c: small cleanup
5241 * doc/catalog.html: small update
5242
5243Thu Aug 23 12:22:26 CEST 2001 Daniel Veillard <daniel@veillard.com>
5244
5245 * catalog.c: fixed bugi #59406 in SGML catalog parsing reported by
5246 Jun Kuriyama
5247
5248Thu Aug 23 02:51:29 CEST 2001 Daniel Veillard <daniel@veillard.com>
5249
5250 * doc/catalog.html: finished the catalog documentation
5251
5252Thu Aug 23 01:38:42 CEST 2001 Daniel Veillard <daniel@veillard.com>
5253
5254 * doc/catalog.html doc/xml.html: added documentation about
5255 Catalog support, misses an API description
5256 * doc/html/*: reextracted the API pages
5257
5258Wed Aug 22 18:27:47 CEST 2001 Daniel Veillard <daniel@veillard.com>
5259
5260 * include/libxml/catalog.h catalog.c xmlIO.c HTMLparser.c:
5261 Added the part about section 7.2 on URI resolution,
5262 fixed a side effect in the HTML parser, look complete
5263 and ready to rock except the URI/SystemID part!
5264
5265Wed Aug 22 16:27:03 CEST 2001 Daniel Veillard <daniel@veillard.com>
5266
5267 * include/libxml/catalog.h include/libxml/parser.h
5268 include/libxml/xmlerror.h catalog.c parser.c parserInternals.c
5269 xmlIO.c: added support and APIs needed for the catalog PI
5270 * include/libxml/xmlIO.h: cleanup
5271
5272Wed Aug 22 02:03:31 CEST 2001 Daniel Veillard <daniel@veillard.com>
5273
5274 * catalog.c parser.c xmlIO.c xmlcatalog.c xmllint.c
5275 include/libxml/catalog.h: starts to look okay, really
5276 plugged the new framework, cleaned a lot of stuff,
5277 added some APIs, except the PI's support missing this
5278 should be mostly complete
5279 * result/catalogs/* test/catalogs/*: added new test, enriched
5280 the existing one with URN ID tests
5281
5282Tue Aug 21 14:56:18 CEST 2001 Daniel Veillard <daniel@veillard.com>
5283
5284 * catalog.c: fixed nextCatalog
5285 * result/catalogs/docbook test/catalogs/*: started adding
5286 a small regression test
5287
5288Tue Aug 21 12:52:38 CEST 2001 Daniel Veillard <daniel@veillard.com>
5289
5290 * Makefile.am catalog.c xmlcatalog.c include/libxml/catalog.h:
5291 more work on the XML catalog support.
5292 * parser.c include/libxml/parser.h: small cleanup seems using
5293 list as a public parameter name can give portability troubles
5294 * trionan.c trionan.h xpath.c include/libxml/trionan.h
5295 include/libxml/xpath.h include/libxml/Makefile.am: removed
5296 trionan from the libxml API, added xmlXPathIsInf and xmlXPathIsNaN
5297 wrappers
5298
5299Tue Aug 21 11:18:45 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
5300
5301 * Makefile.am trio.c triodef.h trionan.c xpath.c
5302 include/libxml/Makefile.am include/libxml/trionan.h:
5303 Re-worked Not-A-Number and Infinity support.
5304 * xmlcatalog.c: added readline include files
5305
5306Mon Aug 20 02:04:13 CEST 2001 Daniel Veillard <daniel@veillard.com>
5307
5308 * Makefile.am xmlcatalog.c libxml.spec.in: renaming
5309 testCatalog as xmlcatalog, making it an installed app
5310 adding a shell, and preparing it to be a /etc/xml/catalog
5311 management tool, though not ready yet
5312 * catalog.c include/libxml/catalog.h: adding support for
5313 XML Catalogs http://www.oasis-open.org/committees/entity/
5314 not finished, there is some interesting tradeoffs and a
5315 few open questions left.
5316
5317Sun Aug 19 14:59:56 CEST 2001 Daniel Veillard <daniel@veillard.com>
5318
5319 * xmllint.c: fixed a line formatting problem
5320
5321Fri Aug 17 11:35:31 CEST 2001 Daniel Veillard <daniel@veillard.com>
5322
5323 * SAX.c: removed a couple of unused variable (Albert Chin)
5324
5325Fri Aug 17 01:25:21 CEST 2001 Daniel Veillard <daniel@veillard.com>
5326
5327 * HTMLparser.c HTMLtree.c include/libxml/HTMLparser.h:
5328 trying to fix some troubles w.r.t. function returning
5329 const xxxPtr.
5330
5331Thu Aug 16 21:33:20 CEST 2001 Daniel Veillard <daniel@veillard.com>
5332
5333 * win32/dsp/libxml2.def.src: another set of symbols conditionally
5334 defined
5335
5336Thu Aug 16 21:31:14 CEST 2001 Daniel Veillard <daniel@veillard.com>
5337
5338 * xpointer.c: removed unused var
5339
5340Thu Aug 16 18:26:40 CEST 2001 Daniel Veillard <daniel@veillard.com>
5341
5342 * testXPath.c: another small cleanup closing bug #59110
5343
5344Thu Aug 16 17:59:18 CEST 2001 Daniel Veillard <daniel@veillard.com>
5345
5346 * win32/dsp/libxml2.def.src: small cleanup closing bug
5347 #59108
5348
5349Wed Aug 15 22:46:01 CEST 2001 Daniel Veillard <daniel@veillard.com>
5350
5351 * example/gjobread.c: add xmlCleanupParser() before leaving
5352
5353Wed Aug 15 14:57:08 CEST 2001 Daniel Veillard <daniel@veillard.com>
5354
5355 * config.h.in configure.in include/libxml/xmlwin32version.h:
5356 released 2.4.2
5357
5358Wed Aug 15 13:56:22 CEST 2001 Daniel Veillard <daniel@veillard.com>
5359
5360 * include/libxml/valid.h debugXML.c valid.c: deprecate
5361 the non-boundchecking Sprintf functions, add Snprintf
5362 this should close bug #57984
5363
5364Wed Aug 15 10:46:07 CEST 2001 Daniel Veillard <daniel@veillard.com>
5365
5366 * xmlIO.c: xmlOutputBufferCreateFilename() didn't unescaped
5367 URIs before doing the lookups (pointed by Mark Vakoc)
5368
5369Tue Aug 14 18:37:23 CEST 2001 Daniel Veillard <daniel@veillard.com>
5370
5371 * xpath.c: serious changes on Result Value Trees and NodeSets
5372 w.r.t. deallocation and collect operations. Probably not
5373 100% clean (merge of allocated trees smells like a problem).
5374 Seems sufficient to close #58943
5375
5376Tue Aug 14 16:12:00 CEST 2001 Daniel Veillard <daniel@veillard.com>
5377
5378 * xmllint.c: adding a --format option
5379
5380Tue Aug 14 14:16:24 CEST 2001 Daniel Veillard <daniel@veillard.com>
5381
5382 * xpath.c: count() was broken on Result Value Tree
5383 * xmlIO.c: fixed file:/// accesses on _WIN32
5384
5385Mon Aug 13 13:22:53 CEST 2001 Daniel Veillard <daniel@veillard.com>
5386
5387 * libxml.m4: s/LIBXML_VERSION_NUMBER/LIBXML_VERSION/ seems the
5388 macro was renamed, this should close bug #58683
5389
5390Mon Aug 13 12:33:40 CEST 2001 Daniel Veillard <daniel@veillard.com>
5391
5392 * SAX.c: small fix fixing bug #58539 reported by coolo, in
5393 entity substitution mode text at the end of the entity might
5394 be added due to text coalescing.
5395 * nanoftp.c parser.c: small cleanup
5396
5397Wed Aug 8 22:57:05 CEST 2001 Daniel Veillard <daniel@veillard.com>
5398
5399 * HACKING: added John Fleck right to commit in the doc subdir
5400
5401Tue Aug 7 03:05:58 CEST 2001 Daniel Veillard <daniel@veillard.com>
5402
5403 * SAX.c testXPath.c valid.c xmllint.c include/libxml/valid.h:
5404 allow to inherit attributes from the DTD directly in the
5405 tree, this is needed for XPath and can be a useful feature.
5406 Inherited namespaces are always provided at the tree level now
5407 * test/defattr* result/defattr* result/noent/defattr*: added a couple
5408 of tests for this feature (XSLT being the prime user).
5409
5410Fri Aug 3 14:02:20 CEST 2001 Daniel Veillard <daniel@veillard.com>
5411
5412 * DOCBparser.c Makefile.am nanohttp.c parser.c testHTML.c
5413 testSAX.c xmlIO.c xmllint.c include/win32config.h
5414 include/libxml/xmlversion.h.in include/libxml/xmlwin32version.h
5415 include/libxml/xmlwin32version.h.in win32/README.MSDev
5416 win32/dsp/*: applied Win32 Facelift No.2 patches from
5417 Igor Zlatkovic for Windows/MSC
5418
5419Wed Aug 1 23:21:06 CEST 2001 Daniel Veillard <daniel@veillard.com>
5420
5421 * SAX.c: unparsedEntityDecl() the URI computation of the
5422 entity wasn't done breaking XSLT unparsed-entity-uri()
5423
5424Wed Aug 1 17:44:57 CEST 2001 Daniel Veillard <daniel@veillard.com>
5425
5426 * xpath.c: fixed a bug when walking the descendants and
5427 the current node has no children
5428 * debugXML.c: show up when a text node is supposed to not be escaped
5429
5430Wed Aug 1 01:33:35 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
5431
5432 * xpath.c: fixed a bug in xmlXPathNodeTrailingSorted (for now it
5433 worked like the set:leading() function)
5434 * include/libxml/xpathInternals.h: added xmlXPathNodeSetContains
5435
5436Tue Jul 31 18:24:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5437
5438 * nanohttp.c: protected an use of EAGAIN, Brian Stafford
5439
5440Tue Jul 31 17:48:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5441
5442 * include/libxml/xmlIO.h: apply change to close #58141
5443 * win32/libxml2/*: update of the MSC projects from Igor Zlatkovic
5444
5445Tue Jul 31 17:09:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5446
5447 * parser.c: when the internal subset uses a PE, then the
5448 included entity can use conditional sections.
5449
5450Mon Jul 30 12:58:39 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5451
5452 * xpath.c include/libxml/xpath.h: fixed a serious memory problen
5453 when walking the namespace axis showing up in
5454 libxst/tests/general/bug-12
5455 * xmlmemory.c: added the possibility to trace a given block
5456 defined by its address
5457
5458Sun Jul 29 07:18:53 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5459
5460 * parser.c: don't override existing encoding specified before
5461 starting xmlParseDocument()
5462
5463Sat Jul 28 13:33:10 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5464
5465 * include/libxml/xmlwin32version.h: reinserted, needed for
5466 Windows users of CVS
5467
54682001-07-27 Darin Adler <darin@bentspoon.com>
5469
5470 * encoding.c: (xmlIconvWrapper): Add cast to fix warning.
5471 * testCatalog.c: Add include of <libxml/parser.h>.
5472
54732001-07-27 Darin Adler <darin@bentspoon.com>
5474
5475 * include/libxml/.cvsignore:
5476 * include/libxml/xmlwin32version.h:
5477 Remove this file from CVS because it's generated.
5478
5479Fri Jul 27 10:03:56 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5480
5481 * parser.c include/libxml/parser.h: applied const patches from
5482 Tom Moog #58002
5483
5484Thu Jul 26 18:55:52 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
5485
5486 * xpath.c include/libxml/xpath{,Internals}.h: added a function
5487 lookup framework
5488
5489Fri Jul 27 01:50:20 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5490
5491 * tree.c: fixed xmlCopyNode() for documents
5492
5493Thu Jul 26 12:40:35 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5494
5495 * parser.c: fixed bugs #58073 reported by Greg Shtilman
5496
5497Thu Jul 26 11:38:37 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5498
5499 * parser.c: fixes bug #57652 reported by Morus Walter
5500
5501Thu Jul 26 10:24:34 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5502
5503 * nanohttp.c: John Kroll provided a small fix to xmlNanoHTTPSave
5504
5505Thu Jul 26 07:16:04 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5506
5507 * parser.c parserInternals.c: fixed the xmlLineNumbersDefault()
5508 errors, lesson don't add new functions at 1am before a release
5509 * xpath.c: integrated fix from Bjorn to avoid divide by zero
5510 from XPath initialization when possible.
5511
5512Tue Jul 24 15:39:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5513
5514 * result/scripts/base*: removing history/readline changed
5515 this slightly
5516 * include/libxml/parser.h SAX.c parser.c parserInternals.c
5517 xmllint.c: make element content line number generation
5518 optionnal to avoid breaking old apps added interface to switch
5519
5520Tue Jul 24 15:06:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5521
5522 * configure.in: get rid of the readline and libhistory
Daniel Veillard784b9352003-02-16 15:50:27 +00005523 dependencies by default, release 2.4.1 with IA64 fix
Daniel Veillard7b4b2f92003-01-06 13:11:20 +00005524 * nanohttp.c tree.c xmlIO.c include/libxml/nanohttp.h
5525 include/libxml/tree.h include/libxml/xmlIO.h: incorporated
5526 John Kroll fixes to allow saving to HTTP via PUT (or
5527 POST of needed).
5528 * doc/html/*.html: regenerated the docs
5529
5530Sun Jul 22 05:56:16 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
5531
5532 * hash.c include/libxml/hash.h: added xmlHashScannerFull,
5533 xmlHashScanFull and xmlHashScannFull3 to get passed the
5534 three keys as arguments to the callback function
5535
5536Thu Jul 19 15:29:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5537
5538 * configure.in Makefile.am: removed libxml softlink for good
5539 * include/libxml/*.h *.c doc/Makefile.am: cleanup to get
5540 100% coverage by gtk-doc
5541
5542Tue Jul 17 17:36:46 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5543
5544 * xmlmemory.c include/libxml/xmlmemory.h: debugging on IA64,
5545 fixed serious troubles due to size_t vs. int mismatch
5546
5547Tue Jul 17 16:04:36 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5548
5549 * SAX.c xmlIO.c: cleaned up some warning on the Alpha
5550
5551Mon Jul 16 06:32:44 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
5552
5553 * include/libxml/xpath{,Internals}.h xpath.c: added a more
5554 convenient extension API for value and context managing
5555 Now handles external objects through xmlXPathPopExternal,
5556 xmlXPathWrapExternal and xmlXPathReturnExternal.
5557 Added functions for sets operations (intersection, etc.)
5558
5559Mon Jul 16 20:05:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5560
5561 * include/libxml/parserInternals.h include/libxml/HTMLparser.h
5562 xmlIO.c tree.c parserInternals.c entities.c encoding.c
5563 HTMLparser.c: cleanup of global variables, marking some
5564 const or private.
5565
5566Mon Jul 16 00:17:15 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
5567
5568 * include/libxml/xpath.h: exported xmlXPath{NAN,PINF,NINF}
5569 fixed xmlXPathNodeSetItem when passing index=0
5570
5571Sun Jul 15 17:58:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5572
5573 * include/libxml/xmlwin32version.h.in: added xmlCheckVersion()
5574
5575Sat Jul 14 19:31:21 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5576
5577 * xmllint.c: fixed compilation under Cygwin #57503
5578 * TODO: update
5579
55802001-07-13 Peter Williams <peterw@ximian.com>
5581
5582 * config.h.in: add #undef HAVE_DLFCN_H
5583
5584 * example/Makefile.am (INCLUDES): Compile fix when srcdir !=
5585 builddir.
5586
5587Fri Jul 13 11:09:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5588
5589 * win32/libxml2/libxml2.def.src: added a couple of exported entries
5590 raised by #57348 and #57381
5591
5592Thu Jul 12 21:20:17 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5593
5594 * DOCBparser.c HTMLparser.c HTMLtree.c SAX.c debugXML.c parser.c
5595 tree.c xpointer.c: store the line numbder in element->content,
5596 may break some software, need a configuration mechanism
5597
55982001-07-10 Darin Adler <darin@bentspoon.com>
5599
5600 * .cvsignore:
5601 * example/.cvsignore:
5602 * include/.cvsignore:
5603 * include/libxml/.cvsignore:
5604 Various things that are generated and should be ignored.
5605
5606Tue Jul 10 17:47:09 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5607
5608 * configure.in include/libxml/xmlwin32version.h: release of 2.4.0
5609 * doc/xml.html doc/html/*: updated the docs
5610
5611Mon Jul 9 22:06:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5612
5613 * valid.c: fixed "Internal: MIXED struct bad" when #CDATA elements
5614 validation occured on content with element child
5615
5616Mon Jul 9 17:59:08 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5617
5618 * tree.c: fixed XML Base computation which was broken
5619 * debugXML.c: added a base function to the shell
5620 * Makefile.am result/scripts/* test/scripts/*: added scripts
5621 based regression tests, and adding 2 XML Base tests
5622
5623Mon Jul 9 12:31:05 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5624
5625 * tree.c: set properties doc and call xmlSetListDoc for properties
5626 content when grafting them in a different tree.
5627 * aclocal.m4: remove from CVS
5628
5629Sun Jul 8 23:09:07 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5630
5631 * win32/libxml2/libxml2.def.src: added some missing entry point
5632 for XPath (Mark Vakoc)
5633
5634Sun Jul 8 20:34:35 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5635
5636 * xmlIO.c: fixed an old bug raised by Bernhard Zwisch, the I/O
5637 layer should URI-Unescape before trying to open resources.
5638
5639Sun Jul 8 16:26:00 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5640
5641 * xpath.c: fix the name() bug for elements in the default
5642 namespace reported by Charlie Bozeman
5643
5644Sun Jul 8 15:11:05 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5645
5646 * SAX.c parser.c testXPath.c xpath.c: trying to fix #56948, this
5647 led to an XPath fix, improvements of SAX initialization, and
5648 an added option --nocdata to testXPath
5649
5650Sat Jul 7 21:09:55 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5651
5652 * doc/libxml-doc.el: Felix Natter provided anew version working
5653 with XEmacs too
5654
5655Sat Jul 7 02:16:00 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5656
5657 * include/libxml/xpath.h: small cleanup
5658 * doc/xml.html: update
5659
5660Fri Jul 6 01:40:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5661
5662 * Makefile.am configure.in include/libxml/xmlwin32version.h:
5663 released 2.3.14
5664
5665Fri Jul 6 00:47:41 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5666
5667 * doc/html/*: rebuilt the docs for the release
5668 * doc/xml.html: added 2.3.14 release.
5669
5670Thu Jul 5 22:01:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5671
5672 * xpath.c: a bug reported by Stephan Kulow empty nodesets
5673 were not equal to empty strings
5674
5675Thu Jul 5 00:52:25 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5676
5677 * SAX.c: fixed a URI-Reference computation problem when validating
5678 * xmlIO.c: small cleanup
5679
5680Thu Jul 5 00:04:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5681
5682 * parser.c: improved the description of a couple of interfaces
5683 upon Larry Stamper suggestion
5684
5685Wed Jul 4 21:42:24 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5686
5687 * SAX.c entities.c parser.c: changed completely the way entities
5688 are handled when running the parser in entity substitution mode.
5689 This fixes a bug reported by Stephan Kulow and nearly divides
5690 by 3 the amount of memory required by libxslt to load and process
5691 DocBook TDG.
5692
5693Wed Jul 4 18:02:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5694
5695 * HTMLparser.c: fixing a too early root closing problem raised
5696 byt Prashanth Naidu
5697
5698Wed Jul 4 01:42:01 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5699
5700 * xpath.c: fixed a missing copy in xmlXPathVariableLookupNS()
5701 raised by Mark Vakoc.
5702
5703Tue Jul 3 18:35:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5704
5705 * example/Makefile.am: fixed the include path to add srcdir/include
5706 * Makefile.am configure.in: fix from Albert Chin for iconv detection
5707 and some cleanup
5708
5709Tue Jul 3 10:12:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5710
5711 * xpath.c include/libxml/xpath.h include/libxml/xpathInternals.h:
5712 lot of optimization work, results in significant improvements
5713 when handling really complex XPath queries. Add a small optimizer
5714 for unions, improve [n] and [last()], avoid some costly ops.
5715
5716Fri Jun 29 23:26:54 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5717
5718 * include/libxml/parser.h parser.c: xmlStrstr args are both const
5719 * xpath.c: small cleanup
5720 * xmlGetNsList: reformated, fixed problems if used on Entities
5721
5722Thu Jun 28 18:19:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5723
5724 * doc/xml.html: added 1.8.14 and 2.3.13 releases
5725
5726Thu Jun 28 18:16:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5727
5728 * configure.in include/libxml/xmlwin32version.h: released 2.3.13
5729 * Makefile.am example/Makefile.am: workaround automake generating
5730 erroneous deps
5731
5732Thu Jun 28 15:08:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5733
5734 * include/win32config.h: bug #56801 Yon Derek provided a patch
5735 to the windows config file.
5736
5737Thu Jun 28 14:51:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5738
5739 * xpointer.c include/win32config.h win32/libxml2/libxml2.def.src
5740 libxml.h : Yon Derek provided a set of changes to compile from
5741 CVS on Windows/MSC
5742
5743Thu Jun 28 14:11:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5744
5745 * parser.c: fixed UTF8 BOM support in push mode
5746 * test/utf8bom.xml result/utf8bom.xml result/noent/utf8bom.xml:
5747 added a specific testcase
5748
5749Wed Jun 27 18:33:13 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5750
5751 * Makefile.am: added --push regression tests
5752 * parserInternals.c: the XML parser segfaulted in --push mode
5753
5754Wed Jun 27 13:09:51 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5755
5756 * configure.in: moved the symlinks detection within a CVS
5757 check, this is not portable and will be removed soon.
5758 * xpath.c: small cleanup/speedup
5759
5760Tue Jun 26 18:05:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5761
5762 * configure.in doc/xml.html include/libxml/xmlwin32version.h:
5763 release of 2.3.12
5764 * parser.c: make an error message if unknow entities in all cases
5765
5766Tue Jun 26 09:46:29 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5767
5768 * uri.c: fixed 2 uri normalization bugs on '//' reduction
5769
5770Mon Jun 25 18:06:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5771
5772 * include/libxml/Makefile.am: Laszlo Peter pointed out that
5773 includes were installed in the wrong dir
5774
5775Mon Jun 25 17:07:37 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5776
5777 * doc/html.xml: warn against sending code to exhibit bugs.
5778
5779Sun Jun 24 23:31:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5780
5781 * xpath.c: patch to xmlXPathFormatNumber for the optimizer on
5782 Tru64 from Thomas Leitner
5783
5784Sun Jun 24 14:05:54 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5785
5786 * AUTHORS: added William and Bjorn
5787 * include/libxml/*.h *.c README doc/*.html etc.: changed old email to
5788 daniel@veillard.com hopefully I won't have to do this again
5789 * doc/Makefile.am doc/html/*.html: cleanup makefile, checked that
5790 docs can be rebuilt cleanly now
5791 * include/libxml/xml*version.h*: removed include/libxml/xmlversion.h
5792 from CVs it's generated, added include/libxml/xmlwin32version.h
5793 also generated but which should change far less frequently.
5794 * catalog.c nanoftp.c: made sure to include libxml.h not
5795 libxml/xmlversion.h directly
5796 * include/libxml/*.h: include xmlwin32version.h instead of xmlversion.h
5797 when compiling on WIN32 and MSC
5798
5799Sat Jun 23 23:54:12 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5800
5801 * include/Makefile.am include/libxml/Makefile.am configure.in:
5802 fixed make distcheck and rebuilding the rpms
5803
5804Sat Jun 23 20:50:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5805
5806 * configure.in: should finish the migration of exported includes
5807 into a real include/libxml in CVS, at least for CVS users.
5808 * removed the exported headers, added in include/libxml (as well
5809 as xmlversion.h.in).
5810
5811Sat Jun 23 20:37:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5812
5813 * configure.in: fixed the way to detect symlink
5814
5815Sat Jun 23 20:30:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5816
5817 * configure.in: updated, include/libxml is now a real CVS dir
5818
5819Sat Jun 23 19:36:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5820
5821 * doc/libxml-doc.el: a new version of libxml-doc.el. This new
5822 version works with both libxml1 and libxml2 (it autodetects
5823 the prefix of the html-files) from Felix Natter.
5824 * doc/xml.html: updated doc accordingly
5825
5826Sat Jun 23 18:30:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5827
5828 * xpath.c: fixed the bug generating a template loop in libxslt
5829 when using docbook-xsl-1.4, * should filter out document nodes
5830 * HACKING: added William
5831 * TODO: updated
5832
5833Fri Jun 22 18:02:37 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5834
5835 * doc/FAQ.html: added a warning about gcc-3.0
5836 * doc/xml.html: added reference to gdome2 and removed a confusing
5837 sentence
5838
5839Fri Jun 22 17:02:16 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5840
5841 * xmlversion.h: okay this is a generated file, but Windows
5842 users need it and they can't generate it, and I want CVS
5843 Windows users ...
5844 * win32/libxml2/libxml2_so.dsp: Windows project file for
5845 the shared lib version of libxml2
5846 * win32/libxml2/libxml2.def.src: bug #56527 set of exported
5847 resources needed for libxslt/xsltproc by Yon Derek
5848
5849Fri Jun 22 16:39:36 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
5850
5851 * trio.c: MSVC fix (provided by Igor Zlatkovic)
5852
5853Fri Jun 22 12:42:16 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5854
5855 * include/win32config.h: another small fix for ATTRIBUTE_UNUSED
5856
5857Fri Jun 22 12:42:16 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5858
5859 * include/win32config.h: Yon Derek provided a first fix
5860 to be able to compile libxslt/xsltproc on Windows
5861
5862Fri Jun 22 00:04:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5863
5864 * xpath.c: attempt to work around what seemed a gcc optimizer
5865 bug when handling floats on i386 http://veillard.com/gcc.bug
5866 * tree.c entities.c encoding.c: doing some cleanups while
5867 chasing it
5868
5869Thu Jun 21 13:13:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5870
5871 * Makefile.am: cleanup when --without-debug is specified
5872 * xinclude.c xpath.c xpathInternals.h xpointer.c: cleanup
5873 w.r.t. --without-debug and other include points
5874 * catalog.h testCatalog.c: a bit of cleanup and prepare for XML
5875 Catalogs
5876 * configure.in entities.h tree.h HTMLparser.c: removed
5877 --without-corba, made the _private field mandatory
5878
5879Wed Jun 20 19:37:25 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5880
5881 * parser.c parserInternals.c encoding.c: Since Notepad on Win2k
5882 outputs a BOM in UTF8, an errata has been issued to avoid the
5883 problem, that was the most reasonable solution... Add support
5884 for a leading UTF8 BOM in entities.
5885
5886Wed Jun 20 15:38:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5887
5888 * valid.c: fixed a bug found when post validating an entity ref
5889 * xmllint.c: added --loaddtd and sligly changed --postvalid to
5890 activate it too
5891
5892Tue Jun 19 20:03:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5893
5894 * tree.c xinclude.c xpointer.c: bug #56402 exposed a number of
5895 weakness in the node copy the XPointer and the XInclude
5896 implementations. Serious cleanup.
5897
5898Tue Jun 19 14:50:18 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5899
5900 * Makefile.am: Kjartan Maraas provided a small patch to
5901 add xml2-config.in to EXTRA_DIST
5902
5903Tue Jun 19 13:04:10 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5904
5905 * valid.c tree.c parserInternals.c parser.c: Stephan Kulow
5906 provided another failing case found in KDE, the way the
5907 ctxt->vctxt.nodeTab was allocated and freed changed over
5908 time but it wasn't completely cleaned up. This should fix it.
5909
5910Sun Jun 17 19:56:33 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5911
5912 * parser.c: Stephan Kulow also raised the fact that line number
5913 could get miscounted making debug harder, fixed the problem
5914 in xmlParseCharData()
5915
5916Sun Jun 17 19:17:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5917
5918 * valid.c: Stephan Kulow pointed out a problem when validating
5919 and using an empty entity, forgot a 'break' in a case.
5920
5921Sun Jun 17 16:47:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5922
5923 * tree.c: fixed xmlHasNsProp() accordingly to bug #55683
5924 * doc/xml.html: updated with 2.3.11
5925
5926Sun Jun 17 12:24:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5927
5928 * TODO: updated adding cleanup of generated doc
5929 * configure.in: prepared to release 2.3.11
5930 * xmllint.c: added --version for bug reporting
5931 * doc/html/*.html: rebuilt the doc
5932
5933Sat Jun 16 23:23:33 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5934
5935 * xpath.c: first part of the work on selecting namespace to
5936 fix bug #56115
5937
5938Sat Jun 16 00:20:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5939
5940 * Makefile.am example/Makefile.am: Laszlo PETER provided a fix
5941 when using -liconv
5942 * TODO: updated
5943
5944Fri Jun 15 07:08:57 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5945
5946 * HTMLtree.[ch]: more work on the HTML serialization routnes,
5947 cleanup, encoding support.
5948
5949Thu Jun 14 10:31:17 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5950
5951 * xpath.c: Thomas Broyer suggested a better patch for the / arg
5952
5953Thu Jun 14 01:01:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5954
5955 * xpath.c: bug detected by Ankh when / is used as a function arg
5956
5957Wed Jun 13 23:08:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5958
5959 * HTMLparser.[ch] HTMLtree.c: stored the inline/block property
5960 of element and use it to avoid outputting formatting spaces at
5961 the wrong place. Implemented the format parameter for HTML save.
5962 * result/HTML/doc2.htm result/HTML/doc3.htm result/HTML/fp40.htm
5963 result/HTML/script.html result/HTML/test2.html result/HTML/test3.html
5964 result/HTML/wired.html: of course this impact the result of a
5965 number of HTML tests
5966
5967Thu Jun 14 09:49:09 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5968
5969 * HTMLtree.[ch]: started augmenting the HTML save API with
5970 encoding and formatting parameters
5971
5972Wed Jun 13 09:44:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5973
5974 * HTMLtree.h: cleanup and started evaluating the work needed on
5975 revamping the HTML output code
5976
5977Mon Jun 11 19:29:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5978
5979 * DOCBparser.c: handling of PIs and <?sgml-declaration in entities.
5980
5981Tue Jun 12 08:46:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5982
5983 * valid.c: fixed bug #56049, forgot one check in the
5984 validation routine
5985
5986Tue Jun 12 08:09:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5987
5988 * tree.[ch]: grrr ... namespace is a C++ reserved keyword
5989
5990Tue Jun 12 06:29:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5991
5992 * libxml.h: fixed an error in last commit
5993 * doc/FAQ.html: added an entry for compilation from CVS
5994
5995Mon Jun 11 10:07:29 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5996
5997 * xmlversion.h.in libxml.h: Cygwin patches
5998 * tree.c: xmlFreeNodeList patch similar to xmlFreeNode one
5999 * tree.h: cleanup
6000
6001Sat Jun 9 19:16:00 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6002
6003 * tree.c: patched xmlFreeNode() to avoid freeing() a static
6004 memory block in a strange case where libxml is linked twice
6005 in the binary.
6006
6007Sat Jun 9 18:39:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6008
6009 * valid.c: (a? , b? , c? , ... , z?) was storing/restauring
6010 state far too often, simple fix used to avoid it.
6011
6012Sat Jun 9 16:10:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6013
6014 * xinclude.c: Raphael Hertzog had a trouble with DTD nodes
6015 being processed, applied his patch
6016 * tree.c: fixed a bug raised in xmlStaticCopyNodeList()
6017
6018Sat Jun 9 15:50:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6019
6020 * nanoftp.c nanohttp.c uri.c include/win32config.h: Igor Zlatkovic
6021 provided fixes to compile on MSCC again
6022 * win32/libxml2/libxml2.def.src win32/libxml2/libxml2*.dsp: he
6023 also provided an update for the project files.
6024
6025Thu Jun 7 21:52:10 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6026
6027 * tree.c: applied Steve Tinney patch to xmlNewNsProp to fix
6028 bug #55810
6029
6030Thu Jun 7 21:29:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6031
6032 * tree.c: fixed xmlGetNsProp() to close bug #55683
6033 Note this requires libxslt to use it's own function instead.
6034
6035Thu Jun 7 18:06:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6036
6037 * HTMLtree.c: when in a pre element no formatting space should
6038 be added.
6039 * test/HTML/pre.html result/HTML/pre.html*: added a regression test
6040
6041Thu Jun 7 17:29:38 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6042
6043 * configure.in: added tests for signal() and signal.h
6044
6045Fri Jun 8 10:17:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6046
6047 * xpath.c: robert pointed out xmlXPathNINF was not initialized
6048
6049Fri Jun 8 10:01:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6050
6051 * doc/libxml-doc.el: Felix Natter provided a new version for
6052 libxml2
6053
6054Fri Jun 8 07:20:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6055
6056 * HTMLtree.c: when in a pre element no formatting space should
6057 be added.
6058
6059Wed Jun 6 18:07:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6060
6061 * configure.in: add -mieee to CFLAGS when compiling on Linux/alpha
6062
6063Thu Jun 7 06:44:01 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6064
6065 * DOCBparser.c: implemented the <?sgml-declaration encoding="xxx"?>
6066 hack
6067 * tree.[ch]: added xmlHasNsProp as suggested in bug report #55653
6068 * uri.c: fixed a warning
6069
6070Tue Jun 5 22:54:21 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6071
6072 * HTMLtree.c: trying to close bug #55772 escaping in script
6073 elements
6074 * doc/xml.html: suggest to send mail to the list
6075
6076Tue Jun 5 19:11:02 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6077
6078 * error.c: attempt to fix the xmlGetVarStr breakage once and for
6079 good. Use a macro and based on the solution provided in
6080 vsnprintf manual page from GNU.
6081
6082Tue Jun 5 14:46:10 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
6083
6084 * error.c: Workaround for non-preserving variadic list.
6085 * trio.c trio.h triop.h strio.c strio.h: Upgraded to trio baseline 1.4
6086
6087Sat Jun 2 06:12:33 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6088
6089 * doc/xml.html: added 2.3.10 release
6090
6091Fri Jun 1 11:27:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6092
6093 * configure.in: releasing 2.3.10
6094
6095Thu May 31 20:42:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6096
6097 * xmlIO.c: Gary Pennington spotted a few troubles with file:///
6098
6099Thu May 31 20:18:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6100
6101 * encoding.c: Robert Collins provided a patch to add the
6102 "US-ASCII" encoding alias
6103
6104Wed May 30 21:12:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6105
6106 * xpath.c encoding.[ch]: William M. Brack provided a set of UTF8
6107 string oriented functions and started cleaning the related areas
6108 in xpath.c which needed fixing in this respect
6109
6110Wed May 30 20:30:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6111
6112 * HTMLtree.c: applied patch from Jaroslaw Kolakowski to close bug
6113 #55380
6114 * tree.c: patch to xmlNodeGetContent() to get CDATA section content
6115
6116Mon May 28 12:56:29 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6117
6118 * TODO: updated
6119 * nanohttp.[ch] : started adding APIs to get the redirected URL
6120 when this occurs (needed for further base computation
6121 * tree.h: cleanup
6122 * encoding.c: cleanup
6123 * SAX.c: minor change around ctxt->loadsubset
6124
6125Fri May 25 09:36:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6126
6127 * Makefile.am include/Makefile.am: small change to have
6128 include/libxml rebuilt if working from CVS.
6129 * uri.c: applied another patch from Carl Douglas for URI escaping,
6130 this should close bug #51876
6131
6132Wed May 23 15:40:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6133
6134 * xinclude.c: fixed XInclude recursive behaviour bug #54678
6135 * result/XInclude/recursive.xml test/XInclude/docs/recursive.xml
6136 test/XInclude/ents/inc.txt test/XInclude/ents/sub-inc.ent:
6137 added specific regression test
6138 * parser.h: preparing for the XSLT mode where DTD inherited
6139 attributes are added to the tree.
6140
6141Wed May 23 13:59:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6142
6143 * xinclude.[ch]: Updated the namespace for the Last Call version
6144 * result/XInclude/include test/XInclude/include: updated the
6145 testsuite accordingly
6146
6147Wed May 23 12:27:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6148
6149 * uri.[ch]: applied a patch from Carl Douglas for URI escaping,
6150 related to bug #51876
6151
6152Tue May 22 18:46:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6153
6154 * tree.c: fixed a gross mistake in base computation, xml:base is
6155 not completely correct yet (need cascade).
6156 * xpath.[ch]: added the few things needed to find a function name
6157 and URI from the XPath context when it is called.
6158
6159Tue May 22 17:00:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6160
6161 * catalog.[ch]: fixes and add xmlLoadCatalogs()
6162 * DOCBparser.c: small cleanup
6163 * xmllint.c: added a --catalogs option to load catalogs from
6164 $SGML_CATALOG_FILES
6165 * tree.c: cleanup
6166 * configure.in: iconv library fixup, ICONV_LIBS
6167
6168Mon May 21 16:05:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6169
6170 * catalog.c: handling of CATALOG entries. detection of recursion,
6171 and a few bugfixes
6172 * xpath.c: fixing bug #54951 QNAME with no prefix should not match
6173 against the default namespace
6174
6175Mon May 21 10:14:07 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6176
6177 * xpath.c: Joe Orton reported a bug found with IRIx compiler.
6178
6179Sun May 20 15:15:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6180
6181 * parser.c: fixed propagation context info when parsing an
6182 external entity.
6183 * doc/html/*.html: regenerated a couple of docs
6184
6185Sat May 19 17:11:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6186
6187 * doc/xml.html: update with 2.3.9 informations
6188
6189Sat May 19 16:50:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6190
6191 * HTMLtree.h debugXML.h parserInternals.h tree.h valid.c
6192 xmlversion.h.in xpathInternals.h xpath.h: some cleanup for gtk-doc
6193 * doc/html/* : rebuilt the docs
6194 * valid.c: small patch which may improve some case when
6195 validating.
6196
6197Sat May 19 15:20:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6198
6199 * HTMLparser.c: Closed bug #54891
6200 * result/HTML/cf_128.html* test/HTML/cf_128.html: added the test
6201 to the suite
6202
6203Thu May 17 14:15:07 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6204
6205 * encoding.h hash.c nanoftp.h parser.h tree.h uri.h xlink.h xpointer.c:
6206 applied a documentation patch from LotR and filled in a few missing
6207 descriptions
6208
6209Wed May 16 23:02:41 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6210
6211 * xpath.c tree.c parser.c: speed optimizations at the parser level
6212 document tree freeing and xpath evaluation
6213
6214Wed May 16 12:55:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6215
6216 * parser.c parser.h parserInternals.h: fixed a couple of
6217 interfaces for handling memory buffer input to const char *
6218 upon suggestion of JamesH.
6219
6220Tue May 15 17:22:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6221
6222 * configure.in: LoTR sent a patch fixing the previous commit
6223
6224Tue May 15 14:40:04 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6225
6226 * configure.in: trying to deal again with the stoopid -R linking
6227 flag of Solaris
6228
6229Tue May 15 12:49:50 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6230
6231 * xpath.h: two nodeset access macros from Thomas Broyer
6232
6233Tue May 15 11:42:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6234
6235 * xpath.c xpath.h xpathInternals.h: apply an XPath API cleanup
6236 patch from Thomas Broyer
6237
6238Tue May 15 10:52:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6239
6240 * valid.c test/VCM/v2[34].xml: Fixed bug #54631 added specific test
6241 case
6242 * INSTALL: was empty added stuff from the FAQ
6243
6244Fri May 11 19:37:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6245
6246 * tree.[ch]: fixing bug #54446, by cleaning some bugs in the
6247 attributes handling and #54433 by adding xmlUnsetProp()
6248 and xmlUnsetNsProp()
6249
6250Fri May 11 16:07:13 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6251
6252 * HTMLparser.c: Patch from Jonas Borgström
6253 (htmlGetEndPriority): New function, returns
6254 the priority of a certain element.
6255 (htmlAutoCloseOnClose): Only close inline elements if they
6256 all have lower or equal priority.
6257 * result/HTML: this of course changed a number of tests results.
6258
6259Thu May 10 17:30:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6260
6261 * xmlIO.c catalog.c: plugged in the default catalog resolution
6262 * doc/gnome-xml.sgml: linked in the Docbook parser and catalog
6263 documentations
6264 * doc/html/libxml-*.html: rebuild added the missing ones to CVS
6265
6266Thu May 10 16:14:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6267
6268 * Makefile.am xmlversion.h.in configure.in include/Makefile.am:
6269 integrating catalogs
6270 * catalog.[ch] testCatalog.c: adding a small catalo API
6271 (only SGML catalog support).
6272 * parser.c: restaured xmlKeepBlanksDefault(0) API
6273
6274Wed May 9 12:50:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6275
6276 * tree.c: zb@bisp.com reported an error in xmlNodeGetLang()
6277
6278Tue May 8 12:31:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6279
6280 * parser.c: added xmlParseExternalEntityPrivate() to allow
6281 propagation of ctxt->_private when parsing external entities
6282
6283Tue May 8 10:26:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6284
6285 * HTMLtree.c: fixed the bug reported by Bjorn in htmlNodeDump
6286
6287Tue May 8 09:30:12 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6288
6289 * configure.in: fixed a small portability problem with AM_CONDITIONAL
6290
6291Mon May 7 22:44:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6292
6293 * valid.c: warn when indeterminist content model is detected
6294 * result/VC/ElementValid8: this adds a message
6295 * Makefile.am: add --novalid for VCM tests
6296 * parserInternals.c: added a call to Init memory
6297
6298Fri May 4 19:51:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6299
6300 * HTMLparser.c: fixed htmlNewDoc SYSTEM and PUBLIC ID inversion
6301 when both parameters are NULL.
6302
6303Fri May 4 17:19:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6304
6305 * valid.c: applied small patch from Gary Pennington, reindented
6306 some part of the code.
6307
6308Thu May 3 13:10:43 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6309
6310 * configure.in doc/xml.html doc/html/*: preparing for 2.3.8
6311 release, updated and regenerated the docs
6312
6313Thu May 3 12:47:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6314
6315 * xpath.c result/XPath/expr/floats : clarified and cleanup
6316 printing of abnormal floats in tests.
6317
6318Thu May 3 10:25:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6319
6320 * HTMLparser.c: trying to fix the problem reported by Jonas Borgström
6321 * results/HTML/ : a few changes in the output of the HTML tests as
6322 a result.
6323 * configure.in: tying to fix -liconv where needed
6324
6325Wed May 2 19:10:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6326
6327 * Makefile.am: fixed a stupid error
6328
6329Wed May 2 18:39:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6330
6331 * configure.in Makefile.am: make the inclusion of the trio
6332 modules in the library conditional
6333
6334Wed May 2 14:39:57 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6335
6336 * DOCBparser.c: patche from László Kovács, fixed entities refs
6337 in attributes handling
6338
6339Wed May 2 12:56:04 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6340
6341 * xmlIO.c: Bjorn Reese provided a fix for a problem on buffer
6342 flushing
6343
6344Mon Apr 30 22:29:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6345
6346 * xpath.c: fix of an XSLT namespace bug reported on the list
6347 general/bug-8-
6348
6349Mon Apr 30 19:42:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6350
6351 * strio.h trio.c: Dan McNichol suggested a couple of small
6352 fixes for AIX 4.3.3 using Visual Age 5.0.2 compiler
6353
6354Mon Apr 30 13:44:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6355
6356 * tree.c parser.c encoding.c: spent a bit more time looking
6357 at the parsing speed and DOM handling. Added a few more
6358 speedups.
6359
6360Sun Apr 29 21:53:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6361
6362 * parser.c: small but effective parsing speed improvement
6363
6364Sun Apr 29 19:02:13 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6365
6366 * configure.in: default on the DocBook parser inclusion (for Gnome)
6367 * DOCBparser.h: fixed a header reference
6368
6369Sat Apr 28 19:00:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6370
6371 * configure.in xpath.c: applied Bjorn patches for FPE on the
6372 alpha
6373
6374Sat Apr 28 18:54:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6375
6376 * tree.[ch] xmlIO.h: applied patch from Joe McAlerney to add
6377 xmlSaveFormatFileTo()
6378
6379Sat Apr 28 16:33:05 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6380
6381 * xpath.c: simple and efficient optimization, XPath functions
6382 aways bind to the same code, cache this
6383 * TODO: updated (by saying some is obsolete)
6384
6385Sat Apr 28 14:23:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6386
6387 * xpath.c: more cleanup work on XPath name parsing routines
6388
6389Fri Apr 27 19:06:13 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6390
6391 * parserInternals.c xpath.[ch]: some UTF8 cleanup on
6392 xmlXPathParseName
6393 * xpath.c: Igor Zlatkovic suggested a change for NAN and MSC
6394 * debugXML.c: avoid compilation problems if compiling without
6395 HTML support, Igor Zlatkovic
6396 * win32/libxml2/libxml2.def.src: being able to compile without
6397 XPath on Windows
6398
6399Thu Apr 26 22:53:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6400
6401 * libxml.m4: yet another patch from Toshio Kuratomi
6402
6403Thu Apr 26 21:27:43 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6404
6405 * libxml.m4 libxml2-spec.in: new patches from Toshio Kuratomi
6406
6407Thu Apr 26 20:53:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6408
6409 * tree.[ch]: added xmlSaveFormatFile interface for saving
6410 and indenting a file.
6411
6412Thu Apr 26 16:35:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6413
6414 * xpath.c: fixed bug #53689 related to processing-instruction()
6415
6416Thu Apr 26 12:57:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6417
6418 * DOCBparser.c: patche from László Kovács
6419
6420Thu Apr 26 11:31:54 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6421
6422 * parser.c: applied fixes from Christian Glahn bug report #53391
6423
6424Thu Apr 26 11:14:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6425
6426 * error.c: Jean François Lecomte provided a complete description
6427 and a fix to bug #53537
6428
6429Thu Apr 26 09:42:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6430
6431 * libxml.m4: added AM_PATH_XML2 provided by Toshio Kuratomi
6432
6433Wed Apr 25 21:05:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6434
6435 * DOCBparser.c SAX.c: a bit more work on entities processing.
6436 Still Need to cleanup XML output and references in attributes
6437
6438Wed Apr 25 17:52:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6439
6440 * DOCBparser.c include/Makefile.am: two patches from László Kovács
6441
6442Wed Apr 25 14:56:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6443
6444 * tree.c: trying to fix #53574, not completely complete,
6445 I would like xmllint --copy --debug test/ent1 and
6446 xmllint --debug test/ent1 to show the same result.
6447 * xpath.c: fix a bug when trying to sort namespace nodes
6448
6449Wed Apr 25 12:28:57 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6450
6451 * HTMLtree.c: real fix for #53402
6452
6453Tue Apr 24 17:36:35 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6454
6455 * HTMLtree.c HTMLtree.h : closing #53402 i.e. output of
6456 PIs when using xsl:output
6457 * valid.c: closing #53537 some case generate segfaults if there
6458 is validity errors
6459
6460Tue Apr 24 15:19:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6461
6462 * SAX.c testDocbook.c DOCBparser.c: more work on the support
6463 of external parsed entities, added --noent to testDocbook
6464 * valid.c: Garry Pennington found an uninitialized variable
6465 access in xmlValidateElementContent()
6466
6467Tue Apr 24 14:41:25 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6468
6469 * HTMLparser.c : HTML parsing still sucks ... trying to deal
6470 with madness
6471 * result/HTML/ : this modified the result of the regression tests
6472 a lot.
6473
6474Tue Apr 24 14:10:38 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6475
6476 * entities.c: xmlEncodeEntitiesReentrant fixed a few accesses
6477 to doc where it wasn't checked against NULL reported by
6478 Jens Laas
6479
6480Tue Apr 24 13:21:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6481
6482 * HTMLparser.c: Jonas Borgström patch, the <td>, and <th> elements
6483 now means the end of any open <span>,<font>,<a>,<b>,<i>,<u>.
6484
6485Mon Apr 23 15:40:04 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6486
6487 * DOCBparser.c DOCBparser.h testDocbook.c configure.in Makefile.am
6488 xmlversion.h.in: started (re)integrating the DocBook SGML parser.
6489 * SAX.[ch]: cleanup and updates for DocBook
6490 * debugXML.c parser.h tree.[ch] valid.c xpath.c: small macro or
6491 ex SGML identifier changes
6492 * valid.c: removed a static unused function.
6493
6494Mon Apr 23 11:05:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6495
6496 * HTMLtree.c: applied change for Paul Sponagl on script saving
6497 * Makefile.am: the warning about entity title.xml are normal.
6498
6499Sun Apr 22 22:09:35 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6500
6501 * configure.in: release of 2.3.7
6502 * Makefile.am: fixing make distcheck
6503
6504Sun Apr 22 21:29:52 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6505
6506 * doc/html/* doc/xml.html: updated and regenerated the docs
6507
6508Sun Apr 22 21:11:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6509
6510 * xpath.c: fixed the XPointer problem introduced in 2.3.6
6511
6512Sun Apr 22 14:11:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6513
6514 * tree.c: fixed #53388 with the provided patch
6515
6516Sun Apr 22 12:34:41 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6517
6518 * valid.c: Bjorn detected an invalid memory access. Fixed
6519 vstateVPush()
6520
6521Sun Apr 22 10:49:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6522
6523 * xpath.c: fixed xmlXPathCompile to detected unproperly ended expr
6524
6525Sat Apr 21 18:27:51 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
6526
6527 * libxml.h: new header used only for the compilation of libxml
6528 * HTMLparser.c HTMLtree.c SAX.c debugXML.c encoding.c entities.c
6529 error.c hash.c list.c nanoftp.c nanohttp.c parser.c
6530 parserInternals.c testHTML.c testSAX.c testURI.c testXPath.c
6531 tree.c uri.c valid.c xinclude.c xlink.c xmlIO.c xmllint.c
6532 xmlmemory.c xpath.c xpointer.c: libxml.h integration
6533 * trio.[ch] triop.h strio.[ch]: upgraded to the latest trio
6534 baseline (version 1.2 plus a single patch).
6535 * xpath.c result/XPath/expr/floats test/XPath/expr/floats: parses
6536 scientific notation for numbers. Tests added.
6537 * xpath.c: formatting of numbers changed to use sprintf
6538 (contribution from William Brack)
6539
6540Sat Apr 21 16:12:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6541
6542 * valid.c: cleanup, more useful debugging
6543 * parserInternals.c: cleanup vctxt.nodeTab (de)allocation
6544 * xmlIO.c: entity loading is printed as an error when validating
6545
6546Sat Apr 21 12:25:49 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6547
6548 * valid.c: fixed to validate within entities
6549 * test/VCM/v22.xml: added a specific testcase
6550
6551Fri Apr 20 17:45:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6552
6553 * valid.c: forgot an epsilon transition in for ()+
6554 * test/VCM/v21.xml : added a specific test case
6555
6556Fri Apr 20 15:46:04 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6557
6558 * valid.c: removed a state explosion exhibited by RSS
6559 * test/valid/rss.xml result/valid/rss.xml*: added the testcase
6560 from bug #51872
6561
6562Fri Apr 20 14:52:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6563
6564 * valid.[ch] tree.h: worked *hard* to get non-determinist content
6565 validation without using an ugly NFA -> DFA algo in the source.
6566 Made a specific algorithm easier to maintain, using a single
6567 stack and without recursion.
6568 * Makefile.am test/VCM/*.xml: added more tests to "make Validtests"
6569 * hash.c: made the growing routine static
6570 * tree.h parser.c: added the parent information to an
6571 xmlElementContent node.
6572
6573Wed Apr 18 23:33:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6574
6575 * SAX.c parser.c xpath.c: generating IDs when not validating
6576 from an external parsed entity was poisoning the ID has table
6577 with removed values. This was killing XSLT on the KDE help
6578 browser.
6579
6580Wed Apr 18 17:09:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6581
6582 * entities.h: andrew@ugh.net.au detected a double declaration
6583
6584Wed Apr 18 15:06:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6585
6586 * debugXML.c hash.c tree.h valid.c : some changes related to
6587 the validation suport to improve speed with DocBook
6588 * result/VC/OneID2 result/VC/OneID3 : this slightly changes
6589 the way validation errors get reported
6590
6591Wed Apr 18 11:42:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6592
6593 * HTMLparser.c HTMLtree.c: applied part of the patches provided
6594 by P C Chow and William M. Brack for XSLT HTML output
6595
6596Mon Apr 16 19:44:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6597
6598 * xmlversion.h.in win32config.h win32/libxml2/*: applied
6599 Igor Zlatkovic patches for MSC compilation and added his
6600 updates
6601
6602Tue Apr 17 10:08:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6603
6604 * xpath.c: fixed xmlXPathNodeCollectAndTest() to do proper
6605 prefix lookup.
6606 * parserInternals.c: fixed the bug reported by Morus Walter
6607 due to an off by one typo in xmlStringCurrentChar()
6608
6609Thu Apr 12 17:41:09 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6610
6611 * HTMLparser.c result/HTML/*: revamped the way the HTML
6612 parser handles end of tags or end of input
6613
6614Thu Apr 12 10:50:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6615
6616 * tree.[ch] : added xmlDocCopyNode for gdome2 support
6617
6618Wed Apr 11 16:37:50 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6619
6620 * tree.h: include xmlmemory.h this seems to havoid a nasty glibc
6621 bug where the linktime verions of free() won't work ...
6622
6623Wed Apr 11 14:21:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6624
6625 * config.h.in configure.in xmlversion.h.in: added ansidecl.h test
6626
6627Wed Apr 11 13:50:42 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6628
6629 * doc/xml.html: added 2.3.6 release
6630
6631Wed Apr 11 13:26:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6632
6633 * tree.c: fixed xmlStringGetNodeList() to handle charrefs
6634 * result/wml.xml: resulted in a small output change
6635
6636Wed Apr 11 09:47:55 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6637
6638 * tree.c: xmlNewDoc was missing the charset initialization
6639 * xmllint.c: added --auto to autogenerate a doc, allow to
6640 reproduce the problem fixed on xmlNewDoc
6641
6642Tue Apr 10 18:13:10 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6643
6644 * xpath.c: trying to get 52979 solved
6645 * tree.c result/ result/noent/: trying to get 52712 solved, this
6646 also made me clean up the fact that XML output in general should
6647 not add formating blanks by default, this changed the output of
6648 a few tests
6649
6650Tue Apr 10 16:30:20 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6651
6652 * xpath.c: Bill Brack pointer an error in detecting a null nodeset
6653
6654Sun Apr 8 15:07:16 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6655
6656 * configure.in: finally released 2.3.6
6657
6658Sun Apr 8 11:39:21 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6659
6660 * xpath.c: checking for null pointer generated by new code
6661
6662Fri Apr 6 12:53:05 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6663
6664 * xpath.c: fixed a [] evaluation problem reported
6665 * test/XPath/tests/simpleaddr: extended test
6666 * result/XPath/simpleaddr: updated result
6667
6668Wed Apr 4 02:07:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6669
6670 * xmllint.c: Dan Timis reported a portability problem
6671 on Macs without mmap, fixed it.
6672
6673Tue Apr 3 20:20:51 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6674
6675 * testXPath.c : added a --tree option allowing to display the
6676 tree dump of the XPath expression
6677
6678Mon Apr 2 17:13:51 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6679
6680 * xpath.c: fixed a memleak when comparing nodesets
6681 * HTMLtree.c: don't invent the HTML doctype if not available (XSLT)
6682 * tree.c: added a TODO
6683
6684Tue Mar 27 14:32:06 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6685
6686 * configure.in Makefile.am config.h.in xmlversion.h.in: detect if
6687 we need string functions
6688 * trio.[ch] strio.[ch]: embedded the Trio-0.23 string functions
6689 to be able to use them where needed. Applied some changes
6690 to reduce name linking pollution and compile in only what's
6691 needed.
6692 * HTMLtree.c debugXML.c entities.c error.c nanoftp.c valid.c
6693 xlink.c xmlversion.h.in xpath.c: got rid of the #ifdef
6694 for the string manipulation functions
6695 * xmlmemory.[ch]: removed DEBUG_MEMORY_FREED and added it automatically
6696 to the free() function of xmlmemory.c
6697 * entities.c HTMLtree.c parserInternals.c tree.c uri.c valid.c
6698 xinclude.c xmlIO.c xpath.c xpointer.c: removed the MEM_CLEANUP
6699 usage.
6700
6701
6702Tue Mar 27 02:30:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6703
6704 * error.c: applied the context output patch of the error
6705 handling submitted by Chuck Griffith
6706 * error/VC/*: this slightly change some error logs
6707
6708Tue Mar 27 00:51:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6709
6710 * parser.c: fixed line number reporting on error
6711
6712Mon Mar 26 23:21:41 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6713
6714 * parser.c: Sullivan and Darin found a parser bug,
6715 applied the patch.
6716
6717Mon Mar 26 18:24:52 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6718
6719 * HTMLparser.c HTMLtree.c SAX.c debugXML.c error.c parserInternals.c
6720 testHTML.c testSAX.c tree.c valid.c xmlIO.c xmlmemory.c
6721 xmlversion.h.in xpointer.c: of course the way I defined
6722 UNUSED breaks on old gcc version. Try to be smart and
6723 also define it directly in xmlversion.h
6724 * configure.in: removed -ansi flag from the pedantic set
6725
6726Sat Mar 24 17:45:36 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6727 Huge cleanup, I switched to compile with
6728 -Wall -g -O -ansi -pedantic -W -Wunused -Wimplicit
6729 -Wreturn-type -Wswitch -Wcomment -Wtrigraphs -Wformat
6730 -Wchar-subscripts -Wuninitialized -Wparentheses -Wshadow
6731 -Wpointer-arith -Wcast-align -Wwrite-strings -Waggregate-return
6732 -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Winline
6733 * HTMLparser.[ch] HTMLtree.c SAX.c debugXML.c encoding.[ch]
6734 encoding.h entities.c error.c list.[ch] nanoftp.c
6735 nanohttp.c parser.[ch] parserInternals.[ch] testHTML.c
6736 testSAX.c testURI.c testXPath.c tree.[ch] uri.c
6737 valid.[ch] xinclude.c xmlIO.[ch] xmllint.c xmlmemory.c
6738 xpath.c xpathInternals.h xpointer.[ch] example/gjobread.c:
6739 Cleanup, staticfied a number of non-exported functions,
6740 detected and cleaned up a dozen of problem found this way,
6741 avoided a lot of public function name/typedef/system names clashes
6742 * doc/xml.html: updated
6743 * configure.in: switched private flags to the really pedantic ones.
6744
6745Thu Mar 22 22:44:15 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6746
6747 * configure.in: 2.3.5
6748 * doc/html/*: rebuilt the docs
6749
6750Thu Mar 22 15:36:45 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6751
6752 * parser.c: fixed a reported bug in NOTATION parsing
6753 * uri.c: accepted but not fixed bug 51876, added TODO
6754 * Makefile.am: fixed bug 51876
6755
6756Thu Mar 22 13:41:22 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6757
6758 * config.h.in configure.in error.c: fix a compilation problem
6759 on platforms without vsnprintf (xml@thewrittenword.com)
6760
6761Wed Mar 21 19:04:34 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6762
6763 * parser.c: fixed a function name header typo
6764 * SAX.c: notations can also occur in external subset.
6765
6766Tue Mar 20 14:21:28 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6767
6768 * error.c: removed a C++ like comment
6769
6770Tue Mar 20 12:22:36 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6771
6772 * parser.c: fixing bug 52299 strange condition leading
6773 to a parser crash due to a buffer overflow
6774 * result/noent/attrib.xml result/attrib.xml test/attrib.xml:
6775 added the specific test case
6776
6777Mon Mar 19 16:50:52 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6778
6779 * xpath.[ch]: still a lot of cleanup based on XSLT, added
6780 xmlXPathConvert{String,Number,Boolean} to be able to make
6781 type casts without a context stack, fixed some implementation
6782 problems related to the absence of context at parse-time,
6783 added xmlXPathEvalPredicate() and xmlXPathFreeCompExpr()
6784 in the public API too
6785 * xpointer.c xpathInternals.h: we need to know at parse time
6786 whether we are compiling an XPointer
6787
6788Mon Mar 19 11:54:31 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6789
6790 * xpath.[ch] xpointer.c: restaured the Binary and API compatibility
6791 cleaned up the parser internals, refactored XPath code, added
6792 new compilation based APIs and cleanly separated public and
6793 private APIs.
6794
6795Mon Mar 19 00:59:25 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6796
6797 * xpath.h: the comp field must be added at the end to avoid
6798 killing binary compat.
6799
6800Mon Mar 19 00:11:18 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6801
6802 * Makefile.am: detect XPath memleaks in regreson tests
6803 * error.c: fixed and error w.r.t. error reporting still using
6804 stderr
6805 * hash.c: added new line at end of file
6806 * tree.h: minor cleanup
6807 * xpath.[ch] xpointer.[ch]: Major changes ! Separated XPath
6808 expression parsing from evaluation, resulted in a number of
6809 changes internally, and in XPointer. Likely to break stuff
6810 using xpathInternals.h but should remain binary compatible,
6811 new interfaces will be added.
6812
6813Wed Mar 14 20:34:02 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6814
6815 * configure.in: fixed a couple of problems reported by
6816 okiddle@yahoo.co.uk and allanc@chickenandporn.com when compiling
6817 without gcc on non linux platforms.
6818
6819Wed Mar 14 20:13:54 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6820
6821 * doc/Makefile.am configure.in: yearke@eng.buffalo.edu suggested
6822 a fix for --with-html-dir= configure support. I hope it won't
6823 break rpm generation
6824
6825Wed Mar 14 17:28:49 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6826
6827 * xmlIO.c: one function comment cleanup.
6828
6829Wed Mar 14 14:55:46 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6830
6831 * SAX.c: external subset notations were improperly registered
6832 in the internal subset.
6833
6834Tue Mar 13 10:28:49 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6835
6836 * README.cvs-commits: added, pointing to HACKING
6837 * HACKING: updated
6838
6839Mon Mar 12 22:09:40 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6840
6841 * parser.c: and Matt Sergeant found one in the XML push
6842 parser (erroneous check I forgot to remove when I fixed the
6843 main parser).
6844
6845Mon Mar 12 19:19:04 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6846
6847 * xpath.c: ptittom found a small bug in UnaryExpr
6848
6849Sat Mar 10 13:09:53 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6850
6851 * configure.in: bumped to 2.3.4
6852 * error.c: fixed bug #51860
6853 * tree.c: fixed bug #51861
6854 * valid.c: cleanup, more debug, failed to fix one bug crap ...
6855 * tree.[ch] : added xmlDefaultBufferSize
6856 * nanoftp.c: typo in function name header block
6857 * doc/xml.html : updated, added link to XML::LibXSLT
6858 * doc/html/* : rebuilt the docs
6859
6860Wed Mar 7 20:43:47 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6861
6862 * parser.c SAX.c: the new content parsing code raised an
6863 ugly bug in the characters() SAX callback. Found it
6864 just because of strangeness in XSLT XML Rec ouptut :-(
6865
6866Wed Mar 7 16:50:22 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6867
6868 * Makefile.am: Martin Baulig suggested to add -lm
6869 * tree.c: found another bug in xmlNodeGetContent()
6870
6871Tue Mar 6 09:21:30 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6872
6873 * xpath.c: Bjorn found the error related to strictness of comparison.
6874
6875Mon Mar 5 21:47:31 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6876
6877 * parser.c: trying to fix the Dtd parsing problem reported
6878 by Gary, side effect of last week speed optimizations.
6879
6880Sat Mar 3 19:45:59 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6881
6882 * xml2Conf.sh.in: fixes pointed out by Fredrik Hallenberg
6883 * parserInternals.c: removed unneeded test raised by Stric
6884
6885Sat Mar 3 13:04:37 CET 2001 Bjorn Reese <breese@users.sourceforge.net>
6886
6887 * xpath.c: Fixed xmlXPathNodeCollectAndTest (problem reported
6888 and fixed by William Brack). Added xmlXPathFormatNumber.
6889 Changed the sorting slightly.
6890 * configure.in Makefile.am example/Makefile.am: Added -lm.
6891 Please note that applications linking with libxml2, must
6892 also like with the math library from now on.
6893
6894Sat Mar 3 07:38:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6895
6896 * HTMLparser.c: fixed loop reported by Marc Sanfacon
6897
6898Sat Mar 3 02:10:24 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6899
6900 * parser.c: one must report spaces even if the Dtd element
6901 content proves that this is not part of the element content.
6902 * result/valid/*.xml: this changed the ouptu slightly
6903
6904Thu Mar 1 17:53:39 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6905
6906 * configure.in: bumped to 2.3.3
6907 * doc/xml.html: updated
6908
6909Wed Feb 28 00:43:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6910
6911 * tree.c: minor doc fix
6912 * xpath.c: deallocation issues when a result tree has been
6913 converted to a node-set
6914
6915Mon Feb 26 22:09:45 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6916
6917 * doc/xml.html: oops corrected dates s/2000/2001
6918
6919Mon Feb 26 12:48:35 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6920
6921 * valid.c: new patch from Gary Pennington
6922
6923Mon Feb 26 09:30:23 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6924
6925 * doc/xml.html: applied patch from Ankh
6926
6927Mon Feb 26 03:34:43 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6928
6929 * xinclude.c: fixed a problem building on Mac
6930
6931Sun Feb 25 21:52:30 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6932
6933 * parser.c: more work on increasing parsing ferformances
6934
6935Sun Feb 25 18:03:42 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6936
6937 * xmlmemory.h HTMLparser.c HTMLtree.c entities.c parser.c
6938 xpath.c xpointer.c tree.c uri.c valid.c xinclude.c xmlIO.c:
6939 avoiding memcpy in production builds MEM_CLEANUP macro use
6940 * parser.[ch] parserInternals.c: optimizations of the tightest
6941 internal loops inside the parser. Better checking of I/O
6942 flushing/loading conditions
6943 * xmllint.c : added --timing
6944
6945Sun Feb 25 05:48:51 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6946
6947 * configure.in: bumped to 2.3.2
6948 * doc/xml.html: updated for release
6949
6950Sat Feb 24 14:07:52 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6951
6952 * xpath.c: found a memleak and fixed a nasty bug
6953
6954Sat Feb 24 03:35:48 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6955
6956 * xmllint.[c1] : added return code errors for xmllint
6957 * xpath.c: specific debug dump function for result value trees
6958
6959Thu Feb 22 07:52:27 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6960
6961 * xpath.c: finally implemented xmlXPathCompareNodeSets
6962 * test/XPath/expr/floats results/XPath/expr/floats: added
6963 a test for float expressions
6964
6965Tue Feb 20 18:57:54 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6966
6967 * tree.c: fixed xmlNodeGetContent, it was not recursing on child
6968 * parserInternals.[ch]: trying to speed up parsing
6969 * xpath.c : speeded up node set equality op
6970
6971Mon Feb 19 19:01:57 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6972
6973 * Makefile.am valid.c list.[ch]: Gary Pennington provided a
6974 better handling of ID/IDREF and the list modules associated
6975 * configure.in: small CFLAGS cleanup
6976
6977Mon Feb 19 16:13:22 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6978
6979 * configure.in: fixed iconv detection on AIX (stric)
6980
6981Mon Feb 19 10:59:41 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6982
6983 * xpath.c: fixed "*" (unbelievable !) and a couple of warnings
6984
6985Sun Feb 18 17:52:37 MET 2001 Bjorn Reese <breese@users.sourceforge.net>
6986
6987 * xpath.c: fixed whitespace handling in xmlXPathStringEvalNumber,
6988 and optimized xmlXPathNodeSetSort
6989
6990Sat Feb 17 14:18:42 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6991
6992 * xpath.c: bug fix when context size is 0
6993 * parser.c: I like Norm's Dtd because they still manage to break
6994 the parser occasionally
6995
6996Fri Feb 16 14:20:35 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6997
6998 * xpath.c: xmlXPathEqualNodeSetFloat the arg is really a double now
6999
7000Fri Feb 16 01:10:06 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7001
7002 * tree.[ch] parser.c xpath.c: fixed the problem of addressing
7003 attributes within the XML-1.0 namespace
7004
7005Thu Feb 15 16:53:20 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7006
7007 * xpathInternals.h: exported a few axis functions
7008 * doc/xml.html: updated the doc
7009
7010Thu Feb 15 15:57:14 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7011
7012 * configure.in: applied patch from Daniel van Balen for OpenBSD
7013 and bumped version to 2.3.1
7014 * HTMLtree.c result/HTML/doc3.htm result/HTML/wired.html: the
7015 attempt to find autoclosing was simply broken, removed it,
7016 updated the examples, this is better
7017
7018Wed Feb 14 11:35:39 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7019
7020 * hash.[ch]: added Paolo Casarini patch to provide Delete from
7021 hash functionnalities.
7022 * doc/html/* : rebuild the doc
7023
7024Tue Feb 13 18:01:48 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7025
7026 * xpath.c result/XPath/tests/chaptersprefol: bugfixes on order and
7027 on predicate
7028 * HTMLparser.[ch] HTMLtree.c result/HTML/doc3.htm.err
7029 result/HTML/doc3.htm.sax result/HTML/wired.html: sometimes one
7030 really want to have tags closed on output even if we accept
7031 unclosed ones on input
7032
7033Mon Feb 12 18:33:20 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7034
7035 * xpath.c: ouch don't free NULL, rare case fixed
7036 * tree.c: don't coalesce text nodes if they don't have the
7037 same behaviour wrt escaping on output
7038
7039Sun Feb 11 21:15:41 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7040
7041 * xpath.c: small fixup
7042 * SAX.c: don't warn on empty namespaces.
7043
7044Thu Feb 8 11:28:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7045
7046 * README: a bit of cleanup
7047 * configure.in: preparing for 2.3.0 release
7048
7049Thu Feb 8 10:37:00 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7050
7051 * hash.[ch]: added a first version of xmlHashSize()
7052 * valid.c: another bug fix from Gary Pennington
7053
7054Wed Feb 7 19:22:37 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7055
7056 * valid.c: couple of bug fixes pointed by Gary Pennington
7057 * HTMLtree.c: #if 0 cleanup
7058
7059Tue Feb 6 14:02:56 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7060
7061 * xpath.c: started profiling XSLT, added xmlXPathNodeSetAddUnique()
7062 which removes a time consuming check of xmlXPathNodeSetAdd()
7063 and use it in places where we are sure to not break unicity
7064
7065Mon Feb 5 18:51:36 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7066
7067 * xpath.c: bug fixes found from XSLT
7068 * tree.c: preserve node->name special values when copying nodes.
7069 * parserInternals.[ch] parser.[ch] SAX.c : added a mode where
7070 external subset are fetched when available but without full
7071 validation. Added xmlLoadExtDtdDefaultValue, need a function.
7072 * HTMLtree.c: add support for xmlStringTextNoenc for XSLt HTML
7073 output with encoding disabled.
7074
7075Sat Feb 3 09:50:29 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7076
7077 * xmliO.c: Harry Blundell pointed out that xmlCheckFilename
7078 xmlCheckFilename should not be called from xmlFileOpenW
7079 and xmlGzfileOpenW
7080
7081Fri Feb 2 18:04:35 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7082
7083 * uri.c: rewrite of xmlNormalizeURIPath from Paul D. Smith
7084 * test/URI/smith.uri result/URI/smith.uri Makefile.am:
7085 added the new tests for URI normalization
7086 * testURI.c: fixed stoopid bugs
7087 * result/VC/OneID3 result/VC/UniqueElementTypeDeclaration:
7088 the URI in the error messages are now properly normalized
7089
7090Fri Feb 2 09:18:53 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7091
7092 * uri.c: applied Marc Sanfacon's patch for xmlNormalizeURIPath
7093
7094Thu Feb 1 05:28:55 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7095
7096 * xpath.c: fixed a number of problems in XPATH_XSLT_TREE processing
7097
7098Wed Jan 31 21:45:37 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7099
7100 * xpath.c: fixed mod operator
7101
7102Wed Jan 31 16:50:42 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7103
7104 * parser.c: fixed xmlStrcat doc
7105 * tree.c: 2 fixes form Anders Carlson for copying nodes and
7106 trees.
7107
7108Wed Jan 31 14:19:16 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7109
7110 * xpath.c result/XPath/tests/chaptersbase
7111 result/XPath/tests/simplebase: fixed XPath node()
7112 * tree.c: small fix in xmlNewNs()
7113 * Makefile.am: removed extraneous xml2Conf.sh rule
7114
7115Sun Jan 28 08:37:03 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7116
7117 * Makefile.am configure.in libxml.spec.in example/Makefile.am:
7118 Changed the library name, in order to get libxml-devel and
7119 libxml2-devel to coexist on a single system
7120 * xml-config.1 xml-config.in xmlConf.sh.in: renamed
7121 * xml2-config.1 xml2-config.in xml2Conf.sh.in: new files
7122
7123Sat Jan 27 19:58:22 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7124
7125 * Makefile.am configure.in libxml-2.0.pc.in: started working on getting
7126 libxml2-devel installable in // as libxml-devel.
7127
7128Sat Jan 27 18:49:02 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7129
7130 * doc/Makefile.am: fixed make rebuild in doc
7131 * doc/html/*.html: rebuilt the docs
7132
7133Fri Jan 26 10:30:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7134
7135 * tree.c: patch from Bjorn Reese on xmlBufferCCat
7136
7137Thu Jan 25 19:22:25 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7138
7139 * Makefile.am doc/Makefile.am libxml.spec.in: painful work to get
7140 the HTML doc to go into the -devel RPM ...
7141 * aclocal.m4 config.h.in: some updates due to auto* magic
7142
7143Thu Jan 25 19:11:49 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7144
7145 * xpath.h: added a hook in the context structure allowing to
7146 link to extra support, needed for XSLT
7147
7148Thu Jan 25 13:34:11 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7149
7150 * xpath.[ch] xpointer.c: added xmlXPathCmpNodes, changed
7151 xmlXPtrCmpPoints to use it.
7152 * propagated the following patch from Alejandro Forero
7153 * include/win32config.h xmlIO.c: applied further suggestions
7154 from Igor Zlatkovic <igorz@dialup.nacamar.de> and cleanup
7155 * example/gjobread.c: fixed warnings, now that it builds
7156
7157Wed Jan 24 20:27:28 COT 2001 Alejandro Forero <bachue@bachue.com>
7158
7159 * xmlIO.c (xmlFileOpen, xmlFileOpenW): Removed unnecesary checks.
7160
7161 * xmlIO.c (xmlCheckFilename): Function added to know whether a given
7162 filename points to a valid file (not a directory).
7163 * xmlIO.c (xmlFileOpen, xmlFileOpenW, xmlGzfileOpen, xmlGzfileOpenW):
7164 Added calls to xmlCheckFilenameDir.
7165
7166 * xmlIO.c (xmlGzfileOpen, xmlGzfileOpenW, xmlFdOpen, xmlFdOpenW): Pass
7167 `path' (rather than `filename') as the parameter to gzopen and open.
7168
7169Tue Jan 23 16:26:30 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7170
7171 * Makefile.am: fixed a problem with EXTRA_DIST
7172
7173Mon Jan 22 23:42:17 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7174
7175 * Makefile.am example/Makefile.am: finally found the trick
7176 to build the example, i.e. add "." in SUBDIRS before example
7177 in the list <grin/>
7178
7179Mon Jan 22 16:30:37 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7180
7181 * doc/xml.html: updated with an XSLT section, removed pointer to
7182 W3C CVS base.
7183
7184Mon Jan 22 11:43:21 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7185
7186 * xpath.c: when copying a XSLT tree object teh tree need to be copied
7187 too, and deallocation need to occur the same way.
7188
7189Mon Jan 22 10:35:40 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7190
7191 * xpathInternals.h xpath.[ch] debugXML.c: added the XPATH_XSLT_TREE
7192 type correponding to an XSLT result tree fragment. Share most
7193 of the data format with node set, as well as operators.
7194 * HTMLtree.c: added a newline at the end of the doctype output
7195 whe this one is not present initially.
7196 * tree.c: make sure taht the parent and doc pointers are properly
7197 set when copying attributes (lists).
7198
7199Sun Jan 21 10:47:38 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7200
7201 * htmlTree.[ch] xmlIO.h: exported htmlDocContentDumpOutput
7202
7203Fri Jan 19 18:15:50 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7204
7205 * xpath.c: seems I finally killed that ugly path evaluation
7206 context bug (tagged 9999 in case is is wrong)
7207
7208Fri Jan 19 06:30:38 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7209
7210 * xpath.[ch] xpathInternals.h: added xmlXPathRegisterVariableLookup()
7211 for XSLT
7212
7213Thu Jan 18 16:19:47 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7214
7215 * xmlIO.c: Gary Pennington <Gary.Pennington@uk.sun.com> fix
7216 for xmlGzfileOpen() bug
7217
7218Thu Jan 18 13:11:50 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7219
7220 * xpath.c: removed an error found by XSLT usage
7221 * tree.c parserInternals.h: use a predefined static string
7222 for text and comment nodes, avoid freeing them in xmlFreeNode,
7223 exported the string name in parserInternals.h and added
7224 another value to disable encoding at output (for XSLT),
7225 gain memory, time.
7226
7227Wed Jan 17 09:15:16 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7228
7229 * win32/README.MSDev win32/libxml2/libxml2_a.dsp
7230 win32/libxml2/libxml2_so.dsp: new makefiles and update
7231 provided by Igor Zlatkovic <igor@stud.fh-frankfurt.de>
7232
7233Tue Jan 16 18:24:46 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7234
7235 * tree.c : xmlSaveFile, xmlSaveFileEnc, applied patch from
7236 Gary Pennington
7237
7238Mon Jan 15 20:24:18 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7239
7240 * xpath.c: fixed the comaprision of values and nodelists,
7241 need to compare nodelist still ...
7242 * debugXML.c: avoided a possible core dump
7243 * HTMLparser.c: cleanup
7244 * nanohttp.c: contributed fix.
7245 * tree.c: fixes in properties handling added xmlSetNsProp
7246 needed by libxslt
7247 * xpathInternals.h: exported xmlXPathBooleanFunction, added a
7248 comment
7249 * TODO: updated
7250
7251Sat Jan 6 22:05:09 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7252
7253 * parser.c parserInternals.c: applied Bjorn Reese optimization
7254 patch
7255
7256Sat Jan 6 19:13:27 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7257
7258 * Makefile.am: applied patch fro make check from Martin Vidner
7259
7260Thu Jan 4 19:07:49 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7261
7262 * configure.in: preparing 2.2.11
7263 * doc/html/*: rebuild the HTML files
7264 * doc/xml.html : updated
7265
7266Thu Jan 4 14:09:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7267
7268 * tree.c: fixed a stupid bug
7269 * valid.c: applied "Paul D. Smith" <pausmith@nortelnetworks.com>
7270 patches related to validation of an XInclude processing result
7271 * TODO: updated
7272
7273Thu Jan 4 11:46:40 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7274
7275 * encoding.c xmlIO.c: Fixing the problem reported by Marc Sanfacon
7276 on large files
7277
7278Wed Jan 3 21:51:13 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7279
7280 * xmlIO.c: fixed xmlParserInputBufferCreateMem doc
7281
7282Wed Jan 3 18:56:00 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7283
7284 * HTMLparser.c: htmlCheckParagraph to check htmlOmittedDefaultValue,
7285 reported by Jonas Borgström
7286 * nanohttp.c: Applied Bjorn Reese' IPV6 first patch
7287
7288Wed Jan 3 16:19:39 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7289
7290 * testXPath.c xpath.c: fixing the XPath union expressions problem
7291 reported by Martin Vidner <martin@artax.karlin.mff.cuni.cz>
7292
7293Wed Jan 3 14:22:33 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7294
7295 * xmllint.c: Made is so if the file name is "-" is will read form
7296 standard input. Sven Heinicke <sven@zen.org>
7297 * tree.c: fixed a problem when growing buffer
7298 * tree.h: fixed the comment of the node types following andersca
7299 comment
7300 * TODO: updated
7301
7302Wed Dec 27 12:35:49 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7303
7304 * HTMLparser.[ch]: added a way to avoid adding automatically
7305 omitted tags. htmlHandleOmittedElem() allows to change the
7306 default handling.
7307 * tree.[ch] xmllint.c: added xmlDocDumpFormatMemory() and
7308 xmlDocDumpFormatMemoryEnc(), uses memory functions for output
7309 of xmllint too when using --memory flag, added a memory test
7310 suite at the Makefile level.
7311 * xpathInternals.h xpath.[ch] xpointer.c: fixed problems
7312 with namespace use when encountering QNames in XPath evalation,
7313 added xmlns() scheme in XPointer.
7314 * nanoftp.c : incorporated a fix
7315 * parser.c xmlIO.c: fixed problems raised with encoding when using
7316 the memory I/O
7317 * parserInternals.c: closed bug 25934 reported by
7318 torsten.landschoff@innominate.de
7319 * TODO: updated
7320
7321Sat Nov 25 11:46:27 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7322
7323 * configure.in doc/html/* doc/xml.html: made a 2.2.9 release
7324 on a non-updated tree :-(, made a 2.2.10 release to correct the
7325 situation
7326
7327Sat Nov 25 10:41:37 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7328
7329 * nanohttp.c parser.[ch] tree.[ch] xmlIO.[ch] xmllint.c xpath.c
7330 parserInternals.h vms/build_libxml.com vms/config.vms Makefile.am:
7331 integrated a set of OpenVMS changes from Howard Taylor
7332 <Howard.Taylor@pacoast.com>
7333
7334Sat Nov 25 01:21:01 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7335
7336 * tree.[ch] xmlIO.c: added xmlDocDumpMemoryEnc() from John Kroll
7337 * error.c: applied fix suggested by "Leo Davidson" <leo@ox.compsoc.net>
7338
7339Sat Nov 25 00:24:49 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7340
7341 * HTMLparser.c: some fixes on auto-open of html/head/body
7342 * encoding.c: fixed a compilation error on some gcc env
7343 * xpath.c xpointer.[ch] xpathInternals.h: improved the
7344 XPointer implementation
7345 * test/XPath/xptr/strpoint test/XPath/xptr/strrange3: added
7346 related XPointer tests and associated results
7347
7348Fri Nov 24 14:01:44 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7349
7350 * doc/xmldtd.html doc/xml.html: following a short step by step
7351 guidance on IRC to help maciej with DTDs I started a small
7352 page on the subject.
7353
7354Fri Nov 17 17:28:06 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7355
7356 * HTMLparser.c: fixed handling of broken charrefs
7357 * xmlmemory.h libxml2.dsp include/win32config.h: reporting Windows
7358 patches
7359
7360Mon Nov 13 19:17:20 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7361
7362 * doc/xml.html doc/html/* : rebuilt the docs after adding
7363 xinclude and updated page for 2.2.7 and 2.2.8
7364 * configure.in: releasing 2.2.8
7365
7366Mon Nov 13 12:39:38 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7367
7368 * parser.[ch] parserInternals.c: applied the conditional
7369 section processing fix from Jonathan P Springer
7370 <jonathan.springer2@gte.net>
7371 * xmlversion.h.in win32/libxml2/libxml2.dsp : Updated MS
7372 project file, fixed iconv default non support
7373 * xpath.c: fixed the problem of evaluating relative expressions
7374 when a node context is provided.
7375
7376Sun Nov 12 16:31:19 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7377
7378 * nanoftp.c: fixed gcc 2.95 new warnings
7379 * SAX.c: fixed a stupid bug
7380 * tree.c: fixed a formatting problem when round-tripping
7381 from/to memory
7382 * xinclude.c: chased memleak, fixed a base problem
7383 * xpointer.c: added xmlXPtrBuildRangeNodeList(), finished ?
7384 xmlXPtrBuildNodeList()
7385 * TODO: updated
7386 * Makefile.am test/XInclude/docs test/XInclude/ents result/XInclude:
7387 adding a first small set of regression tests for XInclude
7388
7389Tue Nov 7 15:11:34 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7390
7391 * nanohttp.[ch]: applied Wayne Davison patches to access
7392 the WWW-Authorization header.
7393 * parser.c: Closed Bug#30847: Problems when switching encoding
7394 in short files by applying Simon Berg's patch.
7395 * valid.c: fixed a validation problem
7396 * hash.c parser.h parserInternals.h testHTML.c testSAX.c tree.h
7397 xmlerror.h xmlmemory.h xmlversion.h.in: applied a DLL patch from
7398 Wayne Davison
7399 * xpointer.[ch]: added first version of xmlXPtrBuildNodeList()
7400 need to be extended to non full nodes selections.
7401 * xinclude.c: starts to work decently
7402
7403Mon Nov 6 17:22:46 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7404
7405 * tree.[ch] xinclude.[ch] xmllint.c configure.in valid.c
7406 debugXML.c xmlversion.h.in: Started adding XInclude support,
7407 this is a new xmllint option
7408 * tree.c xpath.c: applied TOM patches for XPath
7409 * xpointer.c: fixed a couple of errors.
7410 * uri.c: added an escaping function needed for xinclude
7411 * testXPath.c hash.c HTMLtree.c: minor cleanups raised by
7412 new warning from RH70 gcc's version
7413
7414Tue Oct 31 14:14:13 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7415
7416 * HTMLparser.c: fixed loop on invalid char in scripts
7417 * parser.c: update to description of xmlIOParseDTD()
7418 * libxml.m4 xmlversion.h.in: changes contributed by
7419 Michael Schmeing <m.schmeing@internet-factory.de>
7420 * configure.in: preparing for 2.2.7
7421 * Makefile.am: trying to avoid config.h and acconfig.h
7422 being included in the distrib
7423 * configure.in: released 2.2.7
7424
7425Mon Oct 30 17:08:10 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7426
7427 * tree.[ch] debugXML.c parserInternals.c xpath.c: Deprecated Pi's
7428 like namespaces for good. Unified xmlNs and xmlNode somewhat.
7429
7430Mon Oct 30 16:26:49 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7431
7432 * parser.[ch]: added xmlIOParseDTD()
7433 * xpointer.c: added support for the 2 extra parameters of
7434 string-range, fixed a stoopid error when '0' was present
7435 in XPointer expressions
7436 * test/XPath/xptr/strrange2 result/XPath/xptr/strrange2: added
7437 testsuite for the above
7438
7439Mon Oct 30 10:26:43 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7440
7441 * libxml.spec.in: improved package descriptions
7442
7443Sun Oct 29 19:03:11 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7444
7445 * xpath.c xpathInternals.h: applied a large cleaning patch
7446 from TOM <ptittom@free.fr>, it also add namespace support
7447 for function and variables registration.
7448
7449Sun Oct 29 18:51:46 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7450
7451 * uri.c: Wayne Davison's patch fixing xmlBuildURI()
7452 * Makefile.mingw: Wayne Davison's update adding hash.c
7453
7454Sun Oct 29 18:38:12 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7455
7456 * xpath.c: fixed the root evaluation problems
7457 * HTMLparser.c result/HTML/doc3.htm: fixed the problem of non
7458 ignorable spaces with <b> <bold> <em>
7459 * tree.c: fixed a loop in xmlSearchNsByHref()
7460
7461Fri Oct 27 18:57:32 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7462
7463 * xpath.c: applied another XPath patch from TOM
7464 * xpath.c include/makefile.am: applied another patch from
7465 china@thewrittenword.com (cleanup on IRIX).
7466
7467Fri Oct 27 13:45:28 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7468
7469 * xml-config.1: received a fixed version from Fredrik Hallenberg
7470 <hallon@lysator.liu.se>
7471
7472Thu Oct 26 16:05:25 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7473
7474 * xpath.c textXPath.c xpathInternals.h: applied TOM <ptittom@free.fr>
7475 cleanup patch for XPath
7476
7477Wed Oct 25 21:31:10 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7478
7479 * patched to redirrect all "out of context" error messages to
7480 a reconfigurable routine. The changes are:
7481 * xmlerror.h : added the export of an error context type (void *)
7482 an error handler type xmlGenericErrorFunc there is an interface
7483 xmlSetGenericErrorFunc(void *ctx, xmlGenericErrorFunc handler);
7484 to reset the error handling routine and its argument
7485 (by default it's equivalent to respectively fprintf and stderr.
7486 * all the c files: all wild accesses to stderr or stdout within
7487 the library have been replaced to calls to the handler.
7488
7489Wed Oct 25 15:27:19 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7490
7491 * configure.in: release 2.2.6
7492 * xpath.[ch] xpointer.c xpathInternals.h: added xpathInternals.h
7493 exporting the inner functions of xpath for extension modules
7494 * doc/*: updated and rebuilt the doc
7495
7496Wed Oct 25 12:48:55 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7497
7498 * nanohttp.c : applied Wayne HTTP cleanup patch
7499 * tree.[ch]: applied TOM <ptittom@free.fr> for xmlNodeSetBase()
7500 and xmlNodeSetSpacePreserve()
7501
7502Wed Oct 25 12:11:03 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7503
7504 * xpath.c: closing bug #29260
7505
7506Tue Oct 24 18:49:34 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7507
7508 * hash.[ch] debugXML.c: expanded/enhanced the API, added
7509 multikey tuples, made hash structure opaque
7510 * valid.[ch]: moved elements, attributes, notations decalarations
7511 as well as ID and refs to hash tables.
7512 * entities.c: hash cleanup
7513 * xmlmemory.c: fixed a dump problem in debug mode
7514 * include/Makefile.am: problem passing in DESTDIR= values patch
7515 from Marc Christensen <marc@calderasystems.com>
7516 * nanohttp.c: removed debugging remains
7517 * HTMLparser.c: the bogus tag should be ignored (Wayne)
7518 * HTMLparser.c parser.c: fixing a number of problems with the
7519 macros in the *parser.c files (Wayne).
7520 * HTMLparser.c: close the previous option when opening a new one
7521 (Marc Sanfacon).
7522 * result/HTML/*: updated the HTML results accordingly
7523
7524Sun Oct 22 18:39:19 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7525
7526 * entities.[ch] xpath.[ch] hash.[ch] debugXML.c tree.h: added/hacked
7527 hash tables from Bjorn Reese <breese@mail1.stofanet.dk>. Switched
7528 XPath functions and XML entities table to them. More to come...
7529 * xmlIO.c: fixed libxml closing FILEs it didn't open.
7530
7531Sun Oct 22 13:59:50 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7532
7533 * tree.c: coalesce adjacent text nodes
7534 * valid.c: handling of blank nodes in DTd validation (raised
7535 by problems with a posteriori validation).
7536 * nanohttp.c: changing behaviour on HTTP write stuff.
7537 * HTMLtree.c: forced body and html to be explicitely closed.
7538 * xpath.h: exported more XPath functions.
7539
7540Sun Oct 15 22:28:32 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7541
7542 * Release of 2.2.5
7543 * xpointer.c: range() range-inside and other helper functions
7544 * parserInternals.c: fixed perf problem raised by rolf@pointsman.de
7545
7546Sun Oct 15 16:21:27 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7547
7548 * SAX.c: HTML attributes need normalization too (Bjorn Reese)
7549 * HTMLparser.[ch]: addded htmlIsScriptAttribute()
7550
7551Sun Oct 15 13:18:36 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7552
7553 * doc/*: rebuilt docs preparing for 2.2.5 release, added URI
7554 and XPointer modules
7555
7556Sun Oct 15 12:13:30 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7557
7558 * SAX.h: closed #25107
7559
7560Sun Oct 15 12:06:16 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7561
7562 * testSAX.c: fixed problem with cdata reporting
7563 * SAXresult/* : updated
7564
7565Sun Oct 15 12:00:24 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7566
7567 * parser.c test/wap.xml result/noent/wap.xml result/wap.xml:
7568 Closed bug #27499, added to regression tests
7569 * TODO: updated
7570
7571Sun Oct 15 01:34:37 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7572
7573 * HTMLparser.c HTMLtree.[ch] SAX.c testHTML.c tree.c: fixed HTML
7574 support for SCRIPT and STYLE with help from Bjorn Reese
7575 * test/HTML/* result/HTML/*: added simple testcase and updated
7576 the existing ones.
7577
7578Fri Oct 13 18:24:31 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7579
7580 * xpath.c xpointer.c: XPointer reorder of ranges start/end and
7581 string-range for empty strings
7582 * test/XPath/docs/str test/XPath/xptr/chaptersrange
7583 test/XPath/xptr/strrange: augmented the XPointer testsuite
7584
7585Fri Oct 13 12:21:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7586
7587 * doc/xml.html doc/xmlmem.html: added a module describing memory
7588 interfaces and use, updated the main page.
7589
7590Fri Oct 13 01:23:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7591
7592 * nanoftp.c nanohttp.c xmlIO.c: Wayne Davison Win32 patch
7593 nanoftp code work on Windows too now
7594
7595Fri Oct 13 00:54:37 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7596
7597 * testXPath.c xpath.[ch]: moved some debug functions to xpath core
7598 * xpointer.c: implemented string-range() at least a good first version
7599 * test/XPath/docs/str test/XPath/xptr/strrange
7600 result/XPath/xptr/strrange: the string-range() tests
7601
7602Thu Oct 12 10:02:59 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7603
7604 * Makefile.am include/Makefile.am include/win32config.h
7605 win32/Makefile.mingw: fixed problems reported by Wayne Davison
7606 and make distcheck
7607
7608Thu Oct 12 01:44:08 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7609
7610 * nanohttp.c: added xmlNanoHTTPTimeout(int delay), removed a bug
7611 xmlNanoHTTPMethod on input MimeType Tony Lam <Tony.Lam@eng.sun.com>
7612 * xpointer.c: slight extension of xmlXPtrLocationSetMerge
7613
7614Thu Oct 12 01:37:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7615
7616 * config.h.in configure.in nanoftp.c nanohttp.c xmlversion.h.in :
7617 patch for socklen_t detection by
7618 Albert Chin-A-Young <china@thewrittenword.com>
7619
7620Wed Oct 11 17:53:57 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7621
7622 * tree.c valid.c xmllint.c: Fixed a few postvalidation bugs
7623 and added a --dtdvalid option to xmllint used to test it
7624
7625Wed Oct 11 15:01:29 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7626
7627 * xml-config.1 Makefile.am libxml.spec.in: adding a man page for
7628 xml-config by Fredrik Hallenberg <hallon@lysator.liu.se>
7629
7630Wed Oct 11 12:41:30 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7631
7632 * xpath.[ch] xpointer.[ch]: worked on XPath functions and variable
7633 handlings (registration, lookup, cleanup)
7634
7635Wed Oct 11 01:46:44 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7636
7637 * configure.in Makefile.am include/makefile.am: adding XPointer
7638 and XPtrtests target
7639 * xpointer.[ch] : new files for XPointer support
7640 * test/XPath/xptr result/XPath/xptr: added XPointer testsuite and
7641 more XPath tests
7642
7643Wed Oct 11 01:23:25 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7644
7645 * configure.in: fixed, very broken, make distcheck works again
7646
7647Wed Oct 11 02:53:10 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7648
7649 * More work toward 2.2.5, integrated a number of patches
7650 * configure.in Makefile.am win32config.h.in: trying to cleanup
7651 make distcheck .... huh ...
7652 * include/Makefile.am include/win32config.h: new directory
7653 for includes
7654 * win32/Makefile.mingw win32/README.MSDev win32/libxml2/libxml2.dsp
7655 updated teh makefiles and instructions for WIN32
7656 * xpath.c: small fixes
7657 * test/XPath/ results/XPath: updated the testcases and results
7658 * HTMLparser.c nanohttp.c testXPath.c: incorporated provided or
7659 suggested patches
7660 * valid.c: fixed an ID bug
7661
7662Mon Oct 9 14:28:56 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7663
7664 * moved xml-error.h to xmlerror.h: seems this allowed to bypass
Daniel Veillard784b9352003-02-16 15:50:27 +00007665 the automake bug where wrong dependencies were generated.
Daniel Veillard7b4b2f92003-01-06 13:11:20 +00007666 * xpath.[ch]: worked on XPointer
7667
7668Fri Oct 6 12:58:04 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7669
7670 * configure.in Makefile.am: 2.2.5, ship the include in an
7671 include/libxml subdirectory, use symlinks when using CVS
7672 * testSAX.c: fixed small bug
7673 * testXPath.c: changed the way testfiles are parsed
7674 * debugXML.c: same kind of cleanup when parsing an argument expression
7675 XPath/XPointers can have blanks embedded
7676 * xpath.[ch]: more cleanup, reorgs for XPointer work
7677 * parserInternals.c parser.c HTMLparser.c: fixed wrong include
7678 * win32/README.MSDev win32/libxml2/libxml2.dsp: Windows stuff
7679
7680Thu Oct 5 18:13:15 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7681
7682 * debugXML.c testXPath.c xpath.[ch]: got pissed by some nastyness
7683 in the XPath engine, rewrote large parts of it, now it's far
7684 cleaner and in sync with the REC not an old WD. Fixed a parsing
7685 problem in the interactive XML shell found when testing XPath.
7686
7687Wed Oct 4 15:25:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7688
7689 * debugXML.c testXPath.c xpath.[ch]: More work on XPath/Xpointer,
7690 incorporated "(TOM)" <ptittom@free.fr> patches rebuilt the XPath
7691 examples with the extra test
7692
7693Wed Oct 4 14:39:01 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7694
7695 * parser.c xmlIO.c xmlIO.h: fixed bug 26650, and improved
7696 the global init function.
7697
7698Tue Oct 3 11:28:52 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7699
7700 * HTMLparser.c: Doohhh, attribute name parsing was still case
7701 sensitive ! Fixed this ...
7702 * result/HTML/* : updated the tests results accordingly
7703
7704Mon Oct 2 23:47:32 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7705
7706 * xpath.[ch] debugXML.c testXPath.c: fixed the XPath evaluation
7707 engine, should be far more stable, incorporated a new version of
7708 preceding/following axis, need testing
7709 * uri.c: fixed file:///c:/a/b/c problem
7710 * test/XPath/tests/idsimple: augmented the XPath tests
7711
7712Sun Oct 1 22:33:00 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7713
7714 * doc/* rebuilding docs for 2.2.4 release
7715
7716Sun Oct 1 22:16:33 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7717
7718 * configure.in: releasing 2.2.4
7719 * parser.[ch]: added xmlStrEqual()
7720 * HTMLparser.c HTMLtree.c SAX.c debugXML.c entities.c parser.c
7721 tree.c valid.c xlink.c xpath.c: converted all !xmlStrcmp to
7722 use xmlStrEqual instead
7723 * TODO: updated
7724 * added an XPath test
7725
7726Sun Oct 1 20:19:39 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7727
7728 * HTMLparser.c: fixed htmlStartCloseIndexinitialized init
7729 * entities.h: exported xmlInitializePredefinedEntities
7730 * parser.[ch] : added xmlInitParser()
7731 * parserInternals.h : had to export htmlInitAutoClose()
7732
7733Sun Oct 1 16:28:22 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7734
7735 * xpath.[ch] : fixed some serious XPath Predicate evaluation
7736 problems
7737 * Makefile.am : added XPath regression tests to normal tests
7738 * uri.c: fixed a problem with local paths, cleanup
7739 * parser.c: fixed a problem with large CData sections
7740
7741Sat Sep 30 16:35:54 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7742
7743 * configure.in xml-config.in: patch from "Ben Taylor"
7744 <sol7x86@hotmail.com> for solaris shared libs lookup
7745
77462000-09-30 Martin Baulig <baulig@suse.de>
7747
7748 * libxml-2.0.pc.in: Provide pkg-config script.
7749
7750 * configure.in: Create the libxml-2.0.pc script from the
7751 libxml-2.0.pc.in templates.
7752 * Makefile.am (pkgconfig_DATA): Install the libxml-2.0.pc
7753 script in `$(libdir)/pkgconfig'.
7754
7755Mon Sep 25 16:23:41 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7756
7757 * HTMLparser.c parser.c tree.c tree.h: Avoiding a few warning
7758 when compiling with MSC
7759
7760Sun Sep 24 20:32:52 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7761
7762 * xpath.c: patch for normalize-string() substring-before(),
7763 substring-after() and translate() functions from Bjorn Reese
7764 <breese@mail1.stofanet.dk>
7765 * libxml.m4 Makefile.am: added libxml.m4 from Debian ?
7766 Fredrik Hallenberg <hallon@lysator.liu.se>
7767 * TODO: updated
7768
7769Sun Sep 24 10:00:49 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7770
7771 * xmlversion.h.in nanoftp.c nanohttp.c: traying to work out the
7772 problem of socklen_t being undefined on a number of platforms
7773 * debugXML.c: fixed a compilation problem when without snprintf
7774
7775Sat Sep 23 12:19:45 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7776
7777 * HTMLparser.c uri.c: Another patch from Wayne Davison, correcting
7778 an URI bug and a fix for the control-character-induced infinite loop
7779 * nanohttp.c: preventive fix for compiling on WIN32
7780
7781Fri Sep 22 18:06:08 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7782
7783 * xmlint.c: closing bug #25000
7784
7785Fri Sep 22 14:17:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7786
7787 * xmlIO.h tree.h: made xmlNodeDump() and xmlNodeDumpOutput() public
7788 * parser.[ch] nanohttp.c HTMLtree.c HTMLparser.c tree.c: applied and
7789 modified slightly Wayne Davison patch adding xmlStrcasecmp and
7790 related function, fixing xmlStrncmp(), and associated cleanup
7791 * result/HTML/entities.html.sax: updating result
7792
7793Tue Sep 19 14:20:10 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7794
7795 * uri.c: applied patch for URI escaping from Wayne Davison
7796 <wayned@blorf.net>
7797 * tree.c parserInternals.c HTMLparser.c: memset checks patches
7798 from Denis Barbier <barbier@imacs.polytechnique.fr>
7799 * HTMLparser.c: UTF8 characters in HTML tag-attribute values
7800 patch from Wayne Davison
7801
7802Sun Sep 17 18:37:03 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7803
7804 * doc/xml.html : updated with new releases, adding "how to help"
7805
7806Sun Sep 17 17:58:37 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7807
7808 * SAX.c debugXML.c parser.c parserInternals.c tree.c valid.c xpath.c:
7809 removed a few warnings in pedantic mode ...
7810 * parserInternals.c parser.c: moved encoding switching function
7811 to parserInternals.c
7812 * configure.in, doc/Makefile.am libxml.spec.in: released 2.2.3
7813
7814Sat Sep 16 20:12:41 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7815
7816 * HTMLparser.c parser.c: set ctxt->errNo before calling the
7817 error or warning handlers
7818
7819Wed Sep 13 22:03:18 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7820
7821 * parserInternals.c parserInternals.h parser.c Makefile.am:
7822 created a new module parserInternals.c, moved most of the
7823 code shared by the various parsers there, as well as
7824 deprecated code from parser.c. More cleanup of parser.c
7825 * uri.c: fixed a problem when URI is NULL
7826 * valid.c: speedup when looking for an attribute declaration
7827
7828Sun Sep 10 17:53:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7829
7830 * uri.c tree.c SAX.c parser.c entities.c debugXML.c: finished
7831 the cleanup of the computation of URI references when seeking
7832 external entities. The URI reference string and the resulting
7833 URI are both stored now.
7834 * parser.c HTMLparser.c valid.c nanoftp.c nanohttp.c xpath.c:
7835 large s(n)printf checks and cleanup from Denis Barbier
7836 <barbier@imacs.polytechnique.fr>
7837 * xmlversion.h.in tree.h: couple of SGML declarations for a
7838 possible docbook module.
7839 * result/VC/ : a couple of test output changed due to the change
7840 of the entities URI
7841
7842Sun Sep 10 15:59:58 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7843
7844 * parser.h: added a _private field for linking user's data
7845
7846Sun Sep 10 15:14:43 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7847
7848 * parser.c parserInternals.h: demacroified most of the IS_XXX
7849 the gain in size is significant so ...
7850
7851Fri Sep 8 20:48:29 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7852
7853 * entities.c: cases where looking up entities with doc==NULL
7854 covered
7855
7856Tue Sep 5 12:41:15 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7857
7858 * uri.c: applied Wayne Davison patch
7859 * Makefile.in test/URI/uri.data result/URI/uri.data: updated URI tests
7860
7861Mon Sep 4 13:01:45 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7862
7863 * uri.c testUri.c: applied Wayne Davison patches
7864 * test/URI/uri.data result/URI/uri.data: first set of tests/results
7865 * Makefile.in: added URItest and included thenin "make tests"
7866
7867Sun Sep 3 19:19:29 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7868
7869 * xmlversion.h.in: closed bug 22941
7870
7871Thu Aug 31 16:55:55 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7872
7873 * doc/xmlio.html: added doc and example for entity loader
7874 redefinition.
7875
7876Thu Aug 31 14:59:28 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7877
7878 * doc/xmlio.html doc/xml.html: added a doc on the I/O mechanism
7879 used by libxml
7880
7881Tue Aug 29 20:22:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7882
7883 * parser.c: Fixed bug on invalid ontent characters and when using
7884 push.
7885 * xmllint.c: fixed xmllint endling of errors in push mode
7886
7887Tue Aug 29 11:24:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7888
7889 * HTMLparser.c testHTML.c: applied two new patches from
7890 Wayne Davison <wayned@users.sourceforge.net>
7891 * result/HTML/*.sax: regenerated HTML SAX output
7892 * parser.c: more cleanup.
7893
7894Mon Aug 28 11:58:12 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7895
7896 * HTMLparser.[ch] testHTML.c: applied the second set of
7897 patches from Wayne Davison <wayned@users.sourceforge.net>,
7898 adding htmlEncodeEntities()
7899 * HTMLparser.c: fixed an ignorable white space detection bug
7900 occuring when parsing with SAX only
7901 * result/HTML/*.sax: updated since the output is now HTML
7902 encoded...
7903
7904Mon Aug 28 00:38:31 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7905
7906 * HTMLparser.[ch]: applied some of Wayne Davison
7907 <wayned@users.sourceforge.net> patches
7908
7909Sun Aug 27 22:14:01 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7910
7911 * SAX.c tree.c debugXML.c: fixed bogus behaviour when an
7912 undeclared namespace prefix was used, added a warning.
7913 Cleaned up support w.r.t. entities, spilling out a warning
7914 and being pedantic on lookups.
7915 * test/warning/ent9 : added testcase for previous example.
7916 * TODO: updated
7917 * parserInternals.h parser.c: changed the way names are parsed
7918 now allow infinite size and decrease penalty for normal use
7919 * parser.c: Started a big cleanup/check of the parser code,
7920 fixed some of the most tortuous entity code, spotted code
7921 unused anymore
7922 * test/*: added tests for very long names and related nasty
7923 things.
7924
7925Sat Aug 26 23:31:04 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7926
7927 * doc/encoding.html: added encoding aliases doc
7928 * doc/xml.html: updates
7929 * encoding.[ch]: added EncodingAliases functions
7930 * entities.[ch] valid.[ch] debugXML.c: removed two serious
7931 bottleneck affecting large DTDs like Docbook
7932 * parser.[ch] xmllint.c: added a pedantic option, will be
7933 useful
7934 * SAX.c: redefinition of entities is reported in pedantic mode
7935 * testHTML.c: uninitialized warning from gcc
7936 * uri.c: fixed a couple of bugs
7937 * TODO: added issue raised by Michael
7938
7939Wed Aug 23 01:50:51 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7940
7941 * doc/encoding.html: propagated Martin Duerst suggestions
7942
7943Wed Aug 23 00:23:41 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7944
7945 * parser.c: Fixed Bug#21552: libxml fails to decode &amp;
7946 * uri.c testUri.c patches, by Marc Sanfacon (1 left)
7947 * parser.c HTMLparser.c: HTML/encoding push problems reportedi
7948 by Wayne Davison
7949
7950Sun Aug 20 17:03:38 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7951
7952 * nanoftp.c nanohttp.c: small cleanup
7953 * TODO: updated
7954
7955Sat Aug 19 22:57:02 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7956
7957 * added an old VC testcase and updated title.xml entity
7958
7959Sat Aug 19 21:02:08 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7960
7961 * HTMLparser.c SAX.c tree.c HTMLtree.h result/HTML/*: work
7962 done on auto-opening of <p> tags and cleanup of SAX output
7963
7964Sat Aug 19 18:45:40 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7965
7966 * libxml.4 xmllint.1 Makefile.am libxml.spec.in: added man pages
7967
7968Sat Aug 19 18:38:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7969
7970 * doc/xml.html libxml.* structure.*: updated the doc a bit
7971
7972Thu Aug 17 15:50:00 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7973
7974 * testSAX.c testHTML.c result/HTML/: cleanup of the output
7975 of SAX tests
7976
7977Mon Aug 14 13:56:33 EDT 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7978
7979 * Patch from Albert Chin-A-Young <china@thewrittenword.com>:
7980 * xmllint.c: workaround a MAP_FAILEd definition bug in DU-4.0
7981
7982Mon Aug 14 11:10:20 EDT 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7983
7984 * Patch from Dave Yearke <yearke@eng.buffalo.edu>:
7985 * testHTML.c: fix core dump on Solaris 2.x systems
7986 * HTMLparser.c: fix segfault if ctxt->sax->characters() is NULL
7987 * result/HTML/*.sax: previous bug fix lead to new results
7988
7989Mon Aug 14 10:26:09 EDT 2000 Daniel Veillard <Daniel.Veillard@w3.org>
7990
7991 * Patch from Albert Chin-A-Young <china@thewrittenword.com>:
7992 * configure.in: added --with-readline=DIR to accept alternate
7993 path for readline include/library
7994 * configure.in: added AM_C_PROTOTYPES to add -Aa -D_HPUX_SOURCE
7995 for ANSI under HP-UX
7996 * config.in: Removed @LIBS@ from xml-config because @XML_LIBS@
7997 includes @LIBS@
7998
7999Sat Aug 12 23:19:42 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8000
8001 * doc/* : rebuilt the docs
8002 * getting ready for 2.2.2 release
8003
8004Sat Aug 12 16:42:37 EDT 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8005
8006 * parser.[ch]: added xmlGetFeaturesList() xmlGetFeature()
8007 and xmlAddFeature()
8008 * tree.[ch]: added xmlAddChildList()
8009 * xmllint.c: MAP_FAILED macro test
8010 * parser.h: added xmlParseCtxtExternalEntity()
8011 * valid.c: applied bug fixes removed warning
8012 * tree.c: added CDATA block to elements content
8013 * testSAX.c: cleanup of output
8014 * testHTML.c: added SAX testing
8015 * encoding.c: better error recovery
8016 * SAX.c, parser.c: fixed one of the external entity processing
8017 of the OASis testsuite
8018 * Makefile.am: added HTML SAX regression tests
8019 * configure.in: bumped to 2.2.2
8020 * test/HTML/ result/HTML: added a few of HTML tests, and added the
8021 SAX results
8022
8023Fri Aug 4 11:21:50 PDT 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8024
8025 * configure.in: patch for HP compiler
8026
80272000-08-04 Sven Heinicke <sven@zen.org>
8028
8029 * xmllint.c: Was coredumping sometimes when the file given didn't
8030 exist.
8031
8032Sat Jul 22 05:59:05 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8033
8034 * parser.c xmlIO.[ch]: fixed the problem of encoding support
8035
8036 when using in memory parsing. Need some cleanup.
8037 * xmllint.c configure.in: added a --memory flag to test memory
8038 parsing
8039
8040Fri Jul 21 17:09:57 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8041
8042 * nanohttp.c: fixed socklen_t replacement to unsigned int
8043 * parser.c: fixed a space handdling missing at the end of
8044 production 28 DOCTYPE.
8045 * xmlmemory.c: fixed a stupid bug on the routine to override
8046 allocation functions
8047 * TODO: updated
8048
8049Fri Jul 14 17:01:14 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8050
8051 * doc/ regenerated the docs
8052
8053Fri Jul 14 16:12:20 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8054
8055 * doc/encoding.html doc/xml.html: added I18N doc
8056 * encoding.[ch] HTMLtree.[ch] parser.c HTMLparser.c: I18N encoding
8057 improvements, both parser and filters, added ASCII & HTML,
8058 fixed the ISO-Latin-1 one
8059 * xmllint.c testHTML.c: added/made visible --encode
8060 * debugXML.c : cleanup
8061 * most .c files: applied patches due to warning on Windows and
8062 when using Sun Pro cc compiler
8063 * xpath.c : cleanup memleaks
8064 * nanoftp.c : added a TESTING preprocessor flag for standalong
8065 compile so that people can report bugs more easilly
8066 * nanohttp.c : ditched socklen_t which was a portability mess
8067 and replaced it with unsigned int.
8068 * tree.[ch]: added xmlHasProp()
8069 * TODO: updated
8070 * test/ : added more test for entities, NS, encoding, HTML, wap
8071 * configure.in: preparing for 2.2.0 release
8072
8073Mon Jul 10 16:17:18 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8074
8075 * nanoftp.c: fixed the way the control connection is handled
Daniel Veillard784b9352003-02-16 15:50:27 +00008076 * libxml.spec.in: fixed the dependencies and cleanup
Daniel Veillard7b4b2f92003-01-06 13:11:20 +00008077
8078Mon Jul 3 14:37:07 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8079
8080 * doc/xml.html: changed the xmlsoft.org structure, updated the
8081 examples w.r.t. root and childs
8082
8083Sun Jul 2 20:51:43 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8084
Daniel Veillard784b9352003-02-16 15:50:27 +00008085 * libxml.spec.in: fixed bug #7419, dependencies fouled for libxml-devel
Daniel Veillard7b4b2f92003-01-06 13:11:20 +00008086
8087Sun Jul 2 09:52:45 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8088
8089 * HTMLparser.c: Work on character encoding support for the HTML parser
8090 * HTMLparser.c: Fixed some autoopen/autoclose probs for the HTML parser
8091 * encoding.c: Fixed a potential memleak in the encoding stuff
8092
8093Sat Jul 1 13:44:22 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8094
8095 * doc/FAQ.html doc/Makefile.am : added a FAQ
8096
8097Fri Jun 30 20:29:08 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8098
8099 * HTMLparser.c HTMLtree.c SAX.c valid.c tree.h : more cleanup
8100 of the HTML parser to force it to not bypass SAX
8101
8102Fri Jun 30 11:19:59 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8103
8104 * win32config.h.in: updated
8105 * xmlversion.h.in: crap forgot to update this, this mean 2.1.0
8106 lacks iconv support :-( need to release 2.1.1
8107 * configure.in: release 2.1.1
8108 * HTMLparser: fixed bug #14784
8109 * xpath.c HTMLparser.c encoding.c parser.c: fix warning raised
8110 by Windows compiler
8111 * HTMLparser.c SAX.c HTMLtree.h tree.h: create HTML document in
8112 the SAX startDocument() callback.
8113 * TODO: updated
8114
8115Thu Jun 29 12:06:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8116
8117 * added xmlStopParser()
8118
8119Wed Jun 28 23:10:26 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8120
8121 * configure.in: 2.1.0 prerelease
8122 * Large resync between W3C and Gnome tree
8123 * nanoftp, nanohttp.c: fixed stalled connections probs
8124 * HTMLtree.c SAX.c : support for attribute without values in
8125 HTML for andersca
8126 * valid.c: Fixed most validation + namespace problems
8127 * HTMLparser.c: start document callback for andersca
8128 * debugXML.c xpath.c: lots of XPath fixups from Picdar Technology
8129 * parser.h, SAX.c: serious speed improvement for large
8130 CDATA blocks
8131 * encoding.[ch] xmlIO.[ch]: Improved seriously saving to
8132 different encoding
8133 * example/Makefile.am example/gjobread.c tree.h: work on
8134 libxml1 libxml2 convergence.
8135 * config.h.in parser.c xmllint.c: added xmlCheckVersion()
8136 and the LIBXML_TEST_VERSION macro
8137
8138Fri Jun 23 22:26:07 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8139
8140 * doc/xml.html: various patches and improvements typo fixed by
8141 Felix Natter
8142 * doc/libxml-doc.el: Emacs module to lookup the libxml documentation
8143 from Felix Natter <fnatter@gmx.net>
8144
8145Sat May 6 10:09:45 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8146
8147 * doc/upgrade.html: updated with instructions for support of both
8148 libxml-1.x and libxml-2.x
8149 * doc/gjobread.c : applied Todd Dukes <tdukes@ibmoto.com> patch
8150 for 2.x support and also fixed includes
8151
8152
8153Wed May 3 14:21:25 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8154
8155 * encoding.[ch], xmlIO.[ch], parser.c, configure.in : revamped
8156 the encoding support, added iconv support, so now libxml if
8157 compiled with iconv automatically support japanese encodings
8158 among others. Work based on initial patch from Yuan-Chen Cheng
8159 I may have broken binary compat in the encoding handler
8160 registration scheme, but that was so utterly broken I don't
8161 expect anybody to have used this feature until now.
8162 * parserInternals.h: fixup on the CHAR range macro
8163 * xml-error.h, parser.c: catch URL/URI errors using the uri.c
8164 code.
8165 * tree.[ch]: added xmlBufferGrow(), was needed for iconv
8166 * uri.c: added xmlParseURI() I can't believe I forgot to
8167 implement this one in 2.0 !!!
8168 * SAX.c: moved doc->encoding update in the endDocument() call.
8169 * TODO: updated.
8170
8171Mon Apr 24 13:30:13 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8172
8173 * tree.h: removed extraneous xmlRemoveProp definition
8174 * TODO: added item about --disable-corba configure switch
8175 * tree.c parser.c: fixed problems for xmlCopyDoc and postvalidation
8176 * nanoftp.c: fixed include problems giving troubles on AIX and
8177 slowlaris
8178 * xmlIO.[ch] valid.h tree.[ch] xlink.c xmlmemory.c uri.c
8179 parser.c nanoftp.c nanohttp.c SAX.c testSAX.c :
8180 comment and headers changes to lower gtk-doc number of warnings
8181 * doc/html/*: rebuilt docs
8182
8183Sun Apr 16 11:23:29 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8184
8185 * HACKING: documented the tag for 1.x and instructions
8186
8187Wed Apr 12 15:47:22 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8188
8189 * xmlIO.[ch] parser.[ch]: More interfaces for new I/O functions
8190 xmlNewIOInputStream, xmlParserInputBufferCreateIO,
8191 xmlCreateIOParserCtxt
8192 * parser.c parserInternals.h: speedup of IS_CHAR like macros,
8193 significant overall improvement
8194 * xmllint.c: added I/O test to xmllint
8195 * testSAX.c: added a speed test
8196 * doc/* : updated/regenerated
8197
8198Sat Apr 8 14:54:54 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8199
8200 * xpath.c uri.h parserInternals.h: cosmetic changes from
8201 "Timur I. Bakeyev" <timur@bat.ru>, including making
8202 xmlCreateURI() public
8203
8204Fri Apr 7 18:35:02 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8205
8206 * xmlIO.[ch] parser.c: cleane up the xmlParserInputBuffer mess
8207 and the code at the same time. Added a clean mechanism for
8208 overload or added input methods: xmlRegisterInputCallbacks()
8209 * tree.c: fixed xmlPrevSibling and xmlNextSibling per
8210 Christophe Le Gal (Christophe.Le-Gal@imag.fr) input
8211 * TODO: updated
8212 * doc/* : updated/regenerated
8213 * doc/Makefile.am: tweaks to avoid problem with libxml link in the
8214 source dir
8215
8216Wed Apr 5 21:11:35 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8217
8218 * testURI.c: yet another forgotten commit, I should get some sleep !
8219
8220Wed Apr 5 20:36:46 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8221
8222 * xmllint.c: forgot to commit this too ?
8223
8224Wed Apr 5 16:22:44 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8225
8226 * xmlversion.h.in : forgot to commit this previously
8227
8228Mon Apr 3 21:47:10 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8229
8230 * configure.in: preparing libxml-2.0.0 version looks Ok so far
8231 * README TODO: updated for release
8232 * uri.c uri.h: added authority parsing/saving
8233 * uri.c testURI.c Makefile.am: moved the testing code to testURI.c
8234 * xmlversion.h.in configure.in nanoftp.[ch] nanohttp.[ch] encoding.h
8235 debugXML.[ch] xpath.[ch] xmlIO.c tester.c testXPath.c testHTML.c
8236 tree.c HTMLtree.c HTMLparser.c tree.c tree.h parser.c
8237 Makefile.am : added compile-time customization of libxml
8238 --with-ftp --with-http --with-html --with-xpath --with-debug
8239 --with-mem-debug
8240 * *.[ch] autoconf.sh : moved to an absolute adressing of includes :
8241 #include <libxml/xxx.h> I hope it won't break too much stuff
8242 and will be manageable in the future...
8243 * xmllint.c Makefile.am libxml.spec.in : renamed tester.c to xmllint.c
8244 and added xmllint to the installed programs
8245 * uri.h: added xmlFreeURI()
8246
8247Fri Mar 24 14:35:21 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8248
8249 * uri.c uri.h: finished the escaping handling, the base support
8250 and the URI path normalization. Looks good just lacks the
8251 authority content parsing code.
8252 * Makefile.am: added instructions to generate testURI
8253 * TODO: updated
8254 * doc/xml.html, doc/smallfootonly.gif doc/w3c.png: updated,
8255 added links and icons for W3C and Gnome
8256
8257Mon Mar 20 14:05:26 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8258
8259 * xmlmemory.[ch] : seems I forgot to actually update the files in
8260 the last commit :-)
8261 * doc/xml.html doc/html/* : updated and uploaded the docs
8262
8263Mon Mar 20 12:33:51 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8264
8265 * test/valid/dtds/xhtml*: removed RCS infos (pain with CVS)
8266 * TODO: updated
8267 * xmlmemory.[ch] : added xmlMemSetup() and xmlMemGet() to override
8268 libxml default allocation function with another set (like gmalloc/
8269 gfree).
8270 * Makefile.am, uri.c, uri.h: added a set of functions to do
8271 exact (litteraly copied from the RFC 2396 productions) parsing
8272 and handling of URI. Will be needed for XLink, one XML WFC,
8273 XML Base and reused in the nano[ftp/http] modules. Still work
8274 to be done.
8275
8276Tue Mar 14 20:52:35 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8277
8278 * configure.in, libxml.spec.in : libxml2
8279 * doc/* : updated the doc page, rebuilt the docs
8280
8281Tue Mar 14 19:11:29 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8282
8283 * all: tagged LIB_XML_1_X
8284 * *.c *.h : updated from W3C CVS tree
8285 * configure.in : 2.0.0-beta
8286 * libxml.spec.in : libxml2 package nam
8287 * result/* : new version of the tests output
8288
8289Mon Mar 6 09:34:52 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8290
8291 * doc/xml.html, doc/update.html: updated docs, 1.8.7
8292
8293Sat Mar 4 16:14:42 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8294
8295 * doc/* : rebuilt the docs
8296 * parser.c: final patch on #6766
8297 * valid.c: small patch on validity checks.
8298
8299Sat Mar 4 12:38:41 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8300
8301 * doc/upgrade.html: instruction on how to upgrade from 1.x to 2.x
8302 added
8303 * parser.c: adding xmlKeepBlanksDefault() as a way to manage
8304 compatibility w.r.t. XML spec and existing code.
8305
8306Thu Mar 2 04:45:15 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8307
8308 * parser.c: seems a better solution to <a> </a> exists,
8309 will try it for a while
8310
8311Thu Mar 2 02:26:13 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8312
8313 * parser.c: tried to remove the <a> </a> generating <a/>
8314 this is hard. Left a flag for that purpose. Fixed bug #6766
8315 * configure.in: prepared 1.8.7 not released, due to previous
8316 problem
8317
8318Thu Mar 2 03:03:50 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8319
8320 * doc/xml.html : applied second patch from Paul DuBois
8321
8322Tue Feb 29 23:55:13 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8323
8324 * doc/xml.html : applied patch from Paul DuBois
8325
8326Thu Feb 3 16:36:39 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8327
8328 * parser.c HTMLparser.c: do a bit of bufferization in push mode.
8329
8330Thu Feb 3 15:59:37 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8331
8332 * nanoftp.c nanohttp.c tree.c HTMLtree.[ch] debugXML.c xpath.c: Fixed
8333 compilation warnings on various platforms.
8334 * parser.c: Fixed #5281 validity error callbacks are now desactived
8335 by default if not validating.
8336
8337Thu Feb 3 13:46:14 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8338
8339 * nanoftp.c, win32config.h.in: patches to compile on WIN32
8340
8341Wed Feb 2 22:51:16 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8342
8343 * nanoftp.c: snprintf/sprintf patch courtesy George Katsirelos
8344 <gkatsi@cs.toronto.edu>
8345
8346Mon Jan 31 18:58:21 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8347
8348 * nanoftp.c nanohttp.c: Fixed '#' and '?' stripping when
8349 processing URLs
8350
8351Mon Jan 31 14:25:57 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8352
8353 * nanoftp.[ch]: cleanup, bug fixes, integration in rpmfind, added
8354 xmlNanoFTPUpdateURL for persistent control connections.
8355 * configure.in: 1.8.6
8356
8357Thu Jan 27 17:52:29 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8358
8359 * nanohttp.[ch], nanoftp.[ch]: cleanup, added proxy support
8360 * tree.[ch] : added xmlSaveNoEmptyTags
8361
83622000-01-29 James Henstridge <james@daa.com.au>
8363
8364 * nanoftp.c: include <netinet/in.h> for IPPROTO_TCP.
8365
8366 * Makefile.am: added nanoftp.[ch] to the build.
8367
8368Wed Jan 26 18:14:55 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8369
8370 * nanoftp.[ch]: cleanup, comments, API
8371 * debugXML.c : fixed a bug in the cat command
8372 * doc/*: regenerated the docs
8373
8374Wed Jan 26 16:52:50 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8375
8376 * nanoftp.[ch] parser.c xmlIO.[ch]: added a Nano FTP implementation
8377 * debugXML.c : fixed a bug in the cat command
8378 * valid.c: fixing some small probs
8379 * libxml.spec.in: get rid of the SNAP suffix
8380 * doc/xml.html: updated the status
8381
8382Mon Jan 24 14:31:09 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8383
8384 * xml-config.in: xml-config --version to just return the
8385 version number
8386 * xpath.c: some cleanup w.r.t. axis when the current node is
8387 an attribute.
8388 * TODO: updated
8389
8390Tue Jan 18 18:46:06 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8391
8392 * configure.in: prepared for libxml-1.8.5
8393 * doc/* recompiled the documentation
8394
83952000-01-17 Jody Goldberg <jgoldberg@home.com>
8396
8397 * configure.in : WARNING autoconf subtlety alert :
8398 Use AC_CHECK_HEADERS rather than AC_CHECK_HEADER
8399 when looking for zlib.h so that HAVE_ZLIB_H is defined.
8400 * config.h.in : Have a #undef for HAVE_ZLIB_H so that it will
8401 get defined by AC_CHECK_HEADERS.
8402
8403Mon Jan 17 17:04:12 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8404
8405 * tree.c: fixed a hideous bug in xmlGetProp() thanks to
8406 Rune.Djurhuus@fast.no
8407
8408Sat Jan 15 15:09:06 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8409
8410 * TODO: updated
8411 * tree.c, parser.c: made sure that only memory alloc problems
8412 and internal parser errors are allowed to write to stdout or
8413 stderr.
8414
8415Thu Jan 13 11:49:11 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8416
8417 * tree.c : restored xmlNewGlobalNs since this seems used by
8418 a lot of existing code :-(, fixed a bug in xmlNewNs
8419 * nanohttp.c: fixed a problem with INCLUDE_WINSOCK
8420 * HTMLparser.c, parser.c, entities.c, valid.c : removed all calls
8421 to exit() from the library code.
8422 * xpath.c, parser.c: removed bugs or unused code detected by
8423 Windows compilers
8424 * parser.c: started adding interfaces for parsing well balanced
8425 XML fragments
8426 * configure.in: releasing 1.8.4
8427 * doc/* : rebuilt the docs
8428
8429Sun Jan 9 23:03:20 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8430
8431 * tree.[ch] : added xmlNewDocFragment() for DOM
8432 * testHTML.c: uninitialized variable.
8433
8434Wed Jan 5 17:29:17 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8435
8436 * doc/* : rebuild the docs
8437
8438Wed Jan 5 17:08:43 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8439
8440 * acconfig.h: readline and history patch
8441 * valid.[ch]: added xmlRemoveID() and xmlRemoveRef()
8442 * tree.c: added check and handling when possibly removing an ID
8443 * tree.c, HTMLparser.h, HTMLtree.h: fixed entities parsing
8444 and saving.
8445 * test/HTML/entities.html result/HTML/entities.html* : test for
8446 various entities reference cases
8447 * result/HTML/* : as a result output of some testcase have
8448 changed
8449 * HTMLparser.c, parser.c: fixed a bug in the push mode triggered
8450 by previous example. added xmlParseTryOrFinish().
8451 * xpath.h tree.h parser.h valid.h xmlIO.h xlink.h encoding.h
8452 entities.h debugXML.h HTMLparser.h: changed the way struct are
8453 declared to allow gtk-doc to expose those
8454 * parser.c: closed bug #4960
8455 * Makefile.am configure.in: Applied patch from
8456 Albert Chin-A-Young <china@thewrittenword.com> for better zlib
8457 and math/socket libs detection
8458
8459Mon Jan 3 18:29:43 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8460
8461 * configure.in, Makefile.am: link tester against readline
8462 * doc/xml.html doc/*/*: updated and rebuilt the documentation pages
8463
8464Mon Jan 3 11:58:05 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
8465
8466 * tree.[ch]: added xmlRemoveProp
8467 * win32config.h.in nanohttp.c: avoid including the Windows
8468 socket stuff in every C files
8469 * parser.c: removed an indetermination xmLDecl/PI(xml...) in
8470 the XmL parser(s)
8471 * test/ns4 result/ns4 etc...: added test case for previous prob
8472 * tree.c: xmlNewNs wasn't checking for double definition
8473 * Makefile.in: fixed a problem with dist-hook duplicates
8474 * parser.[hc], xmlIO.c: fixed the loading of external entities
8475 APIs, now xmlLoadExternalEntity() is used everywhere and
8476 setting up an app specific front-end using the
8477 * SAX.c parser.c: some fixes, now the xhtml spec validates
8478 with the xhtml DTD.
8479 * error.c: fixed crashes in case of no input stream
8480 * test/valid/[dtds/]/xhtml* : added the xhtml spec and dtds
8481 to the validation tests and results
8482
8483Wed Dec 29 15:29:52 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8484
8485 * HTMLparser.[ch] testHTML.c: added push mode for the HTML parser
8486 too htmlCreatePushParserCtxt() and htmlParseChunk()
8487 * parser.c: a bit of cleanup.
8488 * SAX.c, HTMLparser.c: some attributes may not have values (contrary
8489 to XML) removed the last mem leak known
8490 * HTMLtree.c: output message cleanup
8491 * xmlmemory.c: display content info about memory blocks
8492 * result/HTML/wired.* : missing att value warning change
8493
8494Tue Dec 28 17:42:41 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8495
8496 * doc/* : rebuilt the documentation
8497
8498Tue Dec 28 18:44:22 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8499
8500 * parser.[ch] parserInternals.h: Push parser for XML,
8501 seems to work fine now
8502 * tester.c debugXML.[ch]: Added an XML shell debug facility and
8503 --push for push testing
8504 * xpath.[ch] : cleaned up for Shell usage, added missing APIs
8505 * testSAX.c: added --push
8506 * HTMLtree.[ch] tree.[ch]: new functions for dumping parts of the
8507 subtree
8508 * xmlIO.[ch] : enriched API + fixes for push mode
8509 * entities.[ch]: added the entity content length to the struct.
8510 * xmlmemory.[ch]: new API to show the last entries for the shell
8511 * valid.c: added required attribute testing
8512 * SAX.c: the cdata callback now merge contiguous fragments
8513 * HTMLparser.c: cleanup of some macros
8514
8515Wed Dec 22 12:20:53 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8516
8517 * parser.c: fix for PIs name starting with xml
8518 * tree.c: fixed a potential problem with || and && ops
8519 * *.c, configure.in win32config.h.in : generate win32config.h for
8520 those on the Other Side !
8521
8522Tue Dec 21 17:22:17 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8523
8524 * parser.c: fixed a stupid = vs. == bug :-(
8525 * doc/gnome-xml.sgml: s/glade/xml/
8526
8527Tue Dec 21 14:29:34 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8528
8529 * configure.in, doc/xml.html : bug fix release 1.8.2
8530 * debugXML.h nanohttp.h xml-error.h xmlmemory.h xpath.h :
8531 Hopefully the end of that silly C++ include problem
8532 * tree.[ch]: Added a few functions: xmlReplaceNode, xmlAddPrevSibling,
8533 xmlAddNextSibling, xmlNodeSetName and xmlDocSetRootElement
8534 * HTMLparser.c HTMLparser.h HTMLtree.c: When saving HTML try to avoid
8535 troubles with autoclosed elements when the stree shape doesn't
8536 follow the DtD specs. Added htmlIsAutoClosed() and
8537 htmlAutoCloseTag()
8538 * result/HTML/*.htm*: Updated the HTML examples regression tests output
8539 * SAX.c tree.c: fixed bug on defaulting namespaces on attributes
8540 * debugXML.c: fixed a bug on printing default namespaces.
8541 * HTMLtree.c: fixed a problem when outputing XML parsed docs as HTML
8542
8543Mon Dec 20 16:20:55 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8544
8545 * result/HTML/*.htm[l] : updated the HTML regression tests according
8546 to the new output
8547 * xpath.h xml-error.h valid.h tree.h parser.h entities.h SAX.h
8548 HTMLtree.h tree.c entities.c: headers tweakings to avoid a nasty
8549 problem due to intermix of extern "C" { ... } declarations for C++
8550 and recursive includes in the headers
8551
85521999-12-20 Chris Lahey <clahey@umich.edu>
8553
8554 * HTMLtree.c: Made it so that html nodes with a single child do
8555 not insert a carriage return before or after the child node.
8556
8557Sat Dec 18 16:07:03 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8558
8559 * configure.in, doc/xml.html : bug fix release 1.8.1
8560 * parser.c: fixed bug #4344
8561 * xpath.h xml-error.h xlink.h nanohttp.h debugXML.h SAX.h HTMLparser.h
8562 added the glue to avoid C++ problems
8563 * doc/* : regenerated the documentation
8564
8565Thu Dec 16 16:19:29 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8566
8567 * tree.c: fixed a bug introduced in 1.8.0 and breaking default
8568 namespace recognition, and Dia as a resul :-(
8569 * encoding.c: closed bug #3950
8570
8571Wed Dec 15 19:22:23 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8572
8573 * valid.c: debugging a posteriori validation, except URI expansion
8574 stuff this should be fixed now
8575 * parserInternals.h: fixed a bug in IS_BASECHAR reported by
8576 Carl Nygard <cnygard@bellatlantic.net>
8577 * tester.c: added --postvalid, cleaning of the code
8578 * tree.[ch]: added xmlDocGetRootElement()
8579
8580Tue Dec 14 20:30:34 PST 1999 Ramiro Estrugo <ramiro@eazel.com>
8581
8582 * SAX.h, tree.h : changed 'namespace' to 'nameSpace' to workaround
8583 c++ losage.
8584
8585Sun Dec 12 13:08:15 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8586
8587 * configure.in, doc/xml.html : bumped to 1.8.0
8588 * xlink.[ch], Makefile.am : added framework for link detection
8589 * parser.h: added nbChars to parser context, needed for cleanup.
8590 * xmlmemory.c: removed a nasty bug when out of mem
8591 * valid.[ch]: adding namespace support for attribute decl
8592 * tester.c: added --debugent option
8593 * debugXML.[ch]: added xmlDebugDumpEntities()
8594 * parser.c: cleanup, avoiding use of CUR_PTR like plague, using
8595 buffers instead, this was really needed, validation was breaking
8596 in strange ways due to that. Added xmlParseStringPEReference()
8597 and other parsing from strings functions. Entities processing
8598 modified again, but PERef are still not handled correcly but
8599 unless you're Eve Maller you won't notice :-)
8600 * HTMLparser.c: large changes toward reliability, and switched to
8601 lowercase internal tags, XHTML is lowercase, so it will help
8602 that output is closer to next version.
8603 * doc/* : regenerated the documentation, it is now hosted at
8604 http://xmlsoft.org/ (same bits I just bought the domain :-)
8605
8606
8607Fri Dec 3 13:46:32 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8608
8609 * SAX.h, SAX.c, makefile.am: added SAX.h mostly useful for the
8610 doc generation
8611 * parser.c: fixed bugs #3908 and #3937 and a memory leak
8612 in the SAX API
8613 * doc/*: rebuilt the doc making sure everything appears in the
8614 HTML files
8615
8616Wed Dec 1 10:27:47 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8617
8618 * tree.[ch] HTMLtree.c, debugXML.c, configure.in, xml-config.in:
8619 added the patch from Carl Nygard <cnygard@bellatlantic.net>
8620 which allow impressive speed improvement on dataset with
8621 large text pieces, but at the cost of broken binary
8622 compatibility and slightly bigger memory usage.
8623 Configure with --with-buffers to activate them, they
8624 are protected with XML_USE_BUFFER_CONTENT define.
8625 * entities.[ch], parser.c: added xmlCleanupPredefinedEntities(),
8626 goal is 0 memory left allocated once parser is no more used
8627 * testDAV.c, testHTML.c, testSAX.c, testXPath.c: make sure we
8628 call xmlCleanupParser() and xmlMemoryDump()
8629
8630Wed Nov 24 19:00:06 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8631
8632 * tree.[ch] xmlIO.[ch] parser.c valid.c: code cleanup with -pedantic
8633 * parser.[ch] encoding.[ch]: added memory cleanup routines
8634 * parser.c: closing bug #3788
8635 * doc/*: rebuilt the doc
8636
8637Tue Nov 23 11:23:55 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8638
8639 * tree.[ch]: closing bug 3748, added xmlNewDocRawNode(),
8640 xmlNewTextChild() and xmlSetCompressMode() behaviour.
8641 * tester.c: added --compress option
8642 * doc/*: rebuilt the documentation
8643
8644Fri Nov 19 18:41:28 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8645
8646 * HTMLparser.c: bugfixing, the damn thing MUST not crash even
8647 if given /proc/kcore as input !
8648 * doc/xml.html doc/*: updated and rebuilt the documentation
8649
8650Thu Nov 18 14:57:18 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8651
8652 * parser.c: Fixed some wrongly space collapsing code due to
8653 a misreading of the spec.
8654 * result/*: fixed the output accordingly
8655
8656Wed Nov 17 18:28:06 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8657
8658 * encoding.c: bug fix and typos
8659 * xmlIO.[ch] parser.c: first bits toward real progressive parsing
8660 * parser.c: added attribute normalization closing bug #3597
8661 * test/att* result/att* SAXresult/att*: testcase for attribute
8662 normalization
8663
8664Mon Nov 15 18:50:56 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8665
8666 * configure.in: closing bug #3163 by adding extra flags for the
8667 cc compiler on HP-UX
8668
8669Fri Nov 12 17:41:20 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8670
8671 * valid.[ch] : removed a typo and an enumerated type bug in the
8672 xmlAddElementDecl() function
8673 * tree.c : I changed xmlSetProp() and xmlNewProp() to do the
8674 call to xmlEncodeEntitiesReentrant() so that the functions
8675 New, Set and Get are at the same level.
8676 * parser.c HTMLparser.c: extra memory allocation bug for
8677 attributes detected by someone using libxml in embedded systems :-)
8678
8679Thu Oct 28 17:49:26 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8680
8681 * xmlmemory.h: turned off mem debug :-\
8682
8683Mon Oct 25 12:13:25 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8684
8685 * parser.c: closed bug #2784 a one line fix, but worth pushing
8686 a new release out
8687 * HTMLparser.c: fixed auto-close bugs on list items, zeroing
8688 some structures, comments before and after the
8689 main element, and other nastyness
8690 * HTMLtree.c tree.c: accomodate the extended HTML supported
8691 * configure.in: pushing 1.7.4
8692 * test/ent8 and related outputs : added a new test for bug #2784
8693 * test/HTML/wired.html and related output: a nasty HTML example
8694 * Makefile.am: improved the test scripts
8695 * docs/* : reran the documentation extractor, updated xml.html
8696
8697Thu Oct 14 10:29:56 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8698
8699 * HTMLparser.c, HTMLtree.c, tree.h: completely revamped the
8700 HTMLparser and debugged the HTML related code. HTML documents
8701 now have their own type
8702 * entities.c: do not dump &apos; for HTML output
8703 * xmlmemory.c: improvement, breakpoint mechanism
8704 * testHTML.c: added --sax --repeat ...
8705 * Makefile.am: improved the HTML tests
8706 * valid.[ch]: added xmlValidGetValidElements and
8707 xmlValidGetPotentialChildren
8708 * tester.c: added --insert to test the 2 new functions
8709 * test//* result//* SAXresult//* : regression test cleanup
8710 and extension.
8711 * doc/html : added doc for new modules gnome-xml-xmlmemory.html and
8712 gnome-xml-nanohttp.html
8713
8714Mon Oct 11 14:31:58 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8715
8716 * HTMLparser.c: fixed problems with some autoclose tags
8717 * tree.c: fixed XML output problems.
8718 * result/* SAXresult/*: update of the tests output
8719
8720Sat Oct 9 11:02:57 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8721
8722 * Makefile.am: Arturo patch for xmlConf.sh version info
8723 * parser.c: Tim Josling patch for single quoted items
8724 * tester.c: Tim Josling patch for tester options usage
8725 * tree.h: indent cleanup
8726
8727Fri Oct 8 16:35:37 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8728
8729 * HTMLparser.c parser.h : Fixed problems with HTML parsing
8730 reported by Kristian Hogsberg Kristensen <hogsberg@daimi.au.dk>
8731
8732Fri Oct 8 11:37:11 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8733
8734 * tree.c : Raph patch for initialization of CORBA fields
8735 * parser.c, xpath.c, ...: modification of doc comments
8736 * xpath.c : allow spaces in xpath expressions
8737
8738Mon Sep 27 10:16:43 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8739
8740 * xmlmemory.h: turning off memory debug :-(
8741
8742Sun Sep 26 13:16:54 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8743
8744 * parser.[ch] : added xmlSAXUserParseFile() and xmlSAXUserParseMemory()
8745 better SAX interfaces.
8746 * testSAX.c: uses the new SAX routine, avoid fetching any remote
8747 entity.
8748 * configure.in: 1.7.2
8749
8750Fri Sep 24 16:01:01 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8751
8752 * libxml.spec.in: fixed the URL
8753 * doc/xml.html: improved the documentation front-end
8754
8755Fri Sep 24 01:06:36 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8756
8757 * nanohttp.c: conditionned references to snprintf with HAVE_SNPRINTF
8758
8759Fri Sep 24 00:15:58 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8760
8761 * libxml.spec.in: fixed the alpha compile problem
8762 * parser.[ch]: changed errno to errNo in the parser context :-(
8763 * *.[ch]: changed CHAR to xmlChar to avoid problem on WIN32
8764 * doc/xml.html: changed CHAR to xmlChar
8765 * doc/html/*: recompiled the documentation
8766 * configure.in: 1.7.1
8767
8768Wed Sep 22 11:40:31 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8769
8770 * parser.h: modified the parser context struct to regain 1.4.0
8771 binary compatibility
8772 * parser.c, xml-error.h: added errno ot teh context and defined
8773 a set of errors values with update of errno
8774 * nanohttp.[ch]: minimalist HTTP front-end for fetching remote
8775 DTDs and entities
8776 * *.h, *.c: complete cleanup of the use of config.h and include
8777 protection depending on the current setup.
8778 * overalll debugging, maintenance and bug-fixing on all modules
8779 * updated the documentation
8780 * ready for 1.7.0
8781
8782Wed Sep 8 22:46:14 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8783
8784 * HTMLparser.c : cleanup
8785 * SAX.c valid.c valid.h: added ID/IDREF checking
8786 * tree.c tree.h: extended doc structure for refs
8787 * configure.in: 1.6.2
8788 * parser.c: patched bug in SAX user arg call
8789 * parserInternals.h: patched missing close in C++ wrapping
8790 * testXPath.c xpath.c xpath.h: prepared for extensibility,
8791 especially upcoming XPointer implementation.
8792 * doc/xml.html: augmented, typo
8793
8794Sat Sep 4 22:48:05 CEST 1999 Timur Bakeyev <mc@bat.ru>
8795
8796 * doc/Makefile.am: replaced "install -d " with "mkinstalldirs" -
8797 not all invocations of install understand -d.
8798
8799Sat Sep 4 22:20:07 CEST 1999 Timur Bakeyev <mc@bat.ru>
8800
8801 * Makefile.am: prepend all the test* calls with $(top_builddir) -
8802 to make 'check' works, when builddir != srcdir.
8803
8804Sat Sep 4 20:25:46 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8805
8806 * doc/xml.html : updated the documentation
8807
8808Fri Sep 3 00:01:08 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8809
8810 * xmlmemory.[ch] Makefile.am :added a memory wrapper to chase
8811 not deallocated memory blocks
8812 * *.c : replaces all calls to malloc() free() and realloc() to
8813 the wrapper functions/macros
8814 * tree.c : removed memory leaks dues to calling xmlFreeNode()
8815 instead of xmlFreeNodeList()
8816
8817Wed Sep 1 14:15:09 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8818
8819 * HTMLparser.c: corrected a stupid bug leading to core dump at
8820 tree deallocation. Removed warnings indicated by
8821 Stephane.Conversy@lri.fr
8822 * entities.c: Fixes Yet Another Stupid Bug, entities were not
8823 looked for in the external subset
8824
8825Mon Aug 30 13:22:26 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8826
8827 * parser.c valid.[ch] xpath.c: patched compilation warnings reported
8828 on SGI by Stephane.Conversy@lri.fr
8829
8830Sun Aug 29 22:27:29 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8831
8832 * all .h : changed the prototype declaration indent as in gtk
8833 * most .c : working on reducing the TODOs in the code
8834 * most .c : cleanup though -pedantic and Insure++
8835 * improvements on validation ID checkings.
8836 * tree.[ch] SAX.c: added support for namespace on attributes #2022
8837 * xml-config.in: closed #1810
8838
8839Mon Aug 16 03:27:38 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8840
8841 * tree.h, valid.c, valid.h: more work on validity, IDs
8842 * xpath.c: added/fixed comparidon and equlity, added a new isinf
8843 definition for AIX
8844
8845Sun Aug 15 21:15:17 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8846
8847 * Makefile.am libxml.spec.in: corrected missing xmlConf.sh in
8848 the distribution due to a cut'n paste error at last commit
8849
8850Tue Aug 10 20:28:09 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8851
8852 * configure.in: upgraded to version 1.4.0
8853 * valid.[ch], SAX.c, parser.[ch] parserInternals.h ...
8854 Big update, added a large part of the validation process,
8855 it should be usable, but some parts are missing
8856 * xpath.c: improved the implementation w.r.t. root.
8857 * Makefile.am: added more tests
8858 * test and result trees: added a lot of tests
8859 * libxml.spec.in: export libxml.so.0 and libxml.so.1
8860
8861Tue Aug 10 11:33:41 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8862
8863 * Added an HACKING file
8864
8865Tue Jul 27 21:43:00 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8866
8867 * xpath.[ch] : improvements and debug of the XPath implementation
8868 * parser.c, HTMLparser.c : modified the parsers to be progressive
8869 * tree.[ch] : extended the Buffer promitives
8870 * xmlIO.[ch] : added basic I/O routines providing progressive
8871 parsing and ready for I18N conversion plugins
8872 * SAXresult/* : the SAX callback sequence maybe slightly different
8873 now
8874 * test*.c : improved/updated the tests programs
8875 * doc/* : recompiled the docs.
8876
88771999-07-26 Michael Meeks <michael@edenproject.org>
8878
8879 * tree.h: Add const to 'content' in xmlNewDocNode, xmlNewChild
8880
8881 * tree.c: Ditto.
8882
8883Thu Jul 15 16:17:16 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8884
8885 * configure.in: upgraded to version 1.4.0
8886 * xpath.c, xpath.h, testXPath.c, makefile.am: added code for the XPath
8887 draft from W3C. Will be used by XPointer, Xlink, XSL, and possibly
8888 XML query language, see http://www.w3.org/TR/xpath for more details.
8889 * parser.c, parser.h: added CHAR* related string functions for XPath
8890 * HTMLparser.[ch], HTMLtree.c: a bit of cleanup on entities.
8891 * doc/gnome-xml.sgml, doc/html/* : added XPath and HTML documentation,
8892 rebuild the docs.
8893 * Makefile.am, test/XPath/*, result/XPath/*: added an XPathtests target
8894 and regression testing capabilities for XPath.
8895
8896Mon Jul 12 12:36:39 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8897
8898 * parser.c, HTMLparser.c: applied patch from John Ellson <ellson@lucent.com>
8899 closing bug #1646
8900
8901Mon Jul 12 11:04:44 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8902
8903 * Makefile.am, example/Makefile.am: closed bug #1683
8904
8905Sun Jul 11 18:16:34 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8906
8907 * example/Makefile.am, configure.in: added the makefile for the
8908 gjobread example
8909
8910Sat Jul 10 14:19:11 CEST 1999 Tomasz K³oczko <kloczek@pld.org.pl>
8911
8912 * doc/Makefile.am:
8913 - fix which allow "make install DESTDIR=</install/prefix>".
8914
8915Fri Jul 9 12:10:24 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8916
8917 * HTMLparser.c parser.c: applied patch from John Ellson <ellson@lucent.com>
8918 which fixed a problem on the file reading-code.
8919
8920Wed Jul 7 09:28:43 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8921
8922 * HTMLparser.[ch], HTMLtree.[ch]: more work for HTML parsing and
8923 output.
8924 * Makefile.am, test/HTML/*, result/HTML/*: added HTMLtests targetestHTMLt
8925
8926Wed Jul 7 00:25:42 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8927
8928 * parser.h : Oops removed the binary compatibility problem
8929 * HTMLparser.[ch], HTMLtree.h : More work on the HTML parse/dump
8930 * parser.c, HTMLparser.c: applied patches for reading from stdin
8931
8932Mon Jul 5 18:45:31 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8933
8934 * parser.c, entities.c, valid.c: cleanup bug #1591
8935 * configure.in: cleanup bug #1592
8936 * HTMLparser.[ch], testHTML.c: started adding an HTML parser using
8937 the same tree back-end. Hence gdome will be available for it.
8938 * doc/Makefile.am: close bug #617
8939
8940Sat Jun 26 23:36:38 EDT 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8941
8942 * parser.c: alloctate a per parser context SAX interface block
8943
8944Tue Jun 22 23:46:32 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8945
8946 * released 1.3.0 with xmlEncodeEntities restoring old behaviour
8947 and xmlEncodeEntitiesReentrant with the correct one :-\
8948
8949Mon Jun 21 14:07:53 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8950
8951 * commit of my internal XML base changes, quite a lot of
8952 changes, cleanups, better entities support, framework for
8953 new I/O and charset detection and handling
8954 * Fixed the configure/Makefile stuff to generate shared libs
8955 with the proper version info, so we jumped on rev from
8956 0.0.0 to 1.2.0 ! The binary interfaces have been broken,
8957 xmlEncodeEntities() result need to be freed now, and a string
8958 xmlParserVersion provide the current library version.
8959
8960Tue Jun 15 14:24:19 1999 Raph Levien <raph@acm.org>
8961
8962 * parser.c: fixed a buffer overrun for when you have a very long
8963 attribute with no entities in it.
8964
8965Mon Jun 14 00:17:50 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8966
8967 * added example directory
8968 * added example/gjobs.xml gjobread.c, still need a Makefile.in
8969
8970Wed Jun 2 19:40:58 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8971
8972 * Release of libxml-1.1, nearly everything has been touched for
8973 this.
8974 * Added more regression tests
8975 * Updated the documentation
8976
8977Sat May 29 13:34:42 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8978
8979 * tree.[ch]: unified the XML_NO_CORBA defines.
8980 * parser.c encoding.[ch]: started plugging in char encoding detection
8981
8982Fri May 28 22:58:42 EDT 1999 Manish Vachharajani <mvachhar@vger.rutgers.edu>
8983
8984 * tree.c: (xmlSaveFile) - removed double call of xmlContentDump.
8985 Also freed allocated buffer.
8986
8987Wed Apr 21 22:07:35 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8988 * parser.[ch] tree.[ch] entities.[ch] valid.[ch] : removed the main
8989 reentrancy problem at printing. One is left in entities.c, to
8990 remove ASAP
8991 * testSAX.c : added a test example showing the use of the SAX
8992 interface if one doesn't want to build the DOM tree.
8993 * html/gnome-xml-*.html html/index.sgml: regenerated the documentation
8994
8995Mon Apr 5 14:14:40 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
8996
8997 * parser.[ch] tree.[ch] SAX.c, parserInternals.h valid.[ch]:
8998 large revamping of the parser to use SAX callbacks
8999 http://www.megginson.com/SAX/ (or at least a C like interface
9000 a la Expat). It's now possible to set up your own callbacks
9001 and the parser will not build a DOM tree.
9002 * test/* result/*: updated the test suite, I finally removed
9003 the old Namespace draft support (PI based).
9004
9005Fri Apr 2 17:57:32 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
9006
9007 * Makefile.am: added test result to EXTRA_DIST for make tests
9008
9009Wed Mar 24 21:37:02 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
9010
9011 * parser.c, parserInternals.h: moved the chars macro definitions
9012 to parserInternals.h
9013 * parser.c, error.c: applied patches from "Knut Åkesson"
9014 <ka@s2.chalmers.se> for clean compilation under MSVC 6 :-o
9015
9016Tue Mar 23 11:10:15 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
9017
9018 * xml-config.in : applied patch to make --version work
9019
90201999-03-05 Raja R Harinath <harinath@cs.umn.edu>
9021
9022 * Makefile.am (check-local): Alias for `tests' target. This will
9023 cause `make check' to do the right thing.
9024 (tests): Don't run tests in srcdir. Also, replaced calls to
9025 basename with a `sed' "equivalent".
9026
9027Fri Mar 5 07:23:53 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
9028
9029 * Renamed error.h to xml-error.h, corrected Makefile.am to list
9030 it in the header and not the sources, updated the doc.
9031 Thanks to Tim Mooney <mooney@dogbert.cc.ndsu.nodak.edu> for
9032 pointing this out.
9033
9034Mon Mar 1 13:27:17 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
9035
9036 * parser.c, parser.h, parserInternals.h: memory leak hunting,
9037 exported the inputStream routines.
9038 * doc/html/* : updated accordingly
9039
9040Sun Feb 28 22:51:33 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
9041
9042 * parser.c, parser.h, parserInternals.h: added a few extra
9043 internal calls to allocate and free parser contexts ...
9044 * doc/html/* : updated accordingly
9045
9046Thu Feb 25 11:52:24 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
9047
9048 * configure.in, Makefile.am, doc/makefile.am : General changes for
9049 1.0.0 release and including the generated HTML documentation.
9050
9051Thu Feb 25 09:44:52 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
9052
9053 * makefile.am : added parserInternals.h, oops.
9054
9055Mon Feb 22 11:24:56 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
9056
9057 * parserInternals.h: added this header giving access to the parser
9058 internal functions.
9059 * doc/Makefile.am : added a rebuild target which rebuilds the full
9060 set of documentations
9061 * parser.[ch] tree.[ch] valid.[ch]: serious updates w.r.t. parsing
9062 the internal subset.
9063 * *.c *.h: modifications needed to generate the documentation using
9064 gtk-doc, cleanup of functions blocks, reorganisation of struct
9065 declarations.
9066
9067Tue Feb 16 17:27:29 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
9068
9069 * Makefile.am, spec, doc/Makefile.am : upgrading to 0.99.8, fixing
9070 the tar and spec file to include the beginning of the doc.
9071
90721999-02-13 Nuno Ferreira <nmrf@rnl.ist.utl.pt>
9073
9074 * doc/.cvsignore: Added this file.
9075
9076Mon Feb 8 19:27:56 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
9077
9078 * tree.c: fixed xmlGetProp to return "" when the attribute
9079 exists, even if the node-list is NULL.
9080
9081Mon Feb 8 16:10:15 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
9082
9083 * tree.c: patched an error outputting empty attribute values.
9084 * Makefile.am and doc/makefile.am: have been updated during the
9085 week-end. Sorry for an empty CVS log, I got a shell problem.
9086
9087Mon Feb 1 12:10:13 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
9088
9089 * tree.h: cleaned up using enums instead of defines
9090 * parser.c, valid.[ch]: more work on parsing/output of element
9091 declarations
9092
9093Sun Jan 31 22:06:48 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
9094
9095 * valid.[ch], tree.c, parser.c : more work toward full parsing
9096 of XML DTDs.
9097 * README: added informations about mailing-list and on-line
9098 documentation
9099
91001999-01-27 Raja R Harinath <harinath@cs.umn.edu>
9101
9102 * configure.in (XML_INCLUDEDIR): Use -I not -L for includes.
9103
9104Sun Jan 17 20:06:36 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
9105
9106 * parser.c, tree.[ch] : more work toward conformance testing,
9107 added a last element to accelerate parsing of very flat structures
9108 started working on internal subset Element content declaration.
9109 * valid.[ch] : first cut at adding code toward validation.
9110 * previous changes had also small impact on most files, especially
9111 the conformance testing using James Clark test suite.
9112
9113Sun Jan 17 14:45:06 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
9114
9115 * test/* : updated the examples, most of them were not well
9116 formed (humm), and added rdf2.
9117 * result/* : resulting changes in the output.
9118
9119Sun Dec 6 13:06:58 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9120
9121 * tree.c: changed the behaviour of xmlGetProp on NULL values.
9122
9123Sat Dec 5 12:25:09 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9124
9125 * tree.c: patched a bug in the generation of empty attributes
9126
9127Fri Nov 27 01:36:54 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9128
9129 * entities.[ch], tree.[ch], tester.c: added copy interfaces
9130 for node/trees/documents/... Biggest problem is namespace
9131 support when copying subtrees.
9132
9133Sun Nov 15 19:59:47 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9134
9135 * parser.c, entities.c: improve entities and char ref encoding,
9136 and cleanups of error messages.
9137
9138Fri Nov 13 13:03:10 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9139
9140 * parser.c, entities.c: simple bug hunting done during rpm2html and
9141 rpmfind integration.
9142
9143Sun Nov 8 13:11:07 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9144
9145 * parser.[ch]: Added interfaces allowing to specify a SAX
9146 handler before parsing.
9147
9148Sun Nov 8 09:39:17 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9149
9150 * parser.c: redirrect all errors reporting through the SAX
9151 error function
9152
9153Wed Nov 4 14:21:54 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9154
9155 * entities.c: rather use HAVE_SNPRINTF and not depend on glib
9156 * libtool, tlmain ...: update of the libtool files
9157
91581998-11-04 Miguel de Icaza <miguel@nuclecu.unam.mx>
9159
9160 * entities.c: Use g_snprintf insteda of snprintf.
9161
9162Sun Nov 1 14:31:06 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9163
9164 * entities.c, parser.c: debug and cleanup of CharRef handling/saving.
9165 added ent5 test for this purpose.
9166 * parser.c, parser.h: formatting, comments and UTF-8 planning.
9167
9168Fri Oct 30 01:36:52 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9169
9170 * parser.c: fixed? a strange error due to compression on a GWP
9171 document.
9172
9173Thu Oct 29 00:48:45 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9174
9175 * tree.[ch]: bug fixing
9176 * entities.[ch]: defined a specific type for predefined entities
9177 * doc/xml.html: more documentation on the library, how to use it,
9178 overview of the interfaces.
9179
9180Wed Oct 28 17:56:35 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9181
9182 * tree.[ch]: more cleanup on the API, made the tree mor conformant.
9183
9184Tue Oct 27 17:54:00 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9185
9186 * tree.c: corrected a small bug
9187 * doc/xml.html: continuing writing documentation.
9188
9189Tue Oct 27 17:54:00 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9190
9191 * debugXML.h debugXML.c: added debugging utilities.
9192 * tester.c: added --debug switch.
9193 * tree.c: patched an incorrect node->type assignment.
9194 * parser.c: formatting, ensure that node->doc != NULL in attributes
9195
9196Tue Oct 27 01:15:39 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9197
9198 * parser.[ch] SAX.c tree.[ch]: large amount of changes to improve
9199 entity support and provide an internal representation close to
9200 DOM one (entity ref nodes, and attribute value as tree). I tried
9201 to preserve the interface but this will surely break some apps
9202 (I have to change rpm2html/rpmfind for example). I had to change
9203 two interfaces, and the generated tree is somewhat different.
9204 * doc/* : started documenting the XML library, the tree and
9205 DOM/Corba. This is a first step.
9206
9207Sat Oct 24 14:23:51 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9208
9209 * parser.c: Set up the fonctions comment block, boring but useful.
9210 * parser.h, SAX.c, parser.c: now attributes are processed through
9211 the SAX interface. The problem is that my SAX interface diverged
9212 quite a bit from the original one, well this is not an official
9213 spec, and translating it from Java to C is hairy anyway...
9214
9215Tue Oct 20 02:11:21 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9216
9217 * SAX.c, entities.c, tree.c, encoding.c, error.c: Set up the
9218 fonctions comment block, boring but useful.
9219
9220Sun Oct 18 20:40:58 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9221
9222 * encoding.[ch], Makefile.am: Added the UTF-8, UTF-16 and ISO Latin 1
9223 conversion routines. However they are not yet used to convert the
9224 inputs. The core will run with UTF-8.
9225
9226Sun Oct 18 15:08:19 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9227
9228 * tree.c : make sure that the type id is properly set-up when
9229 a new object is allocated, needed for DOM.
9230
9231Sat Oct 17 02:43:21 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9232
9233 * tree.h, tree.c: Ok, the main objects in the tree will be native
9234 corba objects, it costs 8 bytes per Node, Attribute and Document
9235 but it simplifies the Corba integration a lot (no extra interface
9236 objects to allocate/free).
9237
9238Tue Oct 13 21:46:57 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9239
9240 * tree.h, tree.c, parser.c: added prev and doc pointers to Node,
9241 and changed NODEs contants for conformity with DOM Level 1
9242
9243Wed Oct 7 23:42:46 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9244
9245 * added hooks to keep track of servants when creating objects
9246 xmlDoc and xmlNode (for Corba export).
9247
9248Sun Oct 4 03:18:09 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9249
9250 * added xml-config script.
9251
9252Thu Oct 1 16:22:37 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9253
9254 * autogen.sh : applied patch from Frederic Devernay <devernay@istar.fr>
9255 to autoupdate libtool and automake conf files.
9256
92571998-09-30 Miguel de Icaza <miguel@nuclecu.unam.mx>
9258
9259 * Makefile.am: Use '?' to separate the sed
9260 commands as ',' is used when people pass -Wl,something.
9261
9262
9263Thu Sep 24 15:13:29 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9264
9265 * tree.c, tree.h: added a per-document compression interface.
9266
9267Tue Sep 22 20:47:38 EDT 1998
9268
9269 * tree.c, tree.h: added saving with compression and added interfaces
9270 to control the compression level (xmlGetCompressMode,
9271 xmlSetCompressMode) and a new save to filename function (xmlSaveFile).
9272
9273Mon Sep 21 20:11:13 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9274
9275 * parser.c: corrected a loop for files of size 0
9276
92771998-08-20 Raja R Harinath <harinath@cs.umn.edu>
9278
9279 * error.h: New file. Contains prototyes from `error.c'.
9280
9281Thu Aug 13 19:02:34 1998 Tom Tromey <tromey@cygnus.com>
9282
9283 * Makefile.am (xmlincdir): New macro.
9284 (xmlinc_HEADERS): Renamed from include_HEADERS.
9285
9286Thu Aug 13 00:40:14 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9287
9288 * applied small patch on numeric entities from
9289 Christopher Blizzard <blizzard@appliedtheory.com>
9290
9291Wed Aug 12 23:12:58 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9292
9293 * New release 0.2, removed the old xml_* files so that it's
9294 coherent with the other CVS base (W3C), far better conformance
9295 to standard, new namespaces, decent entities support, beginning
9296 of a SAX-like interface. Nearly nothing left intact, even the
9297 test examples ...
9298
92991998-07-30 Christopher Blizzard <blizzard@appliedtheory.com>
9300
9301 * .cvsignore: Add .deps dir
9302
9303Sun Jul 26 17:29:52 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9304
9305 * xml_tree: changed the memory allocation scheme for name in xmlNewNode
9306
9307Sun Jul 26 00:17:51 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9308
9309 * configure.in: added test for CPP
9310 * AUTHORS, Changelog: the original ones didn't get commited but the
9311 glib ones instead, fixed.
9312 * Makefile.am: corrected an error in library naming
9313
9314Fri Jul 24 16:47:14 1998 Daniel Veillard <Daniel.Veillard@w3.org>
9315
9316 * integrated code developped at W3C
9317 * changed the original Copyright
9318 * migrated to automake
9319 * prefixed the filenames by xml_ to avoid filename clashes
9320
Daniel Veillarde0ed10c2003-01-06 11:06:26 +00009321Mon Jan 6 12:05:12 CET 2003 Daniel Veillard <daniel@veillard.com>
9322
9323 * doc/tutorial/* : fixed #101894 if doc == NULL xmlFreeDoc
9324 should not be called.
9325
Daniel Veillard0aaaacd2003-01-06 10:59:57 +00009326Mon Jan 6 11:59:09 CET 2003 Daniel Veillard <daniel@veillard.com>
9327
9328 * libxml-2.0.pc.in: applied the patch to fix #101894
9329
Daniel Veillard8a1b1852003-01-05 22:37:17 +00009330Sun Jan 5 23:35:47 CET 2003 Daniel Veillard <daniel@veillard.com>
9331
9332 * tree.c : applied patch from Lukas Schroeder for register callbacks
9333 * valid.c: modified patch from Lukas Schroeder to test
9334 register callbacks with --chkregister
9335
Daniel Veillard067bae52003-01-05 01:27:54 +00009336Sun Jan 5 02:23:20 CET 2003 Daniel Veillard <daniel@veillard.com>
9337
9338 * xmlreader.c: seriously changed the way data are pushed to
9339 the underlying parser, go by block of 512 bytes instead of
9340 tryng to detect tag boundaries at that level. Changed the
9341 way empty element are detected and tagged.
9342 * python/tests/reader.py python/tests/reader2.py
9343 python/tests/reader3.py: small changes mostly due to context
9344 reporting being different and DTD node being reported. Some
9345 errors previously undetected are now caught and fixed.
9346 * doc/xmlreader.html: flagged last section as TODO
9347
Daniel Veillard51a447a2003-01-04 19:42:46 +00009348Sat Jan 4 20:40:28 CET 2003 Daniel Veillard <daniel@veillard.com>
9349
9350 * python/libxml.py: integrated the Python 2.2 optimizations
9351 from Hannu Krosing, while maintaining compatibility with
9352 1.5 and 2.1
9353
Daniel Veillarde59494f2003-01-04 16:35:29 +00009354Sat Jan 4 17:33:17 CET 2003 Daniel Veillard <daniel@veillard.com>
9355
9356 * xmllint.c: a bit of cleanup
9357 * xmlreader.c: small fix
9358 * doc/xmlreader.html: more work on the XmlTextReader tutorial
9359 * python/libxml.py: a few fixes pointed out by Hannu Krosing
9360
Daniel Veillard623a9eb2003-01-04 12:47:20 +00009361Sat Jan 4 13:46:14 CET 2003 Daniel Veillard <daniel@veillard.com>
9362
9363 * python/setup.py.in: patch from Stéphane Bidoul to include
9364 drv_libxml2.py in setup.py
9365
Daniel Veillard66b82892003-01-04 00:44:13 +00009366Sat Jan 4 01:43:06 CET 2003 Daniel Veillard <daniel@veillard.com>
9367
9368 * doc/xmlreader.html: starting documenting the new XmlTextReader
9369 interface.
9370
Daniel Veillard7704fb12003-01-03 16:19:51 +00009371Fri Jan 3 17:18:32 CET 2003 Daniel Veillard <daniel@veillard.com>
9372
9373 * xmllint.c: added the --stream flag to use the TextReader API
9374 * xmlreader.c: small performance tweak
9375
Daniel Veillarda80ff6e2003-01-03 12:52:08 +00009376Fri Jan 3 13:50:55 CET 2003 Daniel Veillard <daniel@veillard.com>
9377
9378 * xmlreader.c python/tests/reader2py: okay the DTD validation
9379 code on top of the XMLTextParser API should be solid now.
9380
Daniel Veillard1fdfd112003-01-03 01:18:43 +00009381Fri Jan 3 02:17:18 CET 2003 Daniel Veillard <daniel@veillard.com>
9382
9383 * xmlreader.c python/tests/reader2py: Fixing some more mess
9384 with validation and recursive entities while using the
9385 reader interface, it's getting a bit messy...
9386
Daniel Veillarddab8ea92003-01-02 14:16:45 +00009387Thu Jan 2 15:15:26 CET 2003 Daniel Veillard <daniel@veillard.com>
9388
9389 * xmlreader.c python/tests/reader.py: another couple of problem
9390 related to IsEmptyElement reported by Stéphane Bidoul needed
9391 some fixes.
9392
Daniel Veillard4f860202003-01-02 13:00:02 +00009393Thu Jan 2 13:57:07 CET 2003 Daniel Veillard <daniel@veillard.com>
9394
9395 * libxml.spec.in python/Makefile.am python/drv_libxml2.py:
9396 integrated drv_libxml2.py Python xml.sax driver from Stéphane Bidoul
9397 based on the python XmlTextReader interface.
9398
Daniel Veillard3c265e42003-01-01 21:06:49 +00009399Wed Jan 1 22:05:40 CET 2003 Daniel Veillard <daniel@veillard.com>
9400
9401 * tree.c: backing out one change in the last patch which broke the
9402 regression tests
9403
Daniel Veillard5335dc52003-01-01 20:59:38 +00009404Wed Jan 1 21:57:28 CET 2003 Daniel Veillard <daniel@veillard.com>
9405
9406 * global.data globals.c tree.c include/libxml/globals.h: applied
9407 an old patch from Lukas Schroeder to track node creation and
9408 destruction. Probably missing a lot of references at the moment
9409 and not usable reliably.
9410
Daniel Veillard8ba17412003-01-01 19:13:12 +00009411Wed Jan 1 20:12:07 CET 2003 Daniel Veillard <daniel@veillard.com>
9412
9413 * NEWS doc/Makefile.am doc/news.xsl: generate the NEWS file
9414 from doc/news.html and a stylesheet
9415
Daniel Veillarde3c036e2003-01-01 15:11:05 +00009416Wed Jan 1 16:09:57 CET 2003 Daniel Veillard <daniel@veillard.com>
9417
9418 * xmlreader.c python/tests/reader.py: fixed another couple of
9419 xmlreader bugs reported by Stéphane Bidoul and added tests.
9420
Daniel Veillard9e395c22003-01-01 14:50:44 +00009421Wed Jan 1 15:42:54 CET 2003 Daniel Veillard <daniel@veillard.com>
9422
9423 * xmlreader.c python/tests/reader2.py: fixed another validity
9424 checking in external parsed entities raised by Stéphane Bidoul
9425 and added a specific regression test.
9426 * python/tests/reader3.py: cleanup
9427
Daniel Veillardd5896142002-12-31 14:45:26 +00009428Tue Dec 31 15:44:02 CET 2002 Daniel Veillard <daniel@veillard.com>
9429
9430 * xmlreader.c python/tests/reader2.py: fixed a problem with
9431 validation within entities pointed by Stéphane Bidoul, augmented
9432 the tests to catch those.
9433
Daniel Veillarddc85f282002-12-31 11:18:37 +00009434Tue Dec 31 12:15:37 CET 2002 Daniel Veillard <daniel@veillard.com>
9435
9436 * python/generator.py: modified the generator to allow keeping
9437 class references when creating new classes, needed to fix a bug
9438 pointed by Stéphane Bidoul where the input buffer of the
9439 xmlTextReader instance gets destroyed if the python wrapper for
9440 the input is not referenced anymore.
9441
Daniel Veillard4d8db8a2002-12-30 18:40:42 +00009442Mon Dec 30 19:39:36 CET 2002 Daniel Veillard <daniel@veillard.com>
9443
9444 * xmlreader.c python/tests/reader.py: fixed another pair of problem
9445 pointed by Stéphane Bidoul: depth start at 0 and a parse problem.
9446
Daniel Veillard571b8892002-12-30 12:37:59 +00009447Mon Dec 30 13:36:50 CET 2002 Daniel Veillard <daniel@veillard.com>
9448
9449 * xmlreader.c python/tests/reader.py: fixed another problem
9450 pointed by Stéphane Bidoul
9451
Daniel Veillardaaa105b2002-12-30 11:42:17 +00009452Mon Dec 30 12:39:55 CET 2002 Daniel Veillard <daniel@veillard.com>
9453
9454 * xmlreader.c python/tests/reader.py: fixed a limit case problem
9455 with "<a/>"
9456
Daniel Veillardecaba492002-12-30 10:55:29 +00009457Mon Dec 30 11:53:44 CET 2002 Daniel Veillard <daniel@veillard.com>
9458
9459 * SAX.c: warn on xmlns:prefix="foo"
9460 * xmlreader.c python/tests/reader.py: fixed a couple of problem
9461 for namespace attributes handling.
9462
Daniel Veillard2d84a892002-12-30 00:01:08 +00009463Mon Dec 30 00:59:07 CET 2002 Daniel Veillard <daniel@veillard.com>
9464
9465 * entities.c parser.c tree.c include/libxml/entities.h: Fixed
9466 a really nasty problem raised by a DocBook XSLT transform
9467 provided by Sebastian Bergmann
9468
Daniel Veillard29b3e282002-12-29 11:14:41 +00009469Sun Dec 29 12:13:18 CET 2002 Daniel Veillard <daniel@veillard.com>
9470
9471 * xmlreader.c python/tests/reader.py: fixed a bug pointed out
9472 by Stéphane Bidoul and integrated it into the tests
9473
Daniel Veillarde18fc182002-12-28 22:56:33 +00009474Sat Dec 28 23:49:12 CET 2002 Daniel Veillard <daniel@veillard.com>
9475
9476 * xmlreader.c include/libxml/xmlreader.h doc/libxml2-api.xml:
9477 extended the XmlTextReader API a bit, addding accessors for
9478 the current doc and node, and an entity substitution mode for
9479 the parser.
9480 * python/libxml.py python/libxml2class.txt: related updates
9481 * python/tests/Makefile.am python/tests/reader.py
9482 python/tests/reader2.py python/tests/reader3.py: updated a bit
9483 the old tests and added a new one to test the entities handling
9484
Daniel Veillardaba976d2002-12-28 21:14:18 +00009485Sat Dec 28 22:11:57 CET 2002 Daniel Veillard <daniel@veillard.com>
9486
9487 * python/generator.py python/libxml2class.txt
9488 python/tests/reader.py python/tests/reader2.py: changed the
9489 generator to provide casing for the XmlTextReader similar to
9490 C# so that examples and documentation are more directly transposable.
9491 Fixed the couple of tests in the suite.
9492
Daniel Veillard83298842002-12-28 15:12:33 +00009493Sat Dec 28 15:55:32 CET 2002 Daniel Veillard <daniel@veillard.com>
9494
9495 * doc/guidelines.html: added a document on guildeline for
9496 publishing and deploying XML
9497
Daniel Veillard336fc7d2002-12-27 19:37:04 +00009498Fri Dec 27 20:35:15 CET 2002 Daniel Veillard <daniel@veillard.com>
9499
9500 * valid.c xmlreader.c: final touch running DTD validation
9501 on the XmlTextReader
9502 * python/tests/Makefile.am python/tests/reader2.py: added a
9503 specific run based on the examples from test/valid/*.xml
9504
Daniel Veillardf25b4ca2002-12-27 15:18:35 +00009505Fri Dec 27 15:17:20 CET 2002 Daniel Veillard <daniel@veillard.com>
9506
9507 * python/libxml.py: added a few predefined xmlTextReader parser
9508 configuration values.
9509
Daniel Veillard0e9dafa2002-12-27 11:58:25 +00009510Fri Dec 27 12:57:22 CET 2002 Daniel Veillard <daniel@veillard.com>
9511
9512 * python/libxml_wrap.h: trying to fix #102037
9513
Daniel Veillard8dbd4952002-12-27 11:34:48 +00009514Fri Dec 27 12:18:14 CET 2002 Daniel Veillard <daniel@veillard.com>
9515
9516 * SAX.c: fixing bug #95296, when the predefined entities
9517 are redefined in the DTD the default one must be used
9518 instead anyway.
9519
MST 2002 John Fleck6647aed2002-12-26 02:23:24 +00009520Wed Dec 25 19:22:06 MST 2002 John Fleck <jfleck@inkstain.net>
9521
9522 * doc/xmllint.xml
9523 * doc/xmllint.1
9524 Add discussion of XML_DEBUG_CATALOG to xmllint man
9525 page - bug #100907
9526
9527
Daniel Veillarddf512f42002-12-23 15:56:21 +00009528Mon Dec 23 16:54:22 CET 2002 Daniel Veillard <daniel@veillard.com>
9529
9530 * xmlreader.c: Fixed the empty node detection to avoid reporting
9531 an inexistant close tag.
9532
Daniel Veillard0d132cf2002-12-23 14:43:32 +00009533Mon Dec 23 15:42:24 CET 2002 Daniel Veillard <daniel@veillard.com>
9534
9535 * python/libxml.c python/setup.py.in: patch from Stéphane Bidoul
9536 for Python 2.1
9537
Daniel Veillardfe8aab92002-12-22 10:25:41 +00009538Sun Dec 22 11:24:06 CET 2002 Daniel Veillard <daniel@veillard.com>
9539
9540 * testC14N.c vms/config.vms: applied Craig A. Berry patches for VMS
9541
Daniel Veillard4258b9c2002-12-20 10:29:40 +00009542Fri Dec 20 11:27:49 CET 2002 Daniel Veillard <daniel@veillard.com>
9543
9544 * doc/libxml2-api.xml python/tests/reader.py: one really need
9545 to provide the base URI information when creating a reader parser
9546 from an input stream. Updated the API and the example using it.
9547
Daniel Veillardea7751d2002-12-20 00:16:24 +00009548Fri Dec 20 01:11:30 CET 2002 Daniel Veillard <daniel@veillard.com>
9549
9550 * testReader.c xmlreader.c valid.c include/libxml/tree.h
9551 include/libxml/valid.h include/libxml/xmlreader.h: working on
9552 DTD validation on top of xml reader interfaces. Allows to
9553 validate arbitrary large instances. This required some extensions
9554 to the valid module interface and augmenting the size of xmlID
9555 and xmlRef structs a bit.
9556 * uri.c xmlregexp.c: simple cleanup.
9557
Daniel Veillardbeb70bd2002-12-18 14:53:54 +00009558Wed Dec 18 15:51:22 CET 2002 Daniel Veillard <daniel@veillard.com>
9559
9560 * xmlreader.c include/libxml/xmlreader.h doc/libxml2-api.xml: more
9561 work on the xml reader interfaces.
9562 * AUTHORS MAINTAINERS doc/* win32/*: updated Igor's mail and the
9563 Web page for the Windows binaries.
9564
Daniel Veillard4a6d39b2002-12-17 18:33:01 +00009565Tue Dec 17 19:31:07 CET 2002 Daniel Veillard <daniel@veillard.com>
9566
9567 * xmlIO.c: applied a patch for VMS following the report by
9568 Nigel Hall
9569
Daniel Veillard3772de32002-12-17 10:31:45 +00009570Tue Dec 17 11:29:41 CET 2002 Daniel Veillard <daniel@veillard.com>
9571
9572 * parser.c: the parseStartTag bug fix wasn't complete.
9573
Daniel Veillard67df8092002-12-16 22:04:11 +00009574Mon Dec 16 23:00:05 CET 2002 Daniel Veillard <daniel@veillard.com>
9575
9576 * parser.c: Vyacheslav Pindyura managed to trigger a bug in
9577 parseStartTag, fixing it.
9578 * test/att4 result/att4 result/noent/att4: adding the test
9579 * xmlreader.c include/libxml/xmlreader.h doc/libxml2-api.xml: added
9580 more methods to XmlTextReader.
9581
Igor Zlatkovicd453c632002-12-16 18:45:48 +00009582Mon Dec 16 19:31:16 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
9583
9584 * win32/libxml2.def.src: added more xml reader exports
9585 * win32/Makefile.msvc win32/Makefile.mingw: added xml reader interface
9586 to the build
9587
MST 2002 John Fleck7c67a832002-12-16 13:38:06 +00009588Mon Dec 16 06:36:54 MST 2002 John Fleck <jfleck@inkstain.net>
9589
9590 * doc/tutorial/xmltutorial.xml
9591 plus generated html and pdf
9592 Updating tutorial again based on further comments from Niraj
9593 Tolia on the last iteration
9594
MST 2002 John Fleck44aacb32002-12-16 04:34:57 +00009595Sun Dec 15 21:27:30 MST 2002 John Fleck <jfleck@inkstain.net>
9596
9597 * doc/tutorial/xmltutorial.xml
9598 * doc/tutorial/includekeyword.c
9599 * doc/tutorial/includegetattribute.c
9600 plus generated html and pdf
9601 Adding fix from Niraj Tolia to tutorial to properly free memory.
9602
9603
Daniel Veillardda46d2d2002-12-15 23:36:49 +00009604Mon Dec 16 00:34:25 CET 2002 Daniel Veillard <daniel@veillard.com>
9605
9606 * xmlreader.c include/libxml/xmlreader.h doc/libxml2-api.xml: added
9607 more methods of XmlTextReader.
9608 * python/libxml2class.txt python/tests/reader.py: this increased the
9609 methods in the bndings, augmented the test to check those new
9610 functions.
9611
Daniel Veillard0eb38c72002-12-14 23:00:35 +00009612Sat Dec 14 23:57:39 CET 2002 Daniel Veillard <daniel@veillard.com>
9613
9614 * xmlreader.c doc/libxml2-api.xml: added the close and getattribute
9615 methods of XmlTextReader.
9616 * python/generator.py python/libxml_wrap.h python/types.c
9617 python/libxml2class.txt: added the reader to the Python bindings
9618 * python/tests/Makefile.am python/tests/reader.py: added a specific
9619 test for the Python bindings of the Reader APIs
9620 * parser.c: small cleanup.
9621
Daniel Veillard06503452002-12-13 10:42:08 +00009622Fri Dec 13 11:39:44 CET 2002 Daniel Veillard <daniel@veillard.com>
9623
9624 * xinclude.c: fallback was only copying the first child not the
9625 full child list of the fallback element, closes #89684 as reopened
9626 by Bernd Kuemmerlen
9627
Igor Zlatkovic2d45f522002-12-12 12:33:43 +00009628Thu Dec 12 13:34:59 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
9629
9630 * win32/libxml2.def.src: exported htmlNodeDumpOutput
9631
Daniel Veillard000eafb2002-12-12 10:04:22 +00009632Thu Dec 12 10:59:11 CET 2002 Daniel Veillard <daniel@veillard.com>
9633
Daniel Veillardc1eed322002-12-12 11:01:32 +00009634 * configure.in: preparing release of 2.4.30
Daniel Veillard000eafb2002-12-12 10:04:22 +00009635 * doc/apibuild.py doc/libxml2-api.xml: fixups to the api builder,
Daniel Veillardc1eed322002-12-12 11:01:32 +00009636 gives enum values, fix functype return type, put back fields in
9637 structs
9638 * doc/*: updated the docs rebuilt
Daniel Veillard000eafb2002-12-12 10:04:22 +00009639
Daniel Veillard024b5702002-12-12 00:15:55 +00009640Thu Dec 12 01:09:34 CET 2002 Daniel Veillard <daniel@veillard.com>
9641
9642 * HTMLtree.c include/libxml/HTMLtree.h: patch from Mark Vadok
9643 about htmlNodeDumpOutput location.
9644 * xpath.c: removed an undefined function signature
9645 * doc/apibuild.py doc/libxml2-api.xml: the script was exporting
9646 too many symbols in the API breaking the python bindings.
9647 Updated with the libxslt/libexslt changes.
9648
Daniel Veillard9b4bb4d2002-12-11 19:28:47 +00009649Wed Dec 11 20:26:15 CET 2002 Daniel Veillard <daniel@veillard.com>
9650
9651 * configure.in: preparing release of 2.4.29
9652 * doc/*: rebuilt the docs and API
9653 * xmlreader.c: a few more fixes for the XmlTextReader API
9654
Igor Zlatkovicf6273a02002-12-11 17:00:54 +00009655Wed Dec 11 18:01:15 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
9656
9657 * include/win32config.h: applied mingw patch from Magnus Henoch
9658
Daniel Veillard5aad8322002-12-11 15:59:44 +00009659Wed Dec 11 16:58:48 CET 2002 Daniel Veillard <daniel@veillard.com>
9660
9661 * catalog.c doc/libxml2-api.xml: a bit more cleanup
9662
Daniel Veillarda9b66d02002-12-11 14:23:49 +00009663Wed Dec 11 14:54:47 CET 2002 Daniel Veillard <daniel@veillard.com>
9664
9665 * doc/apibuild.py doc/libxml2-api.xml doc/Makefile.am: new API
9666 building Python script, does the C parsing directly, generates
9667 a better API description including structure fieds defs and
9668 enums. Still a couple of bugs, but good enough for the python
9669 wrappers now.
9670 * DOCBparser.c SAX.c nanohttp.c parser.c parserInternals.c tree.c
9671 valid.c xmlIO.c xmlmemory.c xmlreader.c xmlregexp.c xmlschemas.c
9672 include/libxml/schemasInternals.h include/libxml/tree.h: more
9673 cleanup based on the python analysis script reports.
9674 * libxml.spec.in: make sure the API XML description is part of the
9675 devel package.
9676
Daniel Veillard01c13b52002-12-10 15:19:08 +00009677Tue Dec 10 16:16:34 CET 2002 Daniel Veillard <daniel@veillard.com>
9678
9679 * DOCBparser.c HTMLparser.c c14n.c debugXML.c encoding.c hash.c
9680 nanoftp.c nanohttp.c parser.c parserInternals.c testC14N.c
9681 testDocbook.c threads.c tree.c valid.c xmlIO.c xmllint.c xmlmemory.c
9682 xmlreader.c xmlregexp.c xmlschemas.c xmlschemastypes.c xpath.c:
9683 code cleanup, especially the function comments.
9684 * tree.c: fixed a small bug when freeing nodes which are XInclude ones.
9685
Daniel Veillarde1ca5032002-12-09 14:13:43 +00009686Mon Dec 9 15:08:17 CET 2002 Daniel Veillard <daniel@veillard.com>
9687
9688 * Makefile.am xmlreader.c include/libxml/Makefile.am
9689 include/libxml/xmlreader.h: Adding a new set of APIs based on
9690 the C# TextXmlReader API but converted to C. Allow to parse
9691 in constant memory usage, far simpler to program and explain
9692 than the SAX like APIs, unfinished but working.
9693 * testReader.c: test program
9694
Igor Zlatkovic70a296c2002-12-08 17:34:54 +00009695Sun Dec 8 18:36:01 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
9696
9697 * win32/libxml2.def.src: applied YALDSP from Mark Vakoc
9698
Daniel Veillard64b35282002-12-04 15:10:40 +00009699Wed Dec 4 16:08:49 CET 2002 Daniel Veillard <daniel@veillard.com>
9700
9701 * tree.c: Chip turner indicated that XHTML1 serialization
9702 rule for style actually break on both IE and Mozilla,
9703 try to avoid the rule if escaping ain't necessary
9704
Daniel Veillard8efff672002-12-04 11:44:48 +00009705Wed Dec 4 12:43:28 CET 2002 Daniel Veillard <daniel@veillard.com>
9706
9707 * nanhttp.c: handle HTTP URL escaping, problem reported by
9708 Glen Nakamura and Stefano Zacchiroli
9709
Daniel Veillard1c732d22002-11-30 11:22:59 +00009710Sat Nov 30 12:19:17 CET 2002 Daniel Veillard <daniel@veillard.com>
9711
9712 * DOCBparser.c HTMLparser.c parser.c valid.c xpath.c: code cleanup
9713
Daniel Veillardfdd27d22002-11-28 11:55:38 +00009714Thu Nov 28 12:53:22 CET 2002 Daniel Veillard <daniel@veillard.com>
9715
9716 * uri.c: Johann Richard pointed out some XPointer problems for
9717 URN based URI references in XInclude. Modified the URI parsing
9718 and saving routines to allow correct parsing and saving of
9719 XPointers, especially when attached to "opaque" scheme accordingly
9720 to RFC 2396
9721
Daniel Veillard8db67d22002-11-27 19:39:27 +00009722Wed Nov 27 20:36:08 CET 2002 Daniel Veillard <daniel@veillard.com>
9723
9724 * HTMLtree.c include/libxml/HTMLtree.h: applied the same kind
9725 of refactoring to the HTML saving code.
9726 * doc/libxml2-*.xml doc/API*.html: slight API changes got reflected
9727 in the doc.
9728
Daniel Veillardebc4ca92002-11-27 11:43:05 +00009729Wed Nov 27 12:40:16 CET 2002 Daniel Veillard <daniel@veillard.com>
9730
9731 * tree.c include/libxml/tree.h: refactored the XML dump of a node
9732 to a buffer API to reuse the generic dump to an OutputIO layer,
9733 this reduces code, fixes xmlNodeDump() for XHTML, also made
9734 xmlNodeDump() now return the number of byte written.
9735
Daniel Veillard9d5ea172002-11-27 08:02:06 +00009736Wed Nov 27 09:00:00 CET 2002 Daniel Veillard <daniel@veillard.com>
9737
9738 * python/setup.py.in: another patch from Stéphane Bidoul for
9739 Python bindings on Windows
9740 * doc/parsedecl.py: small cleanup
9741
Daniel Veillard9715c172002-11-25 16:33:40 +00009742Mon Nov 25 17:28:53 CET 2002 Daniel Veillard <daniel@veillard.com>
9743
9744 * libxml.spec.in configure.in: add a line in %changelog for releases
9745
Daniel Veillard9bc53102002-11-25 13:20:04 +00009746Mon Nov 25 14:18:27 CET 2002 Daniel Veillard <daniel@veillard.com>
9747
9748 * parser.c: patch from Marcus Clarke fixing a problem in entities
9749 parsing that was detected in KDe documentations environment.
9750
Daniel Veillardfaa35ff2002-11-24 13:53:43 +00009751Mon Nov 24 14:13:21 CET 2002 ERDI Gergo <cactus@cactus.rulez.org>
9752
9753 * python/libxml.c (libxml_prev): Return the previous as opposed to
9754 the next node (I guess this is the result of some cut & paste programming:)
9755
Daniel Veillard80d7b902002-11-23 16:23:08 +00009756Sat Nov 23 17:22:22 CET 2002 Daniel Veillard <daniel@veillard.com>
9757
9758 * doc/Makefile.am: Jan Rafaj pointed a bug in the Makefile.
9759
Daniel Veillarda1196ed2002-11-23 11:22:49 +00009760Sat Nov 23 12:21:24 CET 2002 Daniel Veillard <daniel@veillard.com>
9761
9762 * python/generator.py python/libxml.c python/setup.py.in: trying
9763 to fix the Python bindings build on Windows (Stéphane Bidoul)
9764
Igor Zlatkovic9ab71552002-11-22 21:41:43 +00009765Fri Nov 22 22:41:34 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
9766
9767 * win32/configure.js: added option for python bindings
9768 * win32/libxml2.def.src: added more exports
9769
Igor Zlatkovicace7cd22002-11-22 18:07:00 +00009770Fri Nov 22 18:50:34 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
9771
9772 * win32/Makefile.mingw: fixed unresolved symbols when linking with
9773 pthreads
9774 * win32/wince/*: applied updates to Windows CE port from Javier
9775
Daniel Veillardf9c4cad2002-11-22 15:57:07 +00009776Fri Nov 22 15:51:22 CET 2002 Daniel Veillard <daniel@veillard.com>
9777
9778 * configure.in: preparing 2.4.28
9779 * libxml.spec.in doc/Makefile.am: some cleanup
9780 * doc/*: updated the news and regenerated.
9781
Daniel Veillardfee408f2002-11-22 13:18:30 +00009782Fri Nov 22 14:15:14 CET 2002 Daniel Veillard <daniel@veillard.com>
9783
9784 * HTMLparser.c: final touch at closing #87235 </p> end tags
9785 need to be generated.
9786 * result/HTML/cf_128.html result/HTML/test2.html result/HTML/test3.html:
9787 this change slightly the output of a few tests
9788 * doc/*: regenerated
9789
Daniel Veillardd2ff0392002-11-22 12:28:38 +00009790Fri Nov 22 13:26:19 CET 2002 Daniel Veillard <daniel@veillard.com>
9791
9792 * parserInternals.c: fixing bug #99190 when UTF8 document are
9793 parsed using the progressive parser and the end of the chunk
9794 is in the middle of an UTF8 multibyte character.
9795
William M. Brack8b2c7f12002-11-22 05:07:29 +00009796Fri Nov 22 13:13:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
9797
9798 * threads.c: fixed initialization problem in xmlNewGlobalState
9799 which was causing crash.
9800 * globals.c: removed duplicate call to initxmlDefaultSAXHandler
9801 in xmlInitializeGlobalState.
9802 * parserInternals.c: cleaned up ctxt->sax initialisation.
9803
Daniel Veillardd5c2f922002-11-21 14:10:52 +00009804Thu Nov 21 15:05:45 CET 2002 Daniel Veillard <daniel@veillard.com>
9805
9806 * tree.c include/libxml/tree.h: modified the existing APIs
9807 to handle XHTML1 serialization rules automatically, also add
9808 xmlIsXHTML() to libxml2 API. Some tweaking to make sure
9809 libxslt serialization uses it when needed without changing
9810 the library API.
9811 * test/xhtml1 result/noent/xhtml1 result/valid/xhtml1.xhtml
9812 result/xhtml1: added a new test specifically for xhtml1 output
9813 and updated the result of one XHTML1 test
9814
Daniel Veillardd076a202002-11-20 13:28:31 +00009815Wed Nov 20 14:24:56 CET 2002 Daniel Veillard <daniel@veillard.com>
9816
9817 * xinclude.c parserInternals.c encoding.c: fixed #99082
9818 for xi:include encoding="..." support on text includes.
9819 * result/XInclude/tstencoding.xml test/XInclude/docs/tstencoding.xml
9820 test/XInclude/ents/isolatin.txt : added a specific regression test
9821 * python/generator.py python/libxml2class.txt: fixed the generator
9822 the new set of comments generated for doc/libxml2-api.xml were
9823 breaking the python generation.
9824
Daniel Veillard817e70b2002-11-19 22:28:48 +00009825Tue Nov 19 23:25:47 CET 2002 Daniel Veillard <daniel@veillard.com>
9826
9827 * doc/Makefile.am: repair some problem if gtk-doc fail or such
9828 * configure.in: patch for Solaris on new autoconf closes #98880
9829 * doc/parsedecl.py: repair the frigging API building script,
9830 did I say that python xmllib sucks ?
9831 * doc/libxml2-api.xml doc/libxml2-refs.xml: regenerated, reordering
9832 and some comment are no more truncated.
9833
Daniel Veillarda7e05b42002-11-19 08:11:14 +00009834Tue Nov 19 09:09:04 CET 2002 Daniel Veillard <daniel@veillard.com>
9835
9836 * parser.c: Martin Stoilov pointed out a potential leak in
9837 xmlCreateMemoryParserCtxt
9838
Daniel Veillardbc6e1a32002-11-18 15:07:25 +00009839Mon Nov 18 16:05:51 CET 2002 Daniel Veillard <daniel@veillard.com>
9840
9841 * HTMLparser.c: fixed bug #98879 a corner case when 0 is
9842 included in HTML documents and using the push parser.
9843
Daniel Veillard4efd3be2002-11-18 09:11:13 +00009844Mon Nov 18 00:11:24 CET 2002 ERDI Gergo <cactus@cactus.rulez.org>
9845
9846 * configure.in (PYTHON_SITE_PACKAGES): If --with-python is
9847 specified, look for the Python interpreter not just in the
9848 specified root but also in the specified location. Fixes #98825
9849
Daniel Veillarda8c0adb2002-11-17 22:37:35 +00009850Sun Nov 17 23:36:06 CET 2002 Daniel Veillard <daniel@veillard.com>
9851
9852 * python/libxml.c: fixing bug #98792 , node may have no doc
9853 and dereferencing without checking ain't good ...
9854
Daniel Veillarddad3f682002-11-17 16:47:27 +00009855Sun Nov 17 10:25:43 CET 2002 Daniel Veillard <daniel@veillard.com>
9856
9857 * configure.in: preparing release 2.4.27
9858 * doc/* : updated and rebuilt the docs
9859 * doc/Makefile.am libxml.spec.in: try to make sure the tutorial
9860 and all the docs are actually packaged and in the final RPMs
9861 * parser.c parserInternals.c include/libxml/parser.h: restore
9862 xmllint --recover feature.
9863
Daniel Veillard68e9e742002-11-16 15:35:11 +00009864Sat Nov 16 16:30:25 CET 2002 Daniel Veillard <daniel@veillard.com>
9865
Daniel Veillard784b9352003-02-16 15:50:27 +00009866 * parser.c xpath.c: fixing #96925 wich was also dependent on the
Daniel Veillard68e9e742002-11-16 15:35:11 +00009867 processing of parsed entities, and XPath computation on sustitued
9868 entities.
9869 * testXPath.c: make sure entities are substitued.
9870
Daniel Veillard328f48c2002-11-15 15:24:34 +00009871Fri Nov 15 16:22:54 CET 2002 Daniel Veillard <daniel@veillard.com>
9872
Daniel Veillard784b9352003-02-16 15:50:27 +00009873 * parser.c: fixed #96594, which was totally dependent on the
Daniel Veillard328f48c2002-11-15 15:24:34 +00009874 processing of internal parsed entities, which had to be changed.
9875
Daniel Veillard66651aa2002-11-15 11:21:43 +00009876Fri Nov 15 12:16:07 CET 2002 Daniel Veillard <daniel@veillard.com>
9877
9878 * Makefile.am python/Makefile.am python/tests/Makefile.am:
9879 trying to fix bug #98517 about building outside the source tree
9880 * doc/xml.html doc/FAQ.html: fixed the link to libiconv #94585
9881
Igor Zlatkovic2772cea2002-11-14 17:45:20 +00009882Thu Nov 14 18:41:55 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
9883
9884 * include/win32config.h: cleanup
9885 * win32/Makefile.mingw: integrated mingw in JScript configure
9886 * win32/Makefile.msvc: modified to allow mingw coexistence
9887 * win32/configure.js: integrated mingw
9888 * win32/Readme.txt: cleanup
9889
Daniel Veillard8dd86a52002-11-12 21:14:17 +00009890Tue Nov 12 22:06:45 CET 2002 Daniel Veillard <daniel@veillard.com>
9891
9892 * HTMLparser.c: strengthen the guard in the Pop macros,
9893 like in the XML parser, closes bug #97315
9894
Daniel Veillard0821b152002-11-12 20:57:47 +00009895Tue Nov 12 21:56:39 CET 2002 Daniel Veillard <daniel@veillard.com>
9896
9897 * include/libxml/parser.h: fixed bug #98338 , fatalError SAX
9898 callback is never used.
9899
Daniel Veillard8606bbb2002-11-12 12:36:52 +00009900Tue Nov 12 13:32:50 CET 2002 Daniel Veillard <daniel@veillard.com>
9901
9902 * parserInternals.c: fixed the initialization of the SAX structure
9903 which was breaking xsltproc
9904 * xpath.c: patch from Petr Pajas for CDATA nodes
9905 * tree.c: patch from Petr Pajas improving xmlGetNodePath()
9906 * parser.c include/libxml/parser.h: patch from Peter Jones
9907 removing a leak in xmlSAXParseMemory() and adding the
9908 function xmlSAXParseMemoryWithData()
9909
MST 2002 John Fleckf854d992002-11-12 03:49:05 +00009910Mon Nov 11 20:47:03 MST 2002 John Fleck <jfleck@inkstain.net>
9911
9912 adding pdf of tutorial, changing web page to link to it
9913 * doc/tutorial/xmltutorial.pdf
9914 * doc/xml.html
9915 * doc/docs.html
9916
MST 2002 John Fleck52717f32002-11-11 03:49:33 +00009917Sun Nov 10 20:48:57 MST 2002 John Fleck <jfleck@inkstain.net>
9918
9919 * doc/tutorial/ar01s08.html
9920 adding file what I forgot for tutorial
9921
9922
MST 2002 John Fleckbd3b4fd2002-11-11 03:41:11 +00009923Sun Nov 10 20:33:13 MST 2002 John Fleck <jfleck@inkstain.net>
9924
9925 Adding encoding discussion to tutorial
9926 Added:
9927 * doc/tutorial/images/*.png: DocBook admonition image files
9928 * doc/tutorial/apf.html, apg.html: new generated html
9929 * doc/tutorial/includeconvert.c: conversion code entity file
9930 changed:
9931 * doc/tutorial/xmltutorial.xml: DocBook original
9932 * doc/tutorial/*.html: generated html
9933
Igor Zlatkovic22bafff2002-11-08 17:19:08 +00009934Fri Nov 8 17:59:32 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
9935
9936 * include/libxml/*.h: retired xmlwin32version.h
9937 * doc/Makefile.am: retired xmlwin32version.h
9938 * win32/configure.js: retired xmlwin32version.h
9939
Igor Zlatkovica2258da2002-11-08 15:55:33 +00009940Fri Nov 8 16:55:47 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
9941
9942 * win32/libxml2.def.src: exported additional symbols
Igor Zlatkovic22bafff2002-11-08 17:19:08 +00009943 * include/libxml/xmlmemory.h: exported the rest of the xmlMem*
9944 sisterhood
Igor Zlatkovica2258da2002-11-08 15:55:33 +00009945
Daniel Veillard7216cfd2002-11-08 15:10:00 +00009946Fri Nov 8 16:08:13 CET 2002 Daniel Veillard <daniel@veillard.com>
9947
9948 * globals.c: fixed a typo pointed out by Igor
9949 * xpath.c: try to speed up node compare using line numbers
9950 if available.
9951
Daniel Veillarda70d62f2002-11-07 14:18:03 +00009952Thu Nov 7 15:16:02 CET 2002 Daniel Veillard <daniel@veillard.com>
9953
9954 * tree.c: make xmlFreeNode() handle attributes correctly.
9955
Igor Zlatkovicb8e99cc2002-11-06 22:52:29 +00009956Wed Nov 6 23:51:11 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
9957
9958 * catalog.c: completed the #96963 fix, as reported by Karl
9959 Eichwalder
9960
Daniel Veillard56f21f22002-11-06 15:49:46 +00009961Wed Nov 6 16:48:44 CET 2002 Daniel Veillard <daniel@veillard.com>
9962
9963 * xpointer.c: tried to fix bug #97852 reported by Nicolas Noffke
9964
Daniel Veillard91ad8792002-11-04 17:06:52 +00009965Sun Nov 3 10:43:44 CET 2002 Daniel Veillard <daniel@veillard.com>
9966
9967 * Makefile.am: switched the order of a couple of includes
9968 to fix bugs #97100
9969
Igor Zlatkovic2bb82ee2002-10-31 16:15:43 +00009970Thu Oct 31 17:11:46 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
9971
9972 * catalog.c: fixed bug #96963, reverted to the old behaviour of
9973 xmlLoadCatalogs that used to separate directories with a ':'.
9974
Igor Zlatkovic9fdd8f32002-10-31 16:01:23 +00009975Thu Oct 31 16:55:21 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
9976
9977 * threads.c: improvements to the Windows-side of thread handling
9978 * testThreads.c: conditionally excluded unistd.h
9979 * testThradsWin32.c: broke overlong lines
9980 * include/win32config.h: adapted thread-related macros to the new
9981 scheme and for pthreads on Windows
9982 * win32/Makefile.msvc: introduced a more flexible thread build,
9983 added testThreads[Win32].c to the build
9984 * win32/configure.js: introduced a more flexible thread config
9985
John Fleck61f6fb62002-10-31 15:23:29 +000099862002-10-31 John Fleck <jfleck@inkstain.net>
9987
9988 * doc/xml.html (and, by implication, FAQ.html)
9989 added UTF-8 conversaion FAQ from Marcus Labib Iskander
9990
Igor Zlatkovicf95b56b2002-10-29 17:33:35 +00009991Tue Oct 29 18:32:33 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
9992
9993 * configure.in: removed xmlwin32version.h
9994 * include/libxml/Makefile.am: removed xmlwin32version.h
9995
Daniel Veillardce66ce12002-10-28 19:01:59 +00009996Mon Oct 28 14:01:29 CET 2002 Daniel Veillard <daniel@veillard.com>
9997
9998 * tree.c: applied patch from Brian Stafford to fix a bug
9999 in xmlReconciliateNs()
10000
Daniel Veillard7e3f1402002-10-28 18:52:57 +000010001Mon Oct 28 13:51:55 CET 2002 Daniel Veillard <daniel@veillard.com>
10002
10003 * tree.c: applied patch from Christian Glahn to allow
10004 xmlNewChild() on document fragment nodes
10005
Daniel Veillardb39bc392002-10-26 19:29:51 +000010006Sat Oct 26 15:27:00 CEST 2002 Daniel Veillard <daniel@veillard.com>
10007
10008 * parser.c: Christian Glahn found a problem with a recent
10009 patch to xmlParseBalancedChunkMemoryRecover()
10010 * xmlschemas.c: Charles Bozeman fixed some Schemas validation
10011 problems
10012 * result/schemas/elem* result/schemas/seq* test/schemas.elem*
10013 test/schemas/seq*: added the test cases from Charles
10014
Daniel Veillard366a9152002-10-23 20:43:53 +000010015Wed Oct 23 16:42:29 CEST 2002 Daniel Veillard <daniel@veillard.com>
10016
10017 * Makefile.am config.h.in libxml.spec.in doc/Makefile.am:
10018 serious cleanup of the spec file and associated changes
10019 in the Makefiles.
10020 * valid.c: try to remove some warnings on x86_64
10021
Daniel Veillardd033d022002-10-23 14:55:02 +000010022Wed Oct 23 10:53:42 CEST 2002 Daniel Veillard <daniel@veillard.com>
10023
10024 * include/Makefile.am: added winsockcompat.h to EXTRA_DIST to
10025 fix bug #96586
10026
Daniel Veillardce02dbc2002-10-22 19:14:58 +000010027Tue Oct 22 21:13:06 CEST 2002 Daniel Veillard <daniel@veillard.com>
10028
10029 * HTMLparser.c: Mikhail Sogrine pointed out a bug in HTML
10030 parsing, applied his patch
10031 * result/HTML/attrents.html result/HTML/attrents.html.err
10032 result/HTML/attrents.html.sax test/HTML/attrents.html:
10033 added the test and result case provided by Mikhail Sogrine
10034
Daniel Veillarde645e8c2002-10-22 17:35:37 +000010035Tue Oct 22 19:33:20 CEST 2002 Daniel Veillard <daniel@veillard.com>
10036
10037 * vms/build_libxml.com vms/config.vms vms/readme.vms
10038 include/libxml/parser.h include/libxml/parserInternals.h
10039 include/libxml/tree.h include/libxml/xmlIO.h
10040 HTMLparser.c catalog.c debugXML.c parser.c parserInternals.c
10041 tree.c triodef.h trionan.c uri.c xmlIO.c xpath.c:
10042 Applied the VMS update patch from Craig A. Berry
10043 * doc/*.html: update
10044
Daniel Veillardf000f072002-10-22 14:28:17 +000010045Tue Oct 22 16:27:31 CEST 2002 Daniel Veillard <daniel@veillard.com>
10046
10047 * include/libxml/encoding.h encoding.c: made xmlGetUTF8Char public
10048
Daniel Veillard1e208222002-10-22 14:25:25 +000010049Tue Oct 22 16:25:18 CEST 2002 Daniel Veillard <daniel@veillard.com>
10050
10051 * debugXML.c: adding a grep command to --shell in xmllint
10052 for T.V. Raman
10053
Daniel Veillard9cdcf362002-10-22 14:23:59 +000010054Tue Oct 22 16:23:57 CEST 2002 Daniel Veillard <daniel@veillard.com>
10055
10056 * xmlcatalog.c: tried to fix some of the problem with --sgml
10057
Daniel Veillard935494a2002-10-22 14:22:46 +000010058Mon Oct 21 09:57:10 CEST 2002 Daniel Veillard <daniel@veillard.com>
10059
10060 * parser.c: tried to fix bug #91500 where doc->children may
10061 be overriden by a call to xmlParseBalancedChunkMemory()
10062
10063Mon Oct 21 09:04:32 CEST 2002 Daniel Veillard <daniel@veillard.com>
10064
10065 * catalog.c: tried to fix bug #90945 w.r.t. parsing of system
10066 identifiers in SGML catalogs containing '&'
10067
Daniel Veillardc0ac0692002-10-20 21:31:50 +000010068Sun Oct 20 23:31:47 CEST 2002 Daniel Veillard <daniel@veillard.com>
10069
10070 * python/types.c: fixed bugs when passing result value tree
10071 to Python functions.
10072
Daniel Veillard48267432002-10-18 11:21:38 +000010073Fri Oct 18 13:18:53 CEST 2002 Daniel Veillard <daniel@veillard.com>
10074
10075 * configure.in: preparing the release of 2.4.26
10076 * doc/*: updated and rebuilt the documentation
10077
Daniel Veillardbb284f42002-10-16 18:02:47 +000010078Wed Oct 16 20:01:46 CEST 2002 Daniel Veillard <daniel@veillard.com>
10079
10080 * parser.c: fixed a XML Namespace compliance bug reported by
10081 Alexander Grimalovsky
10082
Daniel Veillard44892f72002-10-16 15:23:26 +000010083Wed Oct 16 17:18:42 CEST 2002 Daniel Veillard <daniel@veillard.com>
10084
10085 * HTMLtree.c: fixed serialization of script and style when
10086 they are not lowercase (i.e. added using the API to the tree).
10087
Daniel Veillard2fd85422002-10-16 14:32:41 +000010088Wed Oct 16 16:31:05 CEST 2002 Daniel Veillard <daniel@veillard.com>
10089
10090 * valid.c: make xmlValidateDocument emit a warning msg if there
10091 is no DTD, pointed by Christian Glahn
10092
Daniel Veillard32370232002-10-16 14:08:14 +000010093Wed Oct 16 16:05:38 CEST 2002 Daniel Veillard <daniel@veillard.com>
10094
10095 * xmlregexp.c xmlschemas.c: fixed the validation of sequences
10096 content model when some of the blocks have min or max, and a couple
10097 of bugs found in the process.
10098 * result/schemas/list0* test/schemas/list0*: added some specific
10099 regression tests
10100
Daniel Veillarda2e8c5c2002-10-15 10:41:43 +000010101Tue Oct 15 12:41:01 CEST 2002 Daniel Veillard <daniel@veillard.com>
10102
10103 * README: updated the contact informations
10104
Daniel Veillard63186732002-10-15 08:43:17 +000010105Tue Oct 15 10:35:57 CEST 2002 Daniel Veillard <daniel@veillard.com>
10106
10107 * Makefile.am: use test -f instead of test -e since Solaris /bin/sh
10108 misses it, reported by Peter Bray.
10109
Daniel Veillard96c3a3b2002-10-14 15:39:04 +000010110Mon Oct 14 17:37:32 CEST 2002 Daniel Veillard <daniel@veillard.com>
10111
10112 * tree.c: investigating xmlNodeGetContent() on namespace nodes
10113 and removed a few warnings
10114
Daniel Veillard819d5cb2002-10-14 11:15:18 +000010115Mon Oct 14 13:12:55 CEST 2002 Daniel Veillard <daniel@veillard.com>
10116
10117 * parser.c: Christian Glahn found a small bug in the push parser.
10118 * xmlIO.c include/libxml/xmlIO.h: cleaned up and made xmlCheckFilename
10119 public
10120
Daniel Veillard6045c902002-10-09 21:13:59 +000010121Wed Oct 9 23:11:02 CEST 2002 Daniel Veillard <daniel@veillard.com>
10122
10123 * xmlschemas.c include/libxml/xmlschemas.h: added
10124 xmlSchemaNewMemParserCtxt to parse a schemas from a memory area
10125 * testSchemas.c: added --memory to test the new interface
10126
Daniel Veillardf0070122002-10-09 14:24:17 +000010127Wed Oct 9 16:22:54 CEST 2002 Daniel Veillard <daniel@veillard.com>
10128
10129 * doc/index.py doc/search.php: integrated the XSLT indexing,
10130 a few fixed in the indexer, added a scope selection at the
10131 search level.
10132
Daniel Veillard01992e02002-10-09 10:20:30 +000010133Wed Oct 9 12:18:37 CEST 2002 Daniel Veillard <daniel@veillard.com>
10134
10135 * valid.c: Joe Marcus Clarke reported a segfault on FBsd
10136 this was due to uninitialized parts of the validation context
10137
Daniel Veillard321be0c2002-10-08 21:26:42 +000010138Tue Oct 8 23:24:20 CEST 2002 Daniel Veillard <daniel@veillard.com>
10139
10140 * debugXML.c: applied patch from Mark Vakoc except the API
10141 change, preserved it.
10142 * doc/*: updated the docs to point to the search engine for
10143 information lookup or before bug/help reports.
10144
Daniel Veillard01e87d22002-10-08 16:55:06 +000010145Tue Oct 8 18:53:31 CEST 2002 Daniel Veillard <daniel@veillard.com>
10146
10147 * doc/index.py doc/search.php: added mailing-list archives
10148 indexing and lookup
10149
Daniel Veillard9dc1cf12002-10-08 08:26:11 +000010150Tue Oct 8 10:25:07 CEST 2002 Daniel Veillard <daniel@veillard.com>
10151
10152 * tree.c: patch from Mark Vakoc to fix xmlNodeGetPath()
10153
Daniel Veillard9b006132002-10-07 11:13:27 +000010154Mon Oct 7 13:12:03 CEST 2002 Daniel Veillard <daniel@veillard.com>
10155
10156 * doc/index.py: improved HTML indexing
10157 * doc/search.php: make the queries also lookup the HTML based indexes
10158
Daniel Veillard141d04b2002-10-06 21:51:18 +000010159Sun Oct 6 23:50:29 CEST 2002 Daniel Veillard <daniel@veillard.com>
10160
10161 * doc/index.py: added HTML page indexing
10162
Igor Zlatkovic91a62702002-10-04 13:34:16 +000010163Fri Oct 4 15:33:55 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
10164
Igor Zlatkovicd7f3c332002-10-04 13:38:53 +000010165 * xmlIO.c: extended Windows path normalisation to fix the base
Igor Zlatkovic91a62702002-10-04 13:34:16 +000010166 problem in libxslt.
10167 * catalog.c: fixed list handling in XML_CATALOG_FILES
10168
Daniel Veillardceb09b92002-10-04 11:46:37 +000010169Fri Oct 4 13:43:02 CEST 2002 Daniel Veillard <daniel@veillard.com>
10170
10171 * valid.c: typo/bug found by Christian Glahn
10172
Igor Zlatkovic9d66fa12002-09-29 17:54:36 +000010173Sun Sep 29 19:44:10 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
10174
10175 * xmlIO.c: applied Windows CE patch from Javier.
10176 * win32/wince: new directory, contains support for the PocketPC
10177 with Windows CE from Javier.
10178 * include/win32config.h: reorganised, removed duplicate
10179 definitions and applied WinCE patch from Javier.
10180 * include/wsockcompat.h: new file, now contains WinSock
10181 compatibility macros.
10182 * win32/Makefile.msvc: introduced double-run compilation.
10183
Daniel Veillarde16b5742002-09-26 17:50:03 +000010184Thu Sep 26 19:48:06 CEST 2002 Daniel Veillard <daniel@veillard.com>
10185
10186 * configure.in include/libxml/xmlwin32version.h: preparing release
10187 of 2.4.25
10188 * doc/*: updated and regenerated teh docs and web pages.
10189
Daniel Veillard90d68fb2002-09-26 16:10:21 +000010190Thu Sep 26 17:33:46 CEST 2002 Daniel Veillard <daniel@veillard.com>
10191
10192 * SAX.c valid.c include/libxml/valid.h: fixed bug #92518 validation
10193 error were not covering namespace declarations.
10194 * result/valid/dia.xml test/valid/dia.xml: the test wasn't valid,
10195 it was missing the attribute declaration for the namespace
10196 * result/VC/NS3: the fix now report breakages in that test
10197
Daniel Veillardabe01742002-09-26 12:40:03 +000010198Thu Sep 26 14:39:07 CEST 2002 Daniel Veillard <daniel@veillard.com>
10199
10200 * HTMLtree.c: fixing bug #94241 on HTML boolean attributes
10201
Daniel Veillard2ace1952002-09-26 12:28:02 +000010202Thu Sep 26 14:25:33 CEST 2002 Daniel Veillard <daniel@veillard.com>
10203
10204 * doc/*: added the 3 new modules xmlregexp xmlautomata and xmlunicode
10205 and regenerated the docs and web site
10206
Daniel Veillarddda8f1b2002-09-26 09:47:36 +000010207Thu Sep 26 11:45:42 CEST 2002 Daniel Veillard <daniel@veillard.com>
10208
10209 * xinclude.c xmlschemas.c xmlschemastypes.c xpath.c: make sure
10210 ATTRIBUTE_UNUSED is always put after the attribute declaration,
10211 not before
10212
Daniel Veillardd4cb1e82002-09-26 09:34:23 +000010213Thu Sep 26 11:33:28 CEST 2002 Daniel Veillard <daniel@veillard.com>
10214
10215 * python/generator.py python/libxml2class.txt: fixed a stupid error
10216 breaking the python API
10217
Daniel Veillardb7c29c32002-09-25 22:44:43 +000010218Thu Sep 26 00:31:46 CEST 2002 Daniel Veillard <daniel@veillard.com>
10219
10220 * trio.c trio.h triodef.h trionan.c trionan.h triop.h
10221 triostr.c triostr.h: applied a trio update patch from
10222 Bjorn Reese which should work with MinGW
10223
Daniel Veillardbd9afb52002-09-25 22:25:35 +000010224Thu Sep 26 00:21:18 CEST 2002 Daniel Veillard <daniel@veillard.com>
10225
10226 * tree.c: improving some documentation comments
10227 * xmlregexp.c: found and fixed a mem leak with python regression tests
10228 * doc/*: rebuilt the doc and the API XML file including the
10229 xmlregexp.h xmlautomata.h and xmlunicode.h headers
10230 * python/generator.py python/libxml2class.txt python/libxml_wrap.h
10231 python/types.c: added access to the XML Schemas regexps from
10232 python
10233 * python/tests/Makefile.am python/tests/regexp.py: added a
10234 simple regexp bindings test
10235
MDT 2002 John Fleck30c70542002-09-24 14:24:54 +000010236Tue Sep 24 08:10:48 MDT 2002 John Fleck <jfleck@inkstain.net>
10237
Daniel Veillardbd9afb52002-09-25 22:25:35 +000010238 * doc/xml.html:
10239 fixing ftp links - thanks to Vitaly Ostanin
MDT 2002 John Fleck30c70542002-09-24 14:24:54 +000010240
Daniel Veillard118aed72002-09-24 14:13:13 +000010241Tue Sep 24 16:08:17 CEST 2002 Daniel Veillard <daniel@veillard.com>
10242
10243 * xmlregexp.c: fixed the data callback on transition functionality
10244 which was broken when using the compact form
10245 * result/schemas/*: updated the results, less verbose, all tests
10246 pass like before
10247 * DOCBparser.c testAutomata.c testC14N.c testSchemas.c testThreads.c
10248 testXPath.c valid.c xinclude.c xmllint.c xmlregexp.c xmlschemas.c
10249 xmlschemastypes.c xpath.c python/libxml.c: removed a bunch of
10250 annoying warnings
10251 * xpath.c: try to provide better error report when possible
10252
Daniel Veillard72336152002-09-21 13:08:14 +000010253Sat Sep 21 14:56:37 CEST 2002 Daniel Veillard <daniel@veillard.com>
10254
10255 * Makefile.am: fixed a breakage raised by Jacob
10256
Igor Zlatkovic3f1e94b2002-09-20 18:08:17 +000010257Fri Sep 20 20:08:18 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
10258
10259 * include/win32config.h: added HAVE_ERRNO_H definition for parts
10260 which don't use sockets
10261
Igor Zlatkovic01280582002-09-20 16:40:34 +000010262Fri Sep 20 18:40:50 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
10263
10264 * win32/Makefile.msvc: applied zlib patch from Daniel Gehriger
10265 * win32/configure.js: applied zlib patch from Daniel Gehriger
10266
Igor Zlatkovic9a4efcb2002-09-20 13:41:55 +000010267Fri Sep 20 15:40:14 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
10268
10269 * win32/configure.js: applied the patch from Mark Vakoc for
10270 regexp support
10271 * win32/libxml2.def.src: applied the patch from Mark Vakoc
10272 for regexp support
10273
Daniel Veillardb5c05732002-09-20 13:36:25 +000010274Fri Sep 20 15:35:33 CEST 2002 Daniel Veillard <daniel@veillard.com>
10275
10276 * xmlschemastypes.c: as pointed by Igor Float and Double
10277 parsing ain't finished yet
10278
Daniel Veillard40b11342002-09-20 12:01:39 +000010279Fri Sep 20 14:00:16 CEST 2002 Daniel Veillard <daniel@veillard.com>
10280
10281 * Makefile.am configure.in: trying to fix #88412 by bypassing
10282 all the python subdir if python ain't detected
10283
Daniel Veillard23e73572002-09-19 19:56:43 +000010284Thu Sep 19 21:46:53 CEST 2002 Daniel Veillard <daniel@veillard.com>
10285
10286 * Makefile.am configure.in include/libxml/xmlversion.h.in:
10287 made configuring with regexps/automata/unicode the default
10288 but without schemas ATM
10289 * testRegexp.c valid.c xmlregexp.c include/libxml/xmlregexp.h:
10290 fixed the regexp based DTD validation performance and memory
10291 problem by switching to a compact form for determinist regexps
10292 and detecting the determinism property in the process. Seems
10293 as fast as the old DTD validation specific engine :-) despite
10294 the regexp built and compaction process.
10295
Daniel Veillard5acfd6b2002-09-18 16:29:02 +000010296Wed Sep 18 18:27:26 CEST 2002 Daniel Veillard <daniel@veillard.com>
10297
10298 * valid.c: determinism is debugged, new DTD checking code now works
10299 but xmlFAComputesDeterminism takes far too much CPU and the whole
10300 set usues too much memory to be really usable as-is
10301
Daniel Veillard0f04f8e2002-09-17 23:04:40 +000010302Wed Sep 18 00:54:30 CEST 2002 Daniel Veillard <daniel@veillard.com>
10303
10304 * tree.c: fixed another stupid bug in xmlGetNodePath()
10305 * xmllint.c: --version now report the options compiled in
10306
Daniel Veillarda646cfd2002-09-17 21:50:03 +000010307Tue Sep 17 23:48:07 CEST 2002 Daniel Veillard <daniel@veillard.com>
10308
10309 * HTMLparser.c: small cleanup
10310 * valid.c xmlregexp.c: switched DTD validation to use only regexp
10311 when configured with them. A bit of debugging around the determinism
10312 checks is still needed
10313
Daniel Veillard63b01c22002-09-17 19:25:28 +000010314Tue Sep 17 21:22:25 CEST 2002 Daniel Veillard <daniel@veillard.com>
10315
10316 * python/libxml_wrap.h: stupid bug found by mattam@netcourrier.com
10317
Daniel Veillard92727042002-09-17 17:59:20 +000010318Tue Sep 17 19:58:26 CEST 2002 Daniel Veillard <daniel@veillard.com>
10319
10320 * xmlIO.c: small portability glitch fixed.
10321
Daniel Veillard84d70a42002-09-16 10:51:38 +000010322Mon Sep 17 12:38:08 CEST 2002 Daniel Veillard <daniel@veillard.com>
10323
10324 * xmlschemastypes.c: incomplete steps for real/double support
10325 * testAutomata.c include/libxml/xmlautomata.h
10326 include/libxml/xmlregexp.h: avoiding a compilation problem
10327 * valid.c include/libxml/valid.h: starting the work toward using
10328 the regexps for actual DTD validation
10329
Daniel Veillardaeb258a2002-09-13 14:48:12 +000010330Fri Sep 13 16:46:14 CEST 2002 Daniel Veillard <daniel@veillard.com>
10331
10332 * hash.c: cosmetic cleanup
10333 * valid.c include/libxml/tree.h include/libxml/valid.h: started
10334 integrating a DTD validation layer based on the regexps
10335
Daniel Veillard4402ab42002-09-12 16:02:56 +000010336Thu Sep 12 18:01:29 CEST 2002 Daniel Veillard <daniel@veillard.com>
10337
10338 * xmlregexp.c xmlschemas.c: fixed a bug reported by Jeff Goff,
10339 the determinism was tested before eliminating the epsilon
10340 transitions :-(
10341
Daniel Veillardc6d4a932002-09-12 15:00:57 +000010342Thu Sep 12 16:57:45 CEST 2002 Daniel Veillard <daniel@veillard.com>
10343
10344 * python/generator.py python/libxml.c python/libxml.py
10345 python/libxml2-python-api.xml python/libxml2class.txt
10346 python/libxml_wrap.h python/types.c: updated the python
10347 bindings, added code for easier File I/O, and the ability to
10348 define a resolver from Python fixing bug #91635
10349 * python/tests/Makefile.am python/tests/inbuf.py
10350 python/tests/outbuf.py python/tests/pushSAXhtml.py
10351 python/tests/resolver.py python/tests/serialize.py: updated
10352 and augmented the set of Python tests.
10353
Igor Zlatkovic353bf582002-09-10 19:07:14 +000010354Tue Sep 10 21:05:28 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
10355
10356 * win32/configure.js: added more readme info for the binary
10357 package.
10358
Daniel Veillard607b35c2002-09-10 12:16:19 +000010359Tue Sep 10 14:15:18 CEST 2002 Daniel Veillard <daniel@veillard.com>
10360
10361 * xmlIO.c: fixed a stupid out of bound array error
10362
10363Tue Sep 10 13:09:14 CEST 2002 Daniel Veillard <daniel@veillard.com>
10364
10365 * include/libxml/xmlIO.h xmlIO.c parser.c HTMLparser.c DOCBparser.c:
10366 messing around with support for Windows path, cleanups,
10367 trying to identify and fix the various code path to the
10368 filename access. Added xmlNormalizeWindowsPath()
10369
Daniel Veillard76575762002-09-05 14:21:15 +000010370Thu Sep 5 16:19:18 CEST 2002 Daniel Veillard <daniel@veillard.com>
10371
10372 * error.c valid.c: working on better error reporting of validity
10373 errors, especially providing an accurate context.
10374 * result/valid/xlink.xml.err result/valid/rss.xml.err: better
10375 error reports in those cases.
10376
Daniel Veillard3487c8d2002-09-05 11:33:25 +000010377Thu Sep 5 13:29:47 CEST 2002 Daniel Veillard <daniel@veillard.com>
10378
10379 * DOCBparser.c HTMLparser.c c14n.c entities.c list.c
10380 parser.c parserInternals.c xmlIO.c: get rid of all the
10381 perror() calls made in the library execution paths. This
10382 should fix both #92059 and #92385
10383
Daniel Veillard19aa7022002-09-05 11:14:19 +000010384Thu Sep 5 13:13:17 CEST 2002 Daniel Veillard <daniel@veillard.com>
10385
10386 * xmllint.c: memory leak reporting was broken after a change
10387 of the preprocessor symbol used to activate it.
10388
Daniel Veillardec6725e2002-09-05 11:12:45 +000010389Thu Sep 5 13:10:57 CEST 2002 Daniel Veillard <daniel@veillard.com>
10390
10391 * tree.c: try to make the copy function work for node of
10392 type XML_DOCUMENT_FRAG_NODE, they are only created by the
10393 DOM layers though, not libxml2 itself.
10394
Daniel Veillardb9cd8b42002-09-05 10:58:49 +000010395Thu Sep 5 12:57:38 CEST 2002 Daniel Veillard <daniel@veillard.com>
10396
10397 * valid.c: try to provide file and line informations, not all
10398 messages are covered, but it's a (good) start
10399
Daniel Veillardbbc72c32002-09-05 10:52:10 +000010400Thu Sep 5 12:49:35 CEST 2002 Daniel Veillard <daniel@veillard.com>
10401
10402 * xinclude.c: reimplemented a large part of the XInclude
10403 processor, trying to minimize resources used, James Henstridge
10404 provided a huge test case which was exhibiting severe memory
10405 consumption problems.
10406
Daniel Veillard2206dbf2002-09-05 08:09:37 +000010407Thu Sep 5 10:07:13 CEST 2002 Daniel Veillard <daniel@veillard.com>
10408
10409 * python/Makefile.am: applied patch from Christophe Merlet to
10410 reestablish DESTDIR
10411
Daniel Veillard5643b5a2002-09-04 12:27:06 +000010412Wed Sep 4 14:13:34 CEST 2002 Daniel Veillard <daniel@veillard.com>
10413
10414 * libxml.spec.in: fixes libary path for x86_64 AMD
10415
John Fleckbe98b332002-09-04 03:16:23 +000010416Tue Sep 3 21:14:19 MDT 2002 John Fleck <jfleck@inkstain.net>
10417
10418 * doc/tutorial/includekeyword.c
Daniel Veillard5643b5a2002-09-04 12:27:06 +000010419 * doc/tutorial/xmltutorial.xml:
John Fleckbe98b332002-09-04 03:16:23 +000010420 (plus resulting generated html files)
10421 fixing one spot I missed in the tutorial where I hadn't freed
10422 memory properly
10423
MDT 2002 John Fleck77e4d352002-09-01 01:37:11 +000010424Sat Aug 31 19:31:17 MDT 2002 John Fleck <jfleck@inkstain.net>
10425
10426 * doc/tutorial/includeaddattribute.c
10427 * doc/tutorial/includeaddkeyword.c
10428 * doc/tutorial/includegetattribute.c
10429 * doc/tutorial/includekeyword.c
10430 * doc/tutorial/xmltutorial.xml
Daniel Veillard5643b5a2002-09-04 12:27:06 +000010431 * doc/tutorial/*.html:
MDT 2002 John Fleck77e4d352002-09-01 01:37:11 +000010432 update tutorial to properly free memory (thanks to Christopher
10433 R. Harris for pointing out that this needs to be done)
Daniel Veillard5643b5a2002-09-04 12:27:06 +000010434 * doc/tutorial/images/callouts/*.png:
MDT 2002 John Fleck77e4d352002-09-01 01:37:11 +000010435 added image files so the callouts are graphical, making it
10436 easier to read ( use "--param callout.graphics 1" to generate
10437 html with graphical callouts)
10438
Daniel Veillarde1662542002-08-28 11:50:59 +000010439Wed Aug 28 13:44:54 CEST 2002 Daniel Veillard <daniel@veillard.com>
10440
10441 * doc/Libxml2-Logo-180x168.gif doc/Libxml2-Logo-90x34.gif:
10442 nice logos generated by Marc Liyanage
10443 * doc/site.xsl *.html: changed the stylesheet to show the new
10444 logo and regenerated the pages
10445
Daniel Veillardb212bbb2002-08-25 14:39:16 +000010446Sun Aug 25 16:38:05 CEST 2002 Daniel Veillard <daniel@veillard.com>
10447
10448 * xmlIO.c: handle Windows sepecific file://localhost/ semantic ...
10449
Daniel Veillard42766c02002-08-22 20:52:17 +000010450Thu Aug 22 22:03:19 CEST 2002 Daniel Veillard <daniel@veillard.com>
10451
10452 * xpath.c: possible mem leak patch from Jason Adams
10453
10454Thu Aug 22 17:27:30 CEST 2002 Daniel Veillard <daniel@veillard.com>
10455
10456 * xpath.c: integrated xf:escape-uri() from Wesley Terpstra
10457 in the XQuery namespace
10458 * configure.in: preparing 2.4.24
10459 * doc/*.html: updated the web pages
10460
10461Thu Aug 22 16:19:42 CEST 2002 Daniel Veillard <daniel@veillard.com>
10462
10463 * python/generator.py: closing bug #85258 by generating conditional
10464 compile check to avoid linking to routines not configured in.
10465
Havoc Pennington84ec40a2002-08-22 13:59:35 +0000104662002-08-22 Havoc Pennington <hp@pobox.com>
10467
10468 * autogen.sh: update error message for missing automake
10469
Daniel Veillard08cccaa2002-08-22 09:47:29 +000010470Thu Aug 22 11:45:50 CEST 2002 Daniel Veillard <daniel@veillard.com>
10471
10472 * python/Makefile.am: typo in target name resulted in libxml2.py
10473 to not be rebuilt. fixed DESTDIR similary to the libxslt one.
10474
Daniel Veillard22669b22002-08-22 07:17:11 +000010475Thu Aug 22 09:15:00 CEST 2002 Daniel Veillard <daniel@veillard.com>
10476
10477 * win32/win32/Makefile.mingw: updated with version from
10478 Elizabeth Barham at http://soggytrousers.net/repository/
10479
Igor Zlatkovica40adbc2002-08-20 14:42:32 +000010480Tue Aug 20 16:40:48 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
10481
10482 * win32/Makefile.msvc: added the prefix location to the include
10483 and lib search path.
10484
Havoc Pennington830e8972002-08-18 22:22:13 +0000104852002-08-18 Havoc Pennington <hp@pobox.com>
10486
10487 * autogen.sh: hardcode aclocal-1.4/automake-1.4 so that users with
10488 both automake 1.6 and 1.4 installed get the right automake. Means
10489 compilation from CVS will now require the latest automake 1.4
10490 release, or manually creating symlinks called "automake-1.4" and
10491 "aclocal-1.4"
10492
Daniel Veillardb6984ef2002-08-14 16:55:31 +000010493Wed Aug 14 18:54:19 CEST 2002 Daniel Veillard <daniel@veillard.com>
10494
10495 * configure.in python/Makefile.am: more AMD 64 induced changes from
10496 Frederic Crozat
10497
Daniel Veillardc4bad4a2002-08-14 14:45:25 +000010498Wed Aug 14 16:43:53 CEST 2002 Daniel Veillard <daniel@veillard.com>
10499
10500 * xinclude.c: oops I was missing the xml:base fixup too
10501 * result/XInclude/*.xml: this adds xml:base attributes to most
10502 results of the tests
10503
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +000010504Wed Aug 14 16:05:37 CEST 2002 Daniel Veillard <daniel@veillard.com>
10505
10506 * xinclude.c: quick but apparently working implementation of
10507 xi:fallback, should close bug #89684
10508 * Makefile.am test/XInclude/docs/fallback.xml
10509 result/XInclude/fallback.xml: added a basic test for fallback,
10510 and run with --nowarning to avoid a spurious warning
10511 * configure.in: applied patch from Frederic Crozat for python
10512 bindings on AMD 64bits machines.
10513
Daniel Veillard9e923512002-08-14 08:48:52 +000010514Wed Aug 14 10:47:46 CEST 2002 Daniel Veillard <daniel@veillard.com>
10515
10516 * parser.c: xmlSAXUserParseMemory() really ought to fail if
10517 the caller don't pass a SAX callback block.
10518
Daniel Veillardc1a0da32002-08-14 08:32:18 +000010519Wed Aug 14 10:29:02 CEST 2002 Daniel Veillard <daniel@veillard.com>
10520
10521 * tree.c: applied the same fix for the XML-1.0 namespace to
10522 xmlSearchNsByHref() as was done for xmlSearchNs()
10523
Daniel Veillardad11b302002-08-12 14:53:41 +000010524Mon Aug 12 16:52:08 CEST 2002 Daniel Veillard <daniel@veillard.com>
10525
10526 * libxml.3: small cleanup of the man page
10527 * HTMLtree.c: fixed a potential problem raised by Petr Vandrovec
10528 when serializing HREF attributes generated by XSLT.
10529
Daniel Veillardc084e472002-08-12 13:27:28 +000010530Mon Aug 12 15:24:05 CEST 2002 Daniel Veillard <daniel@veillard.com>
10531
10532 * HTMLtree.c include/libxml/HTMLtree.h: integrated a cleaned up
10533 version of Marc Liyanage' patch for boolean attributes in HTML
10534 output
10535
Daniel Veillard5f91b372002-08-12 12:13:01 +000010536Mon Aug 12 14:11:59 CEST 2002 Daniel Veillard <daniel@veillard.com>
10537
10538 * python/tests/serialize.py: fixed the test results, indenting
10539 behaviour changed slightly
10540
Aleksey Sanin9e951762002-08-08 18:02:41 +000010541Thu Aug 8 11:00:26 2002 Aleksey Sanin <aleksey@aleksey.com>
10542
10543 * win32/dsp/libxml2.def.src win32/libxml2.def.src: added
10544 new c14n function to Windows def files
10545
Aleksey Saninea4272a2002-08-02 23:50:03 +000010546Fri Aug 2 16:46:46 2002 Aleksey Sanin <aleksey@aleksey.com>
10547
10548 * c14n.c: fixed a memory leak in c14n code
10549
Daniel Veillard58e44c92002-08-02 22:19:49 +000010550Sat Aug 3 00:15:06 CEST 2002 Daniel Veillard <daniel@veillard.com>
10551
10552 * parser.c include/libxml/parser.h: adding a new API for Christian
10553 Glahn: xmlParseBalancedChunkMemoryRecover
10554 * valid.c: patch from Rick Jones for some grammar cleanup in
10555 validation messages
10556 * result/VC/* result/valid/*: this slightly change some of the
10557 regression tests outputs
10558
Daniel Veillard0bf29002002-08-01 12:54:11 +000010559Thu Aug 1 14:50:28 CEST 2002 Daniel Veillard <daniel@veillard.com>
10560
10561 * tree.c: trying to fix a problem in namespaced attribute handling
10562 raised by Christian Glahn
10563
Daniel Veillard6f46f6c2002-08-01 12:22:24 +000010564Thu Aug 1 12:17:30 CEST 2002 Daniel Veillard <daniel@veillard.com>
10565
10566 * encoding.c include/libxml/encoding.h: Opening the interface
10567 xmlNewCharEncodingHandler as requested in #89415
10568 * python/generator.py python/setup.py.in: applied cleanup
10569 patches from Marc-Andre Lemburg
10570 * tree.c: fixing bug #89332 on a specific case of loosing
10571 the XML-1.0 namespace on xml:xxx attributes
10572
Aleksey Sanin2c135a12002-08-01 06:31:50 +000010573Wed Jul 31 23:27:42 2002 Aleksey Sanin <aleksey@aleksey.com>
10574
10575 * c14n.c include/libxml/c14n.h: fixed one more c14n + namespaces
10576 corner case from new Merlin's test suite and added a callback
10577 that will be used to improve xmlsec performance
10578
10579
Daniel Veillard0b22def2002-07-29 16:23:03 +000010580Mon Jul 29 18:22:00 CEST 2002 Daniel Veillard <daniel@veillard.com>
10581
10582 * HTMLtree.c: trying to fix the <style> escaping problem in
10583 HTML serialization bug #89342
10584
Daniel Veillard0b28e882002-07-24 23:47:05 +000010585Thu Jul 25 01:33:47 CEST 2002 Daniel Veillard <daniel@veillard.com>
10586
10587 * doc/xml.html doc/*.html: applied syntax patch from Rick Jones
10588 and rebuilt the web site.
10589
PDT 2002 Aleksey Sanin8e8a7032002-07-22 18:03:11 +000010590Mon Jul 22 11:04:48 PDT 2002 Aleksey Sanin <aleksey@aleksey.com>
Daniel Veillard0b28e882002-07-24 23:47:05 +000010591
PDT 2002 Aleksey Sanin8e8a7032002-07-22 18:03:11 +000010592 * include/libxml/tree.h: added _private member to xmlNs struct
10593
Daniel Veillard1d995272002-07-22 16:43:32 +000010594Sun Jul 21 17:48:47 CEST 2002 Daniel Veillard <daniel@veillard.com>
10595
10596 * HTMLparser.c: fixing bug #84876 based on the xml working
10597 code.
10598
William M. Brack61eaba52002-07-21 11:14:18 +000010599Sun Jul 21 19:15:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
10600
10601 * python/Makefile.am: enhanced to fix bug 72012 (errors
10602 when using '-jX' make parameter)
10603
William M. Brackef61d202002-07-19 08:32:00 +000010604Fri Jul 19 16:35:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
10605
10606 * xpath.c: small additional enhancement for booleans
10607 compared to nodesets
10608
Daniel Veillard3a42f3f2002-07-17 17:57:34 +000010609Wed Jul 17 19:48:14 CEST 2002 Daniel Veillard <daniel@veillard.com>
10610
10611 * HTMLtree.c: changed the order of the encoding declaration
10612 attributes in the meta tags due to a bug in IE/Mac
10613
William M. Brack0c022ad2002-07-12 00:56:01 +000010614Fri Jul 12 08:45:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
10615
10616 * xpath.c: enhanced handling of booleans (especially '='
10617 and '!=' for nodesets) - fixes bug 85256. Added new
10618 routine xmlXPathNotEqualValues for more proper handling
10619 of '!=' when nodesets are involved.
10620
Daniel Veillard06944e22002-07-11 19:55:18 +000010621Thu Jul 11 21:45:52 CEST 2002 Daniel Veillard <daniel@veillard.com>
10622
10623 * doc/Makefile.am: fixing Red Hat bug #68614 by adding the
10624 doc/xmlcatalog_man.xml to the source distribution
10625
Igor Zlatkovic6ac30172002-07-10 19:22:48 +000010626Wed Jul 10 21:26:13 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
10627
10628 * win32/Makefile.msvc: Added a copy *.pdb to install, few have
10629 asked for this.
10630
Daniel Veillard539638b2002-07-06 19:55:14 +000010631Sat Jul 6 21:55:59 CEST 2002 Daniel Veillard <daniel@veillard.com>
10632
10633 * configure.in: preparing 2.4.23
10634 * doc/*: rebuilt the docs
10635
Daniel Veillard176d99f2002-07-06 19:22:28 +000010636Sat Jul 6 21:11:20 CEST 2002 Daniel Veillard <daniel@veillard.com>
10637
10638 * parser.c: fixing bug #84169 by fixing the
10639 comment of xmlCreatePushParserCtxt to describe the
10640 encoding detection parameters better.
10641
Daniel Veillard37f961d2002-07-06 17:53:56 +000010642Sat Jul 6 19:44:56 CEST 2002 Daniel Veillard <daniel@veillard.com>
10643
10644 * valid.c: fixing bug #79331 in one path the lookup for
10645 ID attributes on a namespaced node wasn't handled correctly :-\
10646
Daniel Veillard8c9872c2002-07-05 18:17:10 +000010647Fri Jul 5 20:07:43 CEST 2002 Daniel Veillard <daniel@veillard.com>
10648
10649 * HTMLparser.c: trying to fix 87235 about discarded white
10650 spaces in the HTML parser.
10651 * result/HTML/*: this changes the output of a number of HTML
10652 regression tests
10653
Daniel Veillardfdc91562002-07-01 21:52:03 +000010654Mon Jul 1 23:23:41 CEST 2002 Daniel Veillard <daniel@veillard.com>
10655
10656 * xpath.c: applied patch from Richard Jinks for the namespace
10657 axis + fixed a memory error.
10658 * parser.c parserInternals.c: applied patches from Peter Jacobi
10659 removing ctxt->token for good.
10660 * xmlschemas.c xmlschemastypes.c: fixed a few memory leaks
10661 popped out by the regression tests.
10662 * Makefile.am: patch for threads makefile from Gary Pennington
10663
William M. Brack6000af52002-06-28 11:43:13 +000010664Fri Jun 28 19:38:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
10665
Daniel Veillardfdc91562002-07-01 21:52:03 +000010666 * xpath.c: enhanced behaviour of position() after usage of
William M. Brack6000af52002-06-28 11:43:13 +000010667 expressions involving preceding-sibling (et al).
10668
Daniel Veillard153120c2002-06-18 07:58:35 +000010669Tue Jun 18 09:58:48 CEST 2002 Daniel Veillard <daniel@veillard.com>
10670
10671 * hash.c: applied a patch from Peter Jacobi to solve a problem
10672 when compiling with the Watcom C on Win32
10673 * result/schemas/*.err: the change of hashing algo generated
10674 permutations in the output
10675
Daniel Veillard5f7f9912002-06-17 17:03:00 +000010676Mon Jun 17 19:02:49 CEST 2002 Daniel Veillard <daniel@veillard.com>
10677
10678 * hash.c: applied patch from Sander Vesik improving the quality of
10679 the hash function.
10680
Aleksey Sanina5808b92002-06-14 17:07:41 +0000106812002-06-14 Aleksey Sanin <aleksey@aleksey.com>
Aleksey Sanin49cc9752002-06-14 17:07:10 +000010682
10683 * DOCBparser.c HTMLparser.c debugXML.c encoding.c
10684 nanoftp.c nanohttp.c parser.c tree.c uri.c xmlIO.c
10685 xmllint.c xpath.c: replaced sprintf() with snprintf()
10686 to prevent possible buffer overflow (the bug was pointed
10687 out by Anju Premachandran)
10688
Daniel Veillarde059b892002-06-13 15:32:10 +000010689Thu Jun 13 17:30:25 CEST 2002 Daniel Veillard <daniel@veillard.com>
10690
10691 * parser.c: removed an uninitialized data error popped by valgrind
10692 on PE references
10693
MDT 2002 John Fleckd7ca7f92002-06-13 03:41:03 +000010694Wed Jun 12 21:38:46 MDT 2002 John Fleck <jfleck@inkstain.net>
10695
10696 * doc/xml.html
10697 adding tutorial reference to the web page
10698
MDT 2002 John Fleck54520832002-06-13 03:30:26 +000010699Wed Jun 12 21:26:08 MDT 2002 John Fleck <jfleck@inkstain.net>
10700
10701 * doc/tutorial/xmltutorial.xml
10702 * doc/tutorial/ar01s07.html
10703 * doc/tutorial/ape.html
10704 * doc/tutorial/includegetattribute.c
10705 adding section to tutorial about retrieving an attribute
10706 value
10707
Daniel Veillardf5582f12002-06-11 10:08:16 +000010708Tue Jun 11 12:07:04 CEST 2002 Daniel Veillard <daniel@veillard.com>
10709
10710 * parser.c: applied a couple of patches from Peter Jacobi to start
10711 to get rid of ctxt->token, with a possible significant speed
10712 improvement to be gained once done. Better compliance with PE
10713 references constructs in DTDs too.
10714 * test/valid/t[0-9]* result/valid/t[0-9]*: added a set of tests
10715 from Peter too
10716
Daniel Veillard38d80e22002-06-11 07:24:56 +000010717Tue Jun 11 09:25:12 CEST 2002 Daniel Veillard <daniel@veillard.com>
10718
10719 * parser.c: Babak Vahedipour-Kunze reported that openTag in
10720 xmlParseElement was likely to have been deallocated at the
10721 time of the report, possibly leading to segfault. Just report
10722 the tag name now.
10723
Daniel Veillard9e412302002-06-10 15:59:44 +000010724Mon Jun 10 18:00:02 CEST 2002 Daniel Veillard <daniel@veillard.com>
10725
10726 * xpath.c: patch from Richard Jinks for XPath substring() function
10727 * result/XPath/expr/strings test/XPath/expr/strings: new set of tests
10728
Aleksey Sanina5808b92002-06-14 17:07:41 +0000107292002-06-06 Aleksey Sanin <aleksey@aleksey.com>
Aleksey Sanin9c45ba82002-06-06 21:46:13 +000010730
10731 * xmlIO.c: patch from Rachel Hestilow to fix bug #84340
10732
MDT 2002 John Flecka63f3ff2002-06-06 02:14:01 +000010733Wed Jun 5 19:14:49 MDT 2002 John Fleck <jfleck@inkstain.net>
10734
10735 *doc/FAQ.html
10736 fixing typos in FAQ, thanks to Robert Funnell for the
10737 editing help
10738
Daniel Veillardd2fd1b62002-06-05 12:52:34 +000010739Wed Jun 5 14:50:24 CEST 2002 Daniel Veillard <daniel@veillard.com>
10740
10741 * NEWS: got complaints from rpmlint that it was empty
10742
MDT 2002 John Fleck598f6eb2002-06-04 15:10:36 +000010743Tue Jun 4 09:09:18 MDT 2002 John Fleck <jfleck@inkstain.net>
10744
10745 * added doc/tutorial, including:
10746 apa.html
10747 apb.html
10748 apc.html
10749 apd.html
10750 ar01s02.html
10751 ar01s03.html
10752 ar01s04.html
10753 ar01s05.html
10754 ar01s06.html
10755 includeaddattribute.c
10756 includeaddkeyword.c
10757 includekeyword.c
10758 includestory.xml
10759 index.html
10760 xmltutorial.xml
10761 libxml tutorial, including generated html
10762
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +000010763Mon Jun 3 21:21:26 2002 Aleksey Sanin <aleksey@aleksey.com>
10764
10765 * result/c14n/exc-without-comments/merlin-c14n-two-*
10766 result/c14n/without-comments/merlin-c14n-two-*
10767 test/c14n/exc-without-comments/merlin-c14n-two-*
10768 test/c14n/without-comments/merlin-c14n-two-*
10769 testC14N.c Makefile.am: added merlin-c14n-two.tar.gz tests for
10770 c14n/exc-c14n and slightly modified test script to handle
10771 these test cases
10772 * c14n.c: fixed bugs for complicated nodes set (namespace
10773 without node and others from merlin-c14n-two.tar.gz)
10774 * include/libxml/xpathInternals.h win32/dsp/libxml2.def.src
10775 win32/libxml2.def.src: "opened" xmlXPathNodeSetFreeNs() function
10776 for xmlsec performance patch
10777 * xpath.c: fixed self::node() for namespaces and attributes
10778
Daniel Veillardd2fd1b62002-06-05 12:52:34 +000010779Mon Jun 03 00:04:21 2002 Chema Celorio <chema@ximian.com>
10780
10781 * tree.h: added xmlDocFormatDump which is just as xmlDocDump
10782 but with the format parameter
10783 * tree.c: made xmlDocDump a wrapper arround xmlDocFormatDump
10784
Aleksey Saninc57f9c12002-05-31 19:14:57 +000010785Fri May 31 12:16:48 2002 Aleksey Sanin <aleksey@aleksey.com>
10786
10787 * Makefile.am: updated c14n tests suite
10788 * c14n.c: performance improvement for previous c14n patch
10789
Daniel Veillarde72c7562002-05-31 09:47:30 +000010790Fri May 31 11:47:12 CEST 2002 Daniel Veillard <daniel@veillard.com>
10791
10792 * parser.c: another peroformance patch from Peter Jacobi, that
10793 time on parsing attribute values.
10794
Aleksey Sanin508a1012002-05-31 06:32:32 +000010795Thu May 30 23:34:27 2002 Aleksey Sanin <aleksey@aleksey.com>
10796
10797 * Makefile.am result/c14n/* test/c14n/*: C14N tests integrated
10798 into LibXML2 test suite
10799
Aleksey Sanindffd5c82002-05-31 04:24:13 +000010800Thu May 30 21:23:06 2002 Aleksey Sanin <aleksey@aleksey.com>
10801
10802 * c14n.c: propagating xpath ancesstors node fix to c14n
10803 plus small performance improvement to reduce number of
10804 mallocs
10805 * xpath.c: fixed ancestors axis processing for namespace nodes
10806
Daniel Veillard46de64e2002-05-29 08:21:33 +000010807Wed May 29 10:21:39 CEST 2002 Daniel Veillard <daniel@veillard.com>
10808
10809 * SAX.c parser.c tree.c include/libxml/tree.h: performance patch from
10810 Peter Jacobi
10811
Daniel Veillardd5e22ef2002-05-27 21:17:57 +000010812Mon May 27 23:18:33 CEST 2002 Daniel Veillard <daniel@veillard.com>
10813
10814 * configure.in: preparing 2.4.22
10815
Daniel Veillard1b31e4a2002-05-27 14:44:50 +000010816Mon May 27 16:44:04 CEST 2002 Daniel Veillard <daniel@veillard.com>
10817
10818 * HTMLparser.c win32/libxml2.def.src win32/dsp/libxml2.def.src
10819 include/libxml/HTMLparser.h: fixing #79334 making htmlParseDocument
10820 a public entry point.
10821 * doc/*: rebuilt the API and docs
10822
Daniel Veillarded23b7d2002-05-27 12:16:02 +000010823Mon May 27 14:16:28 CEST 2002 Daniel Veillard <daniel@veillard.com>
10824
10825 * xpath.c: patch from Richard Jinks to fix a problem introduced
10826 in the previous patch and pointed by Norm
10827
Daniel Veillardc6924812002-05-24 11:10:43 +000010828Fri May 24 13:10:22 CEST 2002 Daniel Veillard <daniel@veillard.com>
10829
10830 * libxml.spec.in: fixing bug #81112
10831
Daniel Veillard234bc4e2002-05-24 11:03:05 +000010832Fri May 24 13:03:24 CEST 2002 Daniel Veillard <daniel@veillard.com>
10833
10834 * uri.c: fixing bug #82848
10835
Daniel Veillarda2878972002-05-24 07:54:39 +000010836Fri May 24 09:54:49 CEST 2002 Daniel Veillard <daniel@veillard.com>
10837
10838 * result/catalogs/mycatalog.full: Aleksey's commit changed the
10839 output of one catalog test
10840
Aleksey Sanin114e4752002-05-24 07:20:27 +000010841Fri 24 May 2002 12:17:45 AM PDT Aleksey Sanin <aleksey@aleksey.com>
Daniel Veillarda2878972002-05-24 07:54:39 +000010842
Aleksey Sanin114e4752002-05-24 07:20:27 +000010843 * global.data globals.c tree.c include/libxml/globals.h
10844 win32/libxml2.def.src win32/dsp/libxml2.def.src: changed
10845 default value for global parameter xmlIndentTreeOutput to 1 and
10846 introduced new global parameter xmlTreeIndentString (the string
10847 used to do one-level indent) with default value " " (as it was
10848 in tree.c)
10849
Daniel Veillard49d5af82002-05-23 11:55:49 +000010850Thu May 23 13:55:57 CEST 2002 Daniel Veillard <daniel@veillard.com>
10851
10852 * Makefile.am: Merijn Broeren pointed out a problem when compiling
10853 with trio and schemas.
10854
Daniel Veillard7c13af42002-05-22 09:57:32 +000010855Wed May 22 11:57:49 CEST 2002 Daniel Veillard <daniel@veillard.com>
10856
10857 * xpath.c: patch from Richard Jinks to fix the problem raised in
10858 http://mail.gnome.org/archives/xml/2002-April/msg00246.htm
10859
Daniel Veillard5a872412002-05-22 06:40:27 +000010860Wed May 22 08:38:19 CEST 2002 Daniel Veillard <daniel@veillard.com>
10861
10862 * xmlschemas.c: a bit of work on import.
10863 * xmlschemastypes.c: Charles Bozeman provided a compare function
10864 for date/time types so min/max facet restrictions should work,
10865 indeterminate comparisons return an error instead of equal.
10866 * test/schemas/date_0* result/schemas/date_0_0: specific test
10867 from Charles Bozeman too
10868
Daniel Veillard10b6da42002-05-18 07:55:20 +000010869Sat May 18 09:54:12 CEST 2002 Daniel Veillard <daniel@veillard.com>
10870
10871 * libxml.3 doc/buildDocBookCatalog: apply a couple of patches
10872 from Christian Cornelssen fixing the man pages and the Catalog
10873 building script.
10874 * xmlschemas.c include/libxml/schemasInternals.h: nothing new yet
10875 next step is <xs:import> I now have a reasonable understanding
10876 of how it works.
10877
Daniel Veillarde5354492002-05-16 08:43:22 +000010878Thu May 16 10:43:26 CEST 2002 Daniel Veillard <daniel@veillard.com>
10879
10880 * xmlIO.c: applied a small buffer performance patch from Gary Pennington
10881
Igor Zlatkovic1396e182002-05-14 22:22:40 +000010882Wed May 15 00:25:34 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
10883
10884 * win32/libxml2.def.src: exported xmlXPathNodeSetAddNs()
10885
Daniel Veillard088bf112002-05-14 11:03:59 +000010886Tue May 14 13:00:48 CEST 2002 Daniel Veillard <daniel@veillard.com>
10887
10888 * xpath.c: fixing an XPath function evalutation bug pointed out
10889 by Alexey Efimov where the context was lost when evaluating
10890 the function arguments
10891
Aleksey Sanin79376ba2002-05-14 06:41:32 +000010892Mon 13 May 2002 11:37:39 PM PDT Aleksey Sanin <aleksey@aleksey.com>
Daniel Veillard088bf112002-05-14 11:03:59 +000010893
Aleksey Sanin79376ba2002-05-14 06:41:32 +000010894 * xpath.c include/libxml/xpathInternals.h: maked xmlXPathNodeSetAddNs()
10895 function public for XMLSec performance optimizations
10896
Daniel Veillard3cd72402002-05-13 10:33:30 +000010897Mon May 13 12:32:22 CEST 2002 Daniel Veillard <daniel@veillard.com>
10898
10899 * python/generator.py python/libxml2class.txt : fixed a problem
10900 with the HTML parser pointed by Gary Benson
10901 * python/tests/Makefile.am python/tests/pushSAXhtml.py: sdding the
10902 example
10903
Aleksey Sanine48a3182002-05-09 18:20:01 +000010904Thu 09 May 2002 11:19:00 AM PDT Aleksey Sanin <aleksey@aleksey.com>
10905 * parser.c: fixed bug #81159 (memory growth in SAX)
10906
Aleksey Sanin50fe8b12002-05-07 16:21:36 +000010907Tue 07 May 2002 09:20:21 AM PDT Aleksey Sanin <aleksey@aleksey.com>
10908 * xpath.c: fixed bug #78858 (the real fix)
10909
Aleksey Sanin29b6f762002-05-05 06:59:57 +000010910Sat 04 May 2002 11:56:31 PM PDT Aleksey Sanin <aleksey@aleksey.com>
Aleksey Sanin50fe8b12002-05-07 16:21:36 +000010911 * xpath.c: fixed bug #78858 (quick and durty fix to hide the problem)
Aleksey Sanin29b6f762002-05-05 06:59:57 +000010912
Daniel Veillard4cbe4702002-05-05 06:57:27 +000010913Sun May 5 08:57:08 CEST 2002 Daniel Veillard <daniel@veillard.com>
10914
10915 * tree.c: modified xmlNodeSetBase to allow changing the
10916 base of a document.
10917
Daniel Veillard070803b2002-05-03 07:29:38 +000010918Fri May 3 09:20:41 CEST 2002 Daniel Veillard <daniel@veillard.com>
10919
10920 * xmlschemastypes.c: patch Charles Bozeman for validation of
10921 all the date, time, and duration types
10922 * test/schemas/dur_0* result/schemas/dur_0*: associated tests
10923 * configure.in: fixed an error pointed by an user
10924 * xml2-config.in: fixed an error pointed by an user
10925
Aleksey Sanin5aac8b82002-05-01 18:32:28 +000010926Wed 01 May 2002 11:29:27 AM PDT Aleksey Sanin <aleksey@aleksey.com>
10927
10928 * include/libxml/xmlIO.h win32/dsp/libxml2.def.src
10929 win32/libxml2.def.src xmlIO.c: exported default
10930 'file:', 'http:' and 'ftp:' protocols input handlers
10931 and maked protocols comparisson case insensitive
10932
Daniel Veillard34de97f2002-04-30 14:29:22 +000010933Tue Apr 30 16:29:05 CEST 2002 Daniel Veillard <daniel@veillard.com>
10934
10935 * configure.in: Neven Has detected a typo
10936
Daniel Veillard28577c32002-04-30 06:48:41 +000010937Tue Apr 30 08:48:11 CEST 2002 Daniel Veillard <daniel@veillard.com>
10938
10939 * AUTHORS HACKING: added Aleksey Sanin <aleksey@aleksey.com>
10940 as one of the persons allowed to commit directly to the
10941 module.
10942
Daniel Veillardfc57b412002-04-29 15:50:14 +000010943Mon Apr 29 17:48:26 CEST 2002 Daniel Veillard <daniel@veillard.com>
10944
10945 * configure.in include/libxml/xmlwin32version.h: preparing 2.4.21
10946 * valid.c: raised a too low limit
10947 * doc/*: rebuilt the docs
10948
Daniel Veillardeca82812002-04-24 11:42:02 +000010949Wed Apr 24 13:41:03 CEST 2002 Daniel Veillard <daniel@veillard.com>
10950
10951 * test/XPath/expr/floats test/XPath/expr/functions
10952 result/XPath/expr/floats result/XPath/expr/functions
10953 xpath.c: another XPath conformance patch from Richard Jinks
10954
Daniel Veillard13e04c62002-04-23 17:51:29 +000010955Tue Apr 23 19:50:40 CEST 2002 Daniel Veillard <daniel@veillard.com>
10956
10957 * xmlschemas.c: fixed validation of attribute groups.
10958 * test/schemas result/schemas: added an example from the primer
10959
Daniel Veillard88c58912002-04-23 07:12:20 +000010960Tue Apr 23 09:11:37 CEST 2002 Daniel Veillard <daniel@veillard.com>
10961
10962 * Makefile.am xmlschemas.c xmlschemastypes.c: more work on Schemas
10963 * test/schemas result/schemas: updated the test list
10964
Daniel Veillarde19fc232002-04-22 16:01:24 +000010965Mon Apr 22 17:59:14 CEST 2002 Daniel Veillard <daniel@veillard.com>
10966
10967 * TODO: updated a bit
10968 * parser.c: made a comment more specific
10969 * xmlregexp.c xmlschemas.c xmlschemastypes.c: more work on the
10970 Schemas conformance.
10971 * test/schemas result/schemas: updated the test list
10972
Daniel Veillard441bc322002-04-20 17:38:48 +000010973Sat Apr 20 19:36:39 CEST 2002 Daniel Veillard <daniel@veillard.com>
10974
10975 * xmlregexp.c xmlschemas.c include/libxml/xmlautomata.h:
10976 implementing xs:all with minOccurs = 0
10977 * tes/schemas/* result/schemas/*: added more tests covering
10978 xs:all
10979
Daniel Veillard8a001f62002-04-20 07:24:11 +000010980Sat Apr 20 09:22:50 CEST 2002 Daniel Veillard <daniel@veillard.com>
10981
10982 * xmlregexp.c: first implementation of the all particle, this
10983 may need to be revisited for case where not all transitions
10984 must be crossed.
10985
Daniel Veillard7646b182002-04-20 06:41:40 +000010986Fri Apr 19 18:26:04 CEST 2002 Daniel Veillard <daniel@veillard.com>
10987
10988 * tree.c: another entity processing update from Markus Henke
10989
Bjorn Reese54d02fb2002-04-19 15:16:01 +000010990Fri Apr 19 17:14:24 CEST 2002 Bjorn Reese <breese@users.sourceforge.net>
10991
10992 * trionan.c: fixed crash on OSF/1
10993
Daniel Veillardb4398962002-04-19 07:01:55 +000010994Fri Apr 19 09:00:56 CEST 2002 Daniel Veillard <daniel@veillard.com>
10995
10996 * xmlschemas.c: more Schemas work
10997 * test/schemas/* result/schemas/*: added more tests coming
10998 from the spec.
10999
Daniel Veillard54761132002-04-18 21:00:44 +000011000Thu Apr 18 23:00:02 CEST 2002 Daniel Veillard <daniel@veillard.com>
11001
11002 * c14n.c: patch from Aleksey Sanin reflecting a change in the
11003 ExcC14N specification
11004
Daniel Veillardbf8dae82002-04-18 16:39:10 +000011005Thu Apr 18 18:38:30 CEST 2002 Daniel Veillard <daniel@veillard.com>
11006
11007 * tree.c: patch from Markus Henke, fix for recursive entities.
11008
Daniel Veillard23b1f372002-04-18 15:50:05 +000011009Thu Apr 18 17:49:24 CEST 2002 Daniel Veillard <daniel@veillard.com>
11010
11011 * xpath.c: fix a problem with string() on a document node.
11012
Daniel Veillarddecd64d2002-04-18 14:41:51 +000011013Thu Apr 18 16:40:42 CEST 2002 Daniel Veillard <daniel@veillard.com>
11014
11015 * Makefile.am xmlschemas.c: more Schemas work
11016 * test/schemas/* result/schemas/*: added more tests coming
11017 from the spec.
11018
Daniel Veillard6231e842002-04-18 11:54:04 +000011019Thu Apr 18 13:52:52 CEST 2002 Daniel Veillard <daniel@veillard.com>
11020
11021 * HTMLtree.c: fixed & serialization bug introduced in 2.4.20
11022 * result/HTML/*: this changes a few things in the results
11023
Igor Zlatkovic648b8e92002-04-17 18:35:57 +000011024Wed Apr 17 20:34:37 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
11025
11026 * include/libxml/tree.h: eliminated 'declaration different than
11027 prototype' warning
11028 * include/win32config.h: "resolved" conflicts with errno.h
11029
Daniel Veillardb509f152002-04-17 16:28:10 +000011030Wed Apr 17 18:26:07 CEST 2002 Daniel Veillard <daniel@veillard.com>
11031
11032 * xmlregexp.c xmlschemas.c include/libxml/xmlautomata.h: more work
11033 on the automata interfaces and debug of counted choices
11034 * test/schemas/* result/schemas/*: added a number of tests
11035
Daniel Veillard8651f532002-04-17 09:06:27 +000011036Wed Apr 17 11:03:03 CEST 2002 Daniel Veillard <daniel@veillard.com>
11037
11038 * xmlschemas.c xmlschemastypes.c include/libxml/xmlschemas.h:
11039 a bit of work on Schemas
11040 * testSchemas.c: try to make it more useful
11041 * test/schemas/* result/schemas/* Makefile.am: changed the
11042 Schemas regression test procedure, started adding a few samples
11043
Igor Zlatkovica6f2d902002-04-16 17:57:17 +000011044Tue Apr 16 19:52:01 CEST 2002 Igor Zlatkovic <izlatkovic@stud.fh-frankfurt.de>
11045
11046 * include/libxml/encoding.h: Patch for the Borland C++ builder
11047 * include/libxml/tree.h: Patch for the Borland C++ builder
11048 * threads.c: Patch for the Borland C++ builder
Igor Zlatkovice1eff382002-04-16 19:00:21 +000011049 * win32/bcb5: New directory for the Borland C++ builder
11050 project files
Igor Zlatkovica6f2d902002-04-16 17:57:17 +000011051
Igor Zlatkovicea5148d2002-04-16 17:46:25 +000011052Tue Apr 16 19:46:55 CEST 2002 Igor Zlatkovic <izlatkovic@stud.fh-frankfurt.de>
11053
11054 * win32/Makefile.msvc: Update for XML Schema support
11055 * win32/configure.js: Update for XML Schema support
11056 * win32/libxml2.def.src: Update for XML Schema support
11057
Daniel Veillard4255d502002-04-16 15:50:10 +000011058Tue Apr 16 17:46:43 CEST 2002 Daniel Veillard <daniel@veillard.com>
11059
11060 * Makefile.am TODO_SCHEMAS configure.in genUnicode.py testAutomata.c
11061 testRegexp.c testSchemas.c xmlregexp.c xmlschemas.c xmlschemastypes.c
11062 xmlunicode.c include/libxml/Makefile.am
11063 include/libxml/schemasInternals.h include/libxml/xmlautomata.h
11064 include/libxml/xmlregexp.h include/libxml/xmlschemas.h
11065 include/libxml/xmlschemastypes.h include/libxml/xmlunicode.h
11066 include/libxml/xmlversion.h.in : merged the current state of
11067 XML Schemas implementation, it is not configured in by default,
11068 a specific --schemas configure option has been added.
11069 * test/automata test/regexp test/schemas Makefile.am
11070 result/automata result/regexp result/schemas:
11071 merged automata/regexp/schemas regression tests
11072
Daniel Veillardbc6f7592002-04-16 07:49:59 +000011073Tue Apr 16 09:48:44 CEST 2002 Daniel Veillard <daniel@veillard.com>
11074
11075 * xpath.c: Gary found a compile time problem, fixes #78823
11076
Daniel Veillarda7084cd2002-04-15 17:12:47 +000011077Mon Apr 15 19:11:36 CEST 2002 Daniel Veillard <daniel@veillard.com>
11078
11079 * configure.in: release of 2.4.20
11080 * doc/*: updated and rebuilt the docs
11081
Daniel Veillardf544f192002-04-15 12:56:56 +000011082Mon Apr 15 14:55:53 CEST 2002 Daniel Veillard <daniel@veillard.com>
11083
11084 * python/Makefile.am: patch from Cristian Gafton to build on
11085 Red Hat 6.2, should also fix #75779
11086
Daniel Veillard940492d2002-04-15 10:15:25 +000011087Mon Apr 15 12:14:49 CEST 2002 Daniel Veillard <daniel@veillard.com>
11088
11089 * valid.c: first part of fixing #78729
11090
Daniel Veillardeb475a32002-04-14 22:00:22 +000011091Sun Apr 14 23:44:58 CEST 2002 Daniel Veillard <daniel@veillard.com>
11092
11093 * HTMLtree.c uri.c: fixing bug #78662 i.e. add proper
11094 escaping of URI when saving HTML files.
11095 * result/HTML/*: this impacted some tests
11096
Daniel Veillard9b731d72002-04-14 12:56:08 +000011097Sun Apr 14 14:55:15 CEST 2002 Daniel Veillard <daniel@veillard.com>
11098
11099 * configure.in: trying to fix #77441
11100
Daniel Veillarda8a89fe2002-04-12 21:03:34 +000011101Fri Apr 12 23:02:16 CEST 2002 Daniel Veillard <daniel@veillard.com>
11102
11103 * include/libxml/xmlIO.h: Hallski complained it could not be
11104 included by itself.
11105
Daniel Veillardcb5b4d62002-04-11 08:24:26 +000011106Thu Apr 11 10:23:36 CEST 2002 Daniel Veillard <daniel@veillard.com>
11107
11108 * configure.in: applied an IEEE flag patch for OSF/1 #77825
11109
Igor Zlatkovic9425ce22002-04-10 21:57:11 +000011110Wed Apr 10 23:31:34 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
11111
11112 * win32/configure.js: patch from Nilo for the c14n option
11113 * win32/Makefile.msvc: fixed libxml2.def generation with threads
11114
Daniel Veillardda423da2002-04-10 19:25:38 +000011115Wed Apr 10 21:24:16 CEST 2002 Daniel Veillard <daniel@veillard.com>
11116
11117 * xpath.c include/libxml/xmlwin32version.h.in: Silvan Minghetti
11118 pointed erroneous use of LIBXML_THREADS_ENABLED instead of
11119 LIBXML_THREAD_ENABLED
11120
Daniel Veillard0eafdef2002-04-10 16:14:34 +000011121Wed Apr 10 18:12:52 CEST 2002 Daniel Veillard <daniel@veillard.com>
11122
11123 * xpath.c: another patch from Richard Jinks for substring conformance
11124 * test/XPath/expr/floats test/XPath/expr/strings
11125 result/XPath/expr/floats result/XPath/expr/strings: update of the
11126 test suite to check those.
11127
Daniel Veillard01917aa2002-04-10 11:30:41 +000011128Wed Apr 10 13:29:49 CEST 2002 Daniel Veillard <daniel@veillard.com>
11129
11130 * xpath.c: patch from Richard Jinks for .x float parsing.
11131
Daniel Veillard46d6c442002-04-09 16:10:39 +000011132Tue Apr 9 18:09:31 CEST 2002 Daniel Veillard <daniel@veillard.com>
11133
11134 * parser.c: patch from Markus Henke when an encoding ain't recognized
11135
Daniel Veillard88e0ad42002-04-09 13:48:02 +000011136Tue Apr 9 15:47:14 CEST 2002 Daniel Veillard <daniel@veillard.com>
11137
11138 * libxml.m4: got a report that #include <string.h> was needed
11139
Daniel Veillard6e4f1c02002-04-09 09:55:20 +000011140Tue Apr 9 11:51:25 CEST 2002 Daniel Veillard <daniel@veillard.com>
11141
11142 * xmllint.c: applied a fix from Anthony Jones for -o /--output
11143
MST 2002 John Fleck823e5b22002-04-03 03:28:57 +000011144Tue Apr 2 20:27:11 MST 2002 John Fleck <jfleck@inkstain.net>
11145
Daniel Veillard6e4f1c02002-04-09 09:55:20 +000011146 * doc/example.html: fixing typo
MST 2002 John Fleck823e5b22002-04-03 03:28:57 +000011147
Daniel Veillardbd6e6312002-04-01 08:04:14 +000011148Mon Apr 1 10:02:57 CEST 2002 Daniel Veillard <daniel@veillard.com>
11149
11150 * xpath.c: fixed a bug in the nodeset to boolean comparison code
11151 pointed out by Melvyn Sopacua.
11152
Daniel Veillarde979e3b2002-03-29 22:43:00 +000011153Fri Mar 29 23:41:53 CET 2002 Daniel Veillard <daniel@veillard.com>
11154
11155 * libxml.m4: Frédéric Crozat gave a patch related to the change
11156 of Include paths breaking the libxml.m4
11157
Daniel Veillard7089d6b2002-03-29 17:28:10 +000011158Fri Mar 29 18:25:54 CET 2002 Daniel Veillard <daniel@veillard.com>
11159
11160 * xpath.c: Fix bug #76927 forgot to save some context
11161 when evaluating binary expressions
11162
Daniel Veillardd30be4a2002-03-28 18:25:31 +000011163Thu Mar 28 19:22:48 CET 2002 Daniel Veillard <daniel@veillard.com>
11164
11165 * configure.in: fixed configure for MPE/iX from Markus Henke
11166 * xmlmemory.c: fixed initialization problems
11167 * xpath.c: another set of patches from Richard Jinks this
11168 fixes "make XPathtests" on linux
11169
Daniel Veillard21458c82002-03-27 16:12:22 +000011170Wed Mar 27 17:09:43 CET 2002 Daniel Veillard <daniel@veillard.com>
11171
11172 * trionan.c trionan.h xpath.c: more patches from Richard Jinks
11173 * test/XPath/expr/compare test/XPath/expr/equality
11174 test/XPath/expr/floats test/XPath/expr/functions
11175 test/XPath/expr/strings result/XPath/expr/compare
11176 result/XPath/expr/equality result/XPath/expr/floats
11177 result/XPath/expr/functions result/XPath/expr/strings: Updated
11178 tests though they show a divergence on Linux
11179
Daniel Veillard28dfed12002-03-27 09:08:17 +000011180Wed Mar 27 10:06:53 CET 2002 Daniel Veillard <daniel@veillard.com>
11181
11182 * xpath.c trionan.c: previous commit also included patches
11183 from Richard Jinks on some IEEE support corner case
11184
Daniel Veillard5fc1f082002-03-27 09:05:40 +000011185Wed Mar 27 10:03:11 CET 2002 Daniel Veillard <daniel@veillard.com>
11186
11187 * AUTHORS HACKING: Added Igor Zlatkovic as official maintainer
11188 * python/Makefile.am python/tests/Makefile.am: Albert Chin pointed
11189 that $(datadir) should be used for docs
11190
Daniel Veillarddb1dc392002-03-26 12:44:39 +000011191Tue Mar 26 13:43:16 CET 2002 Daniel Veillard <daniel@veillard.com>
11192
11193 * xmlIO.c: Thomas Steinborn pointed out #76404 that libxml2
11194 could leak filedescriptors
11195
Daniel Veillarddd4b9122002-03-26 07:58:43 +000011196Tue Mar 26 08:55:53 CET 2002 Daniel Veillard <daniel@veillard.com>
11197
11198 * configure.in nanohttp.c: applied patch from Allan Clark for
11199 UnixWare/OpenServer
11200
Daniel Veillard19274092002-03-25 16:48:03 +000011201Mon Mar 25 17:45:44 CET 2002 Daniel Veillard <daniel@veillard.com>
11202
11203 * configure.in: preparing 2.4.19
11204 * doc/*: rebuilt the docs
11205
Daniel Veillard56b2db72002-03-25 16:35:28 +000011206Mon Mar 25 17:34:06 CET 2002 Daniel Veillard <daniel@veillard.com>
11207
11208 * nanohttp.c: fixing #76043, got fed up with non-portability
11209 of that piece of code.
11210
Daniel Veillard6f4561a2002-03-25 12:10:14 +000011211Mon Mar 25 13:08:21 CET 2002 Daniel Veillard <daniel@veillard.com>
11212
11213 * valid.c SAX.c: Never commit without running "make tests" :-(
11214 fix a couple of stupidities in the previous commit
11215 * result/*: a few changes in some attribute order result of previous
11216 commit.
11217
Daniel Veillardd85f4f42002-03-25 10:48:46 +000011218Mon Mar 25 11:46:05 CET 2002 Daniel Veillard <daniel@veillard.com>
11219
11220 * valid.c SAX.c: fixed bug #76168, attribute redeclared in
11221 the internal subset should not raise duplicate ID errors,
11222 also there was a small bug in conjunction to namespace
11223 declarations defaulted and xml:xxx attributes DTD definitions.
11224
Daniel Veillard56cd18b2002-03-22 14:14:43 +000011225Fri Mar 22 15:13:49 CET 2002 Daniel Veillard <daniel@veillard.com>
11226
11227 * xpath.c: Richard Jinks also raised some rounding problems
11228 this tries to fix them
11229
Daniel Veillard4e2df542002-03-22 12:23:14 +000011230Fri Mar 22 13:22:09 CET 2002 Daniel Veillard <daniel@veillard.com>
11231
11232 * xpath.c: Richard Jinks spotted an incoherent memory allocation
11233 behaviour in xmlXPathCastToString()
11234
Daniel Veillarddb552912002-03-21 13:27:59 +000011235Thu Mar 21 14:25:29 CET 2002 Daniel Veillard <daniel@veillard.com>
11236
11237 * encoding.c: fixed a bug in the ISO-Latin 1 to UTF8 encoder
11238 raised by Morus Walter
11239
Daniel Veillard9e537932002-03-21 13:08:08 +000011240Thu Mar 21 14:07:13 CET 2002 Daniel Veillard <daniel@veillard.com>
11241
11242 * xmlcatalog.c include/libxml/xmlversion.h.in: applied 2 fixups
11243 from Igor
11244
Daniel Veillard6fbcf422002-03-21 12:32:59 +000011245Thu Mar 21 13:30:06 CET 2002 Daniel Veillard <daniel@veillard.com>
11246
11247 * xpath.c: fixing #75619, related to a problem when trying
11248 to evaluate condition when the current node set resulting
11249 from that sub-step evaluation is empty. Also fixes 2 potential
11250 problem with previous-sibling and next-siblings axis.
11251
Daniel Veillard1840ef02002-03-21 08:05:23 +000011252Thu Mar 21 09:03:59 CET 2002 Daniel Veillard <daniel@veillard.com>
11253
11254 * c14n.c: patch from Mark Vakoc to build C14N if DocBook and
11255 HTML support is not configured in.
11256
Daniel Veillard561b7f82002-03-20 21:55:57 +000011257Wed Mar 20 22:42:42 CET 2002 Daniel Veillard <daniel@veillard.com>
11258
11259 * HTMLparser.c error.c parser.c parserInternals.c tree.c xmlIO.c
11260 include/libxml/tree.h: dohh I really didn't intended to commit
11261 this test version :-(
11262
Daniel Veillarde50f3b52002-03-20 19:24:21 +000011263Wed Mar 20 20:20:57 CET 2002 Daniel Veillard <daniel@veillard.com>
11264
11265 * testSAX.c: I wanted to see the real speed at the SAX interface
11266 after a little too many Ximianer started complaining about the
11267 parser speed.
11268 added a --quiet option:
11269 paphio:~/XML -> ls -l db100000.xml
11270 -rw-rw-r-- 1 veillard www 20182040 Mar 20 10:30 db100000.xml
11271 paphio:~/XML -> time ./testSAX --quiet db100000.xml
11272 3200006 callbacks generated
11273 real 0m1.270s
11274 Which means 16MBytes/s and 3Mcallback/s
11275
Daniel Veillardc62a1472002-03-19 18:35:12 +000011276Tue Mar 19 19:33:57 CET 2002 Daniel Veillard <daniel@veillard.com>
11277
11278 * xpath.c: valgrind spotted another error that time when running
11279 on libxslt regression tests
11280
Daniel Veillard4b3a84f2002-03-19 14:36:46 +000011281Tue Mar 19 15:24:49 CET 2002 Daniel Veillard <daniel@veillard.com>
11282
11283 * Makefile.am: adding "make valgrind" running the full regression
11284 tests (except python ones) under Valgrind (using valgrind -q
11285 which was kindly added by the author).
11286 * valid.c: stupid bug pinpointed by Valgrind, the regression tests
11287 passes cleanly now except an obcure floating point initialization
11288 raised in log10() in one XPath regression test ???
11289 * tree.c: edited some comments to close #75244
11290
Daniel Veillard28cac6b2002-03-19 11:25:30 +000011291Tue Mar 19 12:15:20 CET 2002 Daniel Veillard <daniel@veillard.com>
11292
11293 * xpath.c: pretty insane thing, the xmlXPathFormatNumber()
11294 was not serializing 1 as "1" if LC_ALL=sv_SE :-( and in the
11295 context of ScrollKeeper, made sure that if the number is
11296 an integer, the serialization follows the description at
11297 http://www.w3.org/TR/xpath#section-String-Functions
11298
Daniel Veillard5997aca2002-03-18 18:36:20 +000011299Mon Mar 18 19:18:13 CET 2002 Daniel Veillard <daniel@veillard.com>
11300
Daniel Veillard34ce8be2002-03-18 19:37:11 +000011301 * configure.in: preparing 2.4.18
11302 * doc/*: updated and rebuilt the web site
11303 * *.c libxml.h: implement the new IN_LIBXML scheme discussed with
11304 the Windows and Cygwin maintainers.
Daniel Veillard5997aca2002-03-18 18:36:20 +000011305 * parser.c: humm, changed the way the SAX parser work when
11306 xmlSubstituteEntitiesDefault(1) is set, it will then
11307 do the entity registration and loading by itself in case the
11308 user provided SAX getEntity() returns NULL.
11309 * testSAX.c: added --noent to test the behaviour.
11310
Daniel Veillardb5a60ec2002-03-18 11:45:56 +000011311Mon Mar 18 12:44:23 CET 2002 Daniel Veillard <daniel@veillard.com>
11312
11313 * parser.c: Wilfried Teiken provided a hackish but working
11314 way to get context reported back on entities when parsing
11315 with SAX and without breaking the DOM build.
11316
Daniel Veillard2d347fa2002-03-17 10:34:11 +000011317Sun Mar 17 11:31:55 CET 2002 Daniel Veillard <daniel@veillard.com>
11318
11319 * c14n.c: applied a new patch from Aleksey Sanin
11320 * doc/site.xsl doc/xml.html doc/*.html: updated the documentation
11321 to reference Aleksey implementation of XML digital Signatures
11322
Daniel Veillard38bf6f02002-03-16 22:03:31 +000011323Sat Mar 16 23:01:42 CET 2002 Daniel Veillard <daniel@veillard.com>
11324
11325 * xpath.c: small fix to avoid potential problem due to
11326 ordering of freeing data
11327 * python/Makefile.am: people were complaining about
11328 the generated file in python dir not being built
11329
Daniel Veillardd2379012002-03-15 22:24:56 +000011330Fri Mar 15 23:21:40 CET 2002 Daniel Veillard <daniel@veillard.com>
11331
11332 * libxml.spec.in python/Makefile.am python/tests/Makefile.am
11333 python/generator.py python/libxml.c python/types.c: Cleanup
11334 of the python Makefiles based on Jacob and James feedback,
11335 fixed the spec file accordingly, fixed the number of warning
11336 that passing my pedantic CFLAGS was generating. Conclusion
11337 is that Python includes are real crap.
11338
Daniel Veillarde7dd2b82002-03-15 18:44:02 +000011339Fri Mar 15 19:41:25 CET 2002 Daniel Veillard <daniel@veillard.com>
11340
11341 * configure,in: it was reported quite a few times that
11342 xml2-config --cflags should not output
11343 -I$includeprefix/libxml2/libxml because libxml2 header names
11344 clashes with existing names like list.h from C++ stl.
11345 Includes should be #include<libxml/xxx.h> so ...
11346
Daniel Veillard6f293b12002-03-15 09:42:33 +000011347Fri Mar 15 10:41:50 CET 2002 Daniel Veillard <daniel@veillard.com>
11348
11349 * c14n.c: another patch from Aleksey Sanin
11350
Daniel Veillard5c396542002-03-15 07:57:50 +000011351Fri Mar 15 08:55:55 CET 2002 Daniel Veillard <daniel@veillard.com>
11352
11353 * c14n.c: applied patch from Aleksey Sanin fixing a problem in the
11354 canonicalization algorithm
11355 * doc/xml.html doc/index.html: added the C14N references on the
11356 index page.
11357
jacob berkman9be65862002-03-14 02:15:56 +0000113582002-03-13 jacob berkman <jacob@ximian.com>
11359
11360 * python/Makefile.am: remove LDADD and CFLAGS as this is broken
11361 usage, redundant, and gcc specific
11362
Daniel Veillard75be0132002-03-13 10:03:35 +000011363Wed Mar 13 11:00:59 CET 2002 Daniel Veillard <daniel@veillard.com>
11364
11365 * xpath.c: speedup some node selection operations, this can
11366 have a significant impact on DocBook Norm's stylesheets
11367 * nanohttp.c: someone reported that SOCKLEN_T may not be defined
11368 make sure it's always the case
11369 * debugXML.c: distinguish CDATA and comments in ls operations
11370
Daniel Veillard61f26172002-03-12 18:46:39 +000011371Tue Mar 12 19:45:24 CET 2002 Daniel Veillard <daniel@veillard.com>
11372
11373 * include/libxml/*.h: Heiko W. Rupp fixed a lot of comments
11374 to generate better API descriptions etc...
11375
Daniel Veillard9ff88172002-03-11 09:15:32 +000011376Mon Mar 11 10:10:30 CET 2002 Daniel Veillard <daniel@veillard.com>
11377
11378 * c14n.c: Fixing #74186, made sure all boolean expressions
11379 get fully parenthesized, ran indent on the output
11380 * configure.in HTMLtree.c SAX.c c14n.c debugXML.c tree.c xpointer.c
11381 include/libxml/tree.h: also #74186 related, removed the
11382 --with-buffers option, and all the preprocessor conditional
11383 sections that were resulting from it.
11384
Daniel Veillardbb4e46d2002-03-10 16:49:08 +000011385Sun Mar 10 17:47:58 CET 2002 Daniel Veillard <daniel@veillard.com>
11386
11387 * valid.c: applied patch from Dodji Seketeli fixing an
11388 uninitailized variable in xmlValidGetValidElements()
11389
Daniel Veillarddb1bdba2002-03-09 14:13:11 +000011390Sat Mar 9 15:10:49 CET 2002 Daniel Veillard <daniel@veillard.com>
11391
11392 * c14n.c: fixed a few comments
11393 * doc/*.html doc/*/*.html: regenerated the docs and added
11394 the C14N API
11395 * doc/api.xsl doc/gnome-xml.sgml: fixups and added IDs
11396
Daniel Veillardfa49d872002-03-09 10:20:00 +000011397Sat Mar 9 11:16:11 CET 2002 Daniel Veillard <daniel@veillard.com>
11398
11399 * check-xml-test-suite.py: fix to adapt varaiations in the
11400 bindings
11401 * configure.in python/setup.py python/setup.py.in: fixed to
11402 have the version of the python scripts automatically updated
11403
Daniel Veillarda3db2e32002-03-08 15:46:57 +000011404Fri Mar 8 16:45:55 CET 2002 Daniel Veillard <daniel@veillard.com>
11405
11406 * tree.c: fixed a bug newly introduced and pointed by Uwe Fechner
11407 in xmlCopyProp()
11408
Daniel Veillardaf43f632002-03-08 15:05:20 +000011409Fri Mar 8 15:49:10 CET 2002 Daniel Veillard <daniel@veillard.com>
11410
11411 * configure.in: preparing 2.4.17 release
11412 * doc/*: updated and rebuilt the docs
11413 * xpath.c: fixed a comment
11414 * python/libxml.c: fixed a possible reentrancy problem
11415
Daniel Veillardef6c46f2002-03-07 22:21:56 +000011416Thu Mar 7 23:19:28 CET 2002 Daniel Veillard <daniel@veillard.com>
11417
11418 * tree.c python/tests/Makefile.am python/tests/attribs.py:
11419 fixed xmlHasNsProp() bugs for defaulted from DTD attribs,
11420 added a specific regression test
11421 * python/generator.py: xmlHasNsProp() and xmlHasProp() shall
11422 not raise exceptions when failing to find the attribute.
11423
Daniel Veillard90bc3712002-03-07 15:12:58 +000011424Thu Mar 7 16:11:35 CET 2002 Daniel Veillard <daniel@veillard.com>
11425
11426 * configure.in xmllint.c: owen pointed out a problem with the
11427 ftme fix, gettimeofday() was not detected by configure and
11428 the ftime header wasn't included, dohhh
11429
Daniel Veillard8c1ae602002-03-07 11:21:00 +000011430Thu Mar 7 12:19:36 CET 2002 Daniel Veillard <daniel@veillard.com>
11431
11432 * configure.in xmllint.c: trying to fix #71457 for timing
11433 precision when gettimeofday() is not availble but ftime() is
11434
Daniel Veillardf5a457a2002-03-07 10:25:29 +000011435Thu Mar 7 11:24:02 CET 2002 Daniel Veillard <daniel@veillard.com>
11436
11437 * libxml.spec.in doc/Makefile.am: Fixed #73408 missing images
11438 are now copied on install and part of the -devel RPM
11439
Daniel Veillard7b416132002-03-07 08:36:03 +000011440Thu Mar 7 09:34:16 CET 2002 Daniel Veillard <daniel@veillard.com>
11441
11442 * xpath.c: trying to avoid bug #72150 which was apparently
11443 caused by a gcc bug (or a processor problem) as detailed
11444 at http://veillard.com/gcc.bug
11445
Daniel Veillardf742d342002-03-07 00:05:35 +000011446Thu Mar 7 01:02:37 CET 2002 Daniel Veillard <daniel@veillard.com>
11447
11448 * tree.c python/tests/Makefile.am python/tests/cutnpaste.py:
11449 fixed xmlReconciliateNs(), added a Python test/example for
11450 inter-document cut'n paste
11451 * python/libxml.py: fixed node.doc on document nodes and added
11452 xpathEval() onto node objects
11453
Daniel Veillard4e0e2972002-03-06 21:39:42 +000011454Wed Mar 6 22:38:03 CET 2002 Daniel Veillard <daniel@veillard.com>
11455
11456 * HTMLtree.c: fixed some htmlSetMetaEncoding() problems
11457 * python/libxml.c python/tests/Makefile.am python/tests/serialize.py:
11458 fixup and integrated tests for the serialization stuff
11459
Daniel Veillarde915b2d2002-03-06 18:42:40 +000011460Wed Mar 6 19:40:57 CET 2002 Daniel Veillard <daniel@veillard.com>
11461
11462 * Makefile.am libxml.3 libxml.4 libxml.spec.in: Fixed bug #72570
11463 moved the libxml man page to section 3
11464
Daniel Veillard1e774382002-03-06 17:35:40 +000011465Wed Mar 6 18:34:07 CET 2002 Daniel Veillard <daniel@veillard.com>
11466
11467 * tree.c: fix bug #72490
11468 * python/libxml.c python/libxml.py: added methods serialize()
11469 and saveTo() to all node elements.
11470
Daniel Veillardddffd2a2002-03-05 20:28:20 +000011471Tue Mar 5 21:27:03 CET 2002 Daniel Veillard <daniel@veillard.com>
11472
11473 * xmlIO.c: closed #73430, don't read from an input source
11474 which indicated an end-of-file or an error.
11475
Daniel Veillard8d24cc12002-03-05 15:41:29 +000011476Tue Mar 5 16:33:42 CET 2002 Daniel Veillard <daniel@veillard.com>
11477
11478 * parser.c: make sure SAX endDocument is always called as
11479 this could result in a Python memory leak otherwise (it's
11480 used to decrement ref-counting)
11481 * python/generator.py python/libxml.c python/libxml.py
11482 python/libxml2-python-api.xml python/libxml2class.txt
11483 python/tests/error.py python/tests/xpath.py: implemented
11484 the suggestions made by Gary Benson and extended the tests
11485 to match it.
11486
Daniel Veillardba5e18a2002-03-05 09:36:43 +000011487Tue Mar 5 10:35:24 CET 2002 Daniel Veillard <daniel@veillard.com>
11488
11489 * python/generator.py: applied patch fixing #73450
11490
Daniel Veillard044fc6b2002-03-04 17:09:44 +000011491Mon Mar 4 17:59:29 CET 2002 Daniel Veillard <daniel@veillard.com>
11492
11493 * xpath.c: fixing #61290 "namespace nodes have no parent"
11494 long standing divergence from the XPath REC. NodeSets
11495 simply hold a copy of namespace nodes and those node ->next
11496 points to the parent (which may not be the node carrying the
11497 definition).
11498 * include/libxml/xpath.h: flagged but didn't added a possible
11499 speedup
11500 * DOCBparser.c HTMLparser.c: removed some warnings from push
11501 parser due to new state being added.
11502 * tree.c: new fix from Boris Erdmann
11503 * configure.in c14n.c include/libxml/c14n.h testC14N.c: added
11504 the XML Canonalization support from Aleksey Sanin
11505
Daniel Veillardd4f41aa2002-03-03 14:13:46 +000011506Sun Mar 3 15:12:42 CET 2002 Daniel Veillard <daniel@veillard.com>
11507
11508 * tree.c: patch from Boris Erdmann fixing some namespace odities
11509 with xmlCopyNode()
11510
Daniel Veillardc6613042002-03-02 09:34:02 +000011511Sat Mar 2 10:33:04 CET 2002 Daniel Veillard <daniel@veillard.com>
11512
11513 * xmlIO.c: fix bug #72706 when loading a NULL entity
11514
Daniel Veillardc0fef772002-03-01 16:16:31 +000011515Fri Mar 1 17:14:42 CET 2002 Daniel Veillard <daniel@veillard.com>
11516
11517 * SAX.c: Fixed #72346, about handling of xmlns:foo="", this could
11518 actually change in a future XML Namespace revision.
11519
Daniel Veillard79426f22002-03-01 16:14:17 +000011520Fri Mar 1 17:12:15 CET 2002 Daniel Veillard <daniel@veillard.com>
11521
11522 * python/types.c python/tests/Makefile.am python/tests/xpathret.py:
11523 added the possibility of returning nodesets from XPath extension
11524 functions written in Python
11525
Daniel Veillarda94ec6f2002-03-01 13:00:53 +000011526Fri Mar 1 13:56:12 CET 2002 Daniel Veillard <daniel@veillard.com>
11527
11528 * python/*: commiting some Python bindings work done while travelling
11529
Daniel Veillard97300512002-03-01 09:13:41 +000011530Fri Mar 1 10:11:15 CET 2002 Daniel Veillard <daniel@veillard.com>
11531
11532 * xmllint.c: close #72663 and #72658, don't memdump unless compiled
11533 explicitely with memory debugging switched on
11534
Daniel Veillard6361da02002-02-23 10:10:33 +000011535Sat Feb 23 11:08:09 CET 2002 Daniel Veillard <daniel@veillard.com>
11536
11537 * python/generator.py python/libxml.c python/libxml2-python-api.xml
11538 python/libxml2class.txt python/libxml_wrap.h python/types.c:
11539 Added wrapper for the xmlURIPtr type, provided accessors, fixed
11540 the accessor generator for strings
11541 * python/tests/Makefile.am python/tests/tstURI.py: added a specific
11542 regression test.
11543
Daniel Veillard0fea6f42002-02-22 22:51:13 +000011544Fri Feb 22 23:44:57 CET 2002 Daniel Veillard <daniel@veillard.com>
11545
11546 * python/README python/generator.py python/libxml.c python/setup.py:
11547 added the 'usual' setup.py to allow building a libxml2-python
11548 module based on the same code. The initialization is however
11549 different the 2 .so files fo libxml2 and libxslt are identical and
11550 they entry point initialize both libraries. this is done to avoid
11551 some possible nasty problem since the Python don't merge the maps
11552 of all shared modules.
11553
Daniel Veillard158a4d22002-02-20 22:17:58 +000011554Wed Feb 20 23:16:08 CET 2002 Daniel Veillard <daniel@veillard.com>
11555
11556 * parser.c: fixed a push/encoding bug reported by Michael
11557 on librsvg
11558
Daniel Veillard7839e162002-02-20 18:54:48 +000011559Wed Feb 20 19:54:05 CET 2002 Daniel Veillard <daniel@veillard.com>
11560
11561 * include/libxml/parserInternals.h: fixes a misplaced #endif
11562
Daniel Veillardd54fa3e2002-02-20 16:48:52 +000011563Wed Feb 20 17:47:55 CET 2002 Daniel Veillard <daniel@veillard.com>
11564
11565 * parser.c valid.c: found and fixed a couple of allocation bugs
11566
Daniel Veillard6dbcaf82002-02-20 14:37:47 +000011567Wed Feb 20 15:36:03 CET 2002 Daniel Veillard <daniel@veillard.com>
11568
11569 * doc/xml.html doc/python.html doc/*: added a Python and binding
11570 page describing the current state of the Python bindings and
11571 giving pointers to the other languages wrappers.
11572
Daniel Veillard5f4b5992002-02-20 10:22:49 +000011573Wed Feb 20 11:16:15 CET 2002 Daniel Veillard <daniel@veillard.com>
11574
11575 * configure.in include/libxml/xmlwin32version.h: preparing 2.4.16
11576 * doc/* python/libxml2class.txt: updated and rebuilt the docs,
11577 rebuilt the API and web site
11578 * xpath.c: fixed #71978 portability bugs
11579
Daniel Veillard8aff2472002-02-19 21:50:43 +000011580Tue Feb 19 22:49:36 CET 2002 Daniel Veillard <daniel@veillard.com>
11581
11582 * SAX.c: oops broke automatic defaulting of namespaces attributes.
11583
Daniel Veillard8dc16a62002-02-19 21:08:48 +000011584Tue Feb 19 22:01:35 CET 2002 Daniel Veillard <daniel@veillard.com>
11585
11586 * include/libxml/parserInternals.h parser.c: had to change
11587 2 internal parsing API when processing document content
11588 to check the start and end of element content are defined
11589 in the same entity
11590 * valid.c include/libxml/valid.h: attribute normalization can
11591 generate a validity error added xmlValidCtxtNormalizeAttributeValue()
11592 with the context to report it.
11593 * SAX.c: fixed the last known bugs, crazy validation constraints
11594 when a document is standalone seems correctly handled. There
11595 is a couple of open issues left which need consideration especially
11596 PE93 on external unparsed entities and standalone status.
11597 Ran 1819 tests: 1817 suceeded, 2 failed and 0 generated an error in 8.26 s.
11598 The 2 tests left failing are actually in error. Cleanup done.
11599
Daniel Veillardd6dc4cb2002-02-19 14:18:08 +000011600Tue Feb 19 15:17:02 CET 2002 Daniel Veillard <daniel@veillard.com>
11601
11602 * valid.c: implemented E59 spaces in CDATA does not match the
11603 nonterminal S
11604
Daniel Veillard878eab02002-02-19 13:46:09 +000011605Tue Feb 19 14:44:53 CET 2002 Daniel Veillard <daniel@veillard.com>
11606
11607 * SAX.c parser.c valid.c: more validation test fixups
11608 * check-xml-test-suite.py: added duration info for the tests
11609
Daniel Veillardd01fd3e2002-02-18 22:27:47 +000011610Mon Feb 18 23:25:08 CET 2002 Daniel Veillard <daniel@veillard.com>
11611
11612 * parser.c valid.c: a couple of errors were reported but not
11613 saved back as such in the parsing context. Down to 1% failure rate
11614 Ran 1819 tests: 1801 suceeded, 18 failed and 0 generated an error
11615
Daniel Veillard4a7ae502002-02-18 19:18:17 +000011616Mon Feb 18 20:16:15 CET 2002 Daniel Veillard <daniel@veillard.com>
11617
11618 * xmlInternald.c: isExtender was missing a char
11619 * parser.c include/libxml/parser.h: % are acceptable in the
11620 internal subset if within a PUBLIC ID
11621
Daniel Veillard8ab0f582002-02-18 18:31:38 +000011622Mon Feb 18 19:27:32 CET 2002 Daniel Veillard <daniel@veillard.com>
11623
11624 * SAX.c parserInternals.c valid.c: more work on the conformance
11625 suite. Took the step to finally block documents with encoding
11626 errors. It's a fatal error per the spec, people should have fixed
11627 their documents by now.
11628
Daniel Veillard55253e22002-02-18 14:32:39 +000011629Mon Feb 18 15:30:14 CET 2002 Daniel Veillard <daniel@veillard.com>
11630
11631 * check-xml-test-suite.py: fixed the test script after some discussion
11632 on the semantic of TYPE="error"
11633 * Makefile.am: added the script to the distrib
11634
Daniel Veillard28757702002-02-18 11:19:30 +000011635Mon Feb 18 12:17:41 CET 2002 Daniel Veillard <daniel@veillard.com>
11636
11637 * SAX.c entities.c: fixed a couple of conformances issues deep
11638 into the validation code (standalone and undeclared Notations)
11639
Daniel Veillard82ac6b02002-02-17 23:18:55 +000011640Mon Feb 18 00:17:24 CET 2002 Daniel Veillard <daniel@veillard.com>
11641
11642 * parser.c: fixed #71741 supid typo an a bug about encoding parsing
11643 stayed there for years !
11644
Daniel Veillard7aea52d2002-02-17 23:07:47 +000011645Mon Feb 18 00:06:42 CET 2002 Daniel Veillard <daniel@veillard.com>
11646
11647 * valid.c SAX.c: fixed #71740 NotationDecl with a required field
11648 missing
11649
Daniel Veillardc7612992002-02-17 22:47:37 +000011650Sun Feb 17 23:45:40 CET 2002 Daniel Veillard <daniel@veillard.com>
11651
11652 * check-xml-test-suite.py: improved the behaviour a bit as
11653 well as the logs
11654 * parser.c valid.c SAX.c: fixed a few more bugs
11655 "Ran 1819 tests: 1778 suceeded, 41 failed, and 0 generated an error"
11656
Daniel Veillardbb7ddb32002-02-17 21:26:33 +000011657Sun Feb 17 20:41:37 CET 2002 Daniel Veillard <daniel@veillard.com>
11658
11659 * check-xml-test-suite.py: python script to run regression tests
11660 against the XML Test suite of W3C/OASis
11661 * SAX.c: fixed a validation bug
11662 * parser.c: fixed 3 errors pointed by the test suite
11663 * doc/buildDocBookCatalog: fixed a typo pointed by drake
11664 * python/Makefile.am: fixed a dependendy
11665
Daniel Veillard9f28f302002-02-15 20:48:08 +000011666Fri Feb 15 21:47:13 CET 2002 Daniel Veillard <daniel@veillard.com>
11667
11668 * xmlmemory.c: avoid a warning bug #71594
11669
Daniel Veillard144024e2002-02-13 21:14:46 +000011670Wed Feb 13 22:13:33 CET 2002 Daniel Veillard <daniel@veillard.com>
11671
11672 * xmlmemory.c: Jesse Perry provided a patch to remove a few
11673 warning on alpha/Tru64
11674
Daniel Veillarde4301c82002-02-13 13:32:35 +000011675Wed Feb 13 14:30:49 CET 2002 Daniel Veillard <daniel@veillard.com>
11676
11677 * include/libxml/entities.h: fixing a comment
11678 * valid.c: fixing some troubles with validity check on namespaces
11679 * result/VC/NS3 test/VC/NS3: added a specific regression test
11680
Daniel Veillarda6d05382002-02-13 13:07:41 +000011681Wed Feb 13 14:05:24 CET 2002 Daniel Veillard <daniel@veillard.com>
11682
11683 * tree.c: Fixing #71342 serializing '\n' in attribute values
11684 * result/noent/att3 result/att3 test/att3: added a specific
11685 test.
11686
Daniel Veillard797a5652002-02-12 13:46:21 +000011687Tue Feb 12 14:45:32 CET 2002 Daniel Veillard <daniel@veillard.com>
11688
11689 * python/libxml.c: couple of bug fixes
11690
Daniel Veillard01a6d412002-02-11 18:42:20 +000011691Mon Feb 11 19:41:29 CET 2002 Daniel Veillard <daniel@veillard.com>
11692
11693 * python/*.py: removed tabs and used spaces.
11694
Daniel Veillard397ff112002-02-11 18:27:20 +000011695Mon Feb 11 19:25:44 CET 2002 Daniel Veillard <daniel@veillard.com>
11696
11697 * configure.in include/libxml/xmlwin32version.h: preparing 2.4.15
11698 * doc/news.html doc/xml.html doc/xmlio.html: rebuilt some docs
11699
Daniel Veillard03517542002-02-11 13:54:40 +000011700Mon Feb 11 14:53:24 CET 2002 Daniel Veillard <daniel@veillard.com>
11701
11702 * doc/xmlcatalog_man.xml: trying to close Red Hat bug #58707
11703 https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=58707
11704
Daniel Veillard6c4ffaf2002-02-11 08:54:05 +000011705Mon Feb 11 09:53:02 CET 2002 Daniel Veillard <daniel@veillard.com>
11706
11707 * include/libxml/encoding.h include/libxml/entities.h
11708 include/libxml/globals.h include/libxml/parser.h
11709 include/libxml/threads.h include/libxml/tree.h
11710 include/libxml/xmlmemory.h: trying to fix the include mess
11711
Daniel Veillard1a612ed2002-02-11 07:54:45 +000011712Mon Feb 11 08:53:33 CET 2002 Daniel Veillard <daniel@veillard.com>
11713
11714 * include/libxml/xmlmemory.h: reverted part of the previous
11715 attempt to provide #69655, this was breaking the build.
11716
Daniel Veillard0ba59232002-02-10 13:20:39 +000011717Sun Feb 10 14:13:34 CET 2002 Daniel Veillard <daniel@veillard.com>
11718
11719 * HTMLtree.c Makefile.am build_glob.py configure.in debugXML.c
11720 globals.c parser.c threads.c tree.c valid.c xmlmemory.c
11721 xpath.c xpointer.c include/libxml/globals.h include/libxml/parser.h
11722 include/libxml/parserInternals.h include/libxml/tree.h
11723 include/libxml/xmlmemory.h include/libxml/xpathInternals.h:
11724 Tentatively fixed #69655 , make compiling with -Wredundant-decls
11725 clean.
11726 * python/libxml.c: fixed a warning.
11727
Daniel Veillardc5f05ad2002-02-10 11:57:22 +000011728Sun Feb 10 12:02:59 CET 2002 Daniel Veillard <daniel@veillard.com>
11729
11730 * tree.c valid.c xinclude.c: fix #68882, cleanup the XInclude
11731 copying of node, merge back IDs in the target document.
11732 * result/XInclude/docids.xml test/XInclude/docs/docids.xml
11733 test/XInclude/ents/ids.xml: test case
11734 * result/VC/ElementValid4: output changed due to a typo fix
11735
Daniel Veillard1c18e302002-02-09 22:16:40 +000011736Sat Feb 9 23:15:04 CET 2002 Daniel Veillard <daniel@veillard.com>
11737
11738 * python/Makefile.am: seems some version of automake didn't
Daniel Veillard784b9352003-02-16 15:50:27 +000011739 generate the dependencies right as Jacob found out. Add
11740 an extra dependency rule.
Daniel Veillard1c18e302002-02-09 22:16:40 +000011741
Daniel Veillard5e5c2d02002-02-09 18:03:01 +000011742Sat Feb 9 18:59:23 CET 2002 Daniel Veillard <daniel@veillard.com>
11743
11744 * parserInternals.c valid.c: Justin Fletcher found some parts
11745 of the code needing cleanup
11746 * libxml.spec.in python/Makefile.am python/generator.py
11747 python/libxml.c python/libxml.py: Fixed the python Makefiles
11748 corrected a bug showing up on ia64, changed the name of the
11749 python internal module too
11750
Daniel Veillard07be19b2002-02-08 14:20:35 +000011751Fri Feb 8 15:19:28 CET 2002 Daniel Veillard <daniel@veillard.com>
11752
11753 * Makefile.am: applied patch from Andris Pavenis for binary
11754 name suffixes
11755
Daniel Veillardf216d462002-02-08 13:44:24 +000011756Fri Feb 8 14:43:17 CET 2002 Daniel Veillard <daniel@veillard.com>
11757
11758 * xmllint.c win32/win32config.h: fixing #68748
11759
Daniel Veillardd455d792002-02-08 13:37:46 +000011760Fri Feb 8 14:37:05 CET 2002 Daniel Veillard <daniel@veillard.com>
11761
11762 * valid.c: fixing #70166
11763
11764Fri Feb 8 14:31:24 CET 2002 Daniel Veillard <daniel@veillard.com>
11765
11766 * valid.c: fixing #70077
11767
Daniel Veillardc575b992002-02-08 13:28:40 +000011768Fri Feb 8 14:24:02 CET 2002 Daniel Veillard <daniel@veillard.com>
11769
11770 * Copyright Makefile.am README configure.in libxml.spec.in:
11771 Changed to the MIT Licence
11772 * doc/FAQ.html doc/catalog.html doc/intro.html doc/xml.html
11773 doc/xmlio.html: updated the doc accordingly
11774 * include/libxml/xmlwin32version.h configure.in: preparing
11775 2.4.14 release
11776 * python/generator.py python/libxml.c python/libxml2-python-api.xml
11777 python/libxml2class.txt python/libxml_wrap.h python/types.c:
11778 fixed the const xmlChar * wrapper and generator, XPath extension
11779 functions now use the context as first argument
11780 * python/tests/tstxpath.py python/tests/xpath.py
11781 python/tests/xpathext.py: Updated the tests accordingly
11782 * tree.c: fixed bug #70067
11783
Daniel Veillard7db38712002-02-07 16:39:11 +000011784Thu Feb 7 17:33:58 CET 2002 Daniel Veillard <daniel@veillard.com>
11785
11786 * Makefile.am: cleanup
11787 * debugXML.c: always use stdout if output is NULL
11788 * xmlIO.c: don't close filedescriptors passed to outputBuffers
11789 * python/Makefile.am python/generator.py python/libxml2class.txt
11790 python/libxml_wrap.h python/types.c: augmented the number of bindings
11791 handling FILE * and XPath contexts
11792 * python/tests/Makefile.am: avoid a stupid problem due to the
11793 use of TEST.
11794
Daniel Veillard15a143b2002-02-06 22:40:50 +000011795Wed Feb 6 23:37:07 CET 2002 Daniel Veillard <daniel@veillard.com>
11796
11797 * configure.in: fixed stupid bug #70738 found by alfons hoogervorst
11798
Daniel Veillard70cab352002-02-06 16:06:58 +000011799Wed Feb 6 17:04:51 CET 2002 Daniel Veillard <daniel@veillard.com>
11800
11801 * python/TODO python/libxml.c: cleanup the extension function lookup
11802 * xmlmemory.c include/libxml/xmlmemory.h: always compile the list
11803
Daniel Veillard7a96efc2002-02-05 16:34:33 +000011804Tue Feb 5 17:33:30 CET 2002 Daniel Veillard <daniel@veillard.com>
11805
11806 * configure.in python/Makefile.am: do not install outside
11807 of prefix
11808
Daniel Veillard33caa0b2002-02-04 14:07:26 +000011809Mon Feb 4 15:05:55 CET 2002 Daniel Veillard <daniel@veillard.com>
11810
11811 * python/TODO python/libxml.c: started adding SAX interfaces
11812 * python/tests/Makefile.am python/tests/pushSAX.py: added a basic
11813 SAX test
11814
Daniel Veillard36eea2d2002-02-04 00:17:01 +000011815Mon Feb 4 01:12:42 CET 2002 Daniel Veillard <daniel@veillard.com>
11816
11817 * tree.c: hardened the addChild function
11818 * python/generator.py python/libxml.c python/libxml2-python-api.xml
11819 python/libxml2class.txt python/libxml_wrap.h python/TODO:
11820 added accessors needed for xmlNode, a bit more testing and
11821 extension of interfaces
11822 * python/tests/Makefile.am python/tests/build.py: added a test
11823 build from scratch/save/load/check
11824
Daniel Veillard4e1b26c2002-02-03 20:13:06 +000011825Sun Feb 3 21:10:39 CET 2002 Daniel Veillard <daniel@veillard.com>
11826
11827 * parserInternals.c: change a small bit in the way valididy
11828 error messages get initialized
11829 * python/TODO python/libxml.c python/libxml2-python-api.xml
11830 python/libxml2class.txt python/libxml_wrap.h python/types.c:
11831 added some memory debugging to track leaks at the libxml2 level
11832 * python/tests/*.py: changed all tests to check for leaks,
11833 there is just one left in XPath extension registrations.
11834
Daniel Veillard26f1dcc2002-02-03 16:53:19 +000011835Sun Feb 3 17:50:46 CET 2002 Daniel Veillard <daniel@veillard.com>
11836
11837 * python/TODO python/generator.py python/libxml2-python-api.xml
11838 python/libxml2class.txt: more accessor classes for the parser
11839 context, allow to switch on and check validity
11840 * python/tests/Makefile.am python/tests/error.py
11841 python/tests/invalid.xml python/tests/valid.xml
11842 python/tests/validate.py: attded more test and and added error.py
11843 which I forgot to commit in the last step
11844
Daniel Veillard3ce52572002-02-03 15:08:05 +000011845Sun Feb 3 16:03:55 CET 2002 Daniel Veillard <daniel@veillard.com>
11846
11847 * python/Makefile.am python/types.c: cleanup
11848 * python/libxml.c python/libxml.py python/libxml_wrap.h
11849 python/generator.py python/libxml2-python-api.xml
11850 python/libxml2class.txt: added class for parser context, added
11851 first cut for push mode support. Added a framework to generate
11852 accessors functions.
11853 * python/tests/Makefile.am python/tests/push.py: added a push
11854 test
11855
Daniel Veillardcfb05462002-02-02 23:18:22 +000011856Sun Feb 3 00:17:26 CET 2002 Daniel Veillard <daniel@veillard.com>
11857
11858 * python/Makefile.am python/TODO python/libxml.py: fixed a small
11859 bug a bit of cleanup.
11860
Daniel Veillard5d819032002-02-02 21:49:17 +000011861Sat Feb 2 22:47:10 CET 2002 Daniel Veillard <daniel@veillard.com>
11862
11863 * python/Makefile.am python/libxml.c python/libxml2-python-api.xml
11864 python/libxml2class.txt: adding error redirections and preformat
11865 to a python handler
11866 * python/tests/Makefile.am python/tests/*.py: cleanup made all
11867 tests self checking
11868
Daniel Veillard7fd7a942002-02-02 12:19:46 +000011869Sat Feb 2 13:18:54 CET 2002 Daniel Veillard <daniel@veillard.com>
11870
11871 * python/libxml.c python/libxml.py: fixed a stupid bug when renaming
11872 a function
11873
Daniel Veillard9589d452002-02-02 10:28:17 +000011874Sat Feb 2 11:25:51 CET 2002 Daniel Veillard <daniel@veillard.com>
11875
11876 * libxml.spec.in python/Makefile.am python/TODO python/generator.py
11877 python/libxml.c python/libxml2-python-api.xml
11878 python/libxml2class.txt: Progressing through the TODOs, class
11879 description output, extra XML API, RPM now builds the wrappers
11880 for all python installed versions
11881
Daniel Veillard253aa2c2002-02-02 09:17:16 +000011882Sat Feb 2 10:13:52 CET 2002 Daniel Veillard <daniel@veillard.com>
11883
11884 * configure.in libxml.spec.in python/Makefile.am python/TODO
11885 python/generator.py python/libxml2class.txt: added more informations
11886 in the libxml2-python package including docs. Slightly changed
11887 the class hierarchy
11888 * python/tests/*: added basic regression tests infrastructure too
11889
11890Fri Feb 1 23:11:58 CET 2002 Daniel Veillard <daniel@veillard.com>
11891
11892 * configure.in libxml.spec.in example/Makefile.am python/Makefile.am:
11893 added libxml2-python as part of the packages installed
11894
Daniel Veillarda7340c82002-02-01 17:56:45 +000011895Fri Feb 1 18:48:19 CET 2002 Daniel Veillard <daniel@veillard.com>
11896
11897 * python/Makefile.am python/generator.py python/libxml.c
11898 python/libxml.py: more work, now able to extend the
11899 XPath interpreter with functions written in python.
11900
Daniel Veillardc3e39442002-02-01 09:29:41 +000011901Fri Feb 1 10:28:51 CET 2002 Daniel Veillard <daniel@veillard.com>
11902
11903 * python/Makefile.am: Jacob sent a patch to allow building from
11904 tarfile.
11905
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +000011906Fri Feb 1 00:40:48 CET 2002 Daniel Veillard <daniel@veillard.com>
11907
11908 * python/Makefile.am python/libxml.c configure.in Makefile.am:
11909 inserted the python wrappers build, I hope this won't be too
11910 unportable
11911
Daniel Veillard1971ee22002-01-31 20:29:19 +000011912Thu Jan 31 21:27:37 CET 2002 Daniel Veillard <daniel@veillard.com>
11913
11914 * xpath.c: minor optimization
11915 * python/generator.py python/libxml.c python/libxml.py
11916 python/libxml_wrap.h: more work on the python bindings,
11917 they now support XPath and there is no evident leak
11918
Daniel Veillard36ed5292002-01-30 23:49:06 +000011919Thu Jan 31 00:48:06 CET 2002 Daniel Veillard <daniel@veillard.com>
11920
11921 * python/generator.py python/libxml.c python/libxml.py:
11922 more work on the python bindings generator.
11923
Daniel Veillard96fe0952002-01-30 20:52:23 +000011924Wed Jan 30 21:51:26 CET 2002 Daniel Veillard <daniel@veillard.com>
11925
11926 * python/generator.py python/libxml.c python/libxml_wrap.h:
11927 more work on the python bindings.
11928
Daniel Veillardd2897fd2002-01-30 16:37:32 +000011929Wed Jan 30 17:35:33 CET 2002 Daniel Veillard <daniel@veillard.com>
11930
11931 * python/generator.py python/libxml.c python/libxml.py
11932 python/libxml_wrap.h: commited early version of a python binding
11933 for private use only ATM
11934
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +000011935Sat Jan 26 22:41:13 CET 2002 Daniel Veillard <daniel@veillard.com>
11936
11937 * entities.c tree.c include/libxml/entities.h: applied patch
11938 from Anthony Jones to implement copy of DTD subtree too. Had
11939 just to keep 2 function private which really ought to become
11940 public ones.
11941
Daniel Veillarda42f25f2002-01-25 14:15:40 +000011942Fri Jan 25 15:14:55 CET 2002 Daniel Veillard <daniel@veillard.com>
11943
11944 * xmllint.c: added pointers to the web pages in the usage()
11945
Daniel Veillardbd227ae2002-01-24 16:05:41 +000011946Thu Jan 24 17:04:04 CET 2002 Daniel Veillard <daniel@veillard.com>
11947
11948 * tree.c: more fixes from Petr Kozelka for attribute handling
11949 in the tree API to align the semantic with DOM.
11950
Daniel Veillard36065812002-01-24 15:02:46 +000011951Thu Jan 24 16:00:53 CET 2002 Daniel Veillard <daniel@veillard.com>
11952
11953 * valid.c tree.c entities.c: another set of patches from
11954 Anthony Jones for copy operations cleanup and robustness
11955
Daniel Veillardf8592562002-01-23 17:58:17 +000011956Wed Jan 23 18:53:55 CET 2002 Daniel Veillard <daniel@veillard.com>
11957
11958 * doc/APIchunk*.html doc/parsedecl.py doc/api.xsl: generated
11959 an alphabetic index based on comments content
11960 * doc/*: rebuilt the web site with the new references
11961
Daniel Veillardc8c7be42002-01-23 17:53:44 +000011962Wed Jan 23 15:14:22 CET 2002 Daniel Veillard <daniel@veillard.com>
11963
11964 * parserInternals.h: Greg Sjaardema suggested to use an
11965 eponential buffer groth policy in xmlParserAddNodeInfo()
11966
Daniel Veillard3bf65be2002-01-23 12:36:34 +000011967Wed Jan 23 13:32:40 CET 2002 Daniel Veillard <daniel@veillard.com>
11968
11969 * doc/api.xsl doc/APIconstructors.html doc/APIfiles.html
11970 doc/APIfunctions.html doc/APIsymbols.html doc/libxml2-refs.xml
11971 doc/parsedecl.py doc/Makefile.am: updated the python extractor
11972 to generate cross-references, and added/updated the stylesheets
11973 to generate and link API indexes. The generic keyword index
11974 is not done yet.
11975 * doc/*.html: regenerated all the usual docs too
11976
Daniel Veillard2070c482002-01-22 22:12:19 +000011977Tue Jan 22 23:11:26 CET 2002 Daniel Veillard <daniel@veillard.com>
11978
11979 * debugXML.c: added an xpath function to the shell for T. V. Raman
11980
11981Tue Jan 22 22:42:23 CET 2002 Daniel Veillard <daniel@veillard.com>
Daniel Veillard5e926fa2002-01-22 21:44:25 +000011982
11983 * debugXML.c: patch from Anthony Jones to catch NULL nodes in
11984 debug routines.
11985
Daniel Veillardc169f8b2002-01-22 21:40:13 +000011986Tue Jan 22 22:38:42 CET 2002 Daniel Veillard <daniel@veillard.com>
11987
11988 * tree.c: apply an patch from Petr Kozelka for unlink and replace
11989 support of attribute nodes
11990
Daniel Veillard9d06d302002-01-22 18:15:52 +000011991Tue Jan 22 19:12:06 CET 2002 Daniel Veillard <daniel@veillard.com>
11992
11993 * doc/libxml2-api.xml doc/parsedecl.py: Build a new version
11994 hopefully near complete and fully documented of the API in XML
11995 * HTMLtree.c SAX.c debugXML.c error.c globals.c parser.c tree.c
11996 xmlIO.c xmlmemory.c include/libxml/catalog.h include/libxml/hash.h
11997 include/libxml/list.h include/libxml/parser.h include/libxml/tree.h
11998 include/libxml/parserInternals.h include/libxml/valid.hi
11999 include/libxml/xmlIO.h include/libxml/xmlerror.hi
12000 include/libxml/xmlmemory.h include/libxml/xmlversion.h.ini
12001 include/libxml/xpath.h include/libxml/xpathInternals.h:
12002 Cleaned up the doc comments a lot in the process, the interface
12003 coverage is now 100%
12004
Daniel Veillard2d1464f2002-01-21 23:16:56 +000012005Tue Jan 22 00:12:58 CET 2002 Daniel Veillard <daniel@veillard.com>
12006
12007 * doc/libxml2-api.xml doc/parsedecl.py: improved the script to
12008 extracts comments from the gtk-doc DocBook output (a bit
12009 convoluted but seems to work).
12010
Daniel Veillard61006472002-01-21 17:31:47 +000012011Mon Jan 21 18:29:19 CET 2002 Daniel Veillard <daniel@veillard.com>
12012
12013 * Makefile.am doc/Makefile.am doc/libxml2-api.xml doc/parsedecl.py:
12014 added an XML description of the API, moved the script generating
12015 it here. Added a "make api" target
12016
Daniel Veillardd2f23002002-01-21 13:36:00 +000012017Mon Jan 21 14:34:37 CET 2002 Daniel Veillard <daniel@veillard.com>
12018
12019 * tree.c: Adam Lounds pointed out a bug in xmlSearchNs()
12020
Daniel Veillard99e55eb2002-01-21 08:56:29 +000012021Mon Jan 21 09:55:21 CET 2002 Daniel Veillard <daniel@veillard.com>
12022
12023 * xpath.c include/libxml/xpathInternals.h: the change made to
12024 xmlXPathFuncLookupFunc was incompatible roll it back
12025
Daniel Veillard963d2ae2002-01-20 22:08:18 +000012026Sun Jan 20 23:03:41 CET 2002 Daniel Veillard <daniel@veillard.com>
12027
12028 * SAX.c: cleanup patch from Anthony Jones
12029 * doc/Makefile.am: fix the headers to avoid in make scan
12030 * parserInternals.c xpath.c include/libxml/*.h: cleanup of the
12031 includes, * vs Ptr and general cleanup
12032 * parsedecl.py: first version of a script to extract the
12033 module interfaces, the goal will be to provide .decl or XML
12034 specification of the interfaces to build wrappers.
12035
Daniel Veillard0f5f1622002-01-20 12:42:06 +000012036Sun Jan 20 13:38:22 CET 2002 Daniel Veillard <daniel@veillard.com>
12037
12038 * doc/xmlcatalog_man.xml xmlcatalog.c: Fixed bug #68830, xmlcatalog
12039 now provides return codes in case of errors
12040
Bjorn Reese026d29f2002-01-19 15:40:18 +000012041Sat Jan 19 16:36:21 CET 2002 Bjorn Reese <breese@users.sourceforge.net>
12042
12043 * trio.h trio.c triodef.h triop.h trionan.h trionan.c Makefile.am:
12044 Upgraded to trio baseline 1.6
12045 * strio.h strio.c: Replaced by triostr.h and triostr.c
12046
Daniel Veillard572577e2002-01-18 16:23:55 +000012047Fri Jan 18 17:22:50 CET 2002 Daniel Veillard <daniel@veillard.com>
12048
12049 * globals.c xmlIO.c xmlcatalog.c: removed the last occurences
12050 of strdup usage in the code
12051
Daniel Veillarddb5850a2002-01-18 11:49:26 +000012052Fri Jan 18 12:47:15 CET 2002 Daniel Veillard <daniel@veillard.com>
12053
12054 * parser.c error.c: Keith Isdale complained rightly that
12055 xmlInitParser() did not preserve value set by xmlSetGenericErrorFunc
12056
Daniel Veillardcfa0d812002-01-17 08:46:58 +000012057Thu Jan 17 09:44:44 CET 2002 Daniel Veillard <daniel@veillard.com>
12058
12059 * tree.c: fixed the funxtion to set the xml: attributes
12060 * debugXML.c: added "setbase" to test it.
12061
Daniel Veillard2c748c62002-01-16 15:37:50 +000012062Wed Jan 16 16:36:08 CET 2002 Daniel Veillard <daniel@veillard.com>
12063
12064 * tree.c: update xmlNodeSetContent() and xmlNodeSetContentLen()
12065 to allow updating an attribute content
12066
Daniel Veillard8de85c62002-01-15 17:10:15 +000012067Tue Jan 15 18:09:23 CET 2002 Daniel Veillard <daniel@veillard.com>
12068
12069 * libxml.h: try to avoid problems when compiling on Windows
12070
Daniel Veillard314cfa02002-01-14 17:58:01 +000012071Mon Jan 14 18:56:25 CET 2002 Daniel Veillard <daniel@veillard.com>
12072
12073 * hash.c: patch from Anthony Jones for hash.c allocation size
12074 * Makefile.am: trying to work around Yet Another Libtool Madness
12075 and build the 2.4.13 release finally ...
12076
Daniel Veillard744683d2002-01-14 17:30:20 +000012077Mon Jan 14 18:27:19 CET 2002 Daniel Veillard <daniel@veillard.com>
12078
12079 * configure.in include/libxml/xmlwin32version.h: updated to 2.4.13
12080 * doc/* : update of the documentation
12081
Daniel Veillarde6a55192002-01-14 17:11:53 +000012082Mon Jan 14 17:53:41 CET 2002 Daniel Veillard <daniel@veillard.com>
12083
12084 * debugXML.c tree.c: some cleanup after an unsuccessful attempt
12085 at fixing #61290 :-(
12086
Daniel Veillardfb25a512002-01-13 20:32:08 +000012087Sun Jan 13 21:30:54 CET 2002 Daniel Veillard <daniel@veillard.com>
12088
12089 * tree.c: fixed xmlSaveFormatFileEnc() when encoding == NULL
12090 Fixes bug #67229
12091
Daniel Veillardacb2bda2002-01-13 16:15:43 +000012092Sun Jan 13 17:14:06 CET 2002 Daniel Veillard <daniel@veillard.com>
12093
12094 * tree.c: trying to avoid troubles when a subtree is copied
12095 and coalesced in part with the target tree. Should fix
12096 bug #67407
12097
Daniel Veillardd8224e02002-01-13 15:43:22 +000012098Sun Jan 13 16:37:15 CET 2002 Daniel Veillard <daniel@veillard.com>
12099
12100 * valid.c: fixed validation of attributes content of type
12101 NAME NAMES NMTOKEN and NMTOKENS to accept internationalized
12102 values, very old bug. Fixes #67671
12103
Daniel Veillard8107a222002-01-13 14:10:10 +000012104Sun Jan 13 15:07:49 CET 2002 Daniel Veillard <daniel@veillard.com>
12105
12106 * parser.c include/libxml/parserInternals.h tree.c: integrated
12107 a couple of fixes and a new API function xmlSetEntityReferenceFunc()
12108 from Keith Isdale and dedicated to xsldbg the XSLT debugger.
12109
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +000012110Sun Jan 13 14:23:21 CET 2002 Daniel Veillard <daniel@veillard.com>
12111
12112 * threads.c: applied Serguei Narojnyi's patch to add native
12113 thread support on the Win32 platform
12114 * testThreadsWin32.c Makefile.am: added the test program also
12115 from Serguei, Win32 specific
12116 * include/win32config.h include/libxml/xmlwin32version.h.in:
12117 added patch from Igor for the Windows thread specific defines.
12118
Daniel Veillard845cce42002-01-09 11:51:37 +000012119Wed Jan 9 12:50:39 CET 2002 Daniel Veillard <daniel@veillard.com>
12120
12121 * entities.c: Anthony Jones pointed a bug in xmlCopyEntity()
12122
Daniel Veillard7b602b42002-01-08 13:26:00 +000012123Tue Jan 8 14:23:22 CET 2002 Daniel Veillard <daniel@veillard.com>
12124
12125 * doc/*.html doc/site.xsl doc/Makefile: renamed XML.html
12126 output page into XMLinfo.html. Close bug #66951 and
12127 raised by Robert Collins too.
12128
Daniel Veillard73c6e532002-01-08 13:15:33 +000012129Tue Jan 8 14:13:18 CET 2002 Daniel Veillard <daniel@veillard.com>
12130
12131 * encoding.c: Paul Keogh pointed out a possibility of segfault
12132 on repeted xmlAddEncodingAlias() / xmlCleanupEncodingAlias().
12133 Closes bug # 68238
12134
Daniel Veillard4a859202002-01-08 11:49:22 +000012135Tue Jan 8 12:48:27 CET 2002 Daniel Veillard <daniel@veillard.com>
12136
12137 * doc/*.html: updated the Gdome2 links
12138
Daniel Veillard3c5ed912002-01-08 10:36:16 +000012139Tue Jan 8 11:32:30 CET 2002 Daniel Veillard <daniel@veillard.com>
12140
12141 * libxml.h: Applied following patches from Robert Collins
12142 and make sure IN_LIBXML is defined when compiling it
12143 -------
12144 * include/libxml/xmlversion.h.in (LIBXML_DLL_IMPORT): Use on Cygwin
12145 as well as Visual C.
12146 * parser.c (XML_DIR_SEP): Don't use '\\' for Cygwin.
12147 * parserInternals.c (XML_DIR_SEP): Don't use '\\' for Cygwin.
12148 * strio.c (PLATFORM_UNIX): Define for Cygwin.
12149 * triodef.h (TRIO_PLATFORM_UNIX): Define for Cygwin.
12150 * xmlIO.c (xmlFileOpen): Use unix behaviour for Cygwin.
12151 Use binary mode opens for Cygwin (xmlFileOpenW xmlParserGetDirectory
12152 xmlSysIDExists xmlNoNetExists).
12153 * xmllint.c: Don't include winsock2.h for Cygwin.
12154
Daniel Veillard401c2112002-01-07 16:54:10 +000012155Mon Jan 7 17:52:48 CET 2002 Daniel Veillard <daniel@veillard.com>
12156
12157 * parser.c: Jirka Kosek pointer out a bug in xmlParseTextDecl()
12158 when the version info is not present.
12159
Daniel Veillard6f42c132002-01-06 23:05:13 +000012160Mon Jan 7 00:03:58 CET 2002 Daniel Veillard <daniel@veillard.com>
12161
12162 * tree.c: Anthony Jones pointed out a problem in
12163 xmlStringGetNodeList() and provided a fix for it
12164
Daniel Veillardaa39a0f2002-01-06 12:47:22 +000012165Sun Jan 6 13:45:49 CET 2002 Daniel Veillard <daniel@veillard.com>
12166
Daniel Veillarddb5850a2002-01-18 11:49:26 +000012167 * parser.c: patch from Frank J Franklin to remove a bug in
Daniel Veillardaa39a0f2002-01-06 12:47:22 +000012168 xmlCreatePushParserCtxt() when the initial buffer passed
12169 is large.
12170
Daniel Veillard0e47ee22002-01-05 18:25:52 +000012171Sat Jan 5 19:24:23 CET 2002 Daniel Veillard <daniel@veillard.com>
12172
12173 * win32/*: big cleanup of the Windows/MSVC project files
12174 from Igor Zlatkovic
12175
Daniel Veillardcebb1362002-01-02 13:13:30 +000012176Wed Jan 2 14:11:35 CET 2002 Daniel Veillard <daniel@veillard.com>
12177
12178 * doc/Makefile.am: should fix #67674 and avoid troubles if
12179 xsltproc is not available or fails in the prefix provided
12180
Daniel Veillard26908ab2002-01-01 16:50:03 +000012181Tue Jan 1 17:48:56 CET 2002 Daniel Veillard <daniel@veillard.com>
12182
12183 * xmlmemory.c: one more doc patch from Charlie Bozeman.
12184
Daniel Veillard5344c602001-12-31 16:37:34 +000012185Mon Dec 31 17:35:40 CET 2001 Daniel Veillard <daniel@veillard.com>
12186
12187 * DOCBparser.c parser.c valid.c include/libxml/parserInternals.h
12188 include/libxml/xmlerror.h include/libxml/xpathInternals.h:
12189 Fixed a few other problems raised by Charlie Bozeman.
12190 * result/VC/ElementValid[5-7]: fixed the output
12191
Daniel Veillardcbaf3992001-12-31 16:16:02 +000012192Mon Dec 31 17:13:34 CET 2001 Daniel Veillard <daniel@veillard.com>
12193
12194 * *.c include/libxml/*.h doc/html/*: applied 42 documentation
12195 patches from Charlie Bozeman. Regenerated the HTML docs.
12196
Daniel Veillard7f9a6802001-12-20 14:01:47 +000012197Thu Dec 20 14:59:52 CET 2001 Daniel Veillard <daniel@veillard.com>
12198
12199 * include/libxml/debugXML.h win32/dsp/libxml2.def.src: fixes
12200 for Windows from Igor
12201
Daniel Veillard1df3dfc2001-12-18 11:14:16 +000012202Tue Dec 18 12:13:33 CET 2001 Daniel Veillard <daniel@veillard.com>
12203
12204 * xmllint.c: applied Justin Fletcher patch for --output or -o
12205
Daniel Veillardd3b29d22001-12-18 07:53:16 +000012206Tue Dec 18 08:52:32 CET 2001 Daniel Veillard <daniel@veillard.com>
12207
12208 * win32/libxml2/libxml2.def.src: close #67019
12209
Daniel Veillard01db67c2001-12-18 07:09:59 +000012210Tue Dec 18 08:08:51 CET 2001 Daniel Veillard <daniel@veillard.com>
12211
12212 * xmllint.c: applied Justin Fletcher generic timing patch
12213 similar to the one already applied to xsltproc.
12214
Daniel Veillardd1640922001-12-17 15:30:10 +000012215Mon Dec 17 16:29:08 CET 2001 Daniel Veillard <daniel@veillard.com>
12216
12217 * include/libxml/tree.h tree.c: applied documentation patches
12218 from Charlie Bozeman
12219
MST 2001 John Fleck2323ac22001-12-14 04:24:50 +000012220Thu Dec 13 21:24:16 MST 2001 John Fleck <jfleck@inkstain.net>
12221
12222 *doc/xmllint.xml, xmllint.1 - document --dropdtd
12223
Daniel Veillard29e43992001-12-13 22:21:58 +000012224Thu Dec 13 23:19:50 CET 2001 Daniel Veillard <daniel@veillard.com>
12225
12226 * valid.c: fix the xmlStrdup() used in the previous patch.
12227 * valid.c: added --dropdtd
12228 * tree.c: fixed xmlUnlinkNode so it also removes the references
12229 from the document if the node is a DTD
12230
Daniel Veillard86fd5a72001-12-13 14:55:21 +000012231Thu Dec 13 15:54:35 CET 2001 Daniel Veillard <daniel@veillard.com>
12232
12233 * HTMLtree.c valid.c: cleanup some static declarations
12234
Daniel Veillard9ae4b7a2001-12-13 14:24:09 +000012235Thu Dec 13 15:23:04 CET 2001 Daniel Veillard <daniel@veillard.com>
12236
12237 * xmllint.c: removed another strdup()
12238 * doc/FAQ: removed the HP/UX entry
12239
Daniel Veillarded472f32001-12-13 08:48:14 +000012240Thu Dec 13 09:44:58 CET 2001 Daniel Veillard <daniel@veillard.com>
12241
12242 * valid.c: fix bug #66816 when validating.
12243 * xmllint.c: don't use sys/time.h if configure did not found it
12244
MST 2001 John Fleck3fc555e2001-12-11 04:41:24 +000012245Mon Dec 10 21:39:55 MST 2001 John Fleck <jfleck@inkstain.net>
12246
12247 * docs/xmllint.1, xmllint.xml, xmlcatalog.1, xmlcatalog_man.html,
12248 xmlcatalog_man.xml
12249
Daniel Veillard2d8a93b2001-12-10 21:07:19 +000012250Mon Dec 10 22:06:16 CET 2001 Daniel Veillard <daniel@veillard.com>
12251
12252 * include/libxml/xmlmemory.h: Hietaniemi Jarkko pointed out that
12253 xmlInitMemory() was declared twice
12254
Daniel Veillardb82c1662001-12-09 14:00:54 +000012255Sun Dec 9 14:59:23 CET 2001 Daniel Veillard <daniel@veillard.com>
12256
12257 * globals.c: do not reference strdup() !
12258 * configure.in libxml-2.0.pc.in: trying to fix the libs
12259 of the various config extraction modules
12260
Daniel Veillardef90ba72001-12-07 14:24:22 +000012261Fri Dec 7 15:21:33 CET 2001 Daniel Veillard <daniel@veillard.com>
12262
12263 * configure.in : preparing 2.4.12
12264 * doc/* : updated and rebuilt the docs
12265
Daniel Veillard220346d2001-12-07 11:33:54 +000012266Fri Dec 7 12:32:00 CET 2001 Daniel Veillard <daniel@veillard.com>
12267
12268 * uri.c: closed bug #66159
12269 * testURI.c: added --escape option
12270 * configure.in: some cleanup for xml2-config --cflags
12271
Daniel Veillard2a906822001-12-06 14:34:08 +000012272Thu Dec 6 15:31:30 CET 2001 Daniel Veillard <daniel@veillard.com>
12273
12274 * globals.c testThreads.c: removed some misplaced includes
12275 of xmlversion.h
12276
Daniel Veillarde28313b2001-12-06 14:08:31 +000012277Thu Dec 6 09:06:08 EST 2001 Daniel Veillard <daniel@veillard.com>
12278
12279 * threads.c: patch from Gary Pennington fixing a possible
12280 problem at initialization time.
12281
Daniel Veillardd3b08822001-12-05 12:03:33 +000012282Wed Dec 5 13:01:37 CET 2001 Daniel Veillard <daniel@veillard.com>
12283
12284 * configure.in libxml.h parser.c testThreads.c macos/: integrated
Daniel Veillarde28313b2001-12-06 14:08:31 +000012285 Eric Lavigne contribution to build libxml2 on MacOS using
Daniel Veillardd3b08822001-12-05 12:03:33 +000012286 CodeWarrior.
12287
Daniel Veillarda7866932001-12-04 13:14:44 +000012288Tue Dec 4 14:13:44 CET 2001 Daniel Veillard <daniel@veillard.com>
12289
12290 * xmllint.c: applied Geert Kloosterman's patch to fix
12291 --repeat --timing output
12292
Daniel Veillard19840942001-11-29 16:11:38 +000012293Thu Nov 29 17:10:22 CET 2001 Daniel Veillard <daniel@veillard.com>
12294
12295 * parser.c: Robin Berjon <robin@knowscape.com> found a case
12296 where non-wellformed XML declaractions were not detected.
12297
Daniel Veillarde85d9342001-11-28 14:43:12 +000012298Wed Nov 28 15:41:40 CET 2001 Daniel Veillard <daniel@veillard.com>
12299
12300 * xpointer.c: fixed a compilation bug pointed by Danny Jamshy
12301
Daniel Veillard22f25a82001-11-28 09:12:23 +000012302Wed Nov 28 10:09:51 CET 2001 Daniel Veillard <daniel@veillard.com>
12303
12304 * xmlIO.c: as robert pointed again, xmlInputCallbackInitialized
12305 gets reset by xmlCleanupInputCallbacks() and this makes the
12306 function useless. Same for output.
12307
Daniel Veillard107ccaa2001-11-27 16:23:50 +000012308Tue Nov 27 17:22:36 CET 2001 Daniel Veillard <daniel@veillard.com>
12309
12310 * xmlIO.c: robert pointed out a loop error in callback cleanups
12311
Daniel Veillard8faa7832001-11-26 15:58:08 +000012312Mon Nov 26 16:56:00 CET 2001 Daniel Veillard <daniel@veillard.com>
12313
12314 * tree.c debugXML.c include/libxml/tree.h include/libxml/debugXML.h:
12315 moved xmlGetLineNo() and xmlGetNodePath() into the main tree module,
12316 they are not really tied to debugging
12317
Daniel Veillardbd9b0e82001-11-26 10:32:08 +000012318Mon Nov 26 11:31:36 CET 2001 Daniel Veillard <daniel@veillard.com>
12319
12320 * configure.in include/libxml/xmlwin32version.h: preparing 2.4.11
12321 * xmllint.c: better --catalogs description
12322
Daniel Veillard4855c8c2001-11-25 10:35:25 +000012323Sun Nov 25 11:34:24 CET 2001 Daniel Veillard <daniel@veillard.com>
12324
12325 * tree.c: fixed a couple of problems in xmlSetProp()
12326
Daniel Veillardcd337f02001-11-22 18:20:37 +000012327Thu Nov 22 19:19:10 CET 2001 Daniel Veillard <daniel@veillard.com>
12328
12329 * debugXML.c tree.c xmlIO.c xmlmemory.c: some cleanups when chasing
12330 unappropriate stdout output.
12331
Daniel Veillard566d4df2001-11-22 13:00:53 +000012332Thu Nov 22 13:58:14 CET 2001 Daniel Veillard <daniel@veillard.com>
12333
12334 * include/libxml/tree.h: Fixed a couple of macro errors pointed out
12335 by Denis Beurive, closes #65111
12336
Daniel Veillardb4545fd2001-11-20 09:37:09 +000012337Tue Nov 20 10:34:01 CET 2001 Daniel Veillard <daniel@veillard.com>
12338
12339 * valid.c: in case of content model validity error, don't
12340 print it if validity warnings were not requested.
12341
Daniel Veillardc69e0b12001-11-20 08:35:07 +000012342Tue Nov 20 09:30:02 CET 2001 Daniel Veillard <daniel@veillard.com>
12343
12344 * nanoftp.c: applied a couple of patches from Brian D Ripley.
12345 * parserInternals.c: removed the last exit() call. Print an
12346 unmaskable error on stderr instead (library mismatch detection)
12347
MST 2001 John Fleck42304042001-11-18 00:18:06 +000012348Sat Nov 17 17:16:51 MST 2001 John Fleck <jfleck@inkstain.net>
12349
12350 * doc/xmllint.xml, doc/xmllint.1 - update xmllint man page with
12351 shell instructions from Heiko Rupp
12352
Daniel Veillardf7b094f2001-11-15 13:54:39 +000012353Thu Nov 15 14:53:42 CET 2001 Daniel Veillard <daniel@veillard.com>
12354
12355 * catalog.c: use the URL notation file:// for default catalog paths
12356
Daniel Veillard0ec98632001-11-14 15:04:32 +000012357Wed Nov 14 16:03:02 CET 2001 Daniel Veillard <daniel@veillard.com>
12358
12359 * include/libxml/tree.h: better comments for _private fields
12360 * tree.c: removed a problem when copying an entity reference.
12361
Daniel Veillardd33cfbf2001-11-13 15:24:36 +000012362Tue Nov 13 16:23:04 CET 2001 Daniel Veillard <daniel@veillard.com>
12363
12364 * vms/*: updated instructions and diffs from John A Fotheringham
12365
Daniel Veillarda11001b2001-11-12 22:45:36 +000012366Mon Nov 12 23:43:22 CET 2001 Daniel Veillard <daniel@veillard.com>
12367
12368 * include/libxml/xmlerror.h: avoid an include problem if
12369 #include <libxml/xmlerror.h> happens first in code
12370 seems to be the case in KDE libs
12371
Daniel Veillard8e3943c2001-11-12 21:35:44 +000012372Mon Nov 12 22:32:41 CET 2001 Daniel Veillard <daniel@veillard.com>
12373
12374 * win32/dsp/* include/libxml/xmlwin32version.h.in: update
12375 from Igor for Windows
12376
12377Mon Nov 12 10:19:41 CET 2001 Daniel Veillard <daniel@veillard.com>
12378
12379 * Makefile.am: Gary Pennington pointed out a missing prefix
12380
Daniel Veillard43d3f612001-11-10 11:57:23 +000012381Sat Nov 10 12:55:42 CET 2001 Daniel Veillard <daniel@veillard.com>
12382
12383 * configure.in include/libxml/xmlwin32version.h: preparing 2.4.10
12384 * doc/*: upgraded and rebuilt the docs
12385
Daniel Veillardc1f78342001-11-10 11:43:05 +000012386Sat Nov 10 12:33:38 CET 2001 Daniel Veillard <daniel@veillard.com>
12387
12388 * HTMLparser.c: fix comment in scripts element parsing.
12389 * result/HTML/doc3*: updated the results.
12390
12391Sat Nov 10 11:18:18 CET 2001 Daniel Veillard <daniel@veillard.com>
12392
12393 * uri.c: another URI bug fix #63336, using Joel Young patch.
12394
Daniel Veillardc6e013a2001-11-10 10:08:57 +000012395Sat Nov 10 11:07:26 CET 2001 Daniel Veillard <daniel@veillard.com>
12396
12397 * debugXML.c include/libxml/debugXML.h: add xmlGetNodePath()
12398 a cleaned up version of the Pwd shell string generation.
12399
Daniel Veillardbe480fb2001-11-08 23:36:42 +000012400Fri Nov 9 00:34:13 CET 2001 Daniel Veillard <daniel@veillard.com>
12401
12402 * valid.c include/libxml/tree.h: trying to fix namespaces +
12403 validation problems for good, closing #63619 in the process
12404 * result/valid/dia.xml test/valid/dia.xml: the Dia test was
12405 wrong in this respect, fixed it.
12406
Daniel Veillardd536f702001-11-08 17:32:47 +000012407Thu Nov 8 18:31:40 CET 2001 Daniel Veillard <daniel@veillard.com>
12408
12409 * xmllint.c: Morus Walter patch to allow --format and --encode
12410
Daniel Veillard5004f422001-11-08 13:53:05 +000012411Thu Nov 8 14:52:18 CET 2001 Daniel Veillard <daniel@veillard.com>
12412
12413 * debugXML.c: Stefan Kost provided an help command for the shell
12414
Daniel Veillarda6825e82001-11-07 13:33:59 +000012415Wed Nov 7 14:32:55 CET 2001 Daniel Veillard <daniel@veillard.com>
12416
12417 * debugXML.c: Heiko Rupp pointed that the shell would crash
12418 on empty nodesets returns.
12419
Daniel Veillard03f848d2001-11-07 12:53:46 +000012420Wed Nov 7 13:52:36 CET 2001 Daniel Veillard <daniel@veillard.com>
12421
12422 * Makefile.am: Weiqi Gao pointed out that xmlcatalog
12423 migh need the history libraries
12424
Daniel Veillard957fdcf2001-11-06 22:50:19 +000012425Tue Nov 6 23:49:09 CET 2001 Daniel Veillard <daniel@veillard.com>
12426
12427 * HTMLparser.c test/HTML/lt.html result/HTML/lt.html*:
12428 handle the case of < in quoted attributes, Bastian Kleineidam
12429
Daniel Veillardc853b322001-11-06 15:24:37 +000012430Tue Nov 6 16:21:33 CET 2001 Daniel Veillard <daniel@veillard.com>
12431
12432 * configure.in include/libxml/xmlwin32version.h: releasing 2.4.9
12433 fixing catalog breakages
12434 * Makefile.am catalog.c result/catalogs/catal
12435 result/catalogs/mycatalog.* test/catalogs/catal*:
12436 fixed more problems in catalog support, added more regression tests
12437 for both XML and SGML catalog handling
12438
Daniel Veillard66870c72001-11-05 19:27:49 +000012439Mon Nov 5 20:26:41 CET 2001 Daniel Veillard <daniel@veillard.com>
12440
12441 * debugXML.c: applied an improvement to xmlGetLineNo() from
12442 Keith Isdale
12443
Daniel Veillardffe09c92001-11-05 14:21:47 +000012444Mon Nov 5 15:20:16 CET 2001 Daniel Veillard <daniel@veillard.com>
12445
12446 * catalog.c: dohhhh XML catalog add and remove ops were broken too.
12447 Side effect of the progressive catalog loading
12448
Daniel Veillardad661b92001-11-05 11:43:15 +000012449Mon Nov 5 12:40:54 CET 2001 Daniel Veillard <daniel@veillard.com>
12450
12451 * Makefile.am: confexecdir and confexec_DATA were defined twice
12452 pointed out by Karl Eichwalder
12453
Daniel Veillard6eb17722001-11-04 22:19:27 +000012454Sun Nov 4 23:18:34 CET 2001 Daniel Veillard <daniel@veillard.com>
12455
12456 * xmlcatalog.c: avoid unlink() and use remove() instead.
12457
Daniel Veillardea898282001-11-04 22:13:45 +000012458Sun Nov 4 23:12:38 CET 2001 Daniel Veillard <daniel@veillard.com>
12459
12460 * libxml.spec.in: cleanup
12461 * include/libxml/xmlwin32version.h: updated with 2.4.8
12462
Daniel Veillarda4617b82001-11-04 20:19:12 +000012463Sun Nov 4 21:17:24 CET 2001 Daniel Veillard <daniel@veillard.com>
12464
12465 * encoding.c global.data globals.c testThreads.c: fix bug #63752
12466 of compiling libxml with a non standard set of options
12467
John Fleck027edfb2001-11-04 20:13:58 +000012468Sun Nov 4 13:11:41 MST 2001 John Fleck <jfleck@inkstain.net
12469
12470 * doc/xmllint.xml, xmllint.1 - updating xmllint man page to
12471 document --sgml option, fixing gnome bugzilla #63382
12472
Daniel Veillardcd21dc72001-11-04 20:03:38 +000012473Sun Nov 4 20:56:53 CET 2001 Daniel Veillard <daniel@veillard.com>
12474
12475 * include/libxml/catalog.h catalog.c: Fixed SGML catalogs
12476 breakage of 2.4.7, added a couple of really needed APIs
12477 like xmlCatalogIsEmpty() and xmlNewCatalog()
12478 * xmlcatalog.c: updated --sgml --noout to be a suitable replacement
12479 for install-catalog
12480 * configure.in: preparing 2.4.8
12481
CET 2001 Daniel Veillard5a37bde2001-11-01 14:31:22 +000012482Thu Nov 1 15:29:31 CET 2001 Daniel Veillard <daniel@veillard.com>
12483
12484 * HTMLtree.c tree.c include/libxml/HTMLtree.h
12485 include/libxml/tree.h include/libxml/xmlIO.h: more include
12486 cleanups, export cleanly one html output + format function.
12487
12488Thu Nov 1 14:12:12 CET 2001 Daniel Veillard <daniel@veillard.com>
12489
12490 * parser.c: removed initGenericErrorDefaultFunc call from
12491 xmlInitParser() since it could destroy previous calls to
12492 xsltSetGenericErrorFunc() effects
12493
Daniel Veillardebd38c52001-11-01 08:38:12 +000012494Thu Nov 1 09:37:13 CET 2001 Daniel Veillard <daniel@veillard.com>
12495
12496 * debugXML.c include/libxml/debugXML.h: bool can be a reserved
12497 keyword.
12498
Daniel Veillard8bdb91d2001-10-31 17:52:43 +000012499Wed Oct 31 18:50:08 CET 2001 Daniel Veillard <daniel@veillard.com>
12500
12501 * Makefile.am: cleanup
12502 * threads.c: cleanup too
12503 * xmlIO.c include/libxml/xmlIO.h: added xmlNoNetExternalEntityLoader()
12504 from xsltproc
12505 * include/libxml/tree.h include/libxml/parser.h: trying to break a
Daniel Veillard784b9352003-02-16 15:50:27 +000012506 dependency loop.
Daniel Veillard8bdb91d2001-10-31 17:52:43 +000012507
Daniel Veillard91c00402001-10-30 17:41:38 +000012508Tue Oct 30 18:38:53 CET 2001 Daniel Veillard <daniel@veillard.com>
12509
12510 * catalog.c: Justin Fletcher pointed out that xmlParseXMLCatalog
12511 was not used anymore !
12512
Daniel Veillard52dcab32001-10-30 12:51:17 +000012513Tue Oct 30 13:33:13 CET 2001 Daniel Veillard <daniel@veillard.com>
12514
12515 * configure.in: preparing 2.4.7
12516 * Makefile.am doc/Makefile.am: switched to the latest xmllint
12517 manual page from John
12518 * doc/*: updated the doc and rebuilt the generated pages
12519
Daniel Veillarda9e65e82001-10-30 10:32:36 +000012520Tue Oct 30 11:31:19 CET 2001 Daniel Veillard <daniel@veillard.com>
12521
12522 * xmlIO.c: closing bug #62711, the library should never
12523 close stdin or stdout.
12524
Daniel Veillard4def3bd2001-10-30 09:47:47 +000012525Tue Oct 30 10:46:12 CET 2001 Daniel Veillard <daniel@veillard.com>
12526
12527 * uri.c: second pass at fixing #63336, using Joel Young
12528 final patch. looks okay.
12529
Daniel Veillardbb6808e2001-10-29 23:59:27 +000012530Tue Oct 30 00:56:05 CET 2001 Daniel Veillard <daniel@veillard.com>
12531
12532 * uri.c include/libxml/uri.h: trying to clear #63336
12533 allowing the escaping routine to parse unconformant
12534 URI-References.
12535
Daniel Veillardacf7ff02001-10-29 20:21:47 +000012536Mon Oct 29 19:09:46 CET 2001 Daniel Veillard <daniel@veillard.com>
12537
12538 * vms/readme.vms vms/build_libxml.com nanoftp.c
12539 include/libxml/xmlversion.h.in: a few VMS updates from
12540 John A Fotheringham
12541 * include/libxml/xmlIO.h xmlIO.c: added xmlCleanupInputCallbacks()
12542 and xmlCleanupOutputCallbacks() for the Perl binding people.
12543
Daniel Veillard635ef722001-10-29 11:48:19 +000012544Mon Oct 29 12:44:17 CET 2001 Daniel Veillard <daniel@veillard.com>
12545
12546 * parser.c globals.c DOCBparser.c HTMLparser.c error.c:
12547 apply fixes to close #63271 and avoid segfaults when
12548 the error routine gets callbed before xmlInitParser()
12549 get called.
12550 * nanoftp.c error.c: Applied patches from Justin Fletcher
12551 correcting some xmlGenericError misuses.
12552
MDT 2001 John Fleckfd32de62001-10-27 20:14:01 +000012553Sat Oct 27 14:04:45 MDT 2001 John Fleck <jfleck@inkstain.net>
12554
12555 *doc/xmllint.xml, doc/xmllint.1
12556 New and improved man page for xmllint - .xml is the original, .1
12557 is the generated man page
12558
Daniel Veillardc9484202001-10-24 12:35:52 +000012559Wed Oct 24 14:34:25 CEST 2001 Daniel Veillard <daniel@veillard.com>
12560
12561 * doc/site.xsl doc/*.html doc/Makefile.am: now autogenerate
12562 the web site from the main HTML document.
12563
Daniel Veillard5151c062001-10-23 13:10:19 +000012564Tue Oct 23 14:32:04 CEST 2001 Daniel Veillard <daniel@veillard.com>
12565
12566 * parser.c: fixed an erroneous validation bug when PE refs
12567 occurs in external parsed entities referenced from the
12568 internals subset
12569 * test/valid/index.xml test/valid/dtds/nitf-2-5.dtd
12570 test/valid/dtds/NewsMLv1.0.dtd result/valid/index.xml*:
12571 added the associated testcase, it's a nice one.
12572 * HTMLparser.c: generate the DTD node as HTML still ...
12573 * HTMLtree.c: fixed errors in Set/GetMetaEncoding
12574
Daniel Veillardb6b0fd82001-10-22 12:31:11 +000012575Mon Oct 22 14:20:17 CEST 2001 Daniel Veillard <daniel@veillard.com>
12576
12577 * HTMLparser.c: fixed a bug in htmlNewDoc()
12578
Daniel Veillard89cad532001-10-22 09:46:13 +000012579Mon Oct 22 11:32:36 CEST 2001 Daniel Veillard <daniel@veillard.com>
12580
12581 * test/threads/*: added entities testing to the Thread test
12582 * testThreads.c: make the test reasonable
12583 * DOCBparser.c: fix the DTD public and system ID
12584 * xmllint.c: added --sgml for SGML DocBook importing
12585 * Makefile.am: added Docbtests target
12586
Daniel Veillard9ae1eba2001-10-19 09:48:35 +000012587Fri Oct 19 11:47:13 CEST 2001 Daniel Veillard <daniel@veillard.com>
12588
12589 * nanoftp.c: use only "anonymous@" string for anonymous passwds
12590 * testThreads.c: removed bogus include
12591
Daniel Veillardce2c2f02001-10-18 14:57:24 +000012592Thu Oct 18 16:56:23 CEST 2001 Daniel Veillard <daniel@veillard.com>
12593
12594 * parser.c valid.c result/valid/rss.xml result/valid/rss.xml.err:
12595 fixed a very serious (looping) validation bug
12596
Daniel Veillard3c01b1d2001-10-17 15:58:35 +000012597Wed Oct 17 11:56:25 EDT 2001 Daniel Veillard <daniel@veillard.com>
12598
12599 * include/libxml/globals.h include/libxml/threads.h threads.c
12600 testThreads.c: far more testing, cleaning up bugs
12601 * *.c : make sure globals.h is always included.
12602
Daniel Veillard7cc95c02001-10-17 15:45:12 +000012603Wed Oct 17 17:41:41 CEST 2001 Daniel Veillard <daniel@veillard.com>
12604
12605 * HTMLparser.c: try to get rid of parser loops for good.
12606
Daniel Veillardab7488e2001-10-17 11:30:37 +000012607Wed Oct 17 13:29:02 CEST 2001 Daniel Veillard <daniel@veillard.com>
12608
12609 * configure.in: fixed some bugs in CFLAGS passing.
12610 * test/threads Makefile.am testThreads.c: added a specific
12611 threaded test case (really nasty, guaranteed).
12612
Daniel Veillard85c11fa2001-10-16 21:03:08 +000012613Tue Oct 16 23:01:49 CEST 2001 Daniel Veillard <daniel@veillard.com>
12614
12615 * catalog.c: serious cleanup on the management of the
12616 XML catalog tree, more tests done, especially with
12617 the catalog PI.
12618
Daniel Veillard364789a2001-10-16 12:45:00 +000012619Tue Oct 16 08:43:43 EDT 2001 Daniel Veillard <daniel@veillard.com>
12620
12621 * catalog.c: avoid a problem in catalog cleanup on SMP if
12622 catalogs were not initialized.
12623
Daniel Veillard81463942001-10-16 12:34:39 +000012624Tue Oct 16 14:33:19 CEST 2001 Daniel Veillard <daniel@veillard.com>
12625
12626 * catalog.c xpath.c: trying to cleanup the not thread safe
12627 parts of the library.
12628
Daniel Veillard64a411c2001-10-15 12:32:07 +000012629Mon Oct 15 14:30:11 CEST 2001 Daniel Veillard <daniel@veillard.com>
12630
12631 * include/libxml/globals.h configure.in global.data: make
12632 the allocation be per-thread a configure option
12633 * encoding.c include/libxml/parser.h: fixed compilation
12634 errors
12635
Daniel Veillard5ee57fc2001-10-15 10:46:16 +000012636Mon Oct 15 12:45:03 CEST 2001 Daniel Veillard <daniel@veillard.com>
12637
12638 * include/libxml/parser.h: Norm reported that a few lines
12639 added were breaking libxslt compile, removed them for now
12640
Daniel Veillard6f350292001-10-14 09:56:15 +000012641Sun Oct 14 05:55:01 EDT 2001 Daniel Veillard <daniel@veillard.com>
12642
12643 * parser.c parserInternals.c threads.c: debugged and fixed
12644 initialization problems which were giving troubles on SMP
12645 boxes.
12646
Daniel Veillard6661ffa2001-10-13 14:18:17 +000012647Sat Oct 13 16:17:13 CEST 2001 Daniel Veillard <daniel@veillard.com>
12648
12649 * include/libxml/Makefile.am: missing globals.h
12650
Daniel Veillarde7090612001-10-13 12:18:28 +000012651Sat Oct 13 14:15:00 CEST 2001 Daniel Veillard <daniel@veillard.com>
Jaka Mocnik77d19ae2001-10-13 12:06:09 +000012652
Daniel Veillarde7090612001-10-13 12:18:28 +000012653 * globals.c: added a couple of standard includes.
Jaka Mocnik77d19ae2001-10-13 12:06:09 +000012654
Daniel Veillardd0463562001-10-13 09:15:48 +000012655Sat Oct 13 11:08:20 CEST 2001 Daniel Veillard <daniel@veillard.com>
12656
12657 * include/libxml/SAX.h include/libxml/globals.h include/libxml/parser.h
12658 include/libxml/parserInternals.h include/libxml/tree.h
12659 include/libxml/xmlerror.h HTMLparser.c SAX.c error.c globals.c
12660 nanoftp.c nanohttp.c parser.c parserInternals.c testDocbook.c
12661 testHTML.c testSAX.c tree.c uri.c xlink.c xmlmemory.c:
12662 Applied the last patches from Gary, cleanup, activated threading
12663 all user accessible global variables are now handled in globals.[ch]
12664 Still a bit rought but make tests passes with either
12665 --with-threads defined at configure time or not.
12666 * Makefile.am example/Makefile.am: added globals.[ch] and threads
12667 linking options
12668
Daniel Veillardb8478642001-10-12 17:29:10 +000012669Fri Oct 12 19:25:55 CEST 2001 Daniel Veillard <daniel@veillard.com>
12670
12671 * Makefile.am include/libxml/Makefile.am
12672 include/libxml/globals.h globals.c include/libxml/threads.h
12673 threads.c build_glob.py global.data xmlcatalog.c acconfig.h
12674 configure.in: started integrating the core of the thread support
12675 not activated yet but half integrated. The code should still
12676 compile and work anyway.
12677
Daniel Veillardb44025c2001-10-11 22:55:55 +000012678Fri Oct 12 00:53:03 CEST 2001 Daniel Veillard <daniel@veillard.com>
12679
12680 * HTMLtree.c catalog.c debugXML.c entities.c nanoftp.c
12681 parser.c valid.c xmlmemory.c xpath.c xpointer.c: started
12682 integrating the non-controversial parts of Gary Pennington
12683 multithread patches
12684 * catalog.c: corrected a small bug introduced
12685
Daniel Veillard75b96822001-10-11 18:59:45 +000012686Thu Oct 11 20:58:15 CEST 2001 Daniel Veillard <daniel@veillard.com>
12687
12688 * catalog.c include/libxml/catalog.h: very serious cleanup,
12689 isolating unportable code and as much as possible the accesses
12690 to the global shared catalog. May need more testing !
12691
Daniel Veillard78d12092001-10-11 09:12:24 +000012692Thu Oct 11 11:10:31 CEST 2001 Daniel Veillard <daniel@veillard.com>
12693
12694 * include/libxml/debugXML.h debugXML.c tree.c: integrating
12695 Keith Isdale patches for the XSLT debugger interfaces. Some
12696 cleanup
12697
Daniel Veillardff0b7312001-10-11 06:46:09 +000012698Thu Oct 11 08:44:01 CEST 2001 Daniel Veillard <daniel@veillard.com>
12699
12700 * win32/Makefile.mingw: update from Tobias Peters for 2.4.5
12701 * DOCBparser.c: generate line nubers in elements
12702
Daniel Veillard60087f32001-10-10 09:45:09 +000012703Wed Oct 10 11:35:45 CEST 2001 Daniel Veillard <daniel@veillard.com>
12704
12705 * configure.in: preparing 2.4.6 release
12706 * doc/xml.html doc/html/*: updated and rebuilt the docs
12707 * include/libxml/*.h *.c: fixed a number of teh/the widht/width typos
12708
MDT 2001 John Fleck60416fa2001-10-09 02:41:50 +000012709Mon Oct 8 20:38:27 MDT 2001 John Fleck <jfleck@inkstain.net>
12710
12711 * doc/xmlcatalog_man.xml, xmlcatalog.1, xmlcatalog_man.html
12712 adding documentation for DV's supercatalog support
12713
Daniel Veillard82d75332001-10-08 15:01:59 +000012714Mon Oct 8 17:00:16 CEST 2001 Daniel Veillard <daniel@veillard.com>
12715
12716 * include/libxml/catalog.h catalog.c xmlcatalog.c: adding SGML
12717 super catalog support adding one API and one flag --sgml to
12718 xmlcatalog
12719
MDT 2001 John Fleck0e229932001-10-07 22:46:00 +000012720Sun Oct 7 16:43:57 MDT 2001 John Fleck <jfleck@inkstain.net>
12721
12722 * doc/xmlcatalog_man.xml, xmlcatalog.1
12723 One more crack at
12724 https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=54392
12725
12726
Thomas Broyer47334c02001-10-07 16:41:52 +000012727Sun Oct 7 18:47:02 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
12728
12729 * xpath.c: implemented xmlXPathObjectCopy for external objects
12730 * include/libxml/xpathInternals.h: added xmlXPathStackIsExternal
12731
MDT 2001 John Fleckac941e32001-10-06 22:30:16 +000012732Sat Oct 6 16:25:52 MDT 2001 John Fleck <jfleck@inkstain.net>
12733
12734 *doc/xmlcatalog_man.xml, xmlcatalog_man.html, xmlcatalog.1
12735 finishing up fix to
12736 https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=54392, making
12737 the xmlcatalog man page display more elegantly
12738
Daniel Veillard3fbe8e32001-10-06 13:30:33 +000012739Sat Oct 6 15:27:12 CEST 2001 Daniel Veillard <daniel@veillard.com>
12740
12741 * configure.in: closing bug #61832
12742 * HTMLparser.c: removed a warning
12743
Daniel Veillard6ab38382001-10-06 13:08:27 +000012744Sat Oct 6 15:07:14 CEST 2001 Daniel Veillard <daniel@veillard.com>
12745
12746 * xpath.c: fixing #61673 part I, do not loose doc information
12747 when copying result value trees.
12748
Daniel Veillard556c6682001-10-06 09:59:51 +000012749Sat Oct 6 11:58:58 CEST 2001 Daniel Veillard <daniel@veillard.com>
12750
12751 * xpath.c: trying to harden the XPath interpreter
12752
MDT 2001 John Fleck9f82dc62001-10-06 02:40:10 +000012753Fri Oct 5 20:37:51 MDT 2001 John Fleck <jfleck@inkstain.net>
12754
12755 * doc/xmlcatalog.1 updated using a new stylesheet to address, in
12756 part, https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=54392
12757
William M. Brack1633d182001-10-05 15:41:19 +000012758Fri Oct 5 23:35:00 HKT 2001 William Brack <wbrack@mmm.com.hk>
12759
12760 * HTMLparser: repaired another loop problem
12761
Daniel Veillard20ee8c02001-10-05 09:18:14 +000012762Fri Oct 5 11:16:21 CEST 2001 Daniel Veillard <daniel@veillard.com>
12763
12764 * uri.c: applied fix from Mathias Hasselmann about a bug in URI
12765 parsing.
12766 * xpath.c: fix bug #61291 the default XML namespace node is
12767 missing from the namespace axis.
12768 * tree.c: refuse to create namespaces nodes with prefix "xml"
12769
Daniel Veillard651f9472001-10-04 14:51:06 +000012770Thu Oct 4 16:47:44 CEST 2001 Daniel Veillard <daniel@veillard.com>
12771
12772 * SAX.c: ouch a non-defined namespace could lead to a crash,
12773 fixed #61215
12774
Daniel Veillard7dd05702001-10-04 14:25:12 +000012775Thu Oct 4 16:24:26 CEST 2001 Daniel Veillard <daniel@veillard.com>
12776
12777 * parserInternals.c: closed bug #61054
12778
Daniel Veillard5e6d10a2001-10-03 13:21:13 +000012779Wed Oct 3 15:19:04 CEST 2001 Daniel Veillard <daniel@veillard.com>
12780
12781 * include/libxml/Makefile.am: closing #60708
12782
Daniel Veillarda293c322001-10-02 13:54:14 +000012783Tue Oct 2 15:52:05 CEST 2001 Daniel Veillard <daniel@veillard.com>
12784
12785 * win32/dsp/libxml2.def.src include/libxml/parser.h parser.c:
12786 adding xmlSAXParseFileWithData following Marco Stipek suggestion
12787
Daniel Veillardf4309d72001-10-02 09:28:58 +000012788Tue Oct 2 11:27:58 CEST 2001 Daniel Veillard <daniel@veillard.com>
12789
12790 * valid.c: close bug #61550 when xml: wasn't considered a namespace
12791
Daniel Veillardf6ed8bc2001-10-02 09:22:47 +000012792Tue Oct 2 11:18:32 CEST 2001 Daniel Veillard <daniel@veillard.com>
12793
12794 * win32/dsp/libxml2.def.src: Igor Zlatkovic patches
12795 * DOCBparser.c HTMLparser.c parser.c: fixed typos
12796
Daniel Veillard16756b62001-10-01 07:36:25 +000012797Mon Oct 1 09:34:51 CEST 2001 Daniel Veillard <daniel@veillard.com>
12798
12799 * catalog.c: Justin Fletcher provided cleaup code in case
12800 HAVE_STAT is not defined
12801 * include/win32config.h: Igor Zlatkovic suggested to have
12802 HAVE_STAT defined there
12803
William M. Brack5e1cac12001-09-28 16:19:18 +000012804Sat Sep 29 00:15:00 HKT 2001 William Brack <wbrack@mmm.com.hk>
12805
12806 * catalog.c - fixed typing error reported by M. Barros
12807
MDT 2001 John Fleckbbb9e432001-09-24 03:08:43 +000012808Sun Sep 23 21:02:39 MDT 2001 John Fleck <jfleck@inkstain.net>
12809
12810 * xmllint.c - fixing typo
12811
William M. Brackd28e48a2001-09-23 01:55:08 +000012812Sat Sep 22 10:00:00 HKT 2001 William Brack <wbrack@mmm.com.hk>
12813
12814 * HTMLparser.c: small enhancement to prevent loop on
12815 unrecognizable data
12816
Daniel Veillardb1d62872001-09-21 09:47:08 +000012817Fri Sep 21 11:45:53 CEST 2001 Daniel Veillard <daniel@veillard.com>
12818
12819 * parserInternals.c: applying patch from bug #60757 this
12820 should close it
12821
Daniel Veillardc0631a62001-09-20 13:56:06 +000012822Thu Sep 20 15:54:29 CEST 2001 Daniel Veillard <daniel@veillard.com>
12823
12824 * catalog.c xmlcatalog.c: removed a couple of warning
12825 * xpath.c: try to solve the linking problem on platforms
12826 needing trio to compile
12827
Daniel Veillard1a123612001-09-19 08:06:23 +000012828Wed Sep 19 10:01:37 CEST 2001 Daniel Veillard <daniel@veillard.com>
CEST 2001 Jens Finkede8c8af2001-09-19 07:20:40 +000012829
Daniel Veillard1a123612001-09-19 08:06:23 +000012830 * Makefile.am libxml.spec.in: backing up non-documented changes
12831 commited without review or aproval by Jens Finke <jens@gnome.org>
12832 * HACKING: made 100% clear that no commit should be done directly
CEST 2001 Jens Finkede8c8af2001-09-19 07:20:40 +000012833
Daniel Veillardf5b44e42001-09-17 17:19:54 +000012834Mon Sep 17 18:52:37 CEST 2001 Daniel Veillard <daniel@veillard.com>
12835
12836 * configure.in: Joe Orton provided a patch fixing a problem
12837 when iconv is specified to be in a non-standard directory
12838 but wasn't exported in xml2-config --cflags
12839
Daniel Veillard2fc2db72001-09-14 17:33:51 +000012840Fri Sep 14 19:32:43 CEST 2001 Daniel Veillard <daniel@veillard.com>
12841
Daniel Veillardf5b44e42001-09-17 17:19:54 +000012842 * configure.in: let's ship 2.4.5 before getting too much
Daniel Veillard2fc2db72001-09-14 17:33:51 +000012843 troubles with 2.4.4 errors.
12844
Daniel Veillard16698282001-09-14 10:29:27 +000012845Fri Sep 14 12:26:58 CEST 2001 Daniel Veillard <daniel@veillard.com>
12846
12847 * encoding.c entities.c: do not output hexadecimal charrefs
12848 when serializing HTML since some version of Netscape can't
12849 grok it, generate decimal ones.
12850 * result/HTML/doc3.htm: output changed due to previous test
12851 * parserInternals.c: repair xmlKeepBlanksDefault() broken in 2.4.4
12852
Daniel Veillard98fed372001-09-13 11:34:58 +000012853Thu Sep 13 13:34:27 CEST 2001 Daniel Veillard <daniel@veillard.com>
12854
12855 * libxml-2.0.pc.in: dohh generated the wrong include path :-(
12856 * doc/Makefile.am libxml.spec.in: re-dohh forgot the new manpage :-(
12857
Daniel Veillard07cdb2a2001-09-12 20:19:58 +000012858Wed Sep 12 22:14:55 CEST 2001 Daniel Veillard <daniel@veillard.com>
Daniel Veillard98fed372001-09-13 11:34:58 +000012859 Released 2.4.4
Daniel Veillard07cdb2a2001-09-12 20:19:58 +000012860
12861 * config.h.in configure.in libxml.spec.in include/libxml/Makefile.am
12862 libxml-2.0.pc.in: moved includes to includedir/libxml2/libxml,
12863 updated the configuration scripts systems accordingly
12864
Daniel Veillard04382ae2001-09-12 18:51:30 +000012865Wed Sep 12 20:49:32 CEST 2001 Daniel Veillard <daniel@veillard.com>
12866
12867 * configure.in: preparing for 2.4.4
12868 * doc/xml.html doc/html/*: updated and rebuilt the docs
12869
Daniel Veillardd63437e2001-09-12 15:00:27 +000012870Wed Sep 12 16:58:16 CEST 2001 Daniel Veillard <daniel@veillard.com>
12871
12872 * win32/dsp/libxml2.def.src: tried to incorporate comments
12873 from bug #59220
12874
Daniel Veillard319a7422001-09-11 09:27:09 +000012875Tue Sep 11 11:25:36 CEST 2001 Daniel Veillard <daniel@veillard.com>
12876
12877 * parser.c result/noent/wml.xml: fixed bug #59981 related
12878 to handling of '&' in attributes when entities are substitued
12879
Daniel Veillard7cf5e442001-09-10 20:16:32 +000012880Mon Sep 10 22:14:42 CEST 2001 Daniel Veillard <daniel@veillard.com>
12881
12882 * libxml.h include/libxml/xmlversion.h.in
12883 include/libxml/xmlwin32version.h include/libxml/xmlwin32version.h.in:
12884 Tried to close bug #60131
12885
Daniel Veillardbce62332001-09-10 18:46:55 +000012886Mon Sep 10 20:46:03 CEST 2001 Daniel Veillard <daniel@veillard.com>
12887
12888 * SAX.c: fixed a bug in the HTML parser introduced Sep 9
12889
Daniel Veillard143b04f2001-09-10 18:14:14 +000012890Mon Sep 10 20:13:09 CEST 2001 Daniel Veillard <daniel@veillard.com>
12891
12892 * SAX.c: fixing bug #59946 on xmlns=""
12893
Daniel Veillard7a51d6d2001-09-10 14:40:43 +000012894Mon Sep 10 16:39:42 CEST 2001 Daniel Veillard <daniel@veillard.com>
12895
12896 * include/libxml/xmlerror.h SAX.c: fixing bug 59732, simple
12897 but allocates a new error code.
12898
Daniel Veillard05c13a22001-09-09 08:38:09 +000012899Sun Sep 9 10:33:15 CEST 2001 Daniel Veillard <daniel@veillard.com>
12900
12901 * xmllint.c: John Fleck fixed typos in the options output
12902 * parser.c SAX.c: fix ignorable white space SAX selection
12903
12904Sat Sep 8 11:43:53 CEST 2001 Daniel Veillard <daniel@veillard.com>
12905
12906 * entities.c: Steve Underwood found the possibility of an
12907 ininite loop in case of error.
12908
Daniel Veillard5eb9dea2001-09-07 09:38:02 +000012909Fri Sep 7 11:35:00 CEST 2001 Daniel Veillard <daniel@veillard.com>
12910
12911 * Makefile.am: Need $(ICONV_LIBS) in libxml2_la_LIBADD
12912
Daniel Veillarda050d232001-09-05 15:51:05 +000012913Wed Sep 5 17:47:43 CEST 2001 Daniel Veillard <daniel@veillard.com>
12914
12915 * parser.c: warn if version is not 1.0 but it's not
12916 strictly speaking an error after analyzing the spec
12917
MDT 2001 John Fleck04685002001-09-03 16:11:47 +000012918Mon Sep 3 10:07:03 MDT 2001 John Fleck <jfleck@inkstain.net>
12919
12920 *doc/catalog.html - add link to the html version of the
12921 man page, other linguistic cleanups
12922
MDT 2001 John Fleck5bd39dc2001-09-03 15:14:19 +000012923Mon Sep 3 09:10:08 MDT 2001 John Fleck <jfleck@inkstain.net>
12924
12925 * doc/xmlcatalog_man.xml, xmlcatalog_man.html, xmlcatalog.1
12926 adding documentation for xmlcatalog. Note: xmlcatalog.1, the man
12927 file, has not yet been included in the build.
12928
Daniel Veillard99784ff2001-09-01 16:20:28 +000012929Sat Sep 1 18:17:47 CEST 2001 Daniel Veillard <daniel@veillard.com>
12930
12931 * catalog.c: removed a duplicate affectation Justin Fletcher
12932
Daniel Veillard9e1c72d2001-08-31 20:03:19 +000012933Fri Aug 31 22:02:10 CEST 2001 Daniel Veillard <daniel@veillard.com>
12934
12935 * tree.c: Armin Sander pointed a possible text coalescing
12936 problem, completed his patch.
12937
Bjorn Reese0b2ae432001-08-31 16:31:57 +000012938Fri Aug 31 18:30:28 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
12939
12940 * trionan.c: Fixed const and volatile re-definition problem
12941
Daniel Veillard5d96fff2001-08-31 14:55:30 +000012942Fri Aug 31 16:51:28 CEST 2001 Daniel Veillard <daniel@veillard.com>
12943
12944 * libxml.4 parser.c: doc updates from Heiko Rupp
12945 * parserInternals.c: 2 sanity checks from Heiko Rupp
12946
Daniel Veillard3ec4c612001-08-28 20:39:49 +000012947Tue Aug 28 22:38:45 CEST 2001 Daniel Veillard <daniel@veillard.com>
12948
12949 * tree.c: applied patch from Armin Sander to make some pointers
12950 const in xmlCopyNode()
Daniel Veillard2ebd7a72001-08-28 21:07:03 +000012951 * include/libxml/tree.h: added fix to the header
Daniel Veillard3ec4c612001-08-28 20:39:49 +000012952
Daniel Veillardb06c6142001-08-27 14:26:30 +000012953Mon Aug 27 16:24:47 CEST 2001 Daniel Veillard <daniel@veillard.com>
12954
12955 * xpath.c: hum, restrict the integer usage gcc bug workaround
12956 to only gcc compilers so that other architecture don't get
12957 penalized by this limitation.
12958 * include/libxml/xpath.h: small typo fix from Heiko W. Rupp
12959
Daniel Veillard268fd1b2001-08-26 18:46:36 +000012960Sun Aug 26 20:45:04 CEST 2001 Daniel Veillard <daniel@veillard.com>
12961
12962 * valid.c: fixed a Windows compiler warning (Chris Poblete)
12963 * xpath.c: fix for mod when dividend is 0 (Chris Poblete)
12964
Daniel Veillard6c5f9d12001-08-25 13:33:14 +000012965Sat Aug 25 15:30:17 CEST 2001 Daniel Veillard <daniel@veillard.com>
12966
12967 * include/libxml/catalog.h catalog.c xmlcatalog.c: added a
12968 --convert option to xmlcatalog to convert SGML ones to
12969 the XML syntax.
12970 * xmllint.c: small cleanup for $SGML_CATALOG_FILES support.
12971
12972 2.4.3 got released at that point
Daniel Veillard6990bf32001-08-23 21:17:48 +000012973Thu Aug 23 23:16:32 CEST 2001 Daniel Veillard <daniel@veillard.com>
12974
12975 * catalog.c xmlIO.c: started some serious testing and fixed
12976 a few bug and optmization needs.
12977
Daniel Veillard9f7b84b2001-08-23 15:31:19 +000012978Thu Aug 23 17:26:58 CEST 2001 Daniel Veillard <daniel@veillard.com>
12979
12980 * Makefile.am configure.in include/libxml/xmlwin32version.h:
12981 preparing for a 2.4.3 release even if it may not be ready yet
12982 * catalog.c parser.c xmlIO.c include/libxml/catalog.h: redirected
12983 all file parsing lookup to go through the entity resolver, add
12984 to add an API to bypass it (needed to load catalogs themselves),
12985 some cleanup on the catalog code too.
12986 * nanoftp.c: small cleanup
12987 * doc/catalog.html: small update
12988
Daniel Veillardbc2ddbe2001-08-23 10:24:27 +000012989Thu Aug 23 12:22:26 CEST 2001 Daniel Veillard <daniel@veillard.com>
12990
12991 * catalog.c: fixed bugi #59406 in SGML catalog parsing reported by
12992 Jun Kuriyama
12993
Daniel Veillardffb120d2001-08-23 00:52:23 +000012994Thu Aug 23 02:51:29 CEST 2001 Daniel Veillard <daniel@veillard.com>
12995
12996 * doc/catalog.html: finished the catalog documentation
12997
Daniel Veillarde7ead2d2001-08-22 23:44:09 +000012998Thu Aug 23 01:38:42 CEST 2001 Daniel Veillard <daniel@veillard.com>
12999
13000 * doc/catalog.html doc/xml.html: added documentation about
13001 Catalog support, misses an API description
13002 * doc/html/*: reextracted the API pages
13003
Daniel Veillarddc2cee22001-08-22 16:30:37 +000013004Wed Aug 22 18:27:47 CEST 2001 Daniel Veillard <daniel@veillard.com>
13005
13006 * include/libxml/catalog.h catalog.c xmlIO.c HTMLparser.c:
13007 Added the part about section 7.2 on URI resolution,
13008 fixed a side effect in the HTML parser, look complete
13009 and ready to rock except the URI/SystemID part!
13010
Daniel Veillard5d90b6c2001-08-22 14:29:45 +000013011Wed Aug 22 16:27:03 CEST 2001 Daniel Veillard <daniel@veillard.com>
13012
13013 * include/libxml/catalog.h include/libxml/parser.h
13014 include/libxml/xmlerror.h catalog.c parser.c parserInternals.c
13015 xmlIO.c: added support and APIs needed for the catalog PI
13016 * include/libxml/xmlIO.h: cleanup
13017
Daniel Veillarde2940dd2001-08-22 00:06:49 +000013018Wed Aug 22 02:03:31 CEST 2001 Daniel Veillard <daniel@veillard.com>
13019
13020 * catalog.c parser.c xmlIO.c xmlcatalog.c xmllint.c
13021 include/libxml/catalog.h: starts to look okay, really
13022 plugged the new framework, cleaned a lot of stuff,
13023 added some APIs, except the PI's support missing this
13024 should be mostly complete
13025 * result/catalogs/* test/catalogs/*: added new test, enriched
13026 the existing one with URN ID tests
13027
Daniel Veillard64339542001-08-21 12:57:59 +000013028Tue Aug 21 14:56:18 CEST 2001 Daniel Veillard <daniel@veillard.com>
13029
13030 * catalog.c: fixed nextCatalog
13031 * result/catalogs/docbook test/catalogs/*: started adding
13032 a small regression test
13033
Daniel Veillardcda96922001-08-21 10:56:31 +000013034Tue Aug 21 12:52:38 CEST 2001 Daniel Veillard <daniel@veillard.com>
13035
13036 * Makefile.am catalog.c xmlcatalog.c include/libxml/catalog.h:
13037 more work on the XML catalog support.
13038 * parser.c include/libxml/parser.h: small cleanup seems using
13039 list as a public parameter name can give portability troubles
13040 * trionan.c trionan.h xpath.c include/libxml/trionan.h
13041 include/libxml/xpath.h include/libxml/Makefile.am: removed
13042 trionan from the libxml API, added xmlXPathIsInf and xmlXPathIsNaN
13043 wrappers
13044
Bjorn Reese45029602001-08-21 09:23:53 +000013045Tue Aug 21 11:18:45 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
13046
13047 * Makefile.am trio.c triodef.h trionan.c xpath.c
13048 include/libxml/Makefile.am include/libxml/trionan.h:
13049 Re-worked Not-A-Number and Infinity support.
13050 * xmlcatalog.c: added readline include files
13051
Daniel Veillard344cee72001-08-20 00:08:40 +000013052Mon Aug 20 02:04:13 CEST 2001 Daniel Veillard <daniel@veillard.com>
13053
13054 * Makefile.am xmlcatalog.c libxml.spec.in: renaming
13055 testCatalog as xmlcatalog, making it an installed app
13056 adding a shell, and preparing it to be a /etc/xml/catalog
13057 management tool, though not ready yet
13058 * catalog.c include/libxml/catalog.h: adding support for
13059 XML Catalogs http://www.oasis-open.org/committees/entity/
13060 not finished, there is some interesting tradeoffs and a
13061 few open questions left.
13062
Daniel Veillardb7664f42001-08-19 13:00:43 +000013063Sun Aug 19 14:59:56 CEST 2001 Daniel Veillard <daniel@veillard.com>
13064
13065 * xmllint.c: fixed a line formatting problem
13066
Daniel Veillard5015b712001-08-17 09:37:52 +000013067Fri Aug 17 11:35:31 CEST 2001 Daniel Veillard <daniel@veillard.com>
13068
13069 * SAX.c: removed a couple of unused variable (Albert Chin)
13070
Daniel Veillardbb371292001-08-16 23:26:59 +000013071Fri Aug 17 01:25:21 CEST 2001 Daniel Veillard <daniel@veillard.com>
13072
13073 * HTMLparser.c HTMLtree.c include/libxml/HTMLparser.h:
13074 trying to fix some troubles w.r.t. function returning
13075 const xxxPtr.
13076
Daniel Veillardb60c54e2001-08-16 19:34:27 +000013077Thu Aug 16 21:33:20 CEST 2001 Daniel Veillard <daniel@veillard.com>
13078
13079 * win32/dsp/libxml2.def.src: another set of symbols conditionally
13080 defined
13081
Daniel Veillardae6db172001-08-16 19:32:00 +000013082Thu Aug 16 21:31:14 CEST 2001 Daniel Veillard <daniel@veillard.com>
13083
13084 * xpointer.c: removed unused var
13085
Daniel Veillard09190202001-08-16 16:27:41 +000013086Thu Aug 16 18:26:40 CEST 2001 Daniel Veillard <daniel@veillard.com>
13087
13088 * testXPath.c: another small cleanup closing bug #59110
13089
Daniel Veillard796f4b62001-08-16 16:00:13 +000013090Thu Aug 16 17:59:18 CEST 2001 Daniel Veillard <daniel@veillard.com>
13091
13092 * win32/dsp/libxml2.def.src: small cleanup closing bug
13093 #59108
13094
Daniel Veillard5aac4e42001-08-15 20:46:57 +000013095Wed Aug 15 22:46:01 CEST 2001 Daniel Veillard <daniel@veillard.com>
13096
13097 * example/gjobread.c: add xmlCleanupParser() before leaving
13098
Daniel Veillard9a0b3d62001-08-15 12:58:03 +000013099Wed Aug 15 14:57:08 CEST 2001 Daniel Veillard <daniel@veillard.com>
13100
13101 * config.h.in configure.in include/libxml/xmlwin32version.h:
13102 released 2.4.2
13103
Daniel Veillardd3d06722001-08-15 12:06:36 +000013104Wed Aug 15 13:56:22 CEST 2001 Daniel Veillard <daniel@veillard.com>
13105
13106 * include/libxml/valid.h debugXML.c valid.c: deprecate
13107 the non-boundchecking Sprintf functions, add Snprintf
13108 this should close bug #57984
13109
Daniel Veillardecb6f5b2001-08-15 08:47:42 +000013110Wed Aug 15 10:46:07 CEST 2001 Daniel Veillard <daniel@veillard.com>
13111
13112 * xmlIO.c: xmlOutputBufferCreateFilename() didn't unescaped
13113 URIs before doing the lookups (pointed by Mark Vakoc)
13114
Daniel Veillard0ab5cab2001-08-14 16:43:10 +000013115Tue Aug 14 18:37:23 CEST 2001 Daniel Veillard <daniel@veillard.com>
13116
13117 * xpath.c: serious changes on Result Value Trees and NodeSets
13118 w.r.t. deallocation and collect operations. Probably not
13119 100% clean (merge of allocated trees smells like a problem).
13120 Seems sufficient to close #58943
13121
Daniel Veillard90493a92001-08-14 14:12:47 +000013122Tue Aug 14 16:12:00 CEST 2001 Daniel Veillard <daniel@veillard.com>
13123
13124 * xmllint.c: adding a --format option
13125
Daniel Veillardfe703322001-08-14 12:18:09 +000013126Tue Aug 14 14:16:24 CEST 2001 Daniel Veillard <daniel@veillard.com>
13127
13128 * xpath.c: count() was broken on Result Value Tree
13129 * xmlIO.c: fixed file:/// accesses on _WIN32
13130
Daniel Veillard70ac0e32001-08-13 11:24:16 +000013131Mon Aug 13 13:22:53 CEST 2001 Daniel Veillard <daniel@veillard.com>
13132
13133 * libxml.m4: s/LIBXML_VERSION_NUMBER/LIBXML_VERSION/ seems the
13134 macro was renamed, this should close bug #58683
13135
Daniel Veillardf300b7e2001-08-13 10:43:15 +000013136Mon Aug 13 12:33:40 CEST 2001 Daniel Veillard <daniel@veillard.com>
13137
13138 * SAX.c: small fix fixing bug #58539 reported by coolo, in
13139 entity substitution mode text at the end of the entity might
13140 be added due to text coalescing.
13141 * nanoftp.c parser.c: small cleanup
13142
Daniel Veillard0c720972001-08-08 20:59:00 +000013143Wed Aug 8 22:57:05 CEST 2001 Daniel Veillard <daniel@veillard.com>
13144
13145 * HACKING: added John Fleck right to commit in the doc subdir
13146
Daniel Veillard48da9102001-08-07 01:10:10 +000013147Tue Aug 7 03:05:58 CEST 2001 Daniel Veillard <daniel@veillard.com>
13148
13149 * SAX.c testXPath.c valid.c xmllint.c include/libxml/valid.h:
13150 allow to inherit attributes from the DTD directly in the
13151 tree, this is needed for XPath and can be a useful feature.
13152 Inherited namespaces are always provided at the tree level now
13153 * test/defattr* result/defattr* result/noent/defattr*: added a couple
13154 of tests for this feature (XSLT being the prime user).
13155
Daniel Veillard50f34372001-08-03 12:06:36 +000013156Fri Aug 3 14:02:20 CEST 2001 Daniel Veillard <daniel@veillard.com>
13157
13158 * DOCBparser.c Makefile.am nanohttp.c parser.c testHTML.c
13159 testSAX.c xmlIO.c xmllint.c include/win32config.h
13160 include/libxml/xmlversion.h.in include/libxml/xmlwin32version.h
13161 include/libxml/xmlwin32version.h.in win32/README.MSDev
13162 win32/dsp/*: applied Win32 Facelift No.2 patches from
13163 Igor Zlatkovic for Windows/MSC
13164
Daniel Veillard9f4eb912001-08-01 21:22:27 +000013165Wed Aug 1 23:21:06 CEST 2001 Daniel Veillard <daniel@veillard.com>
13166
13167 * SAX.c: unparsedEntityDecl() the URI computation of the
13168 entity wasn't done breaking XSLT unparsed-entity-uri()
13169
Daniel Veillard567e1b42001-08-01 15:53:47 +000013170Wed Aug 1 17:44:57 CEST 2001 Daniel Veillard <daniel@veillard.com>
13171
13172 * xpath.c: fixed a bug when walking the descendants and
13173 the current node has no children
13174 * debugXML.c: show up when a text node is supposed to not be escaped
13175
Thomas Broyerf186c822001-07-31 23:30:37 +000013176Wed Aug 1 01:33:35 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
13177
13178 * xpath.c: fixed a bug in xmlXPathNodeTrailingSorted (for now it
13179 worked like the set:leading() function)
13180 * include/libxml/xpathInternals.h: added xmlXPathNodeSetContains
13181
Daniel Veillardba6db032001-07-31 16:25:45 +000013182Tue Jul 31 18:24:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13183
13184 * nanohttp.c: protected an use of EAGAIN, Brian Stafford
13185
Daniel Veillard57905372001-07-31 15:52:17 +000013186Tue Jul 31 17:48:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13187
13188 * include/libxml/xmlIO.h: apply change to close #58141
13189 * win32/libxml2/*: update of the MSC projects from Igor Zlatkovic
13190
Daniel Veillard5e3eecb2001-07-31 15:10:53 +000013191Tue Jul 31 17:09:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13192
13193 * parser.c: when the internal subset uses a PE, then the
13194 included entity can use conditional sections.
13195
Daniel Veillard7d7e3792001-07-30 13:42:13 +000013196Mon Jul 30 12:58:39 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13197
13198 * xpath.c include/libxml/xpath.h: fixed a serious memory problen
13199 when walking the namespace axis showing up in
13200 libxst/tests/general/bug-12
13201 * xmlmemory.c: added the possibility to trace a given block
13202 defined by its address
13203
Daniel Veillard4aafa792001-07-28 17:21:12 +000013204Sun Jul 29 07:18:53 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13205
13206 * parser.c: don't override existing encoding specified before
13207 starting xmlParseDocument()
13208
Daniel Veillardfdb1f242001-07-27 23:32:44 +000013209Sat Jul 28 13:33:10 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13210
13211 * include/libxml/xmlwin32version.h: reinserted, needed for
13212 Windows users of CVS
13213
Darin Adlera77cac02001-07-27 17:41:51 +0000132142001-07-27 Darin Adler <darin@bentspoon.com>
13215
Darin Adler699613b2001-07-27 22:47:14 +000013216 * encoding.c: (xmlIconvWrapper): Add cast to fix warning.
13217 * testCatalog.c: Add include of <libxml/parser.h>.
13218
132192001-07-27 Darin Adler <darin@bentspoon.com>
13220
Darin Adlera77cac02001-07-27 17:41:51 +000013221 * include/libxml/.cvsignore:
13222 * include/libxml/xmlwin32version.h:
13223 Remove this file from CVS because it's generated.
13224
Daniel Veillard50822cb2001-07-26 20:05:51 +000013225Fri Jul 27 10:03:56 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13226
13227 * parser.c include/libxml/parser.h: applied const patches from
13228 Tom Moog #58002
13229
Thomas Broyerba4ad322001-07-26 16:55:21 +000013230Thu Jul 26 18:55:52 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
13231
13232 * xpath.c include/libxml/xpath{,Internals}.h: added a function
13233 lookup framework
13234
Daniel Veillard1d0bfab2001-07-26 11:49:41 +000013235Fri Jul 27 01:50:20 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13236
13237 * tree.c: fixed xmlCopyNode() for documents
13238
Daniel Veillard6dd398f2001-07-25 22:41:03 +000013239Thu Jul 26 12:40:35 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13240
13241 * parser.c: fixed bugs #58073 reported by Greg Shtilman
13242
13243Thu Jul 26 11:38:37 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
Daniel Veillard2454ab92001-07-25 21:39:46 +000013244
13245 * parser.c: fixes bug #57652 reported by Morus Walter
13246
Daniel Veillarde3924972001-07-25 20:25:21 +000013247Thu Jul 26 10:24:34 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13248
13249 * nanohttp.c: John Kroll provided a small fix to xmlNanoHTTPSave
13250
Daniel Veillarda53c6882001-07-25 17:18:57 +000013251Thu Jul 26 07:16:04 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13252
13253 * parser.c parserInternals.c: fixed the xmlLineNumbersDefault()
13254 errors, lesson don't add new functions at 1am before a release
13255 * xpath.c: integrated fix from Bjorn to avoid divide by zero
13256 from XPath initialization when possible.
13257
Daniel Veillardd9bad132001-07-23 19:39:43 +000013258Tue Jul 24 15:39:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13259
13260 * result/scripts/base*: removing history/readline changed
13261 this slightly
13262 * include/libxml/parser.h SAX.c parser.c parserInternals.c
13263 xmllint.c: make element content line number generation
13264 optionnal to avoid breaking old apps added interface to switch
13265
Daniel Veillardf012a642001-07-23 19:10:52 +000013266Tue Jul 24 15:06:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13267
13268 * configure.in: get rid of the readline and libhistory
Daniel Veillard784b9352003-02-16 15:50:27 +000013269 dependencies by default, release 2.4.1 with IA64 fix
Daniel Veillardf012a642001-07-23 19:10:52 +000013270 * nanohttp.c tree.c xmlIO.c include/libxml/nanohttp.h
13271 include/libxml/tree.h include/libxml/xmlIO.h: incorporated
13272 John Kroll fixes to allow saving to HTTP via PUT (or
13273 POST of needed).
13274 * doc/html/*.html: regenerated the docs
13275
Thomas Broyere8126242001-07-22 03:54:15 +000013276Sun Jul 22 05:56:16 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
13277
13278 * hash.c include/libxml/hash.h: added xmlHashScannerFull,
13279 xmlHashScanFull and xmlHashScannFull3 to get passed the
13280 three keys as arguments to the callback function
13281
Daniel Veillard5e2dace2001-07-18 19:30:27 +000013282Thu Jul 19 15:29:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13283
13284 * configure.in Makefile.am: removed libxml softlink for good
13285 * include/libxml/*.h *.c doc/Makefile.am: cleanup to get
13286 100% coverage by gtk-doc
13287
Daniel Veillard8599e702001-07-17 21:38:51 +000013288Tue Jul 17 17:36:46 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13289
13290 * xmlmemory.c include/libxml/xmlmemory.h: debugging on IA64,
13291 fixed serious troubles due to size_t vs. int mismatch
13292
Daniel Veillard8fcc4942001-07-17 20:07:33 +000013293Tue Jul 17 16:04:36 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13294
13295 * SAX.c xmlIO.c: cleaned up some warning on the Alpha
13296
Thomas Broyerf06a3d82001-07-16 04:52:57 +000013297Mon Jul 16 06:32:44 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
13298
13299 * include/libxml/xpath{,Internals}.h xpath.c: added a more
13300 convenient extension API for value and context managing
13301 Now handles external objects through xmlXPathPopExternal,
13302 xmlXPathWrapExternal and xmlXPathReturnExternal.
13303 Added functions for sets operations (intersection, etc.)
13304
Daniel Veillard22090732001-07-16 00:06:07 +000013305Mon Jul 16 20:05:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13306
13307 * include/libxml/parserInternals.h include/libxml/HTMLparser.h
13308 xmlIO.c tree.c parserInternals.c entities.c encoding.c
13309 HTMLparser.c: cleanup of global variables, marking some
13310 const or private.
13311
Thomas Broyerf06a3d82001-07-16 04:52:57 +000013312Mon Jul 16 00:17:15 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
Thomas Broyer496be682001-07-15 22:59:18 +000013313
13314 * include/libxml/xpath.h: exported xmlXPath{NAN,PINF,NINF}
13315 fixed xmlXPathNodeSetItem when passing index=0
13316
Daniel Veillard05dec342001-07-14 21:57:39 +000013317Sun Jul 15 17:58:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13318
13319 * include/libxml/xmlwin32version.h.in: added xmlCheckVersion()
13320
Daniel Veillard28ae6362001-07-14 16:44:32 +000013321Sat Jul 14 19:31:21 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13322
13323 * xmllint.c: fixed compilation under Cygwin #57503
13324 * TODO: update
13325
Peter Williamsed156f52001-07-13 18:35:13 +0000133262001-07-13 Peter Williams <peterw@ximian.com>
13327
13328 * config.h.in: add #undef HAVE_DLFCN_H
13329
13330 * example/Makefile.am (INCLUDES): Compile fix when srcdir !=
13331 builddir.
13332
Daniel Veillard73b36e32001-07-12 15:09:52 +000013333Fri Jul 13 11:09:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13334
13335 * win32/libxml2/libxml2.def.src: added a couple of exported entries
13336 raised by #57348 and #57381
13337
Daniel Veillard7db37732001-07-12 01:20:08 +000013338Thu Jul 12 21:20:17 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13339
13340 * DOCBparser.c HTMLparser.c HTMLtree.c SAX.c debugXML.c parser.c
13341 tree.c xpointer.c: store the line numbder in element->content,
13342 may break some software, need a configuration mechanism
13343
Darin Adler96037892001-07-11 00:03:16 +0000133442001-07-10 Darin Adler <darin@bentspoon.com>
13345
13346 * .cvsignore:
13347 * example/.cvsignore:
13348 * include/.cvsignore:
13349 * include/libxml/.cvsignore:
13350 Various things that are generated and should be ignored.
13351
Daniel Veillard09ab7e12001-07-10 15:49:44 +000013352Tue Jul 10 17:47:09 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13353
13354 * configure.in include/libxml/xmlwin32version.h: release of 2.4.0
13355 * doc/xml.html doc/html/*: updated the docs
13356
Daniel Veillard04e2dae2001-07-09 20:07:25 +000013357Mon Jul 9 22:06:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13358
13359 * valid.c: fixed "Internal: MIXED struct bad" when #CDATA elements
13360 validation occured on content with element child
13361
Daniel Veillardb8c9be92001-07-09 16:01:19 +000013362Mon Jul 9 17:59:08 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13363
13364 * tree.c: fixed XML Base computation which was broken
13365 * debugXML.c: added a base function to the shell
13366 * Makefile.am result/scripts/* test/scripts/*: added scripts
13367 based regression tests, and adding 2 XML Base tests
13368
Daniel Veillard19e96c32001-07-09 10:32:59 +000013369Mon Jul 9 12:31:05 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13370
13371 * tree.c: set properties doc and call xmlSetListDoc for properties
13372 content when grafting them in a different tree.
13373 * aclocal.m4: remove from CVS
13374
Daniel Veillarde086f5c2001-07-08 21:10:40 +000013375Sun Jul 8 23:09:07 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13376
13377 * win32/libxml2/libxml2.def.src: added some missing entry point
13378 for XPath (Mark Vakoc)
13379
Daniel Veillard388236f2001-07-08 18:35:48 +000013380Sun Jul 8 20:34:35 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13381
13382 * xmlIO.c: fixed an old bug raised by Bernhard Zwisch, the I/O
13383 layer should URI-Unescape before trying to open resources.
13384
Daniel Veillard04383752001-07-08 14:27:15 +000013385Sun Jul 8 16:26:00 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13386
13387 * xpath.c: fix the name() bug for elements in the default
13388 namespace reported by Charlie Bozeman
13389
Daniel Veillard7583a592001-07-08 13:15:55 +000013390Sun Jul 8 15:11:05 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13391
13392 * SAX.c parser.c testXPath.c xpath.c: trying to fix #56948, this
13393 led to an XPath fix, improvements of SAX initialization, and
13394 an added option --nocdata to testXPath
13395
Daniel Veillard449d7392001-07-07 19:11:06 +000013396Sat Jul 7 21:09:55 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13397
13398 * doc/libxml-doc.el: Felix Natter provided anew version working
13399 with XEmacs too
13400
Daniel Veillard5168dbf2001-07-07 00:18:23 +000013401Sat Jul 7 02:16:00 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13402
13403 * include/libxml/xpath.h: small cleanup
13404 * doc/xml.html: update
13405
Daniel Veillardf524d6e2001-07-05 23:41:40 +000013406Fri Jul 6 01:40:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13407
13408 * Makefile.am configure.in include/libxml/xmlwin32version.h:
13409 released 2.3.14
13410
Daniel Veillard4b8328d2001-07-05 22:48:42 +000013411Fri Jul 6 00:47:41 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13412
13413 * doc/html/*: rebuilt the docs for the release
Daniel Veillard5b43fde2001-07-05 23:31:40 +000013414 * doc/xml.html: added 2.3.14 release.
Daniel Veillard4b8328d2001-07-05 22:48:42 +000013415
Daniel Veillard73c9c042001-07-05 20:02:54 +000013416Thu Jul 5 22:01:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13417
13418 * xpath.c: a bug reported by Stephan Kulow empty nodesets
13419 were not equal to empty strings
13420
Daniel Veillard1fd36d22001-07-04 22:54:28 +000013421Thu Jul 5 00:52:25 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13422
13423 * SAX.c: fixed a URI-Reference computation problem when validating
13424 * xmlIO.c: small cleanup
13425
Daniel Veillard4d65a1c2001-07-04 22:06:23 +000013426Thu Jul 5 00:04:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13427
13428 * parser.c: improved the description of a couple of interfaces
13429 upon Larry Stamper suggestion
13430
Daniel Veillard62f313b2001-07-04 19:49:14 +000013431Wed Jul 4 21:42:24 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13432
13433 * SAX.c entities.c parser.c: changed completely the way entities
13434 are handled when running the parser in entity substitution mode.
13435 This fixes a bug reported by Stephan Kulow and nearly divides
13436 by 3 the amount of memory required by libxslt to load and process
13437 DocBook TDG.
13438
Daniel Veillardf420ac52001-07-04 16:04:09 +000013439Wed Jul 4 18:02:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13440
13441 * HTMLparser.c: fixing a too early root closing problem raised
13442 byt Prashanth Naidu
13443
Daniel Veillard8c357d52001-07-03 23:43:33 +000013444Wed Jul 4 01:42:01 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13445
13446 * xpath.c: fixed a missing copy in xmlXPathVariableLookupNS()
13447 raised by Mark Vakoc.
13448
Daniel Veillard6e90d192001-07-03 16:37:49 +000013449Tue Jul 3 18:35:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13450
13451 * example/Makefile.am: fixed the include path to add srcdir/include
13452 * Makefile.am configure.in: fix from Albert Chin for iconv detection
13453 and some cleanup
13454
Daniel Veillardf06307e2001-07-03 10:35:50 +000013455Tue Jul 3 10:12:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13456
13457 * xpath.c include/libxml/xpath.h include/libxml/xpathInternals.h:
13458 lot of optimization work, results in significant improvements
13459 when handling really complex XPath queries. Add a small optimizer
13460 for unions, improve [n] and [last()], avoid some costly ops.
13461
Daniel Veillard77044732001-06-29 21:31:07 +000013462Fri Jun 29 23:26:54 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13463
13464 * include/libxml/parser.h parser.c: xmlStrstr args are both const
13465 * xpath.c: small cleanup
13466 * xmlGetNsList: reformated, fixed problems if used on Entities
13467
Daniel Veillard2adbb512001-06-28 16:20:36 +000013468Thu Jun 28 18:19:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13469
13470 * doc/xml.html: added 1.8.14 and 2.3.13 releases
13471
Daniel Veillardb37ecd02001-06-28 16:18:11 +000013472Thu Jun 28 18:16:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13473
13474 * configure.in include/libxml/xmlwin32version.h: released 2.3.13
13475 * Makefile.am example/Makefile.am: workaround automake generating
13476 erroneous deps
13477
Daniel Veillard12f7d292001-06-28 13:12:11 +000013478Thu Jun 28 15:08:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13479
13480 * include/win32config.h: bug #56801 Yon Derek provided a patch
13481 to the windows config file.
13482
Daniel Veillard87ee9142001-06-28 12:54:16 +000013483Thu Jun 28 14:51:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13484
13485 * xpointer.c include/win32config.h win32/libxml2/libxml2.def.src
13486 libxml.h : Yon Derek provided a set of changes to compile from
13487 CVS on Windows/MSC
13488
Daniel Veillard0e4cd172001-06-28 12:13:56 +000013489Thu Jun 28 14:11:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13490
13491 * parser.c: fixed UTF8 BOM support in push mode
13492 * test/utf8bom.xml result/utf8bom.xml result/noent/utf8bom.xml:
13493 added a specific testcase
13494
Daniel Veillard3e5bb8e2001-06-27 16:34:34 +000013495Wed Jun 27 18:33:13 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13496
13497 * Makefile.am: added --push regression tests
13498 * parserInternals.c: the XML parser segfaulted in --push mode
13499
Daniel Veillard9a89a8a2001-06-27 11:13:35 +000013500Wed Jun 27 13:09:51 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13501
13502 * configure.in: moved the symlinks detection within a CVS
13503 check, this is not portable and will be removed soon.
13504 * xpath.c: small cleanup/speedup
13505
Daniel Veillard11648102001-06-26 16:08:24 +000013506Tue Jun 26 18:05:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13507
13508 * configure.in doc/xml.html include/libxml/xmlwin32version.h:
13509 release of 2.3.12
13510 * parser.c: make an error message if unknow entities in all cases
13511
Daniel Veillardfcbd74a2001-06-26 07:47:23 +000013512Tue Jun 26 09:46:29 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13513
13514 * uri.c: fixed 2 uri normalization bugs on '//' reduction
13515
Daniel Veillard23793842001-06-25 16:07:45 +000013516Mon Jun 25 18:06:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13517
13518 * include/libxml/Makefile.am: Laszlo Peter pointed out that
13519 includes were installed in the wrong dir
13520
Daniel Veillardf5498f32001-06-25 15:08:36 +000013521Mon Jun 25 17:07:37 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13522
13523 * doc/html.xml: warn against sending code to exhibit bugs.
13524
Daniel Veillard56f06462001-06-24 21:34:03 +000013525Sun Jun 24 23:31:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13526
13527 * xpath.c: patch to xmlXPathFormatNumber for the optimizer on
13528 Tru64 from Thomas Leitner
13529
Daniel Veillardc5d64342001-06-24 12:13:24 +000013530Sun Jun 24 14:05:54 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13531
13532 * AUTHORS: added William and Bjorn
13533 * include/libxml/*.h *.c README doc/*.html etc.: changed old email to
13534 daniel@veillard.com hopefully I won't have to do this again
13535 * doc/Makefile.am doc/html/*.html: cleanup makefile, checked that
13536 docs can be rebuilt cleanly now
13537 * include/libxml/xml*version.h*: removed include/libxml/xmlversion.h
13538 from CVs it's generated, added include/libxml/xmlwin32version.h
13539 also generated but which should change far less frequently.
13540 * catalog.c nanoftp.c: made sure to include libxml.h not
13541 libxml/xmlversion.h directly
13542 * include/libxml/*.h: include xmlwin32version.h instead of xmlversion.h
13543 when compiling on WIN32 and MSC
13544
Daniel Veillard07385fd2001-06-23 21:55:48 +000013545Sat Jun 23 23:54:12 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13546
13547 * include/Makefile.am include/libxml/Makefile.am configure.in:
13548 fixed make distcheck and rebuilding the rpms
13549
Daniel Veillardcd1d9442001-06-23 18:53:44 +000013550Sat Jun 23 20:50:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13551
13552 * configure.in: should finish the migration of exported includes
13553 into a real include/libxml in CVS, at least for CVS users.
13554 * removed the exported headers, added in include/libxml (as well
13555 as xmlversion.h.in).
13556
Daniel Veillard6dd8e052001-06-23 18:38:06 +000013557Sat Jun 23 20:37:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13558
13559 * configure.in: fixed the way to detect symlink
13560
Daniel Veillard66541772001-06-23 18:31:04 +000013561Sat Jun 23 20:30:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13562
13563 * configure.in: updated, include/libxml is now a real CVS dir
13564
Daniel Veillardca989762001-06-23 17:39:29 +000013565Sat Jun 23 19:36:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13566
13567 * doc/libxml-doc.el: a new version of libxml-doc.el. This new
13568 version works with both libxml1 and libxml2 (it autodetects
13569 the prefix of the html-files) from Felix Natter.
13570 * doc/xml.html: updated doc accordingly
13571
Daniel Veillard8cf14d52001-06-23 16:32:46 +000013572Sat Jun 23 18:30:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13573
13574 * xpath.c: fixed the bug generating a template loop in libxslt
13575 when using docbook-xsl-1.4, * should filter out document nodes
13576 * HACKING: added William
13577 * TODO: updated
13578
Daniel Veillard7b06bcb2001-06-22 16:03:51 +000013579Fri Jun 22 18:02:37 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13580
13581 * doc/FAQ.html: added a warning about gcc-3.0
13582 * doc/xml.html: added reference to gdome2 and removed a confusing
13583 sentence
13584
Daniel Veillardf7f41852001-06-22 15:18:01 +000013585Fri Jun 22 17:02:16 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13586
13587 * xmlversion.h: okay this is a generated file, but Windows
13588 users need it and they can't generate it, and I want CVS
13589 Windows users ...
13590 * win32/libxml2/libxml2_so.dsp: Windows project file for
13591 the shared lib version of libxml2
13592 * win32/libxml2/libxml2.def.src: bug #56527 set of exported
13593 resources needed for libxslt/xsltproc by Yon Derek
13594
Bjorn Reese3157b342001-06-22 14:41:45 +000013595Fri Jun 22 16:39:36 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
13596
13597 * trio.c: MSVC fix (provided by Igor Zlatkovic)
13598
Daniel Veillard4151acb2001-06-22 10:48:57 +000013599Fri Jun 22 12:42:16 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13600
Daniel Veillardcc146db2001-06-22 11:10:52 +000013601 * include/win32config.h: another small fix for ATTRIBUTE_UNUSED
13602
13603Fri Jun 22 12:42:16 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13604
Daniel Veillard4151acb2001-06-22 10:48:57 +000013605 * include/win32config.h: Yon Derek provided a first fix
13606 to be able to compile libxslt/xsltproc on Windows
13607
Daniel Veillardd79bcd12001-06-21 22:07:42 +000013608Fri Jun 22 00:04:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13609
13610 * xpath.c: attempt to work around what seemed a gcc optimizer
13611 bug when handling floats on i386 http://veillard.com/gcc.bug
13612 * tree.c entities.c encoding.c: doing some cleanups while
13613 chasing it
13614
Daniel Veillard017b1082001-06-21 11:20:21 +000013615Thu Jun 21 13:13:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13616
13617 * Makefile.am: cleanup when --without-debug is specified
13618 * xinclude.c xpath.c xpathInternals.h xpointer.c: cleanup
13619 w.r.t. --without-debug and other include points
13620 * catalog.h testCatalog.c: a bit of cleanup and prepare for XML
13621 Catalogs
13622 * configure.in entities.h tree.h HTMLparser.c: removed
13623 --without-corba, made the _private field mandatory
13624
Daniel Veillard87a764e2001-06-20 17:41:10 +000013625Wed Jun 20 19:37:25 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13626
13627 * parser.c parserInternals.c encoding.c: Since Notepad on Win2k
13628 outputs a BOM in UTF8, an errata has been issued to avoid the
13629 problem, that was the most reasonable solution... Add support
13630 for a leading UTF8 BOM in entities.
13631
Daniel Veillard10ea86c2001-06-20 13:55:33 +000013632Wed Jun 20 15:38:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13633
13634 * valid.c: fixed a bug found when post validating an entity ref
13635 * xmllint.c: added --loaddtd and sligly changed --postvalid to
13636 activate it too
13637
Daniel Veillard39196eb2001-06-19 18:09:42 +000013638Tue Jun 19 20:03:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13639
13640 * tree.c xinclude.c xpointer.c: bug #56402 exposed a number of
13641 weakness in the node copy the XPointer and the XInclude
13642 implementations. Serious cleanup.
13643
Daniel Veillard3739b982001-06-19 12:51:30 +000013644Tue Jun 19 14:50:18 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13645
13646 * Makefile.am: Kjartan Maraas provided a small patch to
13647 add xml2-config.in to EXTRA_DIST
13648
Daniel Veillarda9142e72001-06-19 11:07:54 +000013649Tue Jun 19 13:04:10 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13650
13651 * valid.c tree.c parserInternals.c parser.c: Stephan Kulow
13652 provided another failing case found in KDE, the way the
13653 ctxt->vctxt.nodeTab was allocated and freed changed over
13654 time but it wasn't completely cleaned up. This should fix it.
13655
Daniel Veillard3ed27bd2001-06-17 17:58:17 +000013656Sun Jun 17 19:56:33 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13657
13658 * parser.c: Stephan Kulow also raised the fact that line number
13659 could get miscounted making debug harder, fixed the problem
13660 in xmlParseCharData()
13661
Daniel Veillard64b98c02001-06-17 17:20:21 +000013662Sun Jun 17 19:17:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13663
13664 * valid.c: Stephan Kulow pointed out a problem when validating
13665 and using an empty entity, forgot a 'break' in a case.
13666
Daniel Veillarde3c81b52001-06-17 14:50:34 +000013667Sun Jun 17 16:47:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13668
13669 * tree.c: fixed xmlHasNsProp() accordingly to bug #55683
13670 * doc/xml.html: updated with 2.3.11
13671
Daniel Veillard4ec885a2001-06-17 10:31:07 +000013672Sun Jun 17 12:24:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13673
13674 * TODO: updated adding cleanup of generated doc
13675 * configure.in: prepared to release 2.3.11
13676 * xmllint.c: added --version for bug reporting
13677 * doc/html/*.html: rebuilt the doc
13678
Daniel Veillard8b8d2252001-06-16 21:24:56 +000013679Sat Jun 16 23:23:33 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13680
13681 * xpath.c: first part of the work on selecting namespace to
13682 fix bug #56115
13683
Daniel Veillard96ed5832001-06-15 22:22:04 +000013684Sat Jun 16 00:20:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13685
13686 * Makefile.am example/Makefile.am: Laszlo PETER provided a fix
13687 when using -liconv
13688 * TODO: updated
13689
Daniel Veillardc4f631d2001-06-14 11:11:59 +000013690Fri Jun 15 07:08:57 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13691
13692 * HTMLtree.[ch]: more work on the HTML serialization routnes,
13693 cleanup, encoding support.
13694
Daniel Veillard608ad072001-06-14 08:32:28 +000013695Thu Jun 14 10:31:17 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13696
13697 * xpath.c: Thomas Broyer suggested a better patch for the / arg
13698
Daniel Veillard239d0522001-06-13 23:02:48 +000013699Thu Jun 14 01:01:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13700
13701 * xpath.c: bug detected by Ankh when / is used as a function arg
13702
Daniel Veillard02bb1702001-06-13 21:11:59 +000013703Wed Jun 13 23:08:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13704
13705 * HTMLparser.[ch] HTMLtree.c: stored the inline/block property
13706 of element and use it to avoid outputting formatting spaces at
13707 the wrong place. Implemented the format parameter for HTML save.
13708 * result/HTML/doc2.htm result/HTML/doc3.htm result/HTML/fp40.htm
13709 result/HTML/script.html result/HTML/test2.html result/HTML/test3.html
13710 result/HTML/wired.html: of course this impact the result of a
13711 number of HTML tests
13712
Daniel Veillard95d845f2001-06-13 13:48:46 +000013713Thu Jun 14 09:49:09 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13714
13715 * HTMLtree.[ch]: started augmenting the HTML save API with
13716 encoding and formatting parameters
13717
Daniel Veillardeca60d02001-06-13 07:45:41 +000013718Wed Jun 13 09:44:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13719
13720 * HTMLtree.h: cleanup and started evaluating the work needed on
13721 revamping the HTML output code
13722
Daniel Veillard84666b32001-06-11 17:31:08 +000013723Mon Jun 11 19:29:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13724
13725 * DOCBparser.c: handling of PIs and <?sgml-declaration in entities.
13726
Daniel Veillard8bdd2202001-06-11 12:47:59 +000013727Tue Jun 12 08:46:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13728
13729 * valid.c: fixed bug #56049, forgot one check in the
13730 validation routine
13731
Daniel Veillardca2366a2001-06-11 12:09:01 +000013732Tue Jun 12 08:09:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13733
13734 * tree.[ch]: grrr ... namespace is a C++ reserved keyword
13735
Daniel Veillard6761eee2001-06-11 10:29:38 +000013736Tue Jun 12 06:29:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13737
13738 * libxml.h: fixed an error in last commit
13739 * doc/FAQ.html: added an entry for compilation from CVS
13740
Daniel Veillard9cc6dc62001-06-11 08:09:20 +000013741Mon Jun 11 10:07:29 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13742
13743 * xmlversion.h.in libxml.h: Cygwin patches
13744 * tree.c: xmlFreeNodeList patch similar to xmlFreeNode one
13745 * tree.h: cleanup
13746
Daniel Veillardacd370f2001-06-09 17:17:51 +000013747Sat Jun 9 19:16:00 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13748
13749 * tree.c: patched xmlFreeNode() to avoid freeing() a static
13750 memory block in a strange case where libxml is linked twice
13751 in the binary.
13752
Daniel Veillard1d047672001-06-09 16:41:01 +000013753Sat Jun 9 18:39:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13754
13755 * valid.c: (a? , b? , c? , ... , z?) was storing/restauring
13756 state far too often, simple fix used to avoid it.
13757
Daniel Veillard4497e692001-06-09 14:19:02 +000013758Sat Jun 9 16:10:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13759
13760 * xinclude.c: Raphael Hertzog had a trouble with DTD nodes
13761 being processed, applied his patch
13762 * tree.c: fixed a bug raised in xmlStaticCopyNodeList()
13763
Daniel Veillardf3afa7d2001-06-09 13:52:58 +000013764Sat Jun 9 15:50:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13765
13766 * nanoftp.c nanohttp.c uri.c include/win32config.h: Igor Zlatkovic
13767 provided fixes to compile on MSCC again
13768 * win32/libxml2/libxml2.def.src win32/libxml2/libxml2*.dsp: he
13769 also provided an update for the project files.
13770
Daniel Veillarda682b212001-06-07 19:59:42 +000013771Thu Jun 7 21:52:10 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13772
13773 * tree.c: applied Steve Tinney patch to xmlNewNsProp to fix
13774 bug #55810
13775
Daniel Veillarde8fc08e2001-06-07 19:35:47 +000013776Thu Jun 7 21:29:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13777
13778 * tree.c: fixed xmlGetNsProp() to close bug #55683
13779 Note this requires libxslt to use it's own function instead.
13780
Daniel Veillardf0c53762001-06-07 16:07:07 +000013781Thu Jun 7 18:06:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13782
13783 * HTMLtree.c: when in a pre element no formatting space should
13784 be added.
13785 * test/HTML/pre.html result/HTML/pre.html*: added a regression test
13786
Daniel Veillard068a9652001-06-07 15:30:26 +000013787Thu Jun 7 17:29:38 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13788
13789 * configure.in: added tests for signal() and signal.h
13790
Daniel Veillard541d6552001-06-07 14:20:01 +000013791Fri Jun 8 10:17:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13792
13793 * xpath.c: robert pointed out xmlXPathNINF was not initialized
13794
Daniel Veillard8a367d42001-06-07 14:01:34 +000013795Fri Jun 8 10:01:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13796
13797 * doc/libxml-doc.el: Felix Natter provided a new version for
13798 libxml2
13799
Daniel Veillard8a926292001-06-07 11:20:20 +000013800Fri Jun 8 07:20:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13801
13802 * HTMLtree.c: when in a pre element no formatting space should
13803 be added.
13804
Daniel Veillard14839d52001-06-06 16:11:56 +000013805Wed Jun 6 18:07:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13806
13807 * configure.in: add -mieee to CFLAGS when compiling on Linux/alpha
13808
Daniel Veillarde95e2392001-06-06 10:46:28 +000013809Thu Jun 7 06:44:01 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13810
13811 * DOCBparser.c: implemented the <?sgml-declaration encoding="xxx"?>
13812 hack
13813 * tree.[ch]: added xmlHasNsProp as suggested in bug report #55653
13814 * uri.c: fixed a warning
13815
Daniel Veillard6e93c4a2001-06-05 20:57:42 +000013816Tue Jun 5 22:54:21 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13817
13818 * HTMLtree.c: trying to close bug #55772 escaping in script
13819 elements
13820 * doc/xml.html: suggest to send mail to the list
13821
13822Tue Jun 5 19:11:02 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
Daniel Veillard1c43dbf2001-06-05 17:12:52 +000013823
13824 * error.c: attempt to fix the xmlGetVarStr breakage once and for
13825 good. Use a macro and based on the solution provided in
13826 vsnprintf manual page from GNU.
13827
Bjorn Reese99748722001-06-05 12:49:15 +000013828Tue Jun 5 14:46:10 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
13829
13830 * error.c: Workaround for non-preserving variadic list.
13831 * trio.c trio.h triop.h strio.c strio.h: Upgraded to trio baseline 1.4
13832
Daniel Veillard2e4f1882001-06-01 10:11:57 +000013833Sat Jun 2 06:12:33 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13834
13835 * doc/xml.html: added 2.3.10 release
13836
Daniel Veillardb3a182e2001-06-01 09:28:09 +000013837Fri Jun 1 11:27:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13838
13839 * configure.in: releasing 2.3.10
13840
Daniel Veillard3c2758d2001-05-31 18:43:43 +000013841Thu May 31 20:42:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13842
13843 * xmlIO.c: Gary Pennington spotted a few troubles with file:///
13844
Daniel Veillard20042422001-05-31 18:22:04 +000013845Thu May 31 20:18:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13846
13847 * encoding.c: Robert Collins provided a patch to add the
13848 "US-ASCII" encoding alias
13849
Daniel Veillard97ac1312001-05-30 19:14:17 +000013850Wed May 30 21:12:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13851
13852 * xpath.c encoding.[ch]: William M. Brack provided a set of UTF8
13853 string oriented functions and started cleaning the related areas
13854 in xpath.c which needed fixing in this respect
13855
Daniel Veillard2d703722001-05-30 18:32:34 +000013856Wed May 30 20:30:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13857
13858 * HTMLtree.c: applied patch from Jaroslaw Kolakowski to close bug
13859 #55380
13860 * tree.c: patch to xmlNodeGetContent() to get CDATA section content
13861
Daniel Veillard9403a042001-05-28 11:00:53 +000013862Mon May 28 12:56:29 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13863
13864 * TODO: updated
13865 * nanohttp.[ch] : started adding APIs to get the redirected URL
13866 when this occurs (needed for further base computation
13867 * tree.h: cleanup
13868 * encoding.c: cleanup
13869 * SAX.c: minor change around ctxt->loadsubset
13870
Daniel Veillard6278fb52001-05-25 07:38:41 +000013871Fri May 25 09:36:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13872
13873 * Makefile.am include/Makefile.am: small change to have
13874 include/libxml rebuilt if working from CVS.
13875 * uri.c: applied another patch from Carl Douglas for URI escaping,
13876 this should close bug #51876
13877
Daniel Veillardd16df9f2001-05-23 13:44:21 +000013878Wed May 23 15:40:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13879
13880 * xinclude.c: fixed XInclude recursive behaviour bug #54678
13881 * result/XInclude/recursive.xml test/XInclude/docs/recursive.xml
13882 test/XInclude/ents/inc.txt test/XInclude/ents/sub-inc.ent:
13883 added specific regression test
13884 * parser.h: preparing for the XSLT mode where DTD inherited
13885 attributes are added to the tree.
13886
Daniel Veillardbbd22452001-05-23 12:02:27 +000013887Wed May 23 13:59:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13888
13889 * xinclude.[ch]: Updated the namespace for the Last Call version
13890 * result/XInclude/include test/XInclude/include: updated the
13891 testsuite accordingly
13892
Daniel Veillard8514c672001-05-23 10:29:12 +000013893Wed May 23 12:27:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13894
13895 * uri.[ch]: applied a patch from Carl Douglas for URI escaping,
13896 related to bug #51876
13897
Daniel Veillard42596ad2001-05-22 16:57:14 +000013898Tue May 22 18:46:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13899
13900 * tree.c: fixed a gross mistake in base computation, xml:base is
13901 not completely correct yet (need cascade).
13902 * xpath.[ch]: added the few things needed to find a function name
13903 and URI from the XPath context when it is called.
13904
Daniel Veillard81418e32001-05-22 15:08:55 +000013905Tue May 22 17:00:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13906
13907 * catalog.[ch]: fixes and add xmlLoadCatalogs()
13908 * DOCBparser.c: small cleanup
13909 * xmllint.c: added a --catalogs option to load catalogs from
13910 $SGML_CATALOG_FILES
13911 * tree.c: cleanup
13912 * configure.in: iconv library fixup, ICONV_LIBS
13913
Daniel Veillardaf86c7f2001-05-21 14:11:26 +000013914Mon May 21 16:05:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13915
13916 * catalog.c: handling of CATALOG entries. detection of recursion,
13917 and a few bugfixes
13918 * xpath.c: fixing bug #54951 QNAME with no prefix should not match
13919 against the default namespace
13920
Daniel Veillard04b93292001-05-21 08:15:31 +000013921Mon May 21 10:14:07 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13922
13923 * xpath.c: Joe Orton reported a bug found with IRIx compiler.
13924
Daniel Veillarda97a19b2001-05-20 13:19:52 +000013925Sun May 20 15:15:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13926
13927 * parser.c: fixed propagation context info when parsing an
13928 external entity.
13929 * doc/html/*.html: regenerated a couple of docs
13930
Daniel Veillard4623acd2001-05-19 15:13:15 +000013931Sat May 19 17:11:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13932
13933 * doc/xml.html: update with 2.3.9 informations
13934
Daniel Veillardbed7b052001-05-19 14:59:49 +000013935Sat May 19 16:50:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13936
13937 * HTMLtree.h debugXML.h parserInternals.h tree.h valid.c
13938 xmlversion.h.in xpathInternals.h xpath.h: some cleanup for gtk-doc
13939 * doc/html/* : rebuilt the docs
13940 * valid.c: small patch which may improve some case when
13941 validating.
13942
Daniel Veillardf69bb4b2001-05-19 13:24:56 +000013943Sat May 19 15:20:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13944
13945 * HTMLparser.c: Closed bug #54891
13946 * result/HTML/cf_128.html* test/HTML/cf_128.html: added the test
13947 to the suite
13948
13949Thu May 17 14:15:07 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13950
13951 * encoding.h hash.c nanoftp.h parser.h tree.h uri.h xlink.h xpointer.c:
13952 applied a documentation patch from LotR and filled in a few missing
13953 descriptions
13954
Daniel Veillard76d66f42001-05-16 21:05:17 +000013955Wed May 16 23:02:41 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13956
13957 * xpath.c tree.c parser.c: speed optimizations at the parser level
13958 document tree freeing and xpath evaluation
13959
Daniel Veillardfd7ddca2001-05-16 10:57:35 +000013960Wed May 16 12:55:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13961
13962 * parser.c parser.h parserInternals.h: fixed a couple of
13963 interfaces for handling memory buffer input to const char *
13964 upon suggestion of JamesH.
13965
Daniel Veillardc3739e72001-05-15 15:23:27 +000013966Tue May 15 17:22:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13967
13968 * configure.in: LoTR sent a patch fixing the previous commit
13969
Daniel Veillarda4f27e02001-05-15 12:41:29 +000013970Tue May 15 14:40:04 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13971
13972 * configure.in: trying to deal again with the stoopid -R linking
13973 flag of Solaris
13974
Daniel Veillard790142b2001-05-15 10:51:53 +000013975Tue May 15 12:49:50 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13976
13977 * xpath.h: two nodeset access macros from Thomas Broyer
13978
Daniel Veillardba0b8c92001-05-15 09:43:47 +000013979Tue May 15 11:42:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13980
13981 * xpath.c xpath.h xpathInternals.h: apply an XPath API cleanup
13982 patch from Thomas Broyer
13983
Daniel Veillarde62d36c2001-05-15 08:53:16 +000013984Tue May 15 10:52:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13985
13986 * valid.c test/VCM/v2[34].xml: Fixed bug #54631 added specific test
13987 case
13988 * INSTALL: was empty added stuff from the FAQ
13989
Daniel Veillard75bea542001-05-11 17:41:21 +000013990Fri May 11 19:37:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13991
13992 * tree.[ch]: fixing bug #54446, by cleaning some bugs in the
13993 attributes handling and #54433 by adding xmlUnsetProp()
13994 and xmlUnsetNsProp()
13995
Daniel Veillard0a2a1632001-05-11 14:18:03 +000013996Fri May 11 16:07:13 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13997
13998 * HTMLparser.c: Patch from Jonas Borgström
13999 (htmlGetEndPriority): New function, returns
14000 the priority of a certain element.
14001 (htmlAutoCloseOnClose): Only close inline elements if they
14002 all have lower or equal priority.
14003 * result/HTML: this of course changed a number of tests results.
14004
Daniel Veillard7d6fd212001-05-10 15:34:11 +000014005Thu May 10 17:30:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14006
14007 * xmlIO.c catalog.c: plugged in the default catalog resolution
14008 * doc/gnome-xml.sgml: linked in the Docbook parser and catalog
14009 documentations
14010 * doc/html/libxml-*.html: rebuild added the missing ones to CVS
14011
Daniel Veillarda7374592001-05-10 14:17:55 +000014012Thu May 10 16:14:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14013
14014 * Makefile.am xmlversion.h.in configure.in include/Makefile.am:
14015 integrating catalogs
14016 * catalog.[ch] testCatalog.c: adding a small catalo API
14017 (only SGML catalog support).
14018 * parser.c: restaured xmlKeepBlanksDefault(0) API
14019
Daniel Veillardc17337c2001-05-09 10:51:31 +000014020Wed May 9 12:50:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14021
14022 * tree.c: zb@bisp.com reported an error in xmlNodeGetLang()
14023
Daniel Veillard257d9102001-05-08 10:41:44 +000014024Tue May 8 12:31:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14025
14026 * parser.c: added xmlParseExternalEntityPrivate() to allow
14027 propagation of ctxt->_private when parsing external entities
14028
Daniel Veillard083c2662001-05-08 08:27:14 +000014029Tue May 8 10:26:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14030
14031 * HTMLtree.c: fixed the bug reported by Bjorn in htmlNodeDump
14032
Daniel Veillard01ef7382001-05-08 07:31:43 +000014033Tue May 8 09:30:12 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14034
14035 * configure.in: fixed a small portability problem with AM_CONDITIONAL
14036
Daniel Veillard4de4d3b2001-05-07 20:50:47 +000014037Mon May 7 22:44:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14038
14039 * valid.c: warn when indeterminist content model is detected
14040 * result/VC/ElementValid8: this adds a message
14041 * Makefile.am: add --novalid for VCM tests
14042 * parserInternals.c: added a call to Init memory
14043
Daniel Veillard64269352001-05-04 17:52:34 +000014044Fri May 4 19:51:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14045
14046 * HTMLparser.c: fixed htmlNewDoc SYSTEM and PUBLIC ID inversion
14047 when both parameters are NULL.
14048
Daniel Veillard37721922001-05-04 15:21:12 +000014049Fri May 4 17:19:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14050
14051 * valid.c: applied small patch from Gary Pennington, reindented
14052 some part of the code.
14053
Daniel Veillard3bbbe6f2001-05-03 11:15:37 +000014054Thu May 3 13:10:43 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14055
14056 * configure.in doc/xml.html doc/html/*: preparing for 2.3.8
14057 release, updated and regenerated the docs
14058
Daniel Veillard357c9602001-05-03 10:49:20 +000014059Thu May 3 12:47:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14060
14061 * xpath.c result/XPath/expr/floats : clarified and cleanup
14062 printing of abnormal floats in tests.
14063
Daniel Veillarda2bc3682001-05-03 08:27:20 +000014064Thu May 3 10:25:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14065
14066 * HTMLparser.c: trying to fix the problem reported by Jonas Borgström
14067 * results/HTML/ : a few changes in the output of the HTML tests as
14068 a result.
14069 * configure.in: tying to fix -liconv where needed
14070
Daniel Veillard2a0d2e62001-05-02 17:11:36 +000014071Wed May 2 19:10:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14072
14073 * Makefile.am: fixed a stupid error
14074
Daniel Veillard7150a032001-05-02 16:41:11 +000014075Wed May 2 18:39:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14076
14077 * configure.in Makefile.am: make the inclusion of the trio
14078 modules in the library conditional
14079
Daniel Veillardc057c5d2001-05-02 12:41:24 +000014080Wed May 2 14:39:57 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14081
14082 * DOCBparser.c: patche from László Kovács, fixed entities refs
14083 in attributes handling
14084
Daniel Veillardedddff92001-05-02 10:58:52 +000014085Wed May 2 12:56:04 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14086
14087 * xmlIO.c: Bjorn Reese provided a fix for a problem on buffer
14088 flushing
14089
Daniel Veillardc8f620b2001-04-30 20:31:33 +000014090Mon Apr 30 22:29:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14091
14092 * xpath.c: fix of an XSLT namespace bug reported on the list
14093 general/bug-8-
14094
Daniel Veillard5792e162001-04-30 17:44:45 +000014095Mon Apr 30 19:42:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14096
14097 * strio.h trio.c: Dan McNichol suggested a couple of small
14098 fixes for AIX 4.3.3 using Visual Age 5.0.2 compiler
14099
Daniel Veillard02141ea2001-04-30 11:46:40 +000014100Mon Apr 30 13:44:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14101
14102 * tree.c parser.c encoding.c: spent a bit more time looking
14103 at the parsing speed and DOM handling. Added a few more
14104 speedups.
14105
Daniel Veillard3ed155f2001-04-29 19:56:59 +000014106Sun Apr 29 21:53:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14107
14108 * parser.c: small but effective parsing speed improvement
14109
Daniel Veillardb59076b2001-04-29 17:04:07 +000014110Sun Apr 29 19:02:13 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14111
14112 * configure.in: default on the DocBook parser inclusion (for Gnome)
14113 * DOCBparser.h: fixed a header reference
14114
Daniel Veillardb45c43b2001-04-28 17:02:11 +000014115Sat Apr 28 19:00:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14116
14117 * configure.in xpath.c: applied Bjorn patches for FPE on the
14118 alpha
14119
Daniel Veillardeefd4492001-04-28 16:55:50 +000014120Sat Apr 28 18:54:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14121
14122 * tree.[ch] xmlIO.h: applied patch from Joe McAlerney to add
14123 xmlSaveFormatFileTo()
14124
Daniel Veillarde39a93d2001-04-28 14:35:02 +000014125Sat Apr 28 16:33:05 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14126
14127 * xpath.c: simple and efficient optimization, XPath functions
14128 aways bind to the same code, cache this
14129 * TODO: updated (by saying some is obsolete)
14130
Daniel Veillard2156a562001-04-28 12:24:34 +000014131Sat Apr 28 14:23:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14132
14133 * xpath.c: more cleanup work on XPath name parsing routines
14134
Daniel Veillard61d80a22001-04-27 17:13:01 +000014135Fri Apr 27 19:06:13 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14136
14137 * parserInternals.c xpath.[ch]: some UTF8 cleanup on
14138 xmlXPathParseName
14139 * xpath.c: Igor Zlatkovic suggested a change for NAN and MSC
14140 * debugXML.c: avoid compilation problems if compiling without
14141 HTML support, Igor Zlatkovic
14142 * win32/libxml2/libxml2.def.src: being able to compile without
14143 XPath on Windows
14144
Daniel Veillarddbb14a72001-04-26 20:54:01 +000014145Thu Apr 26 22:53:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14146
14147 * libxml.m4: yet another patch from Toshio Kuratomi
14148
Daniel Veillard2913e4c2001-04-26 19:29:02 +000014149Thu Apr 26 21:27:43 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14150
14151 * libxml.m4 libxml2-spec.in: new patches from Toshio Kuratomi
14152
Daniel Veillard67fee942001-04-26 18:59:03 +000014153Thu Apr 26 20:53:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14154
14155 * tree.[ch]: added xmlSaveFormatFile interface for saving
14156 and indenting a file.
14157
Daniel Veillard82e49712001-04-26 14:38:03 +000014158Thu Apr 26 16:35:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14159
14160 * xpath.c: fixed bug #53689 related to processing-instruction()
14161
Daniel Veillard02f077a2001-04-26 10:59:11 +000014162Thu Apr 26 12:57:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14163
14164 * DOCBparser.c: patche from László Kovács
14165
Daniel Veillard30211a02001-04-26 09:33:18 +000014166Thu Apr 26 11:31:54 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14167
14168 * parser.c: applied fixes from Christian Glahn bug report #53391
14169
Daniel Veillard5a7c3452001-04-26 09:16:13 +000014170Thu Apr 26 11:14:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14171
14172 * error.c: Jean François Lecomte provided a complete description
14173 and a fix to bug #53537
14174
Daniel Veillard5c4ec4c2001-04-26 07:43:59 +000014175Thu Apr 26 09:42:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14176
14177 * libxml.m4: added AM_PATH_XML2 provided by Toshio Kuratomi
14178
Daniel Veillard1034da22001-04-25 19:06:28 +000014179Wed Apr 25 21:05:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14180
14181 * DOCBparser.c SAX.c: a bit more work on entities processing.
14182 Still Need to cleanup XML output and references in attributes
14183
Daniel Veillard4ec0b0f2001-04-25 15:53:40 +000014184Wed Apr 25 17:52:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14185
14186 * DOCBparser.c include/Makefile.am: two patches from László Kovács
14187
Daniel Veillardb33c2012001-04-25 12:59:04 +000014188Wed Apr 25 14:56:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14189
14190 * tree.c: trying to fix #53574, not completely complete,
14191 I would like xmllint --copy --debug test/ent1 and
14192 xmllint --debug test/ent1 to show the same result.
14193 * xpath.c: fix a bug when trying to sort namespace nodes
14194
Daniel Veillard5146f202001-04-25 10:29:44 +000014195Wed Apr 25 12:28:57 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14196
14197 * HTMLtree.c: real fix for #53402
14198
Daniel Veillard7533cc82001-04-24 15:52:00 +000014199Tue Apr 24 17:36:35 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14200
14201 * HTMLtree.c HTMLtree.h : closing #53402 i.e. output of
14202 PIs when using xsl:output
14203 * valid.c: closing #53537 some case generate segfaults if there
14204 is validity errors
14205
Daniel Veillard61b33d52001-04-24 13:55:12 +000014206Tue Apr 24 15:19:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14207
14208 * SAX.c testDocbook.c DOCBparser.c: more work on the support
14209 of external parsed entities, added --noent to testDocbook
14210 * valid.c: Garry Pennington found an uninitialized variable
14211 access in xmlValidateElementContent()
14212
Daniel Veillard56098d42001-04-24 12:51:09 +000014213Tue Apr 24 14:41:25 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14214
14215 * HTMLparser.c : HTML parsing still sucks ... trying to deal
14216 with madness
14217 * result/HTML/ : this modified the result of the regression tests
14218 a lot.
14219
Daniel Veillard122376b2001-04-24 12:12:30 +000014220Tue Apr 24 14:10:38 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14221
14222 * entities.c: xmlEncodeEntitiesReentrant fixed a few accesses
14223 to doc where it wasn't checked against NULL reported by
14224 Jens Laas
14225
Daniel Veillard43dadeb2001-04-24 11:23:35 +000014226Tue Apr 24 13:21:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14227
14228 * HTMLparser.c: Jonas Borgström patch, the <td>, and <th> elements
14229 now means the end of any open <span>,<font>,<a>,<b>,<i>,<u>.
14230
Daniel Veillardeae522a2001-04-23 13:41:34 +000014231Mon Apr 23 15:40:04 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14232
14233 * DOCBparser.c DOCBparser.h testDocbook.c configure.in Makefile.am
14234 xmlversion.h.in: started (re)integrating the DocBook SGML parser.
14235 * SAX.[ch]: cleanup and updates for DocBook
14236 * debugXML.c parser.h tree.[ch] valid.c xpath.c: small macro or
14237 ex SGML identifier changes
14238 * valid.c: removed a static unused function.
14239
Daniel Veillardde57c612001-04-23 09:13:36 +000014240Mon Apr 23 11:05:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14241
14242 * HTMLtree.c: applied change for Paul Sponagl on script saving
14243 * Makefile.am: the warning about entity title.xml are normal.
14244
Daniel Veillard393df012001-04-22 20:11:18 +000014245Sun Apr 22 22:09:35 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14246
14247 * configure.in: release of 2.3.7
14248 * Makefile.am: fixing make distcheck
14249
Daniel Veillarda41123c2001-04-22 19:31:20 +000014250Sun Apr 22 21:29:52 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14251
14252 * doc/html/* doc/xml.html: updated and regenerated the docs
14253
Daniel Veillardfd0c3eb2001-04-22 19:13:10 +000014254Sun Apr 22 21:11:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14255
14256 * xpath.c: fixed the XPointer problem introduced in 2.3.6
14257
Daniel Veillarde82a9922001-04-22 12:12:58 +000014258Sun Apr 22 14:11:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14259
14260 * tree.c: fixed #53388 with the provided patch
14261
Daniel Veillard06803992001-04-22 10:35:56 +000014262Sun Apr 22 12:34:41 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14263
14264 * valid.c: Bjorn detected an invalid memory access. Fixed
14265 vstateVPush()
14266
Daniel Veillard40af6492001-04-22 08:50:55 +000014267Sun Apr 22 10:49:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14268
14269 * xpath.c: fixed xmlXPathCompile to detected unproperly ended expr
14270
Bjorn Reese70a9da52001-04-21 16:57:29 +000014271Sat Apr 21 18:27:51 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
14272
14273 * libxml.h: new header used only for the compilation of libxml
14274 * HTMLparser.c HTMLtree.c SAX.c debugXML.c encoding.c entities.c
14275 error.c hash.c list.c nanoftp.c nanohttp.c parser.c
14276 parserInternals.c testHTML.c testSAX.c testURI.c testXPath.c
14277 tree.c uri.c valid.c xinclude.c xlink.c xmlIO.c xmllint.c
14278 xmlmemory.c xpath.c xpointer.c: libxml.h integration
14279 * trio.[ch] triop.h strio.[ch]: upgraded to the latest trio
14280 baseline (version 1.2 plus a single patch).
14281 * xpath.c result/XPath/expr/floats test/XPath/expr/floats: parses
14282 scientific notation for numbers. Tests added.
14283 * xpath.c: formatting of numbers changed to use sprintf
14284 (contribution from William Brack)
14285
Daniel Veillard34b1b3a2001-04-21 14:16:10 +000014286Sat Apr 21 16:12:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14287
14288 * valid.c: cleanup, more useful debugging
14289 * parserInternals.c: cleanup vctxt.nodeTab (de)allocation
14290 * xmlIO.c: entity loading is printed as an error when validating
14291
Daniel Veillard1c14b8d2001-04-21 10:28:59 +000014292Sat Apr 21 12:25:49 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14293
14294 * valid.c: fixed to validate within entities
14295 * test/VCM/v22.xml: added a specific testcase
14296
Daniel Veillardca1f1722001-04-20 15:47:35 +000014297Fri Apr 20 17:45:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14298
14299 * valid.c: forgot an epsilon transition in for ()+
14300 * test/VCM/v21.xml : added a specific test case
14301
Daniel Veillard85349052001-04-20 13:48:21 +000014302Fri Apr 20 15:46:04 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14303
14304 * valid.c: removed a state explosion exhibited by RSS
14305 * test/valid/rss.xml result/valid/rss.xml*: added the testcase
14306 from bug #51872
14307
Daniel Veillarddab4cb32001-04-20 13:03:48 +000014308Fri Apr 20 14:52:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14309
14310 * valid.[ch] tree.h: worked *hard* to get non-determinist content
14311 validation without using an ugly NFA -> DFA algo in the source.
14312 Made a specific algorithm easier to maintain, using a single
14313 stack and without recursion.
14314 * Makefile.am test/VCM/*.xml: added more tests to "make Validtests"
14315 * hash.c: made the growing routine static
14316 * tree.h parser.c: added the parent information to an
14317 xmlElementContent node.
14318
Daniel Veillarde470df72001-04-18 21:41:07 +000014319Wed Apr 18 23:33:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14320
14321 * SAX.c parser.c xpath.c: generating IDs when not validating
14322 from an external parsed entity was poisoning the ID has table
14323 with removed values. This was killing XSLT on the KDE help
14324 browser.
14325
Daniel Veillardceacdd92001-04-18 15:10:35 +000014326Wed Apr 18 17:09:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14327
14328 * entities.h: andrew@ugh.net.au detected a double declaration
14329
Daniel Veillarda10efa82001-04-18 13:09:01 +000014330Wed Apr 18 15:06:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14331
14332 * debugXML.c hash.c tree.h valid.c : some changes related to
14333 the validation suport to improve speed with DocBook
14334 * result/VC/OneID2 result/VC/OneID3 : this slightly changes
14335 the way validation errors get reported
14336
Daniel Veillard1ed3f882001-04-18 09:45:35 +000014337Wed Apr 18 11:42:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14338
14339 * HTMLparser.c HTMLtree.c: applied part of the patches provided
14340 by P C Chow and William M. Brack for XSLT HTML output
14341
Daniel Veillard2d90de42001-04-16 17:46:18 +000014342Mon Apr 16 19:44:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14343
14344 * xmlversion.h.in win32config.h win32/libxml2/*: applied
14345 Igor Zlatkovic patches for MSC compilation and added his
14346 updates
14347
Daniel Veillarde043ee12001-04-16 14:08:07 +000014348Tue Apr 17 10:08:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14349
14350 * xpath.c: fixed xmlXPathNodeCollectAndTest() to do proper
14351 prefix lookup.
14352 * parserInternals.c: fixed the bug reported by Morus Walter
14353 due to an off by one typo in xmlStringCurrentChar()
14354
Daniel Veillarda3bfca52001-04-12 15:42:58 +000014355Thu Apr 12 17:41:09 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14356
14357 * HTMLparser.c result/HTML/*: revamped the way the HTML
14358 parser handles end of tags or end of input
14359
Daniel Veillard82daa812001-04-12 08:55:36 +000014360Thu Apr 12 10:50:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14361
14362 * tree.[ch] : added xmlDocCopyNode for gdome2 support
14363
Daniel Veillard67a21302001-04-11 14:39:16 +000014364Wed Apr 11 16:37:50 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14365
14366 * tree.h: include xmlmemory.h this seems to havoid a nasty glibc
14367 bug where the linktime verions of free() won't work ...
14368
Daniel Veillard27b55282001-04-11 12:22:25 +000014369Wed Apr 11 14:21:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14370
14371 * config.h.in configure.in xmlversion.h.in: added ansidecl.h test
14372
Daniel Veillardafc73112001-04-11 11:51:41 +000014373Wed Apr 11 13:50:42 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14374
14375 * doc/xml.html: added 2.3.6 release
14376
Daniel Veillardbdb9ba72001-04-11 11:28:06 +000014377Wed Apr 11 13:26:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14378
14379 * tree.c: fixed xmlStringGetNodeList() to handle charrefs
14380 * result/wml.xml: resulted in a small output change
14381
Daniel Veillardd2f3ec72001-04-11 07:50:02 +000014382Wed Apr 11 09:47:55 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14383
14384 * tree.c: xmlNewDoc was missing the charset initialization
14385 * xmllint.c: added --auto to autogenerate a doc, allow to
14386 reproduce the problem fixed on xmlNewDoc
14387
Daniel Veillard1731d6a2001-04-10 16:38:06 +000014388Tue Apr 10 18:13:10 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14389
14390 * xpath.c: trying to get 52979 solved
14391 * tree.c result/ result/noent/: trying to get 52712 solved, this
14392 also made me clean up the fact that XML output in general should
14393 not add formating blanks by default, this changed the output of
14394 a few tests
14395
Daniel Veillard73639a72001-04-10 14:31:39 +000014396Tue Apr 10 16:30:20 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14397
14398 * xpath.c: Bill Brack pointer an error in detecting a null nodeset
14399
Daniel Veillardfac26a12001-04-08 13:08:14 +000014400Sun Apr 8 15:07:16 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14401
14402 * configure.in: finally released 2.3.6
14403
Daniel Veillard911f49a2001-04-07 15:39:35 +000014404Sun Apr 8 11:39:21 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14405
14406 * xpath.c: checking for null pointer generated by new code
14407
Daniel Veillardd8df6c02001-04-05 16:54:14 +000014408Fri Apr 6 12:53:05 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14409
14410 * xpath.c: fixed a [] evaluation problem reported
14411 * test/XPath/tests/simpleaddr: extended test
14412 * result/XPath/simpleaddr: updated result
14413
Daniel Veillard3b2c2612001-04-04 00:09:00 +000014414Wed Apr 4 02:07:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14415
14416 * xmllint.c: Dan Timis reported a portability problem
14417 on Macs without mmap, fixed it.
14418
Daniel Veillardb38bd552001-04-03 18:22:00 +000014419Tue Apr 3 20:20:51 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14420
14421 * testXPath.c : added a --tree option allowing to display the
14422 tree dump of the XPath expression
14423
Daniel Veillard4dd93462001-04-02 15:16:19 +000014424Mon Apr 2 17:13:51 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14425
14426 * xpath.c: fixed a memleak when comparing nodesets
14427 * HTMLtree.c: don't invent the HTML doctype if not available (XSLT)
14428 * tree.c: added a TODO
14429
Daniel Veillard92ad2102001-03-27 12:47:33 +000014430Tue Mar 27 14:32:06 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14431
14432 * configure.in Makefile.am config.h.in xmlversion.h.in: detect if
14433 we need string functions
14434 * trio.[ch] strio.[ch]: embedded the Trio-0.23 string functions
14435 to be able to use them where needed. Applied some changes
14436 to reduce name linking pollution and compile in only what's
14437 needed.
14438 * HTMLtree.c debugXML.c entities.c error.c nanoftp.c valid.c
14439 xlink.c xmlversion.h.in xpath.c: got rid of the #ifdef
14440 for the string manipulation functions
14441 * xmlmemory.[ch]: removed DEBUG_MEMORY_FREED and added it automatically
14442 to the free() function of xmlmemory.c
14443 * entities.c HTMLtree.c parserInternals.c tree.c uri.c valid.c
14444 xinclude.c xmlIO.c xpath.c xpointer.c: removed the MEM_CLEANUP
14445 usage.
14446
14447
Daniel Veillard2be30642001-03-27 00:32:28 +000014448Tue Mar 27 02:30:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14449
14450 * error.c: applied the context output patch of the error
14451 handling submitted by Chuck Griffith
14452 * error/VC/*: this slightly change some error logs
14453
Daniel Veillard50582112001-03-26 22:52:16 +000014454Tue Mar 27 00:51:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14455
14456 * parser.c: fixed line number reporting on error
14457
Daniel Veillard04be4f52001-03-26 21:23:53 +000014458Mon Mar 26 23:21:41 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14459
14460 * parser.c: Sullivan and Darin found a parser bug,
14461 applied the patch.
14462
Daniel Veillardc86a4fa2001-03-26 16:28:29 +000014463Mon Mar 26 18:24:52 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14464
14465 * HTMLparser.c HTMLtree.c SAX.c debugXML.c error.c parserInternals.c
14466 testHTML.c testSAX.c tree.c valid.c xmlIO.c xmlmemory.c
14467 xmlversion.h.in xpointer.c: of course the way I defined
14468 UNUSED breaks on old gcc version. Try to be smart and
14469 also define it directly in xmlversion.h
14470 * configure.in: removed -ansi flag from the pedantic set
14471
14472Sat Mar 24 17:45:36 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
Daniel Veillard56a4cb82001-03-24 17:00:36 +000014473 Huge cleanup, I switched to compile with
14474 -Wall -g -O -ansi -pedantic -W -Wunused -Wimplicit
14475 -Wreturn-type -Wswitch -Wcomment -Wtrigraphs -Wformat
14476 -Wchar-subscripts -Wuninitialized -Wparentheses -Wshadow
14477 -Wpointer-arith -Wcast-align -Wwrite-strings -Waggregate-return
14478 -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Winline
14479 * HTMLparser.[ch] HTMLtree.c SAX.c debugXML.c encoding.[ch]
14480 encoding.h entities.c error.c list.[ch] nanoftp.c
14481 nanohttp.c parser.[ch] parserInternals.[ch] testHTML.c
14482 testSAX.c testURI.c testXPath.c tree.[ch] uri.c
14483 valid.[ch] xinclude.c xmlIO.[ch] xmllint.c xmlmemory.c
14484 xpath.c xpathInternals.h xpointer.[ch] example/gjobread.c:
14485 Cleanup, staticfied a number of non-exported functions,
14486 detected and cleaned up a dozen of problem found this way,
14487 avoided a lot of public function name/typedef/system names clashes
14488 * doc/xml.html: updated
14489 * configure.in: switched private flags to the really pedantic ones.
14490
Daniel Veillardc7ad7ce2001-03-22 21:45:29 +000014491Thu Mar 22 22:44:15 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14492
14493 * configure.in: 2.3.5
14494 * doc/html/*: rebuilt the docs
14495
Daniel Veillard146c9122001-03-22 15:22:27 +000014496Thu Mar 22 15:36:45 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14497
14498 * parser.c: fixed a reported bug in NOTATION parsing
14499 * uri.c: accepted but not fixed bug 51876, added TODO
14500 * Makefile.am: fixed bug 51876
14501
Daniel Veillarda5f013b2001-03-22 12:44:45 +000014502Thu Mar 22 13:41:22 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14503
14504 * config.h.in configure.in error.c: fix a compilation problem
14505 on platforms without vsnprintf (xml@thewrittenword.com)
14506
Daniel Veillarde020c3a2001-03-21 18:06:15 +000014507Wed Mar 21 19:04:34 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14508
14509 * parser.c: fixed a function name header typo
14510 * SAX.c: notations can also occur in external subset.
14511
Daniel Veillard7d42b542001-03-20 13:22:46 +000014512Tue Mar 20 14:21:28 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14513
14514 * error.c: removed a C++ like comment
14515
Daniel Veillard0b6b55b2001-03-20 11:27:34 +000014516Tue Mar 20 12:22:36 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14517
14518 * parser.c: fixing bug 52299 strange condition leading
14519 to a parser crash due to a buffer overflow
14520 * result/noent/attrib.xml result/attrib.xml test/attrib.xml:
14521 added the specific test case
14522
Daniel Veillardfbf8a2d2001-03-19 15:58:54 +000014523Mon Mar 19 16:50:52 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14524
14525 * xpath.[ch]: still a lot of cleanup based on XSLT, added
14526 xmlXPathConvert{String,Number,Boolean} to be able to make
14527 type casts without a context stack, fixed some implementation
14528 problems related to the absence of context at parse-time,
14529 added xmlXPathEvalPredicate() and xmlXPathFreeCompExpr()
14530 in the public API too
14531 * xpointer.c xpathInternals.h: we need to know at parse time
14532 whether we are compiling an XPointer
14533
Daniel Veillardafcbe1c2001-03-19 10:57:13 +000014534Mon Mar 19 11:54:31 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14535
14536 * xpath.[ch] xpointer.c: restaured the Binary and API compatibility
14537 cleaned up the parser internals, refactored XPath code, added
14538 new compilation based APIs and cleanly separated public and
14539 private APIs.
14540
Daniel Veillardd007d6c2001-03-19 00:01:07 +000014541Mon Mar 19 00:59:25 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14542
14543 * xpath.h: the comp field must be added at the end to avoid
14544 killing binary compat.
14545
Daniel Veillard9e7160d2001-03-18 23:17:47 +000014546Mon Mar 19 00:11:18 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14547
14548 * Makefile.am: detect XPath memleaks in regreson tests
14549 * error.c: fixed and error w.r.t. error reporting still using
14550 stderr
14551 * hash.c: added new line at end of file
14552 * tree.h: minor cleanup
14553 * xpath.[ch] xpointer.[ch]: Major changes ! Separated XPath
14554 expression parsing from evaluation, resulted in a number of
14555 changes internally, and in XPointer. Likely to break stuff
14556 using xpathInternals.h but should remain binary compatible,
14557 new interfaces will be added.
14558
Daniel Veillardd574f782001-03-14 19:40:17 +000014559Wed Mar 14 20:34:02 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14560
14561 * configure.in: fixed a couple of problems reported by
14562 okiddle@yahoo.co.uk and allanc@chickenandporn.com when compiling
14563 without gcc on non linux platforms.
14564
Daniel Veillard0a6c3582001-03-14 19:15:37 +000014565Wed Mar 14 20:13:54 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14566
14567 * doc/Makefile.am configure.in: yearke@eng.buffalo.edu suggested
14568 a fix for --with-html-dir= configure support. I hope it won't
14569 break rpm generation
14570
Daniel Veillarda022fe02001-03-14 16:30:00 +000014571Wed Mar 14 17:28:49 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14572
14573 * xmlIO.c: one function comment cleanup.
14574
Daniel Veillard25239c12001-03-14 13:56:48 +000014575Wed Mar 14 14:55:46 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14576
14577 * SAX.c: external subset notations were improperly registered
14578 in the internal subset.
14579
Daniel Veillard2c4754f2001-03-13 09:31:12 +000014580Tue Mar 13 10:28:49 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14581
14582 * README.cvs-commits: added, pointing to HACKING
14583 * HACKING: updated
14584
Daniel Veillard82ab81e2001-03-12 21:11:21 +000014585Mon Mar 12 22:09:40 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14586
14587 * parser.c: and Matt Sergeant found one in the XML push
14588 parser (erroneous check I forgot to remove when I fixed the
14589 main parser).
14590
Daniel Veillard68d7b672001-03-12 18:22:04 +000014591Mon Mar 12 19:19:04 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14592
14593 * xpath.c: ptittom found a small bug in UnaryExpr
14594
Daniel Veillarde356c282001-03-10 12:32:04 +000014595Sat Mar 10 13:09:53 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14596
14597 * configure.in: bumped to 2.3.4
14598 * error.c: fixed bug #51860
14599 * tree.c: fixed bug #51861
14600 * valid.c: cleanup, more debug, failed to fix one bug crap ...
14601 * tree.[ch] : added xmlDefaultBufferSize
14602 * nanoftp.c: typo in function name header block
14603 * doc/xml.html : updated, added link to XML::LibXSLT
14604 * doc/html/* : rebuilt the docs
14605
Daniel Veillard80f32572001-03-07 19:45:40 +000014606Wed Mar 7 20:43:47 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14607
14608 * parser.c SAX.c: the new content parsing code raised an
14609 ugly bug in the characters() SAX callback. Found it
14610 just because of strangeness in XSLT XML Rec ouptut :-(
14611
Daniel Veillard6c831202001-03-07 15:57:53 +000014612Wed Mar 7 16:50:22 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14613
14614 * Makefile.am: Martin Baulig suggested to add -lm
14615 * tree.c: found another bug in xmlNodeGetContent()
14616
Daniel Veillard4af6b6e2001-03-06 08:33:38 +000014617Tue Mar 6 09:21:30 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14618
14619 * xpath.c: Bjorn found the error related to strictness of comparison.
14620
Daniel Veillard29631a82001-03-05 09:49:20 +000014621Mon Mar 5 21:47:31 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14622
14623 * parser.c: trying to fix the Dtd parsing problem reported
14624 by Gary, side effect of last week speed optimizations.
14625
Daniel Veillard14be0a12001-03-03 18:50:55 +000014626Sat Mar 3 19:45:59 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14627
14628 * xml2Conf.sh.in: fixes pointed out by Fredrik Hallenberg
14629 * parserInternals.c: removed unneeded test raised by Stric
14630
Bjorn Reesee1dc0112001-03-03 12:09:03 +000014631Sat Mar 3 13:04:37 CET 2001 Bjorn Reese <breese@users.sourceforge.net>
14632
14633 * xpath.c: Fixed xmlXPathNodeCollectAndTest (problem reported
14634 and fixed by William Brack). Added xmlXPathFormatNumber.
14635 Changed the sorting slightly.
14636 * configure.in Makefile.am example/Makefile.am: Added -lm.
14637 Please note that applications linking with libxml2, must
14638 also like with the math library from now on.
14639
Daniel Veillardf9533d12001-03-03 10:04:57 +000014640Sat Mar 3 07:38:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14641
14642 * HTMLparser.c: fixed loop reported by Marc Sanfacon
14643
Daniel Veillard2f362242001-03-02 17:36:21 +000014644Sat Mar 3 02:10:24 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14645
14646 * parser.c: one must report spaces even if the Dtd element
14647 content proves that this is not part of the element content.
14648 * result/valid/*.xml: this changed the ouptu slightly
14649
Daniel Veillardb402c072001-03-01 17:28:58 +000014650Thu Mar 1 17:53:39 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14651
14652 * configure.in: bumped to 2.3.3
14653 * doc/xml.html: updated
14654
Daniel Veillard77851712001-02-27 21:54:07 +000014655Wed Feb 28 00:43:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14656
14657 * tree.c: minor doc fix
14658 * xpath.c: deallocation issues when a result tree has been
14659 converted to a node-set
14660
Daniel Veillardec70e912001-02-26 20:10:45 +000014661Mon Feb 26 22:09:45 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14662
14663 * doc/xml.html: oops corrected dates s/2000/2001
14664
Daniel Veillard8730c562001-02-26 10:49:57 +000014665Mon Feb 26 12:48:35 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14666
14667 * valid.c: new patch from Gary Pennington
14668
Daniel Veillard91e9d582001-02-26 07:31:12 +000014669Mon Feb 26 09:30:23 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14670
14671 * doc/xml.html: applied patch from Ankh
14672
Daniel Veillardedac3c92001-02-26 01:36:19 +000014673Mon Feb 26 03:34:43 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14674
14675 * xinclude.c: fixed a problem building on Mac
14676
Daniel Veillard21a0f912001-02-25 19:54:14 +000014677Sun Feb 25 21:52:30 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14678
14679 * parser.c: more work on increasing parsing ferformances
14680
Daniel Veillard48b2f892001-02-25 16:11:03 +000014681Sun Feb 25 18:03:42 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14682
14683 * xmlmemory.h HTMLparser.c HTMLtree.c entities.c parser.c
14684 xpath.c xpointer.c tree.c uri.c valid.c xinclude.c xmlIO.c:
14685 avoiding memcpy in production builds MEM_CLEANUP macro use
14686 * parser.[ch] parserInternals.c: optimizations of the tightest
14687 internal loops inside the parser. Better checking of I/O
14688 flushing/loading conditions
14689 * xmllint.c : added --timing
14690
Daniel Veillard71681102001-02-24 17:48:53 +000014691Sun Feb 25 05:48:51 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14692
14693 * configure.in: bumped to 2.3.2
14694 * doc/xml.html: updated for release
14695
Daniel Veillardbbd51d52001-02-24 03:07:03 +000014696Sat Feb 24 14:07:52 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14697
14698 * xpath.c: found a memleak and fixed a nasty bug
14699
Daniel Veillardf7cd4812001-02-23 18:44:52 +000014700Sat Feb 24 03:35:48 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14701
14702 * xmllint.[c1] : added return code errors for xmllint
14703 * xpath.c: specific debug dump function for result value trees
14704
Daniel Veillard4b637072001-02-21 21:52:55 +000014705Thu Feb 22 07:52:27 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14706
14707 * xpath.c: finally implemented xmlXPathCompareNodeSets
14708 * test/XPath/expr/floats results/XPath/expr/floats: added
14709 a test for float expressions
14710
Daniel Veillardf714aa32001-02-21 03:07:44 +000014711Tue Feb 20 18:57:54 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14712
14713 * tree.c: fixed xmlNodeGetContent, it was not recursing on child
14714 * parserInternals.[ch]: trying to speed up parsing
14715 * xpath.c : speeded up node set equality op
14716
Daniel Veillarde0c3a622001-02-19 18:05:20 +000014717Mon Feb 19 19:01:57 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14718
14719 * Makefile.am valid.c list.[ch]: Gary Pennington provided a
14720 better handling of ID/IDREF and the list modules associated
14721 * configure.in: small CFLAGS cleanup
14722
Daniel Veillarda8abee62001-02-19 15:14:59 +000014723Mon Feb 19 16:13:22 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14724
14725 * configure.in: fixed iconv detection on AIX (stric)
14726
Daniel Veillardbca64ef2001-02-19 22:20:01 +000014727Mon Feb 19 10:59:41 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
Daniel Veillard88f8f6f2001-02-19 10:00:53 +000014728
14729 * xpath.c: fixed "*" (unbelievable !) and a couple of warnings
14730
Bjorn Reesefd9b09b2001-02-18 16:51:25 +000014731Sun Feb 18 17:52:37 MET 2001 Bjorn Reese <breese@users.sourceforge.net>
14732
14733 * xpath.c: fixed whitespace handling in xmlXPathStringEvalNumber,
14734 and optimized xmlXPathNodeSetSort
14735
Daniel Veillard142adbf2001-02-17 13:21:05 +000014736Sat Feb 17 14:18:42 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14737
14738 * xpath.c: bug fix when context size is 0
14739 * parser.c: I like Norm's Dtd because they still manage to break
14740 the parser occasionally
14741
Daniel Veillardf23e0092001-02-16 13:21:29 +000014742Fri Feb 16 14:20:35 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14743
14744 * xpath.c: xmlXPathEqualNodeSetFloat the arg is really a double now
14745
Daniel Veillarde0e26512001-02-16 00:11:46 +000014746Fri Feb 16 01:10:06 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14747
14748 * tree.[ch] parser.c xpath.c: fixed the problem of addressing
14749 attributes within the XML-1.0 namespace
14750
Daniel Veillard6e6a6cc2001-02-15 15:55:44 +000014751Thu Feb 15 16:53:20 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14752
14753 * xpathInternals.h: exported a few axis functions
14754 * doc/xml.html: updated the doc
14755
Daniel Veillard760f4422001-02-15 14:59:48 +000014756Thu Feb 15 15:57:14 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14757
14758 * configure.in: applied patch from Daniel van Balen for OpenBSD
14759 and bumped version to 2.3.1
14760 * HTMLtree.c result/HTML/doc3.htm result/HTML/wired.html: the
14761 attempt to find autoclosing was simply broken, removed it,
14762 updated the examples, this is better
14763
Daniel Veillardd194dd22001-02-14 10:37:43 +000014764Wed Feb 14 11:35:39 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14765
14766 * hash.[ch]: added Paolo Casarini patch to provide Delete from
14767 hash functionnalities.
14768 * doc/html/* : rebuild the doc
14769
Daniel Veillardf41fbbf2001-02-13 17:05:35 +000014770Tue Feb 13 18:01:48 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14771
14772 * xpath.c result/XPath/tests/chaptersprefol: bugfixes on order and
14773 on predicate
14774 * HTMLparser.[ch] HTMLtree.c result/HTML/doc3.htm.err
14775 result/HTML/doc3.htm.sax result/HTML/wired.html: sometimes one
14776 really want to have tags closed on output even if we accept
14777 unclosed ones on input
14778
Daniel Veillard5dd2f0a2001-02-12 17:36:05 +000014779Mon Feb 12 18:33:20 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14780
14781 * xpath.c: ouch don't free NULL, rare case fixed
14782 * tree.c: don't coalesce text nodes if they don't have the
14783 same behaviour wrt escaping on output
14784
Daniel Veillardd12b69d2001-02-11 20:17:31 +000014785Sun Feb 11 21:15:41 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14786
14787 * xpath.c: small fixup
14788 * SAX.c: don't warn on empty namespaces.
14789
Daniel Veillard6a2e4062001-02-08 10:31:33 +000014790Thu Feb 8 11:28:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14791
14792 * README: a bit of cleanup
14793 * configure.in: preparing for 2.3.0 release
14794
Daniel Veillard1f83d392001-02-08 09:37:42 +000014795Thu Feb 8 10:37:00 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14796
14797 * hash.[ch]: added a first version of xmlHashSize()
14798 * valid.c: another bug fix from Gary Pennington
14799
Daniel Veillard5eef6222001-02-07 18:24:48 +000014800Wed Feb 7 19:22:37 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14801
14802 * valid.c: couple of bug fixes pointed by Gary Pennington
14803 * HTMLtree.c: #if 0 cleanup
14804
Daniel Veillard2c257ec2001-02-06 13:29:07 +000014805Tue Feb 6 14:02:56 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14806
14807 * xpath.c: started profiling XSLT, added xmlXPathNodeSetAddUnique()
14808 which removes a time consuming check of xmlXPathNodeSetAdd()
14809 and use it in places where we are sure to not break unicity
14810
Daniel Veillard0f2a53c2001-02-05 17:57:33 +000014811Mon Feb 5 18:51:36 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14812
14813 * xpath.c: bug fixes found from XSLT
14814 * tree.c: preserve node->name special values when copying nodes.
14815 * parserInternals.[ch] parser.[ch] SAX.c : added a mode where
14816 external subset are fetched when available but without full
14817 validation. Added xmlLoadExtDtdDefaultValue, need a function.
14818 * HTMLtree.c: add support for xmlStringTextNoenc for XSLt HTML
14819 output with encoding disabled.
14820
Daniel Veillard2c833b62001-02-03 08:52:06 +000014821Sat Feb 3 09:50:29 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14822
14823 * xmliO.c: Harry Blundell pointed out that xmlCheckFilename
14824 xmlCheckFilename should not be called from xmlFileOpenW
14825 and xmlGzfileOpenW
14826
Daniel Veillardb6e7fdb2001-02-02 17:07:32 +000014827Fri Feb 2 18:04:35 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14828
14829 * uri.c: rewrite of xmlNormalizeURIPath from Paul D. Smith
14830 * test/URI/smith.uri result/URI/smith.uri Makefile.am:
14831 added the new tests for URI normalization
14832 * testURI.c: fixed stoopid bugs
14833 * result/VC/OneID3 result/VC/UniqueElementTypeDeclaration:
14834 the URI in the error messages are now properly normalized
14835
Daniel Veillardea28ce62001-02-02 08:20:19 +000014836Fri Feb 2 09:18:53 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14837
14838 * uri.c: applied Marc Sanfacon's patch for xmlNormalizeURIPath
14839
Daniel Veillarde99a4762001-02-01 04:34:35 +000014840Thu Feb 1 05:28:55 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14841
14842 * xpath.c: fixed a number of problems in XPATH_XSLT_TREE processing
14843
Daniel Veillard2b325a02001-01-31 20:46:31 +000014844Wed Jan 31 21:45:37 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14845
14846 * xpath.c: fixed mod operator
14847
Daniel Veillardde55cf62001-01-31 15:53:13 +000014848Wed Jan 31 16:50:42 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14849
14850 * parser.c: fixed xmlStrcat doc
14851 * tree.c: 2 fixes form Anders Carlson for copying nodes and
14852 trees.
14853
Daniel Veillard2f913b72001-01-31 13:23:49 +000014854Wed Jan 31 14:19:16 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14855
14856 * xpath.c result/XPath/tests/chaptersbase
14857 result/XPath/tests/simplebase: fixed XPath node()
14858 * tree.c: small fix in xmlNewNs()
14859 * Makefile.am: removed extraneous xml2Conf.sh rule
14860
Daniel Veillardb42042b2001-01-28 07:40:36 +000014861Sun Jan 28 08:37:03 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14862
14863 * Makefile.am configure.in libxml.spec.in example/Makefile.am:
14864 Changed the library name, in order to get libxml-devel and
14865 libxml2-devel to coexist on a single system
14866 * xml-config.1 xml-config.in xmlConf.sh.in: renamed
14867 * xml2-config.1 xml2-config.in xml2Conf.sh.in: new files
14868
Daniel Veillardee0a4662001-01-27 18:59:33 +000014869Sat Jan 27 19:58:22 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14870
14871 * Makefile.am configure.in libxml-2.0.pc.in: started working on getting
14872 libxml2-devel installable in // as libxml-devel.
14873
Daniel Veillard5eb05942001-01-27 17:50:22 +000014874Sat Jan 27 18:49:02 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14875
14876 * doc/Makefile.am: fixed make rebuild in doc
14877 * doc/html/*.html: rebuilt the docs
14878
Daniel Veillard65c295d2001-01-26 09:32:39 +000014879Fri Jan 26 10:30:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14880
14881 * tree.c: patch from Bjorn Reese on xmlBufferCCat
14882
Daniel Veillard8e199902001-01-25 18:54:39 +000014883Thu Jan 25 19:22:25 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14884
14885 * Makefile.am doc/Makefile.am libxml.spec.in: painful work to get
14886 the HTML doc to go into the -devel RPM ...
14887 * aclocal.m4 config.h.in: some updates due to auto* magic
14888
Daniel Veillard93086662001-01-25 18:13:04 +000014889Thu Jan 25 19:11:49 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14890
14891 * xpath.h: added a hook in the context structure allowing to
14892 link to extra support, needed for XSLT
14893
Daniel Veillardf17e09b2001-01-25 13:55:35 +000014894Thu Jan 25 13:34:11 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14895
14896 * xpath.[ch] xpointer.c: added xmlXPathCmpNodes, changed
14897 xmlXPtrCmpPoints to use it.
14898 * propagated the following patch from Alejandro Forero
14899 * include/win32config.h xmlIO.c: applied further suggestions
14900 from Igor Zlatkovic <igorz@dialup.nacamar.de> and cleanup
14901 * example/gjobread.c: fixed warnings, now that it builds
14902
14903Wed Jan 24 20:27:28 COT 2001 Alejandro Forero <bachue@bachue.com>
14904
14905 * xmlIO.c (xmlFileOpen, xmlFileOpenW): Removed unnecesary checks.
14906
14907 * xmlIO.c (xmlCheckFilename): Function added to know whether a given
14908 filename points to a valid file (not a directory).
14909 * xmlIO.c (xmlFileOpen, xmlFileOpenW, xmlGzfileOpen, xmlGzfileOpenW):
14910 Added calls to xmlCheckFilenameDir.
14911
14912 * xmlIO.c (xmlGzfileOpen, xmlGzfileOpenW, xmlFdOpen, xmlFdOpenW): Pass
14913 `path' (rather than `filename') as the parameter to gzopen and open.
14914
Daniel Veillard48177c22001-01-23 15:27:41 +000014915Tue Jan 23 16:26:30 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14916
14917 * Makefile.am: fixed a problem with EXTRA_DIST
14918
Daniel Veillardb83ba402001-01-22 22:45:10 +000014919Mon Jan 22 23:42:17 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14920
14921 * Makefile.am example/Makefile.am: finally found the trick
14922 to build the example, i.e. add "." in SUBDIRS before example
14923 in the list <grin/>
14924
Daniel Veillard82687162001-01-22 15:32:01 +000014925Mon Jan 22 16:30:37 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14926
14927 * doc/xml.html: updated with an XSLT section, removed pointer to
14928 W3C CVS base.
14929
Daniel Veillard8a7642f2001-01-22 10:45:16 +000014930Mon Jan 22 11:43:21 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14931
14932 * xpath.c: when copying a XSLT tree object teh tree need to be copied
14933 too, and deallocation need to occur the same way.
14934
Daniel Veillarde4566462001-01-22 09:58:39 +000014935Mon Jan 22 10:35:40 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14936
14937 * xpathInternals.h xpath.[ch] debugXML.c: added the XPATH_XSLT_TREE
14938 type correponding to an XSLT result tree fragment. Share most
14939 of the data format with node set, as well as operators.
14940 * HTMLtree.c: added a newline at the end of the doctype output
14941 whe this one is not present initially.
14942 * tree.c: make sure taht the parent and doc pointers are properly
14943 set when copying attributes (lists).
14944
Daniel Veillard701c7362001-01-21 09:48:59 +000014945Sun Jan 21 10:47:38 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14946
14947 * htmlTree.[ch] xmlIO.h: exported htmlDocContentDumpOutput
14948
Daniel Veillard5a2b6972001-01-20 21:15:50 +000014949Fri Jan 19 18:15:50 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14950
14951 * xpath.c: seems I finally killed that ugly path evaluation
14952 context bug (tagged 9999 in case is is wrong)
14953
Daniel Veillard8f4d9752001-01-19 05:32:34 +000014954Fri Jan 19 06:30:38 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14955
14956 * xpath.[ch] xpathInternals.h: added xmlXPathRegisterVariableLookup()
14957 for XSLT
14958
Daniel Veillardd8aa7cb2001-01-18 15:21:36 +000014959Thu Jan 18 16:19:47 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14960
14961 * xmlIO.c: Gary Pennington <Gary.Pennington@uk.sun.com> fix
14962 for xmlGzfileOpen() bug
14963
Daniel Veillardf6eea272001-01-18 12:17:12 +000014964Thu Jan 18 13:11:50 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14965
14966 * xpath.c: removed an error found by XSLT usage
14967 * tree.c parserInternals.h: use a predefined static string
14968 for text and comment nodes, avoid freeing them in xmlFreeNode,
14969 exported the string name in parserInternals.h and added
14970 another value to disable encoding at output (for XSLT),
14971 gain memory, time.
14972
Daniel Veillard8f2cc572001-01-17 08:19:35 +000014973Wed Jan 17 09:15:16 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14974
14975 * win32/README.MSDev win32/libxml2/libxml2_a.dsp
14976 win32/libxml2/libxml2_so.dsp: new makefiles and update
14977 provided by Igor Zlatkovic <igor@stud.fh-frankfurt.de>
14978
Daniel Veillardf831bfb2001-01-16 17:26:04 +000014979Tue Jan 16 18:24:46 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14980
14981 * tree.c : xmlSaveFile, xmlSaveFileEnc, applied patch from
14982 Gary Pennington
14983
Daniel Veillard389e6b72001-01-15 19:41:13 +000014984Mon Jan 15 20:24:18 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14985
14986 * xpath.c: fixed the comaprision of values and nodelists,
14987 need to compare nodelist still ...
14988 * debugXML.c: avoided a possible core dump
14989 * HTMLparser.c: cleanup
14990 * nanohttp.c: contributed fix.
14991 * tree.c: fixes in properties handling added xmlSetNsProp
14992 needed by libxslt
14993 * xpathInternals.h: exported xmlXPathBooleanFunction, added a
14994 comment
14995 * TODO: updated
14996
Daniel Veillard167bd532001-01-06 21:09:34 +000014997Sat Jan 6 22:05:09 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
14998
14999 * parser.c parserInternals.c: applied Bjorn Reese optimization
15000 patch
15001
15002Sat Jan 6 19:13:27 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
15003
15004 * Makefile.am: applied patch fro make check from Martin Vidner
15005
Daniel Veillard503b8932001-01-05 06:36:31 +000015006Thu Jan 4 19:07:49 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
15007
15008 * configure.in: preparing 2.2.11
15009 * doc/html/*: rebuild the HTML files
15010 * doc/xml.html : updated
15011
Daniel Veillardc2f4df22001-01-04 14:06:39 +000015012Thu Jan 4 14:09:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
15013
15014 * tree.c: fixed a stupid bug
15015 * valid.c: applied "Paul D. Smith" <pausmith@nortelnetworks.com>
15016 patches related to validation of an XInclude processing result
15017 * TODO: updated
15018
Daniel Veillarde2488192001-01-04 10:54:22 +000015019Thu Jan 4 11:46:40 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
15020
15021 * encoding.c xmlIO.c: Fixing the problem reported by Marc Sanfacon
15022 on large files
15023
Daniel Veillardf060a412001-01-03 20:52:44 +000015024Wed Jan 3 21:51:13 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
15025
15026 * xmlIO.c: fixed xmlParserInputBufferCreateMem doc
15027
Daniel Veillard45cff692001-01-03 18:02:04 +000015028Wed Jan 3 18:56:00 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
15029
15030 * HTMLparser.c: htmlCheckParagraph to check htmlOmittedDefaultValue,
15031 reported by Jonas Borgström
15032 * nanohttp.c: Applied Bjorn Reese' IPV6 first patch
15033
Daniel Veillard08108982001-01-03 15:24:58 +000015034Wed Jan 3 16:19:39 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
15035
15036 * testXPath.c xpath.c: fixing the XPath union expressions problem
15037 reported by Martin Vidner <martin@artax.karlin.mff.cuni.cz>
15038
Daniel Veillard4a6845d2001-01-03 13:32:39 +000015039Wed Jan 3 14:22:33 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
15040
15041 * xmllint.c: Made is so if the file name is "-" is will read form
15042 standard input. Sven Heinicke <sven@zen.org>
15043 * tree.c: fixed a problem when growing buffer
15044 * tree.h: fixed the comment of the node types following andersca
15045 comment
15046 * TODO: updated
15047
Daniel Veillarda6d8eb62000-12-27 10:46:47 +000015048Wed Dec 27 12:35:49 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15049
15050 * HTMLparser.[ch]: added a way to avoid adding automatically
15051 omitted tags. htmlHandleOmittedElem() allows to change the
15052 default handling.
15053 * tree.[ch] xmllint.c: added xmlDocDumpFormatMemory() and
15054 xmlDocDumpFormatMemoryEnc(), uses memory functions for output
15055 of xmllint too when using --memory flag, added a memory test
15056 suite at the Makefile level.
15057 * xpathInternals.h xpath.[ch] xpointer.c: fixed problems
15058 with namespace use when encountering QNames in XPath evalation,
15059 added xmlns() scheme in XPointer.
15060 * nanoftp.c : incorporated a fix
15061 * parser.c xmlIO.c: fixed problems raised with encoding when using
15062 the memory I/O
15063 * parserInternals.c: closed bug 25934 reported by
15064 torsten.landschoff@innominate.de
15065 * TODO: updated
15066
Daniel Veillarda1fe9102000-11-25 10:49:25 +000015067Sat Nov 25 11:46:27 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15068
15069 * configure.in doc/html/* doc/xml.html: made a 2.2.9 release
15070 on a non-updated tree :-(, made a 2.2.10 release to correct the
15071 situation
15072
Daniel Veillardce6e98d2000-11-25 09:54:49 +000015073Sat Nov 25 10:41:37 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15074
15075 * nanohttp.c parser.[ch] tree.[ch] xmlIO.[ch] xmllint.c xpath.c
15076 parserInternals.h vms/build_libxml.com vms/config.vms Makefile.am:
15077 integrated a set of OpenVMS changes from Howard Taylor
15078 <Howard.Taylor@pacoast.com>
15079
Daniel Veillard58770e72000-11-25 00:48:47 +000015080Sat Nov 25 01:21:01 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15081
15082 * tree.[ch] xmlIO.c: added xmlDocDumpMemoryEnc() from John Kroll
15083 * error.c: applied fix suggested by "Leo Davidson" <leo@ox.compsoc.net>
15084
Daniel Veillardf62ceff2000-11-24 23:36:01 +000015085Sat Nov 25 00:24:49 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15086
15087 * HTMLparser.c: some fixes on auto-open of html/head/body
15088 * encoding.c: fixed a compilation error on some gcc env
15089 * xpath.c xpointer.[ch] xpathInternals.h: improved the
15090 XPointer implementation
15091 * test/XPath/xptr/strpoint test/XPath/xptr/strrange3: added
15092 related XPointer tests and associated results
15093
Daniel Veillard300f7d62000-11-24 13:04:04 +000015094Fri Nov 24 14:01:44 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15095
15096 * doc/xmldtd.html doc/xml.html: following a short step by step
15097 guidance on IRC to help maciej with DTDs I started a small
15098 page on the subject.
15099
Daniel Veillard748e45d2000-11-17 16:36:08 +000015100Fri Nov 17 17:28:06 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15101
15102 * HTMLparser.c: fixed handling of broken charrefs
15103 * xmlmemory.h libxml2.dsp include/win32config.h: reporting Windows
15104 patches
15105
Daniel Veillard28929b22000-11-13 18:22:49 +000015106Mon Nov 13 19:17:20 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15107
15108 * doc/xml.html doc/html/* : rebuilt the docs after adding
15109 xinclude and updated page for 2.2.7 and 2.2.8
15110 * configure.in: releasing 2.2.8
15111
Daniel Veillard41e06512000-11-13 11:47:47 +000015112Mon Nov 13 12:39:38 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15113
15114 * parser.[ch] parserInternals.c: applied the conditional
15115 section processing fix from Jonathan P Springer
15116 <jonathan.springer2@gte.net>
15117 * xmlversion.h.in win32/libxml2/libxml2.dsp : Updated MS
15118 project file, fixed iconv default non support
15119 * xpath.c: fixed the problem of evaluating relative expressions
15120 when a node context is provided.
15121
Daniel Veillardbf432752000-11-12 15:56:56 +000015122Sun Nov 12 16:31:19 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15123
15124 * nanoftp.c: fixed gcc 2.95 new warnings
15125 * SAX.c: fixed a stupid bug
15126 * tree.c: fixed a formatting problem when round-tripping
15127 from/to memory
15128 * xinclude.c: chased memleak, fixed a base problem
15129 * xpointer.c: added xmlXPtrBuildRangeNodeList(), finished ?
15130 xmlXPtrBuildNodeList()
15131 * TODO: updated
15132 * Makefile.am test/XInclude/docs test/XInclude/ents result/XInclude:
15133 adding a first small set of regression tests for XInclude
15134
Daniel Veillardc2def842000-11-07 14:21:01 +000015135Tue Nov 7 15:11:34 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15136
15137 * nanohttp.[ch]: applied Wayne Davison patches to access
15138 the WWW-Authorization header.
15139 * parser.c: Closed Bug#30847: Problems when switching encoding
15140 in short files by applying Simon Berg's patch.
15141 * valid.c: fixed a validation problem
15142 * hash.c parser.h parserInternals.h testHTML.c testSAX.c tree.h
15143 xmlerror.h xmlmemory.h xmlversion.h.in: applied a DLL patch from
15144 Wayne Davison
15145 * xpointer.[ch]: added first version of xmlXPtrBuildNodeList()
15146 need to be extended to non full nodes selections.
15147 * xinclude.c: starts to work decently
15148
Daniel Veillard9e8bfae2000-11-06 16:43:11 +000015149Mon Nov 6 17:22:46 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15150
15151 * tree.[ch] xinclude.[ch] xmllint.c configure.in valid.c
15152 debugXML.c xmlversion.h.in: Started adding XInclude support,
15153 this is a new xmllint option
15154 * tree.c xpath.c: applied TOM patches for XPath
15155 * xpointer.c: fixed a couple of errors.
15156 * uri.c: added an escaping function needed for xinclude
15157 * testXPath.c hash.c HTMLtree.c: minor cleanups raised by
15158 new warning from RH70 gcc's version
15159
Daniel Veillarda4964b72000-10-31 18:23:44 +000015160Tue Oct 31 14:14:13 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15161
15162 * HTMLparser.c: fixed loop on invalid char in scripts
15163 * parser.c: update to description of xmlIOParseDTD()
15164 * libxml.m4 xmlversion.h.in: changes contributed by
15165 Michael Schmeing <m.schmeing@internet-factory.de>
15166 * configure.in: preparing for 2.2.7
15167 * Makefile.am: trying to avoid config.h and acconfig.h
15168 being included in the distrib
15169 * configure.in: released 2.2.7
15170
15171Mon Oct 30 17:08:10 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15172
15173 * tree.[ch] debugXML.c parserInternals.c xpath.c: Deprecated Pi's
15174 like namespaces for good. Unified xmlNs and xmlNode somewhat.
15175
Daniel Veillard01411222000-10-30 15:33:22 +000015176Mon Oct 30 16:26:49 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15177
15178 * parser.[ch]: added xmlIOParseDTD()
15179 * xpointer.c: added support for the 2 extra parameters of
15180 string-range, fixed a stoopid error when '0' was present
15181 in XPointer expressions
15182 * test/XPath/xptr/strrange2 result/XPath/xptr/strrange2: added
15183 testsuite for the above
15184
Daniel Veillard6db58192000-10-30 09:27:53 +000015185Mon Oct 30 10:26:43 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15186
15187 * libxml.spec.in: improved package descriptions
15188
Daniel Veillarda5db68a2000-10-29 18:06:06 +000015189Sun Oct 29 19:03:11 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15190
15191 * xpath.c xpathInternals.h: applied a large cleaning patch
15192 from TOM <ptittom@free.fr>, it also add namespace support
15193 for function and variables registration.
15194
Daniel Veillardbd20df72000-10-29 17:53:40 +000015195Sun Oct 29 18:51:46 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15196
15197 * uri.c: Wayne Davison's patch fixing xmlBuildURI()
15198 * Makefile.mingw: Wayne Davison's update adding hash.c
15199
Daniel Veillardc4f4f0b2000-10-29 17:46:30 +000015200Sun Oct 29 18:38:12 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15201
15202 * xpath.c: fixed the root evaluation problems
15203 * HTMLparser.c result/HTML/doc3.htm: fixed the problem of non
15204 ignorable spaces with <b> <bold> <em>
15205 * tree.c: fixed a loop in xmlSearchNsByHref()
15206
Daniel Veillard767662d2000-10-27 17:04:52 +000015207Fri Oct 27 18:57:32 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15208
15209 * xpath.c: applied another XPath patch from TOM
15210 * xpath.c include/makefile.am: applied another patch from
15211 china@thewrittenword.com (cleanup on IRIX).
15212
Daniel Veillard211cc0a2000-10-27 11:49:33 +000015213Fri Oct 27 13:45:28 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15214
15215 * xml-config.1: received a fixed version from Fredrik Hallenberg
15216 <hallon@lysator.liu.se>
15217
Daniel Veillardf6bf9212000-10-26 14:07:44 +000015218Thu Oct 26 16:05:25 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15219
15220 * xpath.c textXPath.c xpathInternals.h: applied TOM <ptittom@free.fr>
15221 cleanup patch for XPath
15222
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +000015223Wed Oct 25 21:31:10 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15224
15225 * patched to redirrect all "out of context" error messages to
15226 a reconfigurable routine. The changes are:
15227 * xmlerror.h : added the export of an error context type (void *)
15228 an error handler type xmlGenericErrorFunc there is an interface
15229 xmlSetGenericErrorFunc(void *ctx, xmlGenericErrorFunc handler);
15230 to reset the error handling routine and its argument
15231 (by default it's equivalent to respectively fprintf and stderr.
15232 * all the c files: all wild accesses to stderr or stdout within
15233 the library have been replaced to calls to the handler.
15234
Daniel Veillard29a11cc2000-10-25 13:32:39 +000015235Wed Oct 25 15:27:19 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15236
15237 * configure.in: release 2.2.6
15238 * xpath.[ch] xpointer.c xpathInternals.h: added xpathInternals.h
15239 exporting the inner functions of xpath for extension modules
15240 * doc/*: updated and rebuilt the doc
15241
Daniel Veillardbe9ec4b2000-10-25 11:01:53 +000015242Wed Oct 25 12:48:55 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15243
15244 * nanohttp.c : applied Wayne HTTP cleanup patch
15245 * tree.[ch]: applied TOM <ptittom@free.fr> for xmlNodeSetBase()
15246 and xmlNodeSetSpacePreserve()
15247
Daniel Veillarddf7ef2a2000-10-25 10:11:55 +000015248Wed Oct 25 12:11:03 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15249
15250 * xpath.c: closing bug #29260
15251
Daniel Veillard126f2792000-10-24 17:10:12 +000015252Tue Oct 24 18:49:34 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15253
15254 * hash.[ch] debugXML.c: expanded/enhanced the API, added
15255 multikey tuples, made hash structure opaque
15256 * valid.[ch]: moved elements, attributes, notations decalarations
15257 as well as ID and refs to hash tables.
15258 * entities.c: hash cleanup
15259 * xmlmemory.c: fixed a dump problem in debug mode
15260 * include/Makefile.am: problem passing in DESTDIR= values patch
15261 from Marc Christensen <marc@calderasystems.com>
15262 * nanohttp.c: removed debugging remains
15263 * HTMLparser.c: the bogus tag should be ignored (Wayne)
15264 * HTMLparser.c parser.c: fixing a number of problems with the
15265 macros in the *parser.c files (Wayne).
15266 * HTMLparser.c: close the previous option when opening a new one
15267 (Marc Sanfacon).
15268 * result/HTML/*: updated the HTML results accordingly
15269
Daniel Veillard52afe802000-10-22 16:56:02 +000015270Sun Oct 22 18:39:19 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15271
15272 * entities.[ch] xpath.[ch] hash.[ch] debugXML.c tree.h: added/hacked
15273 hash tables from Bjorn Reese <breese@mail1.stofanet.dk>. Switched
15274 XPath functions and XML entities table to them. More to come...
15275 * xmlIO.c: fixed libxml closing FILEs it didn't open.
15276
Daniel Veillard683cb022000-10-22 12:04:13 +000015277Sun Oct 22 13:59:50 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15278
15279 * tree.c: coalesce adjacent text nodes
15280 * valid.c: handling of blank nodes in DTd validation (raised
15281 by problems with a posteriori validation).
15282 * nanohttp.c: changing behaviour on HTTP write stuff.
15283 * HTMLtree.c: forced body and html to be explicitely closed.
15284 * xpath.h: exported more XPath functions.
15285
Daniel Veillard1baf4122000-10-15 20:38:39 +000015286Sun Oct 15 22:28:32 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15287
15288 * Release of 2.2.5
15289 * xpointer.c: range() range-inside and other helper functions
15290 * parserInternals.c: fixed perf problem raised by rolf@pointsman.de
15291
Daniel Veillard47e12f22000-10-15 14:24:25 +000015292Sun Oct 15 16:21:27 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15293
15294 * SAX.c: HTML attributes need normalization too (Bjorn Reese)
15295 * HTMLparser.[ch]: addded htmlIsScriptAttribute()
15296
Daniel Veillardb732a0e2000-10-15 11:27:01 +000015297Sun Oct 15 13:18:36 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15298
15299 * doc/*: rebuilt docs preparing for 2.2.5 release, added URI
15300 and XPointer modules
15301
Daniel Veillard134c9f32000-10-15 10:27:08 +000015302Sun Oct 15 12:13:30 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15303
15304 * SAX.h: closed #25107
15305
Daniel Veillard39915622000-10-15 10:06:55 +000015306Sun Oct 15 12:06:16 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15307
15308 * testSAX.c: fixed problem with cdata reporting
15309 * SAXresult/* : updated
15310
Daniel Veillard1e851392000-10-15 10:02:56 +000015311Sun Oct 15 12:00:24 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15312
15313 * parser.c test/wap.xml result/noent/wap.xml result/wap.xml:
15314 Closed bug #27499, added to regression tests
15315 * TODO: updated
15316
Daniel Veillard7eda8452000-10-14 23:38:43 +000015317Sun Oct 15 01:34:37 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15318
15319 * HTMLparser.c HTMLtree.[ch] SAX.c testHTML.c tree.c: fixed HTML
15320 support for SCRIPT and STYLE with help from Bjorn Reese
15321 * test/HTML/* result/HTML/*: added simple testcase and updated
15322 the existing ones.
15323
Daniel Veillardff9c3302000-10-13 16:38:25 +000015324Fri Oct 13 18:24:31 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15325
15326 * xpath.c xpointer.c: XPointer reorder of ranges start/end and
15327 string-range for empty strings
15328 * test/XPath/docs/str test/XPath/xptr/chaptersrange
15329 test/XPath/xptr/strrange: augmented the XPointer testsuite
15330
Daniel Veillard189446d2000-10-13 10:23:06 +000015331Fri Oct 13 12:21:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15332
15333 * doc/xml.html doc/xmlmem.html: added a module describing memory
15334 interfaces and use, updated the main page.
15335
Daniel Veillard2f971a22000-10-12 23:26:32 +000015336Fri Oct 13 01:23:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15337
15338 * nanoftp.c nanohttp.c xmlIO.c: Wayne Davison Win32 patch
15339 nanoftp code work on Windows too now
15340
15341Fri Oct 13 00:54:37 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillardc2df4cd2000-10-12 23:15:24 +000015342
15343 * testXPath.c xpath.[ch]: moved some debug functions to xpath core
15344 * xpointer.c: implemented string-range() at least a good first version
15345 * test/XPath/docs/str test/XPath/xptr/strrange
15346 result/XPath/xptr/strrange: the string-range() tests
15347
Daniel Veillardd3c68c42000-10-12 08:06:28 +000015348Thu Oct 12 10:02:59 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15349
15350 * Makefile.am include/Makefile.am include/win32config.h
15351 win32/Makefile.mingw: fixed problems reported by Wayne Davison
15352 and make distcheck
15353
Daniel Veillard19d61112000-10-11 23:50:35 +000015354Thu Oct 12 01:44:08 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15355
15356 * nanohttp.c: added xmlNanoHTTPTimeout(int delay), removed a bug
15357 xmlNanoHTTPMethod on input MimeType Tony Lam <Tony.Lam@eng.sun.com>
15358 * xpointer.c: slight extension of xmlXPtrLocationSetMerge
15359
Daniel Veillardb0426ca2000-10-11 23:39:43 +000015360Thu Oct 12 01:37:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15361
15362 * config.h.in configure.in nanoftp.c nanohttp.c xmlversion.h.in :
15363 patch for socklen_t detection by
15364 Albert Chin-A-Young <china@thewrittenword.com>
15365
Daniel Veillardcd429612000-10-11 15:57:05 +000015366Wed Oct 11 17:53:57 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15367
15368 * tree.c valid.c xmllint.c: Fixed a few postvalidation bugs
15369 and added a --dtdvalid option to xmllint used to test it
15370
Daniel Veillard47c02452000-10-11 13:04:36 +000015371Wed Oct 11 15:01:29 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15372
15373 * xml-config.1 Makefile.am libxml.spec.in: adding a man page for
15374 xml-config by Fredrik Hallenberg <hallon@lysator.liu.se>
15375
Daniel Veillard2d38f042000-10-11 10:54:10 +000015376Wed Oct 11 12:41:30 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15377
15378 * xpath.[ch] xpointer.[ch]: worked on XPath functions and variable
15379 handlings (registration, lookup, cleanup)
15380
Daniel Veillardc8df0aa2000-10-10 23:50:30 +000015381Wed Oct 11 01:46:44 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15382
15383 * configure.in Makefile.am include/makefile.am: adding XPointer
15384 and XPtrtests target
15385 * xpointer.[ch] : new files for XPointer support
15386 * test/XPath/xptr result/XPath/xptr: added XPointer testsuite and
15387 more XPath tests
15388
Daniel Veillard57fda592000-10-10 23:24:14 +000015389Wed Oct 11 01:23:25 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15390
15391 * configure.in: fixed, very broken, make distcheck works again
15392
Daniel Veillarde8282ed2000-10-10 23:01:31 +000015393Wed Oct 11 02:53:10 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15394
15395 * More work toward 2.2.5, integrated a number of patches
15396 * configure.in Makefile.am win32config.h.in: trying to cleanup
15397 make distcheck .... huh ...
15398 * include/Makefile.am include/win32config.h: new directory
15399 for includes
15400 * win32/Makefile.mingw win32/README.MSDev win32/libxml2/libxml2.dsp
15401 updated teh makefiles and instructions for WIN32
15402 * xpath.c: small fixes
15403 * test/XPath/ results/XPath: updated the testcases and results
15404 * HTMLparser.c nanohttp.c testXPath.c: incorporated provided or
15405 suggested patches
15406 * valid.c: fixed an ID bug
15407
Daniel Veillardb71379b2000-10-09 12:30:39 +000015408Mon Oct 9 14:28:56 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15409
15410 * moved xml-error.h to xmlerror.h: seems this allowed to bypass
Daniel Veillard784b9352003-02-16 15:50:27 +000015411 the automake bug where wrong dependencies were generated.
Daniel Veillardb71379b2000-10-09 12:30:39 +000015412 * xpath.[ch]: worked on XPointer
15413
Daniel Veillard7e99c632000-10-06 12:59:53 +000015414Fri Oct 6 12:58:04 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15415
15416 * configure.in Makefile.am: 2.2.5, ship the include in an
15417 include/libxml subdirectory, use symlinks when using CVS
15418 * testSAX.c: fixed small bug
15419 * testXPath.c: changed the way testfiles are parsed
15420 * debugXML.c: same kind of cleanup when parsing an argument expression
15421 XPath/XPointers can have blanks embedded
15422 * xpath.[ch]: more cleanup, reorgs for XPointer work
15423 * parserInternals.c parser.c HTMLparser.c: fixed wrong include
15424 * win32/README.MSDev win32/libxml2/libxml2.dsp: Windows stuff
15425
Daniel Veillard55b91f22000-10-05 16:30:11 +000015426Thu Oct 5 18:13:15 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15427
15428 * debugXML.c testXPath.c xpath.[ch]: got pissed by some nastyness
15429 in the XPath engine, rewrote large parts of it, now it's far
15430 cleaner and in sync with the REC not an old WD. Fixed a parsing
15431 problem in the interactive XML shell found when testing XPath.
15432
Daniel Veillardac260302000-10-04 13:33:43 +000015433Wed Oct 4 15:25:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15434
15435 * debugXML.c testXPath.c xpath.[ch]: More work on XPath/Xpointer,
15436 incorporated "(TOM)" <ptittom@free.fr> patches rebuilt the XPath
15437 examples with the extra test
15438
Daniel Veillard7cfce322000-10-04 12:40:27 +000015439Wed Oct 4 14:39:01 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15440
15441 * parser.c xmlIO.c xmlIO.h: fixed bug 26650, and improved
15442 the global init function.
15443
Daniel Veillard970112a2000-10-03 09:33:21 +000015444Tue Oct 3 11:28:52 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15445
15446 * HTMLparser.c: Doohhh, attribute name parsing was still case
15447 sensitive ! Fixed this ...
15448 * result/HTML/* : updated the tests results accordingly
15449
Daniel Veillard740abf52000-10-02 23:04:54 +000015450Mon Oct 2 23:47:32 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15451
15452 * xpath.[ch] debugXML.c testXPath.c: fixed the XPath evaluation
15453 engine, should be far more stable, incorporated a new version of
15454 preceding/following axis, need testing
15455 * uri.c: fixed file:///c:/a/b/c problem
15456 * test/XPath/tests/idsimple: augmented the XPath tests
15457
Daniel Veillard3bff2b02000-10-01 20:33:47 +000015458Sun Oct 1 22:33:00 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15459
15460 * doc/* rebuilding docs for 2.2.4 release
15461
Daniel Veillard8b5dd832000-10-01 20:28:44 +000015462Sun Oct 1 22:16:33 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15463
15464 * configure.in: releasing 2.2.4
15465 * parser.[ch]: added xmlStrEqual()
15466 * HTMLparser.c HTMLtree.c SAX.c debugXML.c entities.c parser.c
15467 tree.c valid.c xlink.c xpath.c: converted all !xmlStrcmp to
15468 use xmlStrEqual instead
15469 * TODO: updated
15470 * added an XPath test
15471
Daniel Veillardbc765302000-10-01 18:23:35 +000015472Sun Oct 1 20:19:39 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15473
15474 * HTMLparser.c: fixed htmlStartCloseIndexinitialized init
15475 * entities.h: exported xmlInitializePredefinedEntities
15476 * parser.[ch] : added xmlInitParser()
15477 * parserInternals.h : had to export htmlInitAutoClose()
15478
Daniel Veillardf09e7e32000-10-01 15:53:30 +000015479Sun Oct 1 16:28:22 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15480
15481 * xpath.[ch] : fixed some serious XPath Predicate evaluation
15482 problems
15483 * Makefile.am : added XPath regression tests to normal tests
15484 * uri.c: fixed a problem with local paths, cleanup
15485 * parser.c: fixed a problem with large CData sections
15486
Daniel Veillardd2ade932000-09-30 14:39:55 +000015487Sat Sep 30 16:35:54 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15488
15489 * configure.in xml-config.in: patch from "Ben Taylor"
15490 <sol7x86@hotmail.com> for solaris shared libs lookup
15491
Martin Bauligdd7d1f62000-09-29 23:17:57 +0000154922000-09-30 Martin Baulig <baulig@suse.de>
15493
15494 * libxml-2.0.pc.in: Provide pkg-config script.
15495
15496 * configure.in: Create the libxml-2.0.pc script from the
15497 libxml-2.0.pc.in templates.
15498 * Makefile.am (pkgconfig_DATA): Install the libxml-2.0.pc
Martin Baulig1b478d12000-09-30 02:27:55 +000015499 script in `$(libdir)/pkgconfig'.
Martin Bauligdd7d1f62000-09-29 23:17:57 +000015500
Daniel Veillard4b0755c2000-09-25 14:26:28 +000015501Mon Sep 25 16:23:41 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15502
15503 * HTMLparser.c parser.c tree.c tree.h: Avoiding a few warning
15504 when compiling with MSC
15505
Daniel Veillard46057e12000-09-24 18:49:59 +000015506Sun Sep 24 20:32:52 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15507
15508 * xpath.c: patch for normalize-string() substring-before(),
15509 substring-after() and translate() functions from Bjorn Reese
15510 <breese@mail1.stofanet.dk>
15511 * libxml.m4 Makefile.am: added libxml.m4 from Debian ?
15512 Fredrik Hallenberg <hallon@lysator.liu.se>
15513 * TODO: updated
15514
Daniel Veillard281f8ff2000-09-24 08:12:14 +000015515Sun Sep 24 10:00:49 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15516
15517 * xmlversion.h.in nanoftp.c nanohttp.c: traying to work out the
15518 problem of socklen_t being undefined on a number of platforms
15519 * debugXML.c: fixed a compilation problem when without snprintf
15520
Daniel Veillard8ddb5a72000-09-23 10:28:52 +000015521Sat Sep 23 12:19:45 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15522
15523 * HTMLparser.c uri.c: Another patch from Wayne Davison, correcting
15524 an URI bug and a fix for the control-character-induced infinite loop
15525 * nanohttp.c: preventive fix for compiling on WIN32
15526
Daniel Veillard64c20ed2000-09-22 16:07:02 +000015527Fri Sep 22 18:06:08 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15528
15529 * xmlint.c: closing bug #25000
15530
Daniel Veillardb656ebe2000-09-22 13:51:48 +000015531Fri Sep 22 14:17:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15532
15533 * xmlIO.h tree.h: made xmlNodeDump() and xmlNodeDumpOutput() public
15534 * parser.[ch] nanohttp.c HTMLtree.c HTMLparser.c tree.c: applied and
15535 modified slightly Wayne Davison patch adding xmlStrcasecmp and
15536 related function, fixing xmlStrncmp(), and associated cleanup
15537 * result/HTML/entities.html.sax: updating result
15538
Daniel Veillard4fb87ee2000-09-19 12:25:59 +000015539Tue Sep 19 14:20:10 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15540
15541 * uri.c: applied patch for URI escaping from Wayne Davison
15542 <wayned@blorf.net>
15543 * tree.c parserInternals.c HTMLparser.c: memset checks patches
15544 from Denis Barbier <barbier@imacs.polytechnique.fr>
15545 * HTMLparser.c: UTF8 characters in HTML tag-attribute values
15546 patch from Wayne Davison
15547
Daniel Veillardd5f97f82000-09-17 16:38:14 +000015548Sun Sep 17 18:37:03 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15549
15550 * doc/xml.html : updated with new releases, adding "how to help"
15551
Daniel Veillard04698d92000-09-17 16:00:22 +000015552Sun Sep 17 17:58:37 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15553
15554 * SAX.c debugXML.c parser.c parserInternals.c tree.c valid.c xpath.c:
15555 removed a few warnings in pedantic mode ...
15556 * parserInternals.c parser.c: moved encoding switching function
15557 to parserInternals.c
15558 * configure.in, doc/Makefile.am libxml.spec.in: released 2.2.3
15559
Daniel Veillarda2c6da92000-09-16 18:15:00 +000015560Sat Sep 16 20:12:41 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15561
15562 * HTMLparser.c parser.c: set ctxt->errNo before calling the
15563 error or warning handlers
15564
Daniel Veillardb1059e22000-09-16 14:02:43 +000015565Wed Sep 13 22:03:18 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15566
15567 * parserInternals.c parserInternals.h parser.c Makefile.am:
15568 created a new module parserInternals.c, moved most of the
15569 code shared by the various parsers there, as well as
15570 deprecated code from parser.c. More cleanup of parser.c
15571 * uri.c: fixed a problem when URI is NULL
15572 * valid.c: speedup when looking for an attribute declaration
15573
Daniel Veillard39c7d712000-09-10 16:14:55 +000015574Sun Sep 10 17:53:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15575
15576 * uri.c tree.c SAX.c parser.c entities.c debugXML.c: finished
15577 the cleanup of the computation of URI references when seeking
15578 external entities. The URI reference string and the resulting
15579 URI are both stored now.
15580 * parser.c HTMLparser.c valid.c nanoftp.c nanohttp.c xpath.c:
15581 large s(n)printf checks and cleanup from Denis Barbier
15582 <barbier@imacs.polytechnique.fr>
15583 * xmlversion.h.in tree.h: couple of SGML declarations for a
15584 possible docbook module.
15585 * result/VC/ : a couple of test output changed due to the change
15586 of the entities URI
15587
Daniel Veillardb513f5a2000-09-10 14:01:12 +000015588Sun Sep 10 15:59:58 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15589
15590 * parser.h: added a _private field for linking user's data
15591
Daniel Veillarddd477ce2000-09-10 13:23:08 +000015592Sun Sep 10 15:14:43 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15593
15594 * parser.c parserInternals.h: demacroified most of the IS_XXX
15595 the gain in size is significant so ...
15596
Daniel Veillard4b5b80c2000-09-08 18:54:41 +000015597Fri Sep 8 20:48:29 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15598
15599 * entities.c: cases where looking up entities with doc==NULL
15600 covered
15601
Daniel Veillard90e11312000-09-05 10:42:32 +000015602Tue Sep 5 12:41:15 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15603
Daniel Veillard1de50802000-09-07 08:54:32 +000015604 * uri.c: applied Wayne Davison patch
Daniel Veillard90e11312000-09-05 10:42:32 +000015605 * Makefile.in test/URI/uri.data result/URI/uri.data: updated URI tests
15606
Daniel Veillard98a79162000-09-04 11:15:39 +000015607Mon Sep 4 13:01:45 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15608
Daniel Veillard1de50802000-09-07 08:54:32 +000015609 * uri.c testUri.c: applied Wayne Davison patches
Daniel Veillard98a79162000-09-04 11:15:39 +000015610 * test/URI/uri.data result/URI/uri.data: first set of tests/results
15611 * Makefile.in: added URItest and included thenin "make tests"
15612
15613Sun Sep 3 19:19:29 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard960aa532000-09-03 17:20:17 +000015614
15615 * xmlversion.h.in: closed bug 22941
15616
Daniel Veillard2bb89092000-08-31 14:57:50 +000015617Thu Aug 31 16:55:55 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15618
15619 * doc/xmlio.html: added doc and example for entity loader
15620 redefinition.
15621
Daniel Veillard96984452000-08-31 13:50:12 +000015622Thu Aug 31 14:59:28 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15623
15624 * doc/xmlio.html doc/xml.html: added a doc on the I/O mechanism
15625 used by libxml
15626
Daniel Veillarde715dd22000-08-29 18:29:38 +000015627Tue Aug 29 20:22:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15628
15629 * parser.c: Fixed bug on invalid ontent characters and when using
15630 push.
15631 * xmllint.c: fixed xmllint endling of errors in push mode
15632
Daniel Veillard4948eb42000-08-29 09:41:15 +000015633Tue Aug 29 11:24:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15634
15635 * HTMLparser.c testHTML.c: applied two new patches from
Daniel Veillardbbe11b02000-09-23 07:07:40 +000015636 Wayne Davison <wayned@users.sourceforge.net>
Daniel Veillard4948eb42000-08-29 09:41:15 +000015637 * result/HTML/*.sax: regenerated HTML SAX output
15638 * parser.c: more cleanup.
15639
Daniel Veillarde010c172000-08-28 10:04:51 +000015640Mon Aug 28 11:58:12 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15641
15642 * HTMLparser.[ch] testHTML.c: applied the second set of
Daniel Veillardbbe11b02000-09-23 07:07:40 +000015643 patches from Wayne Davison <wayned@users.sourceforge.net>,
15644 adding htmlEncodeEntities()
Daniel Veillarde010c172000-08-28 10:04:51 +000015645 * HTMLparser.c: fixed an ignorable white space detection bug
15646 occuring when parsing with SAX only
15647 * result/HTML/*.sax: updated since the output is now HTML
15648 encoded...
15649
Daniel Veillard47f3f312000-08-27 22:40:15 +000015650Mon Aug 28 00:38:31 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15651
Daniel Veillardbbe11b02000-09-23 07:07:40 +000015652 * HTMLparser.[ch]: applied some of Wayne Davison
15653 <wayned@users.sourceforge.net> patches
Daniel Veillard47f3f312000-08-27 22:40:15 +000015654
Daniel Veillarde0854c32000-08-27 21:12:29 +000015655Sun Aug 27 22:14:01 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15656
15657 * SAX.c tree.c debugXML.c: fixed bogus behaviour when an
15658 undeclared namespace prefix was used, added a warning.
15659 Cleaned up support w.r.t. entities, spilling out a warning
15660 and being pedantic on lookups.
15661 * test/warning/ent9 : added testcase for previous example.
15662 * TODO: updated
15663 * parserInternals.h parser.c: changed the way names are parsed
15664 now allow infinite size and decrease penalty for normal use
15665 * parser.c: Started a big cleanup/check of the parser code,
15666 fixed some of the most tortuous entity code, spotted code
15667 unused anymore
15668 * test/*: added tests for very long names and related nasty
15669 things.
15670
Daniel Veillardf0cc7cc2000-08-26 21:40:43 +000015671Sat Aug 26 23:31:04 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15672
15673 * doc/encoding.html: added encoding aliases doc
15674 * doc/xml.html: updates
15675 * encoding.[ch]: added EncodingAliases functions
15676 * entities.[ch] valid.[ch] debugXML.c: removed two serious
15677 bottleneck affecting large DTDs like Docbook
15678 * parser.[ch] xmllint.c: added a pedantic option, will be
15679 useful
15680 * SAX.c: redefinition of entities is reported in pedantic mode
15681 * testHTML.c: uninitialized warning from gcc
15682 * uri.c: fixed a couple of bugs
15683 * TODO: added issue raised by Michael
15684
Daniel Veillard0d6b1702000-08-22 23:52:16 +000015685Wed Aug 23 01:50:51 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15686
15687 * doc/encoding.html: propagated Martin Duerst suggestions
15688
Daniel Veillard52402ce2000-08-22 23:36:12 +000015689Wed Aug 23 00:23:41 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15690
15691 * parser.c: Fixed Bug#21552: libxml fails to decode &amp;
15692 * uri.c testUri.c patches, by Marc Sanfacon (1 left)
15693 * parser.c HTMLparser.c: HTML/encoding push problems reportedi
15694 by Wayne Davison
15695
Daniel Veillard2f2bf412000-08-20 15:11:02 +000015696Sun Aug 20 17:03:38 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15697
15698 * nanoftp.c nanohttp.c: small cleanup
15699 * TODO: updated
15700
Daniel Veillard244ece92000-08-19 20:58:02 +000015701Sat Aug 19 22:57:02 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15702
15703 * added an old VC testcase and updated title.xml entity
15704
Daniel Veillardb8f25c92000-08-19 19:52:36 +000015705Sat Aug 19 21:02:08 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15706
15707 * HTMLparser.c SAX.c tree.c HTMLtree.h result/HTML/*: work
15708 done on auto-opening of <p> tags and cleanup of SAX output
15709
Daniel Veillard979e55e2000-08-19 16:48:54 +000015710Sat Aug 19 18:45:40 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15711
15712 * libxml.4 xmllint.1 Makefile.am libxml.spec.in: added man pages
15713
Daniel Veillard4540be42000-08-19 16:40:28 +000015714Sat Aug 19 18:38:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15715
15716 * doc/xml.html libxml.* structure.*: updated the doc a bit
15717
Daniel Veillard808a3f12000-08-17 13:50:51 +000015718Thu Aug 17 15:50:00 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15719
15720 * testSAX.c testHTML.c result/HTML/: cleanup of the output
15721 of SAX tests
15722
Daniel Veillard29579362000-08-14 17:57:48 +000015723Mon Aug 14 13:56:33 EDT 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15724
15725 * Patch from Albert Chin-A-Young <china@thewrittenword.com>:
15726 * xmllint.c: workaround a MAP_FAILEd definition bug in DU-4.0
15727
Daniel Veillard1255ab72000-08-14 15:13:33 +000015728Mon Aug 14 11:10:20 EDT 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15729
15730 * Patch from Dave Yearke <yearke@eng.buffalo.edu>:
15731 * testHTML.c: fix core dump on Solaris 2.x systems
15732 * HTMLparser.c: fix segfault if ctxt->sax->characters() is NULL
15733 * result/HTML/*.sax: previous bug fix lead to new results
15734
Daniel Veillard03109292000-08-14 14:58:22 +000015735Mon Aug 14 10:26:09 EDT 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15736
15737 * Patch from Albert Chin-A-Young <china@thewrittenword.com>:
15738 * configure.in: added --with-readline=DIR to accept alternate
15739 path for readline include/library
15740 * configure.in: added AM_C_PROTOTYPES to add -Aa -D_HPUX_SOURCE
15741 for ANSI under HP-UX
15742 * config.in: Removed @LIBS@ from xml-config because @XML_LIBS@
15743 includes @LIBS@
15744
Daniel Veillard7c29ce22000-08-12 21:20:53 +000015745Sat Aug 12 23:19:42 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15746
15747 * doc/* : rebuilt the docs
15748 * getting ready for 2.2.2 release
15749
Daniel Veillard87b95392000-08-12 21:12:04 +000015750Sat Aug 12 16:42:37 EDT 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15751
15752 * parser.[ch]: added xmlGetFeaturesList() xmlGetFeature()
15753 and xmlAddFeature()
15754 * tree.[ch]: added xmlAddChildList()
15755 * xmllint.c: MAP_FAILED macro test
15756 * parser.h: added xmlParseCtxtExternalEntity()
15757 * valid.c: applied bug fixes removed warning
15758 * tree.c: added CDATA block to elements content
15759 * testSAX.c: cleanup of output
15760 * testHTML.c: added SAX testing
15761 * encoding.c: better error recovery
15762 * SAX.c, parser.c: fixed one of the external entity processing
15763 of the OASis testsuite
15764 * Makefile.am: added HTML SAX regression tests
15765 * configure.in: bumped to 2.2.2
15766 * test/HTML/ result/HTML: added a few of HTML tests, and added the
15767 SAX results
15768
Daniel Veillard88a172f2000-08-04 18:23:10 +000015769Fri Aug 4 11:21:50 PDT 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15770
15771 * configure.in: patch for HP compiler
15772
157732000-08-04 Sven Heinicke <sven@zen.org>
15774
15775 * xmllint.c: Was coredumping sometimes when the file given didn't
15776 exist.
15777
Daniel Veillard46e370e2000-07-21 20:32:03 +000015778Sat Jul 22 05:59:05 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15779
15780 * parser.c xmlIO.[ch]: fixed the problem of encoding support
Daniel Veillard2f2bf412000-08-20 15:11:02 +000015781
Daniel Veillard46e370e2000-07-21 20:32:03 +000015782 when using in memory parsing. Need some cleanup.
15783 * xmllint.c configure.in: added a --memory flag to test memory
15784 parsing
15785
Daniel Veillard36650692000-07-21 15:16:39 +000015786Fri Jul 21 17:09:57 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15787
15788 * nanohttp.c: fixed socklen_t replacement to unsigned int
15789 * parser.c: fixed a space handdling missing at the end of
15790 production 28 DOCTYPE.
15791 * xmlmemory.c: fixed a stupid bug on the routine to override
15792 allocation functions
15793 * TODO: updated
15794
Daniel Veillarde46e20d2000-07-14 15:02:46 +000015795Fri Jul 14 17:01:14 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15796
15797 * doc/ regenerated the docs
15798
Daniel Veillard32bc74e2000-07-14 14:49:25 +000015799Fri Jul 14 16:12:20 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15800
15801 * doc/encoding.html doc/xml.html: added I18N doc
15802 * encoding.[ch] HTMLtree.[ch] parser.c HTMLparser.c: I18N encoding
15803 improvements, both parser and filters, added ASCII & HTML,
15804 fixed the ISO-Latin-1 one
15805 * xmllint.c testHTML.c: added/made visible --encode
15806 * debugXML.c : cleanup
15807 * most .c files: applied patches due to warning on Windows and
15808 when using Sun Pro cc compiler
15809 * xpath.c : cleanup memleaks
15810 * nanoftp.c : added a TESTING preprocessor flag for standalong
15811 compile so that people can report bugs more easilly
15812 * nanohttp.c : ditched socklen_t which was a portability mess
15813 and replaced it with unsigned int.
15814 * tree.[ch]: added xmlHasProp()
15815 * TODO: updated
15816 * test/ : added more test for entities, NS, encoding, HTML, wap
15817 * configure.in: preparing for 2.2.0 release
15818
Daniel Veillard49703262000-07-10 10:27:46 +000015819Mon Jul 10 16:17:18 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15820
15821 * nanoftp.c: fixed the way the control connection is handled
Daniel Veillard784b9352003-02-16 15:50:27 +000015822 * libxml.spec.in: fixed the dependencies and cleanup
Daniel Veillard49703262000-07-10 10:27:46 +000015823
Daniel Veillard306be992000-07-03 12:38:45 +000015824Mon Jul 3 14:37:07 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15825
15826 * doc/xml.html: changed the xmlsoft.org structure, updated the
15827 examples w.r.t. root and childs
15828
Daniel Veillard7d853352000-07-02 18:53:09 +000015829Sun Jul 2 20:51:43 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15830
Daniel Veillard784b9352003-02-16 15:50:27 +000015831 * libxml.spec.in: fixed bug #7419, dependencies fouled for libxml-devel
Daniel Veillard7d853352000-07-02 18:53:09 +000015832
Daniel Veillard365e13b2000-07-02 07:56:37 +000015833Sun Jul 2 09:52:45 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15834
15835 * HTMLparser.c: Work on character encoding support for the HTML parser
15836 * HTMLparser.c: Fixed some autoopen/autoclose probs for the HTML parser
15837 * encoding.c: Fixed a potential memleak in the encoding stuff
15838
Daniel Veillardaf743792000-07-01 11:49:28 +000015839Sat Jul 1 13:44:22 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15840
15841 * doc/FAQ.html doc/Makefile.am : added a FAQ
15842
15843Fri Jun 30 20:29:08 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillardd83eb822000-06-30 18:39:56 +000015844
15845 * HTMLparser.c HTMLtree.c SAX.c valid.c tree.h : more cleanup
15846 of the HTML parser to force it to not bypass SAX
15847
Daniel Veillard3f6f7f62000-06-30 17:58:25 +000015848Fri Jun 30 11:19:59 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15849
15850 * win32config.h.in: updated
15851 * xmlversion.h.in: crap forgot to update this, this mean 2.1.0
15852 lacks iconv support :-( need to release 2.1.1
15853 * configure.in: release 2.1.1
15854 * HTMLparser: fixed bug #14784
15855 * xpath.c HTMLparser.c encoding.c parser.c: fix warning raised
15856 by Windows compiler
15857 * HTMLparser.c SAX.c HTMLtree.h tree.h: create HTML document in
15858 the SAX startDocument() callback.
15859 * TODO: updated
15860
15861Thu Jun 29 12:06:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15862
15863 * added xmlStopParser()
15864
Daniel Veillardbe803962000-06-28 23:40:59 +000015865Wed Jun 28 23:10:26 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15866
15867 * configure.in: 2.1.0 prerelease
15868 * Large resync between W3C and Gnome tree
15869 * nanoftp, nanohttp.c: fixed stalled connections probs
15870 * HTMLtree.c SAX.c : support for attribute without values in
15871 HTML for andersca
15872 * valid.c: Fixed most validation + namespace problems
15873 * HTMLparser.c: start document callback for andersca
15874 * debugXML.c xpath.c: lots of XPath fixups from Picdar Technology
15875 * parser.h, SAX.c: serious speed improvement for large
15876 CDATA blocks
15877 * encoding.[ch] xmlIO.[ch]: Improved seriously saving to
15878 different encoding
15879 * example/Makefile.am example/gjobread.c tree.h: work on
15880 libxml1 libxml2 convergence.
15881 * config.h.in parser.c xmllint.c: added xmlCheckVersion()
15882 and the LIBXML_TEST_VERSION macro
15883
Daniel Veillardc310d562000-06-23 18:32:15 +000015884Fri Jun 23 22:26:07 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15885
15886 * doc/xml.html: various patches and improvements typo fixed by
15887 Felix Natter
15888 * doc/libxml-doc.el: Emacs module to lookup the libxml documentation
15889 from Felix Natter <fnatter@gmx.net>
15890
Daniel Veillardf3029822000-05-06 08:11:19 +000015891Sat May 6 10:09:45 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15892
15893 * doc/upgrade.html: updated with instructions for support of both
15894 libxml-1.x and libxml-2.x
15895 * doc/gjobread.c : applied Todd Dukes <tdukes@ibmoto.com> patch
15896 for 2.x support and also fixed includes
15897
15898
Daniel Veillard496a1cf2000-05-03 14:20:55 +000015899Wed May 3 14:21:25 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15900
15901 * encoding.[ch], xmlIO.[ch], parser.c, configure.in : revamped
15902 the encoding support, added iconv support, so now libxml if
15903 compiled with iconv automatically support japanese encodings
15904 among others. Work based on initial patch from Yuan-Chen Cheng
15905 I may have broken binary compat in the encoding handler
15906 registration scheme, but that was so utterly broken I don't
15907 expect anybody to have used this feature until now.
15908 * parserInternals.h: fixup on the CHAR range macro
15909 * xml-error.h, parser.c: catch URL/URI errors using the uri.c
15910 code.
15911 * tree.[ch]: added xmlBufferGrow(), was needed for iconv
15912 * uri.c: added xmlParseURI() I can't believe I forgot to
15913 implement this one in 2.0 !!!
15914 * SAX.c: moved doc->encoding update in the endDocument() call.
15915 * TODO: updated.
15916
Daniel Veillard06047432000-04-24 11:33:38 +000015917Mon Apr 24 13:30:13 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15918
15919 * tree.h: removed extraneous xmlRemoveProp definition
15920 * TODO: added item about --disable-corba configure switch
15921 * tree.c parser.c: fixed problems for xmlCopyDoc and postvalidation
15922 * nanoftp.c: fixed include problems giving troubles on AIX and
15923 slowlaris
15924 * xmlIO.[ch] valid.h tree.[ch] xlink.c xmlmemory.c uri.c
15925 parser.c nanoftp.c nanohttp.c SAX.c testSAX.c :
15926 comment and headers changes to lower gtk-doc number of warnings
15927 * doc/html/*: rebuilt docs
15928
Daniel Veillarde0aed302000-04-16 08:52:20 +000015929Sun Apr 16 11:23:29 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15930
15931 * HACKING: documented the tag for 1.x and instructions
15932
Daniel Veillard5e873c42000-04-12 13:27:38 +000015933Wed Apr 12 15:47:22 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15934
15935 * xmlIO.[ch] parser.[ch]: More interfaces for new I/O functions
15936 xmlNewIOInputStream, xmlParserInputBufferCreateIO,
15937 xmlCreateIOParserCtxt
15938 * parser.c parserInternals.h: speedup of IS_CHAR like macros,
15939 significant overall improvement
15940 * xmllint.c: added I/O test to xmllint
15941 * testSAX.c: added a speed test
15942 * doc/* : updated/regenerated
15943
Daniel Veillardfc708e22000-04-08 13:17:27 +000015944Sat Apr 8 14:54:54 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15945
15946 * xpath.c uri.h parserInternals.h: cosmetic changes from
15947 "Timur I. Bakeyev" <timur@bat.ru>, including making
15948 xmlCreateURI() public
15949
Daniel Veillard5d211f42000-04-07 17:00:24 +000015950Fri Apr 7 18:35:02 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15951
15952 * xmlIO.[ch] parser.c: cleane up the xmlParserInputBuffer mess
15953 and the code at the same time. Added a clean mechanism for
15954 overload or added input methods: xmlRegisterInputCallbacks()
15955 * tree.c: fixed xmlPrevSibling and xmlNextSibling per
15956 Christophe Le Gal (Christophe.Le-Gal@imag.fr) input
15957 * TODO: updated
15958 * doc/* : updated/regenerated
15959 * doc/Makefile.am: tweaks to avoid problem with libxml link in the
15960 source dir
15961
Daniel Veillarde77a9182000-04-05 19:12:29 +000015962Wed Apr 5 21:11:35 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15963
15964 * testURI.c: yet another forgotten commit, I should get some sleep !
15965
Daniel Veillardce8b83b2000-04-05 18:38:42 +000015966Wed Apr 5 20:36:46 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15967
15968 * xmllint.c: forgot to commit this too ?
15969
Daniel Veillardb9df4042000-04-05 14:23:16 +000015970Wed Apr 5 16:22:44 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15971
15972 * xmlversion.h.in : forgot to commit this previously
15973
Daniel Veillard361d8452000-04-03 19:48:13 +000015974Mon Apr 3 21:47:10 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15975
15976 * configure.in: preparing libxml-2.0.0 version looks Ok so far
15977 * README TODO: updated for release
15978 * uri.c uri.h: added authority parsing/saving
15979 * uri.c testURI.c Makefile.am: moved the testing code to testURI.c
15980 * xmlversion.h.in configure.in nanoftp.[ch] nanohttp.[ch] encoding.h
15981 debugXML.[ch] xpath.[ch] xmlIO.c tester.c testXPath.c testHTML.c
15982 tree.c HTMLtree.c HTMLparser.c tree.c tree.h parser.c
15983 Makefile.am : added compile-time customization of libxml
15984 --with-ftp --with-http --with-html --with-xpath --with-debug
15985 --with-mem-debug
15986 * *.[ch] autoconf.sh : moved to an absolute adressing of includes :
15987 #include <libxml/xxx.h> I hope it won't break too much stuff
15988 and will be manageable in the future...
15989 * xmllint.c Makefile.am libxml.spec.in : renamed tester.c to xmllint.c
15990 and added xmllint to the installed programs
15991 * uri.h: added xmlFreeURI()
15992
Daniel Veillardec303412000-03-24 13:41:54 +000015993Fri Mar 24 14:35:21 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
15994
15995 * uri.c uri.h: finished the escaping handling, the base support
15996 and the URI path normalization. Looks good just lacks the
15997 authority content parsing code.
15998 * Makefile.am: added instructions to generate testURI
15999 * TODO: updated
16000 * doc/xml.html, doc/smallfootonly.gif doc/w3c.png: updated,
16001 added links and icons for W3C and Gnome
16002
Daniel Veillard8f621982000-03-20 13:07:15 +000016003Mon Mar 20 14:05:26 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16004
16005 * xmlmemory.[ch] : seems I forgot to actually update the files in
16006 the last commit :-)
16007 * doc/xml.html doc/html/* : updated and uploaded the docs
16008
Daniel Veillard3dd82e72000-03-20 11:48:04 +000016009Mon Mar 20 12:33:51 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16010
16011 * test/valid/dtds/xhtml*: removed RCS infos (pain with CVS)
16012 * TODO: updated
16013 * xmlmemory.[ch] : added xmlMemSetup() and xmlMemGet() to override
Daniel Veillard8f621982000-03-20 13:07:15 +000016014 libxml default allocation function with another set (like gmalloc/
Daniel Veillard3dd82e72000-03-20 11:48:04 +000016015 gfree).
16016 * Makefile.am, uri.c, uri.h: added a set of functions to do
16017 exact (litteraly copied from the RFC 2396 productions) parsing
16018 and handling of URI. Will be needed for XLink, one XML WFC,
16019 XML Base and reused in the nano[ftp/http] modules. Still work
16020 to be done.
16021
Daniel Veillardedfb29b2000-03-14 19:59:05 +000016022Tue Mar 14 20:52:35 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16023
16024 * configure.in, libxml.spec.in : libxml2
16025 * doc/* : updated the doc page, rebuilt the docs
16026
Daniel Veillardcf461992000-03-14 18:30:20 +000016027Tue Mar 14 19:11:29 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16028
16029 * all: tagged LIB_XML_1_X
16030 * *.c *.h : updated from W3C CVS tree
16031 * configure.in : 2.0.0-beta
16032 * libxml.spec.in : libxml2 package nam
16033 * result/* : new version of the tests output
16034
Daniel Veillardf13e1ed2000-03-06 07:41:49 +000016035Mon Mar 6 09:34:52 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16036
16037 * doc/xml.html, doc/update.html: updated docs, 1.8.7
16038
Daniel Veillardb566ce12000-03-04 11:39:42 +000016039Sat Mar 4 16:14:42 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16040
16041 * doc/* : rebuilt the docs
16042 * parser.c: final patch on #6766
16043 * valid.c: small patch on validity checks.
16044
Daniel Veillardfb76c402000-03-04 11:39:42 +000016045Sat Mar 4 12:38:41 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16046
16047 * doc/upgrade.html: instruction on how to upgrade from 1.x to 2.x
16048 added
16049 * parser.c: adding xmlKeepBlanksDefault() as a way to manage
16050 compatibility w.r.t. XML spec and existing code.
16051
Daniel Veillard90fb02c2000-03-02 03:46:43 +000016052Thu Mar 2 04:45:15 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16053
16054 * parser.c: seems a better solution to <a> </a> exists,
16055 will try it for a while
16056
Daniel Veillard83a30e72000-03-02 03:33:32 +000016057Thu Mar 2 02:26:13 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16058
16059 * parser.c: tried to remove the <a> </a> generating <a/>
16060 this is hard. Left a flag for that purpose. Fixed bug #6766
16061 * configure.in: prepared 1.8.7 not released, due to previous
16062 problem
16063
Daniel Veillard88f00ae2000-03-02 00:15:55 +000016064Thu Mar 2 03:03:50 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16065
16066 * doc/xml.html : applied second patch from Paul DuBois
16067
Daniel Veillard402e8c82000-02-29 22:57:47 +000016068Tue Feb 29 23:55:13 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16069
16070 * doc/xml.html : applied patch from Paul DuBois
16071
Daniel Veillardd0f7f742000-02-02 17:42:48 +000016072Thu Feb 3 16:36:39 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16073
16074 * parser.c HTMLparser.c: do a bit of bufferization in push mode.
16075
Daniel Veillard5feb8492000-02-02 17:15:36 +000016076Thu Feb 3 15:59:37 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16077
16078 * nanoftp.c nanohttp.c tree.c HTMLtree.[ch] debugXML.c xpath.c: Fixed
16079 compilation warnings on various platforms.
16080 * parser.c: Fixed #5281 validity error callbacks are now desactived
16081 by default if not validating.
16082
Daniel Veillardf341f932000-02-02 14:52:08 +000016083Thu Feb 3 13:46:14 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16084
16085 * nanoftp.c, win32config.h.in: patches to compile on WIN32
16086
Daniel Veillard13c757e2000-02-01 23:59:15 +000016087Wed Feb 2 22:51:16 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16088
16089 * nanoftp.c: snprintf/sprintf patch courtesy George Katsirelos
16090 <gkatsi@cs.toronto.edu>
16091
Daniel Veillard726e8792000-01-30 20:04:29 +000016092Mon Jan 31 18:58:21 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16093
16094 * nanoftp.c nanohttp.c: Fixed '#' and '?' stripping when
16095 processing URLs
16096
Daniel Veillarde41f2b72000-01-30 20:00:07 +000016097Mon Jan 31 14:25:57 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16098
16099 * nanoftp.[ch]: cleanup, bug fixes, integration in rpmfind, added
16100 xmlNanoFTPUpdateURL for persistent control connections.
16101 * configure.in: 1.8.6
16102
16103Thu Jan 27 17:52:29 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16104
16105 * nanohttp.[ch], nanoftp.[ch]: cleanup, added proxy support
16106 * tree.[ch] : added xmlSaveNoEmptyTags
16107
James Henstridgef3be9312000-01-28 13:59:21 +0000161082000-01-29 James Henstridge <james@daa.com.au>
16109
16110 * nanoftp.c: include <netinet/in.h> for IPPROTO_TCP.
16111
16112 * Makefile.am: added nanoftp.[ch] to the build.
16113
Daniel Veillardaeea04f2000-01-25 19:27:27 +000016114Wed Jan 26 18:14:55 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16115
16116 * nanoftp.[ch]: cleanup, comments, API
16117 * debugXML.c : fixed a bug in the cat command
16118 * doc/*: regenerated the docs
16119
Daniel Veillardda07c342000-01-25 18:31:22 +000016120Wed Jan 26 16:52:50 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16121
16122 * nanoftp.[ch] parser.c xmlIO.[ch]: added a Nano FTP implementation
16123 * debugXML.c : fixed a bug in the cat command
16124 * valid.c: fixing some small probs
16125 * libxml.spec.in: get rid of the SNAP suffix
16126 * doc/xml.html: updated the status
16127
Daniel Veillarde3d88ef2000-01-24 13:55:06 +000016128Mon Jan 24 14:31:09 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16129
16130 * xml-config.in: xml-config --version to just return the
16131 version number
16132 * xpath.c: some cleanup w.r.t. axis when the current node is
16133 an attribute.
16134 * TODO: updated
16135
Daniel Veillard461a66c2000-01-18 18:01:01 +000016136Tue Jan 18 18:46:06 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16137
16138 * configure.in: prepared for libxml-1.8.5
16139 * doc/* recompiled the documentation
16140
161412000-01-17 Jody Goldberg <jgoldberg@home.com>
16142
16143 * configure.in : WARNING autoconf subtlety alert :
16144 Use AC_CHECK_HEADERS rather than AC_CHECK_HEADER
16145 when looking for zlib.h so that HAVE_ZLIB_H is defined.
16146 * config.h.in : Have a #undef for HAVE_ZLIB_H so that it will
16147 get defined by AC_CHECK_HEADERS.
16148
Daniel Veillardf967b902000-01-17 16:06:10 +000016149Mon Jan 17 17:04:12 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16150
16151 * tree.c: fixed a hideous bug in xmlGetProp() thanks to
16152 Rune.Djurhuus@fast.no
16153
Daniel Veillardad8f99d2000-01-15 14:20:03 +000016154Sat Jan 15 15:09:06 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16155
16156 * TODO: updated
16157 * tree.c, parser.c: made sure that only memory alloc problems
16158 and internal parser errors are allowed to write to stdout or
16159 stderr.
16160
Daniel Veillard0142b842000-01-14 14:45:24 +000016161Thu Jan 13 11:49:11 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16162
16163 * tree.c : restored xmlNewGlobalNs since this seems used by
16164 a lot of existing code :-(, fixed a bug in xmlNewNs
16165 * nanohttp.c: fixed a problem with INCLUDE_WINSOCK
16166 * HTMLparser.c, parser.c, entities.c, valid.c : removed all calls
16167 to exit() from the library code.
16168 * xpath.c, parser.c: removed bugs or unused code detected by
16169 Windows compilers
16170 * parser.c: started adding interfaces for parsing well balanced
16171 XML fragments
16172 * configure.in: releasing 1.8.4
16173 * doc/* : rebuilt the docs
16174
Daniel Veillard2eac5032000-01-09 21:08:56 +000016175Sun Jan 9 23:03:20 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16176
16177 * tree.[ch] : added xmlNewDocFragment() for DOM
16178 * testHTML.c: uninitialized variable.
16179
Daniel Veillardf3a73582000-01-05 14:58:39 +000016180Wed Jan 5 17:29:17 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16181
16182 * doc/* : rebuild the docs
16183
Daniel Veillard71b656e2000-01-05 14:46:17 +000016184Wed Jan 5 17:08:43 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16185
16186 * acconfig.h: readline and history patch
16187 * valid.[ch]: added xmlRemoveID() and xmlRemoveRef()
16188 * tree.c: added check and handling when possibly removing an ID
16189 * tree.c, HTMLparser.h, HTMLtree.h: fixed entities parsing
16190 and saving.
16191 * test/HTML/entities.html result/HTML/entities.html* : test for
16192 various entities reference cases
16193 * result/HTML/* : as a result output of some testcase have
16194 changed
16195 * HTMLparser.c, parser.c: fixed a bug in the push mode triggered
16196 by previous example. added xmlParseTryOrFinish().
16197 * xpath.h tree.h parser.h valid.h xmlIO.h xlink.h encoding.h
16198 entities.h debugXML.h HTMLparser.h: changed the way struct are
16199 declared to allow gtk-doc to expose those
16200 * parser.c: closed bug #4960
16201 * Makefile.am configure.in: Applied patch from
16202 Albert Chin-A-Young <china@thewrittenword.com> for better zlib
16203 and math/socket libs detection
16204
Daniel Veillard437b87b2000-01-03 17:30:46 +000016205Mon Jan 3 18:29:43 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16206
16207 * configure.in, Makefile.am: link tester against readline
16208 * doc/xml.html doc/*/*: updated and rebuilt the documentation pages
16209
Daniel Veillard686d6b62000-01-03 11:08:02 +000016210Mon Jan 3 11:58:05 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
16211
16212 * tree.[ch]: added xmlRemoveProp
16213 * win32config.h.in nanohttp.c: avoid including the Windows
16214 socket stuff in every C files
16215 * parser.c: removed an indetermination xmLDecl/PI(xml...) in
16216 the XmL parser(s)
16217 * test/ns4 result/ns4 etc...: added test case for previous prob
16218 * tree.c: xmlNewNs wasn't checking for double definition
16219 * Makefile.in: fixed a problem with dist-hook duplicates
16220 * parser.[hc], xmlIO.c: fixed the loading of external entities
16221 APIs, now xmlLoadExternalEntity() is used everywhere and
16222 setting up an app specific front-end using the
16223 * SAX.c parser.c: some fixes, now the xhtml spec validates
16224 with the xhtml DTD.
16225 * error.c: fixed crashes in case of no input stream
16226 * test/valid/[dtds/]/xhtml* : added the xhtml spec and dtds
16227 to the validation tests and results
16228
Daniel Veillard5e5c6231999-12-29 12:49:06 +000016229Wed Dec 29 15:29:52 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16230
16231 * HTMLparser.[ch] testHTML.c: added push mode for the HTML parser
16232 too htmlCreatePushParserCtxt() and htmlParseChunk()
16233 * parser.c: a bit of cleanup.
16234 * SAX.c, HTMLparser.c: some attributes may not have values (contrary
16235 to XML) removed the last mem leak known
16236 * HTMLtree.c: output message cleanup
16237 * xmlmemory.c: display content info about memory blocks
16238 * result/HTML/wired.* : missing att value warning change
16239
Daniel Veillardbe849cf1999-12-28 16:43:59 +000016240Tue Dec 28 17:42:41 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16241
16242 * doc/* : rebuilt the documentation
16243
Daniel Veillarddbfd6411999-12-28 16:35:14 +000016244Tue Dec 28 18:44:22 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16245
16246 * parser.[ch] parserInternals.h: Push parser for XML,
16247 seems to work fine now
16248 * tester.c debugXML.[ch]: Added an XML shell debug facility and
16249 --push for push testing
16250 * xpath.[ch] : cleaned up for Shell usage, added missing APIs
16251 * testSAX.c: added --push
16252 * HTMLtree.[ch] tree.[ch]: new functions for dumping parts of the
16253 subtree
16254 * xmlIO.[ch] : enriched API + fixes for push mode
16255 * entities.[ch]: added the entity content length to the struct.
16256 * xmlmemory.[ch]: new API to show the last entries for the shell
16257 * valid.c: added required attribute testing
16258 * SAX.c: the cdata callback now merge contiguous fragments
16259 * HTMLparser.c: cleanup of some macros
16260
Daniel Veillard3c558c31999-12-22 11:30:41 +000016261Wed Dec 22 12:20:53 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16262
16263 * parser.c: fix for PIs name starting with xml
16264 * tree.c: fixed a potential problem with || and && ops
Daniel Veillardfef854d1999-12-22 11:31:10 +000016265 * *.c, configure.in win32config.h.in : generate win32config.h for
16266 those on the Other Side !
Daniel Veillard3c558c31999-12-22 11:30:41 +000016267
Daniel Veillard0caf07a1999-12-21 16:25:49 +000016268Tue Dec 21 17:22:17 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16269
16270 * parser.c: fixed a stupid = vs. == bug :-(
16271 * doc/gnome-xml.sgml: s/glade/xml/
16272
Daniel Veillard5cb5ab81999-12-21 15:35:29 +000016273Tue Dec 21 14:29:34 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16274
16275 * configure.in, doc/xml.html : bug fix release 1.8.2
16276 * debugXML.h nanohttp.h xml-error.h xmlmemory.h xpath.h :
16277 Hopefully the end of that silly C++ include problem
16278 * tree.[ch]: Added a few functions: xmlReplaceNode, xmlAddPrevSibling,
16279 xmlAddNextSibling, xmlNodeSetName and xmlDocSetRootElement
16280 * HTMLparser.c HTMLparser.h HTMLtree.c: When saving HTML try to avoid
16281 troubles with autoclosed elements when the stree shape doesn't
16282 follow the DtD specs. Added htmlIsAutoClosed() and
16283 htmlAutoCloseTag()
16284 * result/HTML/*.htm*: Updated the HTML examples regression tests output
16285 * SAX.c tree.c: fixed bug on defaulting namespaces on attributes
16286 * debugXML.c: fixed a bug on printing default namespaces.
16287 * HTMLtree.c: fixed a problem when outputing XML parsed docs as HTML
16288
Daniel Veillardb24054a1999-12-18 15:32:46 +000016289Mon Dec 20 16:20:55 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16290
16291 * result/HTML/*.htm[l] : updated the HTML regression tests according
16292 to the new output
16293 * xpath.h xml-error.h valid.h tree.h parser.h entities.h SAX.h
16294 HTMLtree.h tree.c entities.c: headers tweakings to avoid a nasty
16295 problem due to intermix of extern "C" { ... } declarations for C++
16296 and recursive includes in the headers
16297
Chris Lahey323c48c1999-12-18 15:32:45 +0000162981999-12-20 Chris Lahey <clahey@umich.edu>
16299
16300 * HTMLtree.c: Made it so that html nodes with a single child do
16301 not insert a carriage return before or after the child node.
16302
Daniel Veillardb24054a1999-12-18 15:32:46 +000016303Sat Dec 18 16:07:03 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard262f9cb1999-12-18 15:32:45 +000016304
16305 * configure.in, doc/xml.html : bug fix release 1.8.1
16306 * parser.c: fixed bug #4344
16307 * xpath.h xml-error.h xlink.h nanohttp.h debugXML.h SAX.h HTMLparser.h
16308 added the glue to avoid C++ problems
16309 * doc/* : regenerated the documentation
16310
Daniel Veillard6d3bf1f1999-12-16 17:52:19 +000016311Thu Dec 16 16:19:29 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16312
16313 * tree.c: fixed a bug introduced in 1.8.0 and breaking default
16314 namespace recognition, and Dia as a resul :-(
16315 * encoding.c: closed bug #3950
16316
Daniel Veillard944b5ff1999-12-15 19:08:24 +000016317Wed Dec 15 19:22:23 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16318
16319 * valid.c: debugging a posteriori validation, except URI expansion
16320 stuff this should be fixed now
16321 * parserInternals.h: fixed a bug in IS_BASECHAR reported by
16322 Carl Nygard <cnygard@bellatlantic.net>
16323 * tester.c: added --postvalid, cleaning of the code
16324 * tree.[ch]: added xmlDocGetRootElement()
16325
Ramiro Estrugobfce3771999-12-15 04:32:07 +000016326Tue Dec 14 20:30:34 PST 1999 Ramiro Estrugo <ramiro@eazel.com>
16327
16328 * SAX.h, tree.h : changed 'namespace' to 'nameSpace' to workaround
16329 c++ losage.
16330
Daniel Veillard10a2c651999-12-12 13:03:50 +000016331Sun Dec 12 13:08:15 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16332
16333 * configure.in, doc/xml.html : bumped to 1.8.0
16334 * xlink.[ch], Makefile.am : added framework for link detection
16335 * parser.h: added nbChars to parser context, needed for cleanup.
16336 * xmlmemory.c: removed a nasty bug when out of mem
16337 * valid.[ch]: adding namespace support for attribute decl
16338 * tester.c: added --debugent option
16339 * debugXML.[ch]: added xmlDebugDumpEntities()
16340 * parser.c: cleanup, avoiding use of CUR_PTR like plague, using
16341 buffers instead, this was really needed, validation was breaking
16342 in strange ways due to that. Added xmlParseStringPEReference()
16343 and other parsing from strings functions. Entities processing
16344 modified again, but PERef are still not handled correcly but
16345 unless you're Eve Maller you won't notice :-)
16346 * HTMLparser.c: large changes toward reliability, and switched to
16347 lowercase internal tags, XHTML is lowercase, so it will help
16348 that output is closer to next version.
16349 * doc/* : regenerated the documentation, it is now hosted at
16350 http://xmlsoft.org/ (same bits I just bought the domain :-)
16351
16352
Daniel Veillard294cbca1999-12-03 13:19:09 +000016353Fri Dec 3 13:46:32 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16354
16355 * SAX.h, SAX.c, makefile.am: added SAX.h mostly useful for the
16356 doc generation
16357 * parser.c: fixed bugs #3908 and #3937 and a memory leak
16358 in the SAX API
16359 * doc/*: rebuilt the doc making sure everything appears in the
16360 HTML files
16361
Daniel Veillardf5c2c871999-12-01 09:51:45 +000016362Wed Dec 1 10:27:47 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16363
16364 * tree.[ch] HTMLtree.c, debugXML.c, configure.in, xml-config.in:
16365 added the patch from Carl Nygard <cnygard@bellatlantic.net>
16366 which allow impressive speed improvement on dataset with
16367 large text pieces, but at the cost of broken binary
16368 compatibility and slightly bigger memory usage.
16369 Configure with --with-buffers to activate them, they
16370 are protected with XML_USE_BUFFER_CONTENT define.
16371 * entities.[ch], parser.c: added xmlCleanupPredefinedEntities(),
16372 goal is 0 memory left allocated once parser is no more used
16373 * testDAV.c, testHTML.c, testSAX.c, testXPath.c: make sure we
16374 call xmlCleanupParser() and xmlMemoryDump()
16375
Daniel Veillarda819dac1999-11-24 18:04:22 +000016376Wed Nov 24 19:00:06 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16377
16378 * tree.[ch] xmlIO.[ch] parser.c valid.c: code cleanup with -pedantic
16379 * parser.[ch] encoding.[ch]: added memory cleanup routines
16380 * parser.c: closing bug #3788
16381 * doc/*: rebuilt the doc
16382
Daniel Veillard11a48ec1999-11-23 10:40:46 +000016383Tue Nov 23 11:23:55 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16384
16385 * tree.[ch]: closing bug 3748, added xmlNewDocRawNode(),
16386 xmlNewTextChild() and xmlSetCompressMode() behaviour.
16387 * tester.c: added --compress option
16388 * doc/*: rebuilt the documentation
16389
Daniel Veillard4c3a2031999-11-19 17:46:26 +000016390Fri Nov 19 18:41:28 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16391
16392 * HTMLparser.c: bugfixing, the damn thing MUST not crash even
16393 if given /proc/kcore as input !
16394 * doc/xml.html doc/*: updated and rebuilt the documentation
16395
16396Thu Nov 18 14:57:18 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard07136651999-11-18 14:02:05 +000016397
16398 * parser.c: Fixed some wrongly space collapsing code due to
16399 a misreading of the spec.
16400 * result/*: fixed the output accordingly
16401
16402Wed Nov 17 18:28:06 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard7f858501999-11-17 17:32:38 +000016403
16404 * encoding.c: bug fix and typos
16405 * xmlIO.[ch] parser.c: first bits toward real progressive parsing
16406 * parser.c: added attribute normalization closing bug #3597
16407 * test/att* result/att* SAXresult/att*: testcase for attribute
16408 normalization
16409
Daniel Veillardd7e200c1999-11-15 17:53:11 +000016410Mon Nov 15 18:50:56 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16411
16412 * configure.in: closing bug #3163 by adding extra flags for the
16413 cc compiler on HP-UX
16414
Daniel Veillard51e3b151999-11-12 17:02:31 +000016415Fri Nov 12 17:41:20 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16416
16417 * valid.[ch] : removed a typo and an enumerated type bug in the
16418 xmlAddElementDecl() function
16419 * tree.c : I changed xmlSetProp() and xmlNewProp() to do the
16420 call to xmlEncodeEntitiesReentrant() so that the functions
16421 New, Set and Get are at the same level.
16422 * parser.c HTMLparser.c: extra memory allocation bug for
16423 attributes detected by someone using libxml in embedded systems :-)
16424
Daniel Veillard962195f1999-10-28 15:51:53 +000016425Thu Oct 28 17:49:26 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16426
16427 * xmlmemory.h: turned off mem debug :-\
16428
Daniel Veillard35008381999-10-25 13:15:52 +000016429Mon Oct 25 12:13:25 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16430
16431 * parser.c: closed bug #2784 a one line fix, but worth pushing
16432 a new release out
16433 * HTMLparser.c: fixed auto-close bugs on list items, zeroing
16434 some structures, comments before and after the
16435 main element, and other nastyness
16436 * HTMLtree.c tree.c: accomodate the extended HTML supported
16437 * configure.in: pushing 1.7.4
16438 * test/ent8 and related outputs : added a new test for bug #2784
16439 * test/HTML/wired.html and related output: a nasty HTML example
16440 * Makefile.am: improved the test scripts
16441 * docs/* : reran the documentation extractor, updated xml.html
16442
Daniel Veillard7c1206f1999-10-14 09:10:25 +000016443Thu Oct 14 10:29:56 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16444
16445 * HTMLparser.c, HTMLtree.c, tree.h: completely revamped the
16446 HTMLparser and debugged the HTML related code. HTML documents
16447 now have their own type
16448 * entities.c: do not dump &apos; for HTML output
16449 * xmlmemory.c: improvement, breakpoint mechanism
16450 * testHTML.c: added --sax --repeat ...
16451 * Makefile.am: improved the HTML tests
16452 * valid.[ch]: added xmlValidGetValidElements and
16453 xmlValidGetPotentialChildren
16454 * tester.c: added --insert to test the 2 new functions
16455 * test//* result//* SAXresult//* : regression test cleanup
16456 and extension.
16457 * doc/html : added doc for new modules gnome-xml-xmlmemory.html and
16458 gnome-xml-nanohttp.html
16459
Daniel Veillard7d2c2761999-10-11 15:09:51 +000016460Mon Oct 11 14:31:58 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16461
16462 * HTMLparser.c: fixed problems with some autoclose tags
16463 * tree.c: fixed XML output problems.
16464 * result/* SAXresult/*: update of the tests output
16465
Daniel Veillard6077d031999-10-09 09:11:45 +000016466Sat Oct 9 11:02:57 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16467
16468 * Makefile.am: Arturo patch for xmlConf.sh version info
16469 * parser.c: Tim Josling patch for single quoted items
16470 * tester.c: Tim Josling patch for tester options usage
16471 * tree.h: indent cleanup
16472
Daniel Veillard2673d3c1999-10-08 14:37:09 +000016473Fri Oct 8 16:35:37 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16474
16475 * HTMLparser.c parser.h : Fixed problems with HTML parsing
16476 reported by Kristian Hogsberg Kristensen <hogsberg@daimi.au.dk>
16477
Daniel Veillard00fdf371999-10-08 09:40:39 +000016478Fri Oct 8 11:37:11 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16479
16480 * tree.c : Raph patch for initialization of CORBA fields
16481 * parser.c, xpath.c, ...: modification of doc comments
16482 * xpath.c : allow spaces in xpath expressions
16483
Daniel Veillardad219441999-09-27 08:17:49 +000016484Mon Sep 27 10:16:43 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16485
16486 * xmlmemory.h: turning off memory debug :-(
16487
Daniel Veillard7a66ee61999-09-26 11:31:02 +000016488Sun Sep 26 13:16:54 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16489
16490 * parser.[ch] : added xmlSAXUserParseFile() and xmlSAXUserParseMemory()
16491 better SAX interfaces.
16492 * testSAX.c: uses the new SAX routine, avoid fetching any remote
16493 entity.
16494 * configure.in: 1.7.2
16495
16496Fri Sep 24 16:01:01 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard2f4dfc41999-09-24 14:03:48 +000016497
16498 * libxml.spec.in: fixed the URL
16499 * doc/xml.html: improved the documentation front-end
16500
Daniel Veillard7a66ee61999-09-26 11:31:02 +000016501Fri Sep 24 01:06:36 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard335849b1999-09-23 23:08:42 +000016502
16503 * nanohttp.c: conditionned references to snprintf with HAVE_SNPRINTF
16504
Daniel Veillard7a66ee61999-09-26 11:31:02 +000016505Fri Sep 24 00:15:58 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillarddd6b3671999-09-23 22:19:22 +000016506
16507 * libxml.spec.in: fixed the alpha compile problem
16508 * parser.[ch]: changed errno to errNo in the parser context :-(
16509 * *.[ch]: changed CHAR to xmlChar to avoid problem on WIN32
16510 * doc/xml.html: changed CHAR to xmlChar
16511 * doc/html/*: recompiled the documentation
16512 * configure.in: 1.7.1
16513
Daniel Veillard7f7d1111999-09-22 09:46:25 +000016514Wed Sep 22 11:40:31 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16515
16516 * parser.h: modified the parser context struct to regain 1.4.0
16517 binary compatibility
16518 * parser.c, xml-error.h: added errno ot teh context and defined
16519 a set of errors values with update of errno
16520 * nanohttp.[ch]: minimalist HTTP front-end for fetching remote
16521 DTDs and entities
16522 * *.h, *.c: complete cleanup of the use of config.h and include
16523 protection depending on the current setup.
16524 * overalll debugging, maintenance and bug-fixing on all modules
16525 * updated the documentation
16526 * ready for 1.7.0
16527
Daniel Veillardc08a2c61999-09-08 21:35:25 +000016528Wed Sep 8 22:46:14 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16529
16530 * HTMLparser.c : cleanup
16531 * SAX.c valid.c valid.h: added ID/IDREF checking
16532 * tree.c tree.h: extended doc structure for refs
16533 * configure.in: 1.6.2
16534 * parser.c: patched bug in SAX user arg call
16535 * parserInternals.h: patched missing close in C++ wrapping
16536 * testXPath.c xpath.c xpath.h: prepared for extensibility,
16537 especially upcoming XPointer implementation.
16538 * doc/xml.html: augmented, typo
16539
CEST 1999 Timur Bakeyev72bd1001999-09-04 20:50:25 +000016540Sat Sep 4 22:48:05 CEST 1999 Timur Bakeyev <mc@bat.ru>
16541
16542 * doc/Makefile.am: replaced "install -d " with "mkinstalldirs" -
16543 not all invocations of install understand -d.
16544
CEST 1999 Timur Bakeyev6db3cb01999-09-04 20:25:14 +000016545Sat Sep 4 22:20:07 CEST 1999 Timur Bakeyev <mc@bat.ru>
16546
16547 * Makefile.am: prepend all the test* calls with $(top_builddir) -
16548 to make 'check' works, when builddir != srcdir.
16549
Daniel Veillardc8eab3a1999-09-04 18:27:23 +000016550Sat Sep 4 20:25:46 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16551
16552 * doc/xml.html : updated the documentation
16553
Daniel Veillard6454aec1999-09-02 22:04:43 +000016554Fri Sep 3 00:01:08 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16555
16556 * xmlmemory.[ch] Makefile.am :added a memory wrapper to chase
16557 not deallocated memory blocks
16558 * *.c : replaces all calls to malloc() free() and realloc() to
16559 the wrapper functions/macros
16560 * tree.c : removed memory leaks dues to calling xmlFreeNode()
16561 instead of xmlFreeNodeList()
16562
Daniel Veillard1ff7ae31999-09-01 12:19:13 +000016563Wed Sep 1 14:15:09 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16564
16565 * HTMLparser.c: corrected a stupid bug leading to core dump at
16566 tree deallocation. Removed warnings indicated by
16567 Stephane.Conversy@lri.fr
16568 * entities.c: Fixes Yet Another Stupid Bug, entities were not
16569 looked for in the external subset
16570
16571Mon Aug 30 13:22:26 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillardc26087b1999-08-30 11:23:51 +000016572
16573 * parser.c valid.[ch] xpath.c: patched compilation warnings reported
16574 on SGI by Stephane.Conversy@lri.fr
16575
Daniel Veillardb96e6431999-08-29 21:02:19 +000016576Sun Aug 29 22:27:29 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16577
16578 * all .h : changed the prototype declaration indent as in gtk
16579 * most .c : working on reducing the TODOs in the code
16580 * most .c : cleanup though -pedantic and Insure++
16581 * improvements on validation ID checkings.
16582 * tree.[ch] SAX.c: added support for namespace on attributes #2022
16583 * xml-config.in: closed #1810
16584
16585Mon Aug 16 03:27:38 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard991e63d1999-08-15 23:32:28 +000016586
16587 * tree.h, valid.c, valid.h: more work on validity, IDs
16588 * xpath.c: added/fixed comparidon and equlity, added a new isinf
16589 definition for AIX
16590
Daniel Veillardb556eb51999-08-15 17:19:50 +000016591Sun Aug 15 21:15:17 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16592
16593 * Makefile.am libxml.spec.in: corrected missing xmlConf.sh in
16594 the distribution due to a cut'n paste error at last commit
16595
Daniel Veillardb05deb71999-08-10 19:04:08 +000016596Tue Aug 10 20:28:09 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16597
16598 * configure.in: upgraded to version 1.4.0
16599 * valid.[ch], SAX.c, parser.[ch] parserInternals.h ...
16600 Big update, added a large part of the validation process,
16601 it should be usable, but some parts are missing
16602 * xpath.c: improved the implementation w.r.t. root.
16603 * Makefile.am: added more tests
16604 * test and result trees: added a lot of tests
16605 * libxml.spec.in: export libxml.so.0 and libxml.so.1
16606
Daniel Veillard6a6ccc11999-08-10 09:34:35 +000016607Tue Aug 10 11:33:41 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16608
16609 * Added an HACKING file
16610
Daniel Veillarde2d034d1999-07-27 19:52:06 +000016611Tue Jul 27 21:43:00 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16612
16613 * xpath.[ch] : improvements and debug of the XPath implementation
16614 * parser.c, HTMLparser.c : modified the parsers to be progressive
16615 * tree.[ch] : extended the Buffer promitives
16616 * xmlIO.[ch] : added basic I/O routines providing progressive
16617 parsing and ready for I18N conversion plugins
16618 * SAXresult/* : the SAX callback sequence maybe slightly different
16619 now
16620 * test*.c : improved/updated the tests programs
16621 * doc/* : recompiled the docs.
16622
Daniel Veillard15b75af1999-07-26 16:42:37 +0000166231999-07-26 Michael Meeks <michael@edenproject.org>
16624
16625 * tree.h: Add const to 'content' in xmlNewDocNode, xmlNewChild
16626
16627 * tree.c: Ditto.
16628
Daniel Veillard1566d3a1999-07-15 14:24:29 +000016629Thu Jul 15 16:17:16 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16630
16631 * configure.in: upgraded to version 1.4.0
16632 * xpath.c, xpath.h, testXPath.c, makefile.am: added code for the XPath
16633 draft from W3C. Will be used by XPointer, Xlink, XSL, and possibly
16634 XML query language, see http://www.w3.org/TR/xpath for more details.
16635 * parser.c, parser.h: added CHAR* related string functions for XPath
16636 * HTMLparser.[ch], HTMLtree.c: a bit of cleanup on entities.
16637 * doc/gnome-xml.sgml, doc/html/* : added XPath and HTML documentation,
16638 rebuild the docs.
16639 * Makefile.am, test/XPath/*, result/XPath/*: added an XPathtests target
16640 and regression testing capabilities for XPath.
16641
Daniel Veillardd79d7871999-07-12 10:38:12 +000016642Mon Jul 12 12:36:39 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16643
16644 * parser.c, HTMLparser.c: applied patch from John Ellson <ellson@lucent.com>
16645 closing bug #1646
16646
Daniel Veillardbe9e5951999-07-12 09:16:45 +000016647Mon Jul 12 11:04:44 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16648
16649 * Makefile.am, example/Makefile.am: closed bug #1683
16650
Daniel Veillard3166ab11999-07-11 16:14:19 +000016651Sun Jul 11 18:16:34 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16652
16653 * example/Makefile.am, configure.in: added the makefile for the
16654 gjobread example
16655
Tomasz Kłoczkoa75b6b31999-07-10 12:21:13 +000016656Sat Jul 10 14:19:11 CEST 1999 Tomasz K³oczko <kloczek@pld.org.pl>
16657
16658 * doc/Makefile.am:
16659 - fix which allow "make install DESTDIR=</install/prefix>".
16660
Daniel Veillard7cc3c041999-07-09 10:11:57 +000016661Fri Jul 9 12:10:24 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16662
16663 * HTMLparser.c parser.c: applied patch from John Ellson <ellson@lucent.com>
16664 which fixed a problem on the file reading-code.
16665
Daniel Veillard82150d81999-07-07 07:32:15 +000016666Wed Jul 7 09:28:43 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16667
16668 * HTMLparser.[ch], HTMLtree.[ch]: more work for HTML parsing and
16669 output.
16670 * Makefile.am, test/HTML/*, result/HTML/*: added HTMLtests targetestHTMLt
16671
Daniel Veillard5233ffc1999-07-06 22:25:25 +000016672Wed Jul 7 00:25:42 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16673
16674 * parser.h : Oops removed the binary compatibility problem
16675 * HTMLparser.[ch], HTMLtree.h : More work on the HTML parse/dump
16676 * parser.c, HTMLparser.c: applied patches for reading from stdin
16677
Daniel Veillardbe70ff71999-07-05 16:50:46 +000016678Mon Jul 5 18:45:31 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16679
16680 * parser.c, entities.c, valid.c: cleanup bug #1591
16681 * configure.in: cleanup bug #1592
16682 * HTMLparser.[ch], testHTML.c: started adding an HTML parser using
16683 the same tree back-end. Hence gdome will be available for it.
16684 * doc/Makefile.am: close bug #617
16685
Daniel Veillard97fea181999-06-26 23:07:37 +000016686Sat Jun 26 23:36:38 EDT 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16687
16688 * parser.c: alloctate a per parser context SAX interface block
16689
Daniel Veillard14fff061999-06-22 21:49:07 +000016690Tue Jun 22 23:46:32 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16691
16692 * released 1.3.0 with xmlEncodeEntities restoring old behaviour
16693 and xmlEncodeEntitiesReentrant with the correct one :-\
16694
16695Mon Jun 21 14:07:53 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16696
16697 * commit of my internal XML base changes, quite a lot of
16698 changes, cleanups, better entities support, framework for
16699 new I/O and charset detection and handling
16700 * Fixed the configure/Makefile stuff to generate shared libs
16701 with the proper version info, so we jumped on rev from
16702 0.0.0 to 1.2.0 ! The binary interfaces have been broken,
16703 xmlEncodeEntities() result need to be freed now, and a string
16704 xmlParserVersion provide the current library version.
16705
Raph Levien05240da1999-06-15 21:27:11 +000016706Tue Jun 15 14:24:19 1999 Raph Levien <raph@acm.org>
16707
16708 * parser.c: fixed a buffer overrun for when you have a very long
16709 attribute with no entities in it.
16710
Daniel Veillardbb2da581999-06-13 14:37:07 +000016711Mon Jun 14 00:17:50 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16712
16713 * added example directory
16714 * added example/gjobs.xml gjobread.c, still need a Makefile.in
16715
Daniel Veillard011b63c1999-06-02 17:44:04 +000016716Wed Jun 2 19:40:58 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16717
16718 * Release of libxml-1.1, nearly everything has been touched for
16719 this.
16720 * Added more regression tests
16721 * Updated the documentation
16722
Daniel Veillard27d88741999-05-29 11:51:49 +000016723Sat May 29 13:34:42 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16724
16725 * tree.[ch]: unified the XML_NO_CORBA defines.
16726 * parser.c encoding.[ch]: started plugging in char encoding detection
16727
Manish Vachharajani5e60f5a1999-05-29 03:04:30 +000016728Fri May 28 22:58:42 EDT 1999 Manish Vachharajani <mvachhar@vger.rutgers.edu>
16729
16730 * tree.c: (xmlSaveFile) - removed double call of xmlContentDump.
16731 Also freed allocated buffer.
16732
Daniel Veillard27d88741999-05-29 11:51:49 +000016733Wed Apr 21 22:07:35 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard5099ae81999-04-21 20:12:07 +000016734 * parser.[ch] tree.[ch] entities.[ch] valid.[ch] : removed the main
16735 reentrancy problem at printing. One is left in entities.c, to
16736 remove ASAP
16737 * testSAX.c : added a test example showing the use of the SAX
16738 interface if one doesn't want to build the DOM tree.
16739 * html/gnome-xml-*.html html/index.sgml: regenerated the documentation
16740
Daniel Veillard517752b1999-04-05 12:20:10 +000016741Mon Apr 5 14:14:40 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16742
16743 * parser.[ch] tree.[ch] SAX.c, parserInternals.h valid.[ch]:
16744 large revamping of the parser to use SAX callbacks
16745 http://www.megginson.com/SAX/ (or at least a C like interface
16746 a la Expat). It's now possible to set up your own callbacks
16747 and the parser will not build a DOM tree.
16748 * test/* result/*: updated the test suite, I finally removed
16749 the old Namespace draft support (PI based).
16750
Daniel Veillard87c83bd1999-04-02 16:04:43 +000016751Fri Apr 2 17:57:32 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16752
16753 * Makefile.am: added test result to EXTRA_DIST for make tests
16754
Daniel Veillard64068b31999-03-24 20:42:16 +000016755Wed Mar 24 21:37:02 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16756
16757 * parser.c, parserInternals.h: moved the chars macro definitions
16758 to parserInternals.h
16759 * parser.c, error.c: applied patches from "Knut Åkesson"
16760 <ka@s2.chalmers.se> for clean compilation under MSVC 6 :-o
16761
Daniel Veillard012ccc11999-03-23 10:11:11 +000016762Tue Mar 23 11:10:15 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16763
16764 * xml-config.in : applied patch to make --version work
16765
Raja R Harinatha86c23e1999-03-05 22:14:01 +0000167661999-03-05 Raja R Harinath <harinath@cs.umn.edu>
16767
16768 * Makefile.am (check-local): Alias for `tests' target. This will
16769 cause `make check' to do the right thing.
16770 (tests): Don't run tests in srcdir. Also, replaced calls to
16771 basename with a `sed' "equivalent".
16772
Daniel Veillardd109e371999-03-05 06:26:45 +000016773Fri Mar 5 07:23:53 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16774
16775 * Renamed error.h to xml-error.h, corrected Makefile.am to list
16776 it in the header and not the sources, updated the doc.
16777 Thanks to Tim Mooney <mooney@dogbert.cc.ndsu.nodak.edu> for
16778 pointing this out.
16779
Daniel Veillardbc50b591999-03-01 12:28:53 +000016780Mon Mar 1 13:27:17 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16781
16782 * parser.c, parser.h, parserInternals.h: memory leak hunting,
16783 exported the inputStream routines.
16784 * doc/html/* : updated accordingly
16785
Daniel Veillardd692aa41999-02-28 21:54:31 +000016786Sun Feb 28 22:51:33 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16787
16788 * parser.c, parser.h, parserInternals.h: added a few extra
16789 internal calls to allocate and free parser contexts ...
16790 * doc/html/* : updated accordingly
16791
Daniel Veillard55a99271999-02-25 11:01:29 +000016792Thu Feb 25 11:52:24 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16793
16794 * configure.in, Makefile.am, doc/makefile.am : General changes for
16795 1.0.0 release and including the generated HTML documentation.
16796
Daniel Veillard35925471999-02-25 08:46:07 +000016797Thu Feb 25 09:44:52 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16798
16799 * makefile.am : added parserInternals.h, oops.
16800
Daniel Veillard1e346af1999-02-22 10:33:01 +000016801Mon Feb 22 11:24:56 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16802
16803 * parserInternals.h: added this header giving access to the parser
16804 internal functions.
16805 * doc/Makefile.am : added a rebuild target which rebuilds the full
16806 set of documentations
16807 * parser.[ch] tree.[ch] valid.[ch]: serious updates w.r.t. parsing
16808 the internal subset.
16809 * *.c *.h: modifications needed to generate the documentation using
16810 gtk-doc, cleanup of functions blocks, reorganisation of struct
16811 declarations.
16812
Daniel Veillard1164e751999-02-16 16:29:17 +000016813Tue Feb 16 17:27:29 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16814
16815 * Makefile.am, spec, doc/Makefile.am : upgrading to 0.99.8, fixing
16816 the tar and spec file to include the beginning of the doc.
16817
Nuno Ferreira03d04781999-02-13 00:07:17 +0000168181999-02-13 Nuno Ferreira <nmrf@rnl.ist.utl.pt>
16819
16820 * doc/.cvsignore: Added this file.
16821
Daniel Veillard6800ef31999-02-08 18:33:22 +000016822Mon Feb 8 19:27:56 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16823
16824 * tree.c: fixed xmlGetProp to return "" when the attribute
16825 exists, even if the node-list is NULL.
16826
Daniel Veillard726c7e31999-02-08 15:13:10 +000016827Mon Feb 8 16:10:15 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16828
16829 * tree.c: patched an error outputting empty attribute values.
16830 * Makefile.am and doc/makefile.am: have been updated during the
16831 week-end. Sorry for an empty CVS log, I got a shell problem.
16832
Daniel Veillard1899e851999-02-01 12:18:54 +000016833Mon Feb 1 12:10:13 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16834
16835 * tree.h: cleaned up using enums instead of defines
16836 * parser.c, valid.[ch]: more work on parsing/output of element
16837 declarations
16838
Daniel Veillard3b9def11999-01-31 22:15:06 +000016839Sun Jan 31 22:06:48 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16840
16841 * valid.[ch], tree.c, parser.c : more work toward full parsing
16842 of XML DTDs.
16843 * README: added informations about mailing-list and on-line
16844 documentation
16845
Raja R Harinath7eb5c4f1999-01-27 23:01:51 +0000168461999-01-27 Raja R Harinath <harinath@cs.umn.edu>
16847
16848 * configure.in (XML_INCLUDEDIR): Use -I not -L for includes.
16849
Daniel Veillard39a1f9a1999-01-17 19:11:59 +000016850Sun Jan 17 20:06:36 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16851
16852 * parser.c, tree.[ch] : more work toward conformance testing,
16853 added a last element to accelerate parsing of very flat structures
16854 started working on internal subset Element content declaration.
16855 * valid.[ch] : first cut at adding code toward validation.
16856 * previous changes had also small impact on most files, especially
16857 the conformance testing using James Clark test suite.
16858
Daniel Veillard3c2c2ce1999-01-17 13:48:01 +000016859Sun Jan 17 14:45:06 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
16860
16861 * test/* : updated the examples, most of them were not well
16862 formed (humm), and added rdf2.
16863 * result/* : resulting changes in the output.
16864
Daniel Veillard7c92c0a1998-12-06 18:08:28 +000016865Sun Dec 6 13:06:58 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
16866
16867 * tree.c: changed the behaviour of xmlGetProp on NULL values.
16868
Daniel Veillard44b3a061998-12-05 17:27:22 +000016869Sat Dec 5 12:25:09 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
16870
16871 * tree.c: patched a bug in the generation of empty attributes
16872
Daniel Veillardbe36afe1998-11-27 06:39:50 +000016873Fri Nov 27 01:36:54 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
16874
16875 * entities.[ch], tree.[ch], tester.c: added copy interfaces
16876 for node/trees/documents/... Biggest problem is namespace
16877 support when copying subtrees.
16878
Daniel Veillard8cc0d1f1998-11-16 01:04:26 +000016879Sun Nov 15 19:59:47 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
16880
16881 * parser.c, entities.c: improve entities and char ref encoding,
16882 and cleanups of error messages.
16883
Daniel Veillard242590e1998-11-13 18:04:35 +000016884Fri Nov 13 13:03:10 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
16885
16886 * parser.c, entities.c: simple bug hunting done during rpm2html and
16887 rpmfind integration.
16888
Daniel Veillard42dc9b31998-11-09 01:17:21 +000016889Sun Nov 8 13:11:07 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
16890
16891 * parser.[ch]: Added interfaces allowing to specify a SAX
16892 handler before parsing.
16893
Daniel Veillarde3bffb91998-11-08 14:40:56 +000016894Sun Nov 8 09:39:17 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
16895
16896 * parser.c: redirrect all errors reporting through the SAX
16897 error function
16898
Daniel Veillardda4d3c41998-11-04 20:07:05 +000016899Wed Nov 4 14:21:54 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
16900
16901 * entities.c: rather use HAVE_SNPRINTF and not depend on glib
16902 * libtool, tlmain ...: update of the libtool files
16903
Miguel de Icaza442321c1998-11-04 18:13:38 +0000169041998-11-04 Miguel de Icaza <miguel@nuclecu.unam.mx>
16905
16906 * entities.c: Use g_snprintf insteda of snprintf.
16907
Daniel Veillard0ba4d531998-11-01 19:34:31 +000016908Sun Nov 1 14:31:06 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
16909
16910 * entities.c, parser.c: debug and cleanup of CharRef handling/saving.
16911 added ent5 test for this purpose.
16912 * parser.c, parser.h: formatting, comments and UTF-8 planning.
16913
Daniel Veillard27271681998-10-30 06:39:40 +000016914Fri Oct 30 01:36:52 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
16915
16916 * parser.c: fixed? a strange error due to compression on a GWP
16917 document.
16918
Daniel Veillard25940b71998-10-29 05:51:30 +000016919Thu Oct 29 00:48:45 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
16920
16921 * tree.[ch]: bug fixing
16922 * entities.[ch]: defined a specific type for predefined entities
16923 * doc/xml.html: more documentation on the library, how to use it,
16924 overview of the interfaces.
16925
Daniel Veillard16253641998-10-28 22:58:05 +000016926Wed Oct 28 17:56:35 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
16927
16928 * tree.[ch]: more cleanup on the API, made the tree mor conformant.
16929
Daniel Veillardbaf4cd51998-10-27 22:56:57 +000016930Tue Oct 27 17:54:00 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
16931
Daniel Veillard10c6a8f1998-10-28 01:00:12 +000016932 * tree.c: corrected a small bug
16933 * doc/xml.html: continuing writing documentation.
16934
16935Tue Oct 27 17:54:00 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
16936
Daniel Veillardbaf4cd51998-10-27 22:56:57 +000016937 * debugXML.h debugXML.c: added debugging utilities.
16938 * tester.c: added --debug switch.
16939 * tree.c: patched an incorrect node->type assignment.
16940 * parser.c: formatting, ensure that node->doc != NULL in attributes
16941
Daniel Veillardccb09631998-10-27 06:21:04 +000016942Tue Oct 27 01:15:39 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
16943
16944 * parser.[ch] SAX.c tree.[ch]: large amount of changes to improve
16945 entity support and provide an internal representation close to
16946 DOM one (entity ref nodes, and attribute value as tree). I tried
16947 to preserve the interface but this will surely break some apps
16948 (I have to change rpm2html/rpmfind for example). I had to change
16949 two interfaces, and the generated tree is somewhat different.
16950 * doc/* : started documenting the XML library, the tree and
16951 DOM/Corba. This is a first step.
16952
Daniel Veillard11e00581998-10-24 18:27:49 +000016953Sat Oct 24 14:23:51 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
16954
16955 * parser.c: Set up the fonctions comment block, boring but useful.
16956 * parser.h, SAX.c, parser.c: now attributes are processed through
16957 the SAX interface. The problem is that my SAX interface diverged
16958 quite a bit from the original one, well this is not an official
16959 spec, and translating it from Java to C is hairy anyway...
16960
Daniel Veillard97b58771998-10-20 06:14:16 +000016961Tue Oct 20 02:11:21 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
16962
16963 * SAX.c, entities.c, tree.c, encoding.c, error.c: Set up the
16964 fonctions comment block, boring but useful.
16965
16966Sun Oct 18 20:40:58 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard891e4041998-10-19 00:43:02 +000016967
16968 * encoding.[ch], Makefile.am: Added the UTF-8, UTF-16 and ISO Latin 1
16969 conversion routines. However they are not yet used to convert the
16970 inputs. The core will run with UTF-8.
16971
Daniel Veillard33942841998-10-18 19:12:41 +000016972Sun Oct 18 15:08:19 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
16973
16974 * tree.c : make sure that the type id is properly set-up when
16975 a new object is allocated, needed for DOM.
16976
Daniel Veillard27fb0751998-10-17 06:47:46 +000016977Sat Oct 17 02:43:21 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
16978
16979 * tree.h, tree.c: Ok, the main objects in the tree will be native
16980 corba objects, it costs 8 bytes per Node, Attribute and Document
16981 but it simplifies the Corba integration a lot (no extra interface
16982 objects to allocate/free).
16983
Daniel Veillard0bef1311998-10-14 02:36:47 +000016984Tue Oct 13 21:46:57 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
16985
16986 * tree.h, tree.c, parser.c: added prev and doc pointers to Node,
16987 and changed NODEs contants for conformity with DOM Level 1
16988
Daniel Veillard27864701998-10-08 03:47:24 +000016989Wed Oct 7 23:42:46 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
16990
16991 * added hooks to keep track of servants when creating objects
16992 xmlDoc and xmlNode (for Corba export).
16993
Daniel Veillarda6e1d121998-10-04 14:41:05 +000016994Sun Oct 4 03:18:09 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
16995
16996 * added xml-config script.
16997
Daniel Veillard7066a791998-10-01 20:28:28 +000016998Thu Oct 1 16:22:37 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
16999
17000 * autogen.sh : applied patch from Frederic Devernay <devernay@istar.fr>
17001 to autoupdate libtool and automake conf files.
17002
Miguel de Icaza60681bd1998-09-30 19:28:59 +0000170031998-09-30 Miguel de Icaza <miguel@nuclecu.unam.mx>
17004
17005 * Makefile.am: Use '?' to separate the sed
17006 commands as ',' is used when people pass -Wl,something.
17007
17008
Daniel Veillard15a8df41998-09-24 19:15:06 +000017009Thu Sep 24 15:13:29 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
17010
17011 * tree.c, tree.h: added a per-document compression interface.
17012
Daniel Veillard151b1b01998-09-23 00:49:46 +000017013Tue Sep 22 20:47:38 EDT 1998
17014
17015 * tree.c, tree.h: added saving with compression and added interfaces
17016 to control the compression level (xmlGetCompressMode,
17017 xmlSetCompressMode) and a new save to filename function (xmlSaveFile).
17018
Daniel Veillard70120ff1998-09-22 00:24:21 +000017019Mon Sep 21 20:11:13 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
17020
17021 * parser.c: corrected a loop for files of size 0
17022
Raja R Harinathd2e3abd1998-08-20 21:52:38 +0000170231998-08-20 Raja R Harinath <harinath@cs.umn.edu>
17024
17025 * error.h: New file. Contains prototyes from `error.c'.
17026
Tom Tromeyc19653d1998-08-14 01:22:43 +000017027Thu Aug 13 19:02:34 1998 Tom Tromey <tromey@cygnus.com>
17028
17029 * Makefile.am (xmlincdir): New macro.
17030 (xmlinc_HEADERS): Renamed from include_HEADERS.
17031
Daniel Veillard845664d1998-08-13 04:43:19 +000017032Thu Aug 13 00:40:14 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
17033
17034 * applied small patch on numeric entities from
17035 Christopher Blizzard <blizzard@appliedtheory.com>
17036
Daniel Veillard260a68f1998-08-13 03:39:55 +000017037Wed Aug 12 23:12:58 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
17038
17039 * New release 0.2, removed the old xml_* files so that it's
17040 coherent with the other CVS base (W3C), far better conformance
17041 to standard, new namespaces, decent entities support, beginning
17042 of a SAX-like interface. Nearly nothing left intact, even the
17043 test examples ...
17044
Christopher Blizzarda36749e1998-07-30 21:47:18 +0000170451998-07-30 Christopher Blizzard <blizzard@appliedtheory.com>
17046
17047 * .cvsignore: Add .deps dir
17048
Daniel Veillardf8015fa1998-07-26 21:31:38 +000017049Sun Jul 26 17:29:52 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
17050
17051 * xml_tree: changed the memory allocation scheme for name in xmlNewNode
17052
Daniel Veillardfe926001998-07-26 04:28:20 +000017053Sun Jul 26 00:17:51 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard01791d51998-07-24 19:24:09 +000017054
Daniel Veillardfe926001998-07-26 04:28:20 +000017055 * configure.in: added test for CPP
17056 * AUTHORS, Changelog: the original ones didn't get commited but the
17057 glib ones instead, fixed.
17058 * Makefile.am: corrected an error in library naming
Daniel Veillard01791d51998-07-24 19:24:09 +000017059
Daniel Veillardfe926001998-07-26 04:28:20 +000017060Fri Jul 24 16:47:14 1998 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard01791d51998-07-24 19:24:09 +000017061
Daniel Veillardfe926001998-07-26 04:28:20 +000017062 * integrated code developped at W3C
17063 * changed the original Copyright
17064 * migrated to automake
17065 * prefixed the filenames by xml_ to avoid filename clashes
Daniel Veillard01791d51998-07-24 19:24:09 +000017066