blob: 474ae3da6090fe163405f5ec8d1d35c19addd33a [file] [log] [blame]
Daniel Veillard7b4b2f92003-01-06 13:11:20 +00001Mon Jan 6 14:06:07 CET 2003 Daniel Veillard <daniel@veillard.com>
2
3 * configure.in NEWS: preparing 2.5.0 release
4 * SAX.c: only warn in pedantic mode about namespace name
5 brokeness
6 * globals.c: fix a doc generation problem
7 * uri.c: fix #101520
8 * doc/*: updated and rebuilt the doc for the release, includuding
9 stylesheet update
10 * python/Makefile.am: fix a filename bug
11
12Mon Jan 6 12:05:12 CET 2003 Daniel Veillard <daniel@veillard.com>
13
14 * doc/tutorial/* : fixed #101894 if doc == NULL xmlFreeDoc
15 should not be called.
16
17Mon Jan 6 11:59:09 CET 2003 Daniel Veillard <daniel@veillard.com>
18
19 * libxml-2.0.pc.in: applied the patch to fix #101894
20
21Sun Jan 5 23:35:47 CET 2003 Daniel Veillard <daniel@veillard.com>
22
23 * tree.c : applied patch from Lukas Schroeder for register callbacks
24 * valid.c: modified patch from Lukas Schroeder to test
25 register callbacks with --chkregister
26
27Sun Jan 5 02:23:20 CET 2003 Daniel Veillard <daniel@veillard.com>
28
29 * xmlreader.c: seriously changed the way data are pushed to
30 the underlying parser, go by block of 512 bytes instead of
31 tryng to detect tag boundaries at that level. Changed the
32 way empty element are detected and tagged.
33 * python/tests/reader.py python/tests/reader2.py
34 python/tests/reader3.py: small changes mostly due to context
35 reporting being different and DTD node being reported. Some
36 errors previously undetected are now caught and fixed.
37 * doc/xmlreader.html: flagged last section as TODO
38
39Sat Jan 4 20:40:28 CET 2003 Daniel Veillard <daniel@veillard.com>
40
41 * python/libxml.py: integrated the Python 2.2 optimizations
42 from Hannu Krosing, while maintaining compatibility with
43 1.5 and 2.1
44
45Sat Jan 4 17:33:17 CET 2003 Daniel Veillard <daniel@veillard.com>
46
47 * xmllint.c: a bit of cleanup
48 * xmlreader.c: small fix
49 * doc/xmlreader.html: more work on the XmlTextReader tutorial
50 * python/libxml.py: a few fixes pointed out by Hannu Krosing
51
52Sat Jan 4 13:46:14 CET 2003 Daniel Veillard <daniel@veillard.com>
53
54 * python/setup.py.in: patch from Stéphane Bidoul to include
55 drv_libxml2.py in setup.py
56
57Sat Jan 4 01:43:06 CET 2003 Daniel Veillard <daniel@veillard.com>
58
59 * doc/xmlreader.html: starting documenting the new XmlTextReader
60 interface.
61
62Fri Jan 3 17:18:32 CET 2003 Daniel Veillard <daniel@veillard.com>
63
64 * xmllint.c: added the --stream flag to use the TextReader API
65 * xmlreader.c: small performance tweak
66
67Fri Jan 3 13:50:55 CET 2003 Daniel Veillard <daniel@veillard.com>
68
69 * xmlreader.c python/tests/reader2py: okay the DTD validation
70 code on top of the XMLTextParser API should be solid now.
71
72Fri Jan 3 02:17:18 CET 2003 Daniel Veillard <daniel@veillard.com>
73
74 * xmlreader.c python/tests/reader2py: Fixing some more mess
75 with validation and recursive entities while using the
76 reader interface, it's getting a bit messy...
77
78Thu Jan 2 15:15:26 CET 2003 Daniel Veillard <daniel@veillard.com>
79
80 * xmlreader.c python/tests/reader.py: another couple of problem
81 related to IsEmptyElement reported by Stéphane Bidoul needed
82 some fixes.
83
84Thu Jan 2 13:57:07 CET 2003 Daniel Veillard <daniel@veillard.com>
85
86 * libxml.spec.in python/Makefile.am python/drv_libxml2.py:
87 integrated drv_libxml2.py Python xml.sax driver from Stéphane Bidoul
88 based on the python XmlTextReader interface.
89
90Wed Jan 1 22:05:40 CET 2003 Daniel Veillard <daniel@veillard.com>
91
92 * tree.c: backing out one change in the last patch which broke the
93 regression tests
94
95Wed Jan 1 21:57:28 CET 2003 Daniel Veillard <daniel@veillard.com>
96
97 * global.data globals.c tree.c include/libxml/globals.h: applied
98 an old patch from Lukas Schroeder to track node creation and
99 destruction. Probably missing a lot of references at the moment
100 and not usable reliably.
101
102Wed Jan 1 20:12:07 CET 2003 Daniel Veillard <daniel@veillard.com>
103
104 * NEWS doc/Makefile.am doc/news.xsl: generate the NEWS file
105 from doc/news.html and a stylesheet
106
107Wed Jan 1 16:09:57 CET 2003 Daniel Veillard <daniel@veillard.com>
108
109 * xmlreader.c python/tests/reader.py: fixed another couple of
110 xmlreader bugs reported by Stéphane Bidoul and added tests.
111
112Wed Jan 1 15:42:54 CET 2003 Daniel Veillard <daniel@veillard.com>
113
114 * xmlreader.c python/tests/reader2.py: fixed another validity
115 checking in external parsed entities raised by Stéphane Bidoul
116 and added a specific regression test.
117 * python/tests/reader3.py: cleanup
118
119Tue Dec 31 15:44:02 CET 2002 Daniel Veillard <daniel@veillard.com>
120
121 * xmlreader.c python/tests/reader2.py: fixed a problem with
122 validation within entities pointed by Stéphane Bidoul, augmented
123 the tests to catch those.
124
125Tue Dec 31 12:15:37 CET 2002 Daniel Veillard <daniel@veillard.com>
126
127 * python/generator.py: modified the generator to allow keeping
128 class references when creating new classes, needed to fix a bug
129 pointed by Stéphane Bidoul where the input buffer of the
130 xmlTextReader instance gets destroyed if the python wrapper for
131 the input is not referenced anymore.
132
133Mon Dec 30 19:39:36 CET 2002 Daniel Veillard <daniel@veillard.com>
134
135 * xmlreader.c python/tests/reader.py: fixed another pair of problem
136 pointed by Stéphane Bidoul: depth start at 0 and a parse problem.
137
138Mon Dec 30 13:36:50 CET 2002 Daniel Veillard <daniel@veillard.com>
139
140 * xmlreader.c python/tests/reader.py: fixed another problem
141 pointed by Stéphane Bidoul
142
143Mon Dec 30 12:39:55 CET 2002 Daniel Veillard <daniel@veillard.com>
144
145 * xmlreader.c python/tests/reader.py: fixed a limit case problem
146 with "<a/>"
147
148Mon Dec 30 11:53:44 CET 2002 Daniel Veillard <daniel@veillard.com>
149
150 * SAX.c: warn on xmlns:prefix="foo"
151 * xmlreader.c python/tests/reader.py: fixed a couple of problem
152 for namespace attributes handling.
153
154Mon Dec 30 00:59:07 CET 2002 Daniel Veillard <daniel@veillard.com>
155
156 * entities.c parser.c tree.c include/libxml/entities.h: Fixed
157 a really nasty problem raised by a DocBook XSLT transform
158 provided by Sebastian Bergmann
159
160Sun Dec 29 12:13:18 CET 2002 Daniel Veillard <daniel@veillard.com>
161
162 * xmlreader.c python/tests/reader.py: fixed a bug pointed out
163 by Stéphane Bidoul and integrated it into the tests
164
165Sat Dec 28 23:49:12 CET 2002 Daniel Veillard <daniel@veillard.com>
166
167 * xmlreader.c include/libxml/xmlreader.h doc/libxml2-api.xml:
168 extended the XmlTextReader API a bit, addding accessors for
169 the current doc and node, and an entity substitution mode for
170 the parser.
171 * python/libxml.py python/libxml2class.txt: related updates
172 * python/tests/Makefile.am python/tests/reader.py
173 python/tests/reader2.py python/tests/reader3.py: updated a bit
174 the old tests and added a new one to test the entities handling
175
176Sat Dec 28 22:11:57 CET 2002 Daniel Veillard <daniel@veillard.com>
177
178 * python/generator.py python/libxml2class.txt
179 python/tests/reader.py python/tests/reader2.py: changed the
180 generator to provide casing for the XmlTextReader similar to
181 C# so that examples and documentation are more directly transposable.
182 Fixed the couple of tests in the suite.
183
184Sat Dec 28 15:55:32 CET 2002 Daniel Veillard <daniel@veillard.com>
185
186 * doc/guidelines.html: added a document on guildeline for
187 publishing and deploying XML
188
189Fri Dec 27 20:35:15 CET 2002 Daniel Veillard <daniel@veillard.com>
190
191 * valid.c xmlreader.c: final touch running DTD validation
192 on the XmlTextReader
193 * python/tests/Makefile.am python/tests/reader2.py: added a
194 specific run based on the examples from test/valid/*.xml
195
196Fri Dec 27 15:17:20 CET 2002 Daniel Veillard <daniel@veillard.com>
197
198 * python/libxml.py: added a few predefined xmlTextReader parser
199 configuration values.
200
201Fri Dec 27 12:57:22 CET 2002 Daniel Veillard <daniel@veillard.com>
202
203 * python/libxml_wrap.h: trying to fix #102037
204
205Fri Dec 27 12:18:14 CET 2002 Daniel Veillard <daniel@veillard.com>
206
207 * SAX.c: fixing bug #95296, when the predefined entities
208 are redefined in the DTD the default one must be used
209 instead anyway.
210
211Wed Dec 25 19:22:06 MST 2002 John Fleck <jfleck@inkstain.net>
212
213 * doc/xmllint.xml
214 * doc/xmllint.1
215 Add discussion of XML_DEBUG_CATALOG to xmllint man
216 page - bug #100907
217
218
219Mon Dec 23 16:54:22 CET 2002 Daniel Veillard <daniel@veillard.com>
220
221 * xmlreader.c: Fixed the empty node detection to avoid reporting
222 an inexistant close tag.
223
224Mon Dec 23 15:42:24 CET 2002 Daniel Veillard <daniel@veillard.com>
225
226 * python/libxml.c python/setup.py.in: patch from Stéphane Bidoul
227 for Python 2.1
228
229Sun Dec 22 11:24:06 CET 2002 Daniel Veillard <daniel@veillard.com>
230
231 * testC14N.c vms/config.vms: applied Craig A. Berry patches for VMS
232
233Fri Dec 20 11:27:49 CET 2002 Daniel Veillard <daniel@veillard.com>
234
235 * doc/libxml2-api.xml python/tests/reader.py: one really need
236 to provide the base URI information when creating a reader parser
237 from an input stream. Updated the API and the example using it.
238
239Fri Dec 20 01:11:30 CET 2002 Daniel Veillard <daniel@veillard.com>
240
241 * testReader.c xmlreader.c valid.c include/libxml/tree.h
242 include/libxml/valid.h include/libxml/xmlreader.h: working on
243 DTD validation on top of xml reader interfaces. Allows to
244 validate arbitrary large instances. This required some extensions
245 to the valid module interface and augmenting the size of xmlID
246 and xmlRef structs a bit.
247 * uri.c xmlregexp.c: simple cleanup.
248
249Wed Dec 18 15:51:22 CET 2002 Daniel Veillard <daniel@veillard.com>
250
251 * xmlreader.c include/libxml/xmlreader.h doc/libxml2-api.xml: more
252 work on the xml reader interfaces.
253 * AUTHORS MAINTAINERS doc/* win32/*: updated Igor's mail and the
254 Web page for the Windows binaries.
255
256Tue Dec 17 19:31:07 CET 2002 Daniel Veillard <daniel@veillard.com>
257
258 * xmlIO.c: applied a patch for VMS following the report by
259 Nigel Hall
260
261Tue Dec 17 11:29:41 CET 2002 Daniel Veillard <daniel@veillard.com>
262
263 * parser.c: the parseStartTag bug fix wasn't complete.
264
265Mon Dec 16 23:00:05 CET 2002 Daniel Veillard <daniel@veillard.com>
266
267 * parser.c: Vyacheslav Pindyura managed to trigger a bug in
268 parseStartTag, fixing it.
269 * test/att4 result/att4 result/noent/att4: adding the test
270 * xmlreader.c include/libxml/xmlreader.h doc/libxml2-api.xml: added
271 more methods to XmlTextReader.
272
273Mon Dec 16 19:31:16 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
274
275 * win32/libxml2.def.src: added more xml reader exports
276 * win32/Makefile.msvc win32/Makefile.mingw: added xml reader interface
277 to the build
278
279Mon Dec 16 06:36:54 MST 2002 John Fleck <jfleck@inkstain.net>
280
281 * doc/tutorial/xmltutorial.xml
282 plus generated html and pdf
283 Updating tutorial again based on further comments from Niraj
284 Tolia on the last iteration
285
286Sun Dec 15 21:27:30 MST 2002 John Fleck <jfleck@inkstain.net>
287
288 * doc/tutorial/xmltutorial.xml
289 * doc/tutorial/includekeyword.c
290 * doc/tutorial/includegetattribute.c
291 plus generated html and pdf
292 Adding fix from Niraj Tolia to tutorial to properly free memory.
293
294
295Mon Dec 16 00:34:25 CET 2002 Daniel Veillard <daniel@veillard.com>
296
297 * xmlreader.c include/libxml/xmlreader.h doc/libxml2-api.xml: added
298 more methods of XmlTextReader.
299 * python/libxml2class.txt python/tests/reader.py: this increased the
300 methods in the bndings, augmented the test to check those new
301 functions.
302
303Sat Dec 14 23:57:39 CET 2002 Daniel Veillard <daniel@veillard.com>
304
305 * xmlreader.c doc/libxml2-api.xml: added the close and getattribute
306 methods of XmlTextReader.
307 * python/generator.py python/libxml_wrap.h python/types.c
308 python/libxml2class.txt: added the reader to the Python bindings
309 * python/tests/Makefile.am python/tests/reader.py: added a specific
310 test for the Python bindings of the Reader APIs
311 * parser.c: small cleanup.
312
313Fri Dec 13 11:39:44 CET 2002 Daniel Veillard <daniel@veillard.com>
314
315 * xinclude.c: fallback was only copying the first child not the
316 full child list of the fallback element, closes #89684 as reopened
317 by Bernd Kuemmerlen
318
319Thu Dec 12 13:34:59 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
320
321 * win32/libxml2.def.src: exported htmlNodeDumpOutput
322
323Thu Dec 12 10:59:11 CET 2002 Daniel Veillard <daniel@veillard.com>
324
325 * configure.in: preparing release of 2.4.30
326 * doc/apibuild.py doc/libxml2-api.xml: fixups to the api builder,
327 gives enum values, fix functype return type, put back fields in
328 structs
329 * doc/*: updated the docs rebuilt
330
331Thu Dec 12 01:09:34 CET 2002 Daniel Veillard <daniel@veillard.com>
332
333 * HTMLtree.c include/libxml/HTMLtree.h: patch from Mark Vadok
334 about htmlNodeDumpOutput location.
335 * xpath.c: removed an undefined function signature
336 * doc/apibuild.py doc/libxml2-api.xml: the script was exporting
337 too many symbols in the API breaking the python bindings.
338 Updated with the libxslt/libexslt changes.
339
340Wed Dec 11 20:26:15 CET 2002 Daniel Veillard <daniel@veillard.com>
341
342 * configure.in: preparing release of 2.4.29
343 * doc/*: rebuilt the docs and API
344 * xmlreader.c: a few more fixes for the XmlTextReader API
345
346Wed Dec 11 18:01:15 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
347
348 * include/win32config.h: applied mingw patch from Magnus Henoch
349
350Wed Dec 11 16:58:48 CET 2002 Daniel Veillard <daniel@veillard.com>
351
352 * catalog.c doc/libxml2-api.xml: a bit more cleanup
353
354Wed Dec 11 14:54:47 CET 2002 Daniel Veillard <daniel@veillard.com>
355
356 * doc/apibuild.py doc/libxml2-api.xml doc/Makefile.am: new API
357 building Python script, does the C parsing directly, generates
358 a better API description including structure fieds defs and
359 enums. Still a couple of bugs, but good enough for the python
360 wrappers now.
361 * DOCBparser.c SAX.c nanohttp.c parser.c parserInternals.c tree.c
362 valid.c xmlIO.c xmlmemory.c xmlreader.c xmlregexp.c xmlschemas.c
363 include/libxml/schemasInternals.h include/libxml/tree.h: more
364 cleanup based on the python analysis script reports.
365 * libxml.spec.in: make sure the API XML description is part of the
366 devel package.
367
368Tue Dec 10 16:16:34 CET 2002 Daniel Veillard <daniel@veillard.com>
369
370 * DOCBparser.c HTMLparser.c c14n.c debugXML.c encoding.c hash.c
371 nanoftp.c nanohttp.c parser.c parserInternals.c testC14N.c
372 testDocbook.c threads.c tree.c valid.c xmlIO.c xmllint.c xmlmemory.c
373 xmlreader.c xmlregexp.c xmlschemas.c xmlschemastypes.c xpath.c:
374 code cleanup, especially the function comments.
375 * tree.c: fixed a small bug when freeing nodes which are XInclude ones.
376
377Mon Dec 9 15:08:17 CET 2002 Daniel Veillard <daniel@veillard.com>
378
379 * Makefile.am xmlreader.c include/libxml/Makefile.am
380 include/libxml/xmlreader.h: Adding a new set of APIs based on
381 the C# TextXmlReader API but converted to C. Allow to parse
382 in constant memory usage, far simpler to program and explain
383 than the SAX like APIs, unfinished but working.
384 * testReader.c: test program
385
386Sun Dec 8 18:36:01 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
387
388 * win32/libxml2.def.src: applied YALDSP from Mark Vakoc
389
390Wed Dec 4 16:08:49 CET 2002 Daniel Veillard <daniel@veillard.com>
391
392 * tree.c: Chip turner indicated that XHTML1 serialization
393 rule for style actually break on both IE and Mozilla,
394 try to avoid the rule if escaping ain't necessary
395
396Wed Dec 4 12:43:28 CET 2002 Daniel Veillard <daniel@veillard.com>
397
398 * nanhttp.c: handle HTTP URL escaping, problem reported by
399 Glen Nakamura and Stefano Zacchiroli
400
401Sat Nov 30 12:19:17 CET 2002 Daniel Veillard <daniel@veillard.com>
402
403 * DOCBparser.c HTMLparser.c parser.c valid.c xpath.c: code cleanup
404
405Thu Nov 28 12:53:22 CET 2002 Daniel Veillard <daniel@veillard.com>
406
407 * uri.c: Johann Richard pointed out some XPointer problems for
408 URN based URI references in XInclude. Modified the URI parsing
409 and saving routines to allow correct parsing and saving of
410 XPointers, especially when attached to "opaque" scheme accordingly
411 to RFC 2396
412
413Wed Nov 27 20:36:08 CET 2002 Daniel Veillard <daniel@veillard.com>
414
415 * HTMLtree.c include/libxml/HTMLtree.h: applied the same kind
416 of refactoring to the HTML saving code.
417 * doc/libxml2-*.xml doc/API*.html: slight API changes got reflected
418 in the doc.
419
420Wed Nov 27 12:40:16 CET 2002 Daniel Veillard <daniel@veillard.com>
421
422 * tree.c include/libxml/tree.h: refactored the XML dump of a node
423 to a buffer API to reuse the generic dump to an OutputIO layer,
424 this reduces code, fixes xmlNodeDump() for XHTML, also made
425 xmlNodeDump() now return the number of byte written.
426
427Wed Nov 27 09:00:00 CET 2002 Daniel Veillard <daniel@veillard.com>
428
429 * python/setup.py.in: another patch from Stéphane Bidoul for
430 Python bindings on Windows
431 * doc/parsedecl.py: small cleanup
432
433Mon Nov 25 17:28:53 CET 2002 Daniel Veillard <daniel@veillard.com>
434
435 * libxml.spec.in configure.in: add a line in %changelog for releases
436
437Mon Nov 25 14:18:27 CET 2002 Daniel Veillard <daniel@veillard.com>
438
439 * parser.c: patch from Marcus Clarke fixing a problem in entities
440 parsing that was detected in KDe documentations environment.
441
442Mon Nov 24 14:13:21 CET 2002 ERDI Gergo <cactus@cactus.rulez.org>
443
444 * python/libxml.c (libxml_prev): Return the previous as opposed to
445 the next node (I guess this is the result of some cut & paste programming:)
446
447Sat Nov 23 17:22:22 CET 2002 Daniel Veillard <daniel@veillard.com>
448
449 * doc/Makefile.am: Jan Rafaj pointed a bug in the Makefile.
450
451Sat Nov 23 12:21:24 CET 2002 Daniel Veillard <daniel@veillard.com>
452
453 * python/generator.py python/libxml.c python/setup.py.in: trying
454 to fix the Python bindings build on Windows (Stéphane Bidoul)
455
456Fri Nov 22 22:41:34 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
457
458 * win32/configure.js: added option for python bindings
459 * win32/libxml2.def.src: added more exports
460
461Fri Nov 22 18:50:34 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
462
463 * win32/Makefile.mingw: fixed unresolved symbols when linking with
464 pthreads
465 * win32/wince/*: applied updates to Windows CE port from Javier
466
467Fri Nov 22 15:51:22 CET 2002 Daniel Veillard <daniel@veillard.com>
468
469 * configure.in: preparing 2.4.28
470 * libxml.spec.in doc/Makefile.am: some cleanup
471 * doc/*: updated the news and regenerated.
472
473Fri Nov 22 14:15:14 CET 2002 Daniel Veillard <daniel@veillard.com>
474
475 * HTMLparser.c: final touch at closing #87235 </p> end tags
476 need to be generated.
477 * result/HTML/cf_128.html result/HTML/test2.html result/HTML/test3.html:
478 this change slightly the output of a few tests
479 * doc/*: regenerated
480
481Fri Nov 22 13:26:19 CET 2002 Daniel Veillard <daniel@veillard.com>
482
483 * parserInternals.c: fixing bug #99190 when UTF8 document are
484 parsed using the progressive parser and the end of the chunk
485 is in the middle of an UTF8 multibyte character.
486
487Fri Nov 22 13:13:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
488
489 * threads.c: fixed initialization problem in xmlNewGlobalState
490 which was causing crash.
491 * globals.c: removed duplicate call to initxmlDefaultSAXHandler
492 in xmlInitializeGlobalState.
493 * parserInternals.c: cleaned up ctxt->sax initialisation.
494
495Thu Nov 21 15:05:45 CET 2002 Daniel Veillard <daniel@veillard.com>
496
497 * tree.c include/libxml/tree.h: modified the existing APIs
498 to handle XHTML1 serialization rules automatically, also add
499 xmlIsXHTML() to libxml2 API. Some tweaking to make sure
500 libxslt serialization uses it when needed without changing
501 the library API.
502 * test/xhtml1 result/noent/xhtml1 result/valid/xhtml1.xhtml
503 result/xhtml1: added a new test specifically for xhtml1 output
504 and updated the result of one XHTML1 test
505
506Wed Nov 20 14:24:56 CET 2002 Daniel Veillard <daniel@veillard.com>
507
508 * xinclude.c parserInternals.c encoding.c: fixed #99082
509 for xi:include encoding="..." support on text includes.
510 * result/XInclude/tstencoding.xml test/XInclude/docs/tstencoding.xml
511 test/XInclude/ents/isolatin.txt : added a specific regression test
512 * python/generator.py python/libxml2class.txt: fixed the generator
513 the new set of comments generated for doc/libxml2-api.xml were
514 breaking the python generation.
515
516Tue Nov 19 23:25:47 CET 2002 Daniel Veillard <daniel@veillard.com>
517
518 * doc/Makefile.am: repair some problem if gtk-doc fail or such
519 * configure.in: patch for Solaris on new autoconf closes #98880
520 * doc/parsedecl.py: repair the frigging API building script,
521 did I say that python xmllib sucks ?
522 * doc/libxml2-api.xml doc/libxml2-refs.xml: regenerated, reordering
523 and some comment are no more truncated.
524
525Tue Nov 19 09:09:04 CET 2002 Daniel Veillard <daniel@veillard.com>
526
527 * parser.c: Martin Stoilov pointed out a potential leak in
528 xmlCreateMemoryParserCtxt
529
530Mon Nov 18 16:05:51 CET 2002 Daniel Veillard <daniel@veillard.com>
531
532 * HTMLparser.c: fixed bug #98879 a corner case when 0 is
533 included in HTML documents and using the push parser.
534
535Mon Nov 18 00:11:24 CET 2002 ERDI Gergo <cactus@cactus.rulez.org>
536
537 * configure.in (PYTHON_SITE_PACKAGES): If --with-python is
538 specified, look for the Python interpreter not just in the
539 specified root but also in the specified location. Fixes #98825
540
541Sun Nov 17 23:36:06 CET 2002 Daniel Veillard <daniel@veillard.com>
542
543 * python/libxml.c: fixing bug #98792 , node may have no doc
544 and dereferencing without checking ain't good ...
545
546Sun Nov 17 10:25:43 CET 2002 Daniel Veillard <daniel@veillard.com>
547
548 * configure.in: preparing release 2.4.27
549 * doc/* : updated and rebuilt the docs
550 * doc/Makefile.am libxml.spec.in: try to make sure the tutorial
551 and all the docs are actually packaged and in the final RPMs
552 * parser.c parserInternals.c include/libxml/parser.h: restore
553 xmllint --recover feature.
554
555Sat Nov 16 16:30:25 CET 2002 Daniel Veillard <daniel@veillard.com>
556
557 * parser.c xpath.c: fixing #96925 wich was also dependant on the
558 processing of parsed entities, and XPath computation on sustitued
559 entities.
560 * testXPath.c: make sure entities are substitued.
561
562Fri Nov 15 16:22:54 CET 2002 Daniel Veillard <daniel@veillard.com>
563
564 * parser.c: fixed #96594, which was totally dependant on the
565 processing of internal parsed entities, which had to be changed.
566
567Fri Nov 15 12:16:07 CET 2002 Daniel Veillard <daniel@veillard.com>
568
569 * Makefile.am python/Makefile.am python/tests/Makefile.am:
570 trying to fix bug #98517 about building outside the source tree
571 * doc/xml.html doc/FAQ.html: fixed the link to libiconv #94585
572
573Thu Nov 14 18:41:55 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
574
575 * include/win32config.h: cleanup
576 * win32/Makefile.mingw: integrated mingw in JScript configure
577 * win32/Makefile.msvc: modified to allow mingw coexistence
578 * win32/configure.js: integrated mingw
579 * win32/Readme.txt: cleanup
580
581Tue Nov 12 22:06:45 CET 2002 Daniel Veillard <daniel@veillard.com>
582
583 * HTMLparser.c: strengthen the guard in the Pop macros,
584 like in the XML parser, closes bug #97315
585
586Tue Nov 12 21:56:39 CET 2002 Daniel Veillard <daniel@veillard.com>
587
588 * include/libxml/parser.h: fixed bug #98338 , fatalError SAX
589 callback is never used.
590
591Tue Nov 12 13:32:50 CET 2002 Daniel Veillard <daniel@veillard.com>
592
593 * parserInternals.c: fixed the initialization of the SAX structure
594 which was breaking xsltproc
595 * xpath.c: patch from Petr Pajas for CDATA nodes
596 * tree.c: patch from Petr Pajas improving xmlGetNodePath()
597 * parser.c include/libxml/parser.h: patch from Peter Jones
598 removing a leak in xmlSAXParseMemory() and adding the
599 function xmlSAXParseMemoryWithData()
600
601Mon Nov 11 20:47:03 MST 2002 John Fleck <jfleck@inkstain.net>
602
603 adding pdf of tutorial, changing web page to link to it
604 * doc/tutorial/xmltutorial.pdf
605 * doc/xml.html
606 * doc/docs.html
607
608Sun Nov 10 20:48:57 MST 2002 John Fleck <jfleck@inkstain.net>
609
610 * doc/tutorial/ar01s08.html
611 adding file what I forgot for tutorial
612
613
614Sun Nov 10 20:33:13 MST 2002 John Fleck <jfleck@inkstain.net>
615
616 Adding encoding discussion to tutorial
617 Added:
618 * doc/tutorial/images/*.png: DocBook admonition image files
619 * doc/tutorial/apf.html, apg.html: new generated html
620 * doc/tutorial/includeconvert.c: conversion code entity file
621 changed:
622 * doc/tutorial/xmltutorial.xml: DocBook original
623 * doc/tutorial/*.html: generated html
624
625Fri Nov 8 17:59:32 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
626
627 * include/libxml/*.h: retired xmlwin32version.h
628 * doc/Makefile.am: retired xmlwin32version.h
629 * win32/configure.js: retired xmlwin32version.h
630
631Fri Nov 8 16:55:47 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
632
633 * win32/libxml2.def.src: exported additional symbols
634 * include/libxml/xmlmemory.h: exported the rest of the xmlMem*
635 sisterhood
636
637Fri Nov 8 16:08:13 CET 2002 Daniel Veillard <daniel@veillard.com>
638
639 * globals.c: fixed a typo pointed out by Igor
640 * xpath.c: try to speed up node compare using line numbers
641 if available.
642
643Thu Nov 7 15:16:02 CET 2002 Daniel Veillard <daniel@veillard.com>
644
645 * tree.c: make xmlFreeNode() handle attributes correctly.
646
647Wed Nov 6 23:51:11 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
648
649 * catalog.c: completed the #96963 fix, as reported by Karl
650 Eichwalder
651
652Wed Nov 6 16:48:44 CET 2002 Daniel Veillard <daniel@veillard.com>
653
654 * xpointer.c: tried to fix bug #97852 reported by Nicolas Noffke
655
656Sun Nov 3 10:43:44 CET 2002 Daniel Veillard <daniel@veillard.com>
657
658 * Makefile.am: switched the order of a couple of includes
659 to fix bugs #97100
660
661Thu Oct 31 17:11:46 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
662
663 * catalog.c: fixed bug #96963, reverted to the old behaviour of
664 xmlLoadCatalogs that used to separate directories with a ':'.
665
666Thu Oct 31 16:55:21 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
667
668 * threads.c: improvements to the Windows-side of thread handling
669 * testThreads.c: conditionally excluded unistd.h
670 * testThradsWin32.c: broke overlong lines
671 * include/win32config.h: adapted thread-related macros to the new
672 scheme and for pthreads on Windows
673 * win32/Makefile.msvc: introduced a more flexible thread build,
674 added testThreads[Win32].c to the build
675 * win32/configure.js: introduced a more flexible thread config
676
6772002-10-31 John Fleck <jfleck@inkstain.net>
678
679 * doc/xml.html (and, by implication, FAQ.html)
680 added UTF-8 conversaion FAQ from Marcus Labib Iskander
681
682Tue Oct 29 18:32:33 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
683
684 * configure.in: removed xmlwin32version.h
685 * include/libxml/Makefile.am: removed xmlwin32version.h
686
687Mon Oct 28 14:01:29 CET 2002 Daniel Veillard <daniel@veillard.com>
688
689 * tree.c: applied patch from Brian Stafford to fix a bug
690 in xmlReconciliateNs()
691
692Mon Oct 28 13:51:55 CET 2002 Daniel Veillard <daniel@veillard.com>
693
694 * tree.c: applied patch from Christian Glahn to allow
695 xmlNewChild() on document fragment nodes
696
697Sat Oct 26 15:27:00 CEST 2002 Daniel Veillard <daniel@veillard.com>
698
699 * parser.c: Christian Glahn found a problem with a recent
700 patch to xmlParseBalancedChunkMemoryRecover()
701 * xmlschemas.c: Charles Bozeman fixed some Schemas validation
702 problems
703 * result/schemas/elem* result/schemas/seq* test/schemas.elem*
704 test/schemas/seq*: added the test cases from Charles
705
706Wed Oct 23 16:42:29 CEST 2002 Daniel Veillard <daniel@veillard.com>
707
708 * Makefile.am config.h.in libxml.spec.in doc/Makefile.am:
709 serious cleanup of the spec file and associated changes
710 in the Makefiles.
711 * valid.c: try to remove some warnings on x86_64
712
713Wed Oct 23 10:53:42 CEST 2002 Daniel Veillard <daniel@veillard.com>
714
715 * include/Makefile.am: added winsockcompat.h to EXTRA_DIST to
716 fix bug #96586
717
718Tue Oct 22 21:13:06 CEST 2002 Daniel Veillard <daniel@veillard.com>
719
720 * HTMLparser.c: Mikhail Sogrine pointed out a bug in HTML
721 parsing, applied his patch
722 * result/HTML/attrents.html result/HTML/attrents.html.err
723 result/HTML/attrents.html.sax test/HTML/attrents.html:
724 added the test and result case provided by Mikhail Sogrine
725
726Tue Oct 22 19:33:20 CEST 2002 Daniel Veillard <daniel@veillard.com>
727
728 * vms/build_libxml.com vms/config.vms vms/readme.vms
729 include/libxml/parser.h include/libxml/parserInternals.h
730 include/libxml/tree.h include/libxml/xmlIO.h
731 HTMLparser.c catalog.c debugXML.c parser.c parserInternals.c
732 tree.c triodef.h trionan.c uri.c xmlIO.c xpath.c:
733 Applied the VMS update patch from Craig A. Berry
734 * doc/*.html: update
735
736Tue Oct 22 16:27:31 CEST 2002 Daniel Veillard <daniel@veillard.com>
737
738 * include/libxml/encoding.h encoding.c: made xmlGetUTF8Char public
739
740Tue Oct 22 16:25:18 CEST 2002 Daniel Veillard <daniel@veillard.com>
741
742 * debugXML.c: adding a grep command to --shell in xmllint
743 for T.V. Raman
744
745Tue Oct 22 16:23:57 CEST 2002 Daniel Veillard <daniel@veillard.com>
746
747 * xmlcatalog.c: tried to fix some of the problem with --sgml
748
749Mon Oct 21 09:57:10 CEST 2002 Daniel Veillard <daniel@veillard.com>
750
751 * parser.c: tried to fix bug #91500 where doc->children may
752 be overriden by a call to xmlParseBalancedChunkMemory()
753
754Mon Oct 21 09:04:32 CEST 2002 Daniel Veillard <daniel@veillard.com>
755
756 * catalog.c: tried to fix bug #90945 w.r.t. parsing of system
757 identifiers in SGML catalogs containing '&'
758
759Sun Oct 20 23:31:47 CEST 2002 Daniel Veillard <daniel@veillard.com>
760
761 * python/types.c: fixed bugs when passing result value tree
762 to Python functions.
763
764Fri Oct 18 13:18:53 CEST 2002 Daniel Veillard <daniel@veillard.com>
765
766 * configure.in: preparing the release of 2.4.26
767 * doc/*: updated and rebuilt the documentation
768
769Wed Oct 16 20:01:46 CEST 2002 Daniel Veillard <daniel@veillard.com>
770
771 * parser.c: fixed a XML Namespace compliance bug reported by
772 Alexander Grimalovsky
773
774Wed Oct 16 17:18:42 CEST 2002 Daniel Veillard <daniel@veillard.com>
775
776 * HTMLtree.c: fixed serialization of script and style when
777 they are not lowercase (i.e. added using the API to the tree).
778
779Wed Oct 16 16:31:05 CEST 2002 Daniel Veillard <daniel@veillard.com>
780
781 * valid.c: make xmlValidateDocument emit a warning msg if there
782 is no DTD, pointed by Christian Glahn
783
784Wed Oct 16 16:05:38 CEST 2002 Daniel Veillard <daniel@veillard.com>
785
786 * xmlregexp.c xmlschemas.c: fixed the validation of sequences
787 content model when some of the blocks have min or max, and a couple
788 of bugs found in the process.
789 * result/schemas/list0* test/schemas/list0*: added some specific
790 regression tests
791
792Tue Oct 15 12:41:01 CEST 2002 Daniel Veillard <daniel@veillard.com>
793
794 * README: updated the contact informations
795
796Tue Oct 15 10:35:57 CEST 2002 Daniel Veillard <daniel@veillard.com>
797
798 * Makefile.am: use test -f instead of test -e since Solaris /bin/sh
799 misses it, reported by Peter Bray.
800
801Mon Oct 14 17:37:32 CEST 2002 Daniel Veillard <daniel@veillard.com>
802
803 * tree.c: investigating xmlNodeGetContent() on namespace nodes
804 and removed a few warnings
805
806Mon Oct 14 13:12:55 CEST 2002 Daniel Veillard <daniel@veillard.com>
807
808 * parser.c: Christian Glahn found a small bug in the push parser.
809 * xmlIO.c include/libxml/xmlIO.h: cleaned up and made xmlCheckFilename
810 public
811
812Wed Oct 9 23:11:02 CEST 2002 Daniel Veillard <daniel@veillard.com>
813
814 * xmlschemas.c include/libxml/xmlschemas.h: added
815 xmlSchemaNewMemParserCtxt to parse a schemas from a memory area
816 * testSchemas.c: added --memory to test the new interface
817
818Wed Oct 9 16:22:54 CEST 2002 Daniel Veillard <daniel@veillard.com>
819
820 * doc/index.py doc/search.php: integrated the XSLT indexing,
821 a few fixed in the indexer, added a scope selection at the
822 search level.
823
824Wed Oct 9 12:18:37 CEST 2002 Daniel Veillard <daniel@veillard.com>
825
826 * valid.c: Joe Marcus Clarke reported a segfault on FBsd
827 this was due to uninitialized parts of the validation context
828
829Tue Oct 8 23:24:20 CEST 2002 Daniel Veillard <daniel@veillard.com>
830
831 * debugXML.c: applied patch from Mark Vakoc except the API
832 change, preserved it.
833 * doc/*: updated the docs to point to the search engine for
834 information lookup or before bug/help reports.
835
836Tue Oct 8 18:53:31 CEST 2002 Daniel Veillard <daniel@veillard.com>
837
838 * doc/index.py doc/search.php: added mailing-list archives
839 indexing and lookup
840
841Tue Oct 8 10:25:07 CEST 2002 Daniel Veillard <daniel@veillard.com>
842
843 * tree.c: patch from Mark Vakoc to fix xmlNodeGetPath()
844
845Mon Oct 7 13:12:03 CEST 2002 Daniel Veillard <daniel@veillard.com>
846
847 * doc/index.py: improved HTML indexing
848 * doc/search.php: make the queries also lookup the HTML based indexes
849
850Sun Oct 6 23:50:29 CEST 2002 Daniel Veillard <daniel@veillard.com>
851
852 * doc/index.py: added HTML page indexing
853
854Fri Oct 4 15:33:55 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
855
856 * xmlIO.c: extended Windows path normalisation to fix the base
857 problem in libxslt.
858 * catalog.c: fixed list handling in XML_CATALOG_FILES
859
860Fri Oct 4 13:43:02 CEST 2002 Daniel Veillard <daniel@veillard.com>
861
862 * valid.c: typo/bug found by Christian Glahn
863
864Sun Sep 29 19:44:10 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
865
866 * xmlIO.c: applied Windows CE patch from Javier.
867 * win32/wince: new directory, contains support for the PocketPC
868 with Windows CE from Javier.
869 * include/win32config.h: reorganised, removed duplicate
870 definitions and applied WinCE patch from Javier.
871 * include/wsockcompat.h: new file, now contains WinSock
872 compatibility macros.
873 * win32/Makefile.msvc: introduced double-run compilation.
874
875Thu Sep 26 19:48:06 CEST 2002 Daniel Veillard <daniel@veillard.com>
876
877 * configure.in include/libxml/xmlwin32version.h: preparing release
878 of 2.4.25
879 * doc/*: updated and regenerated teh docs and web pages.
880
881Thu Sep 26 17:33:46 CEST 2002 Daniel Veillard <daniel@veillard.com>
882
883 * SAX.c valid.c include/libxml/valid.h: fixed bug #92518 validation
884 error were not covering namespace declarations.
885 * result/valid/dia.xml test/valid/dia.xml: the test wasn't valid,
886 it was missing the attribute declaration for the namespace
887 * result/VC/NS3: the fix now report breakages in that test
888
889Thu Sep 26 14:39:07 CEST 2002 Daniel Veillard <daniel@veillard.com>
890
891 * HTMLtree.c: fixing bug #94241 on HTML boolean attributes
892
893Thu Sep 26 14:25:33 CEST 2002 Daniel Veillard <daniel@veillard.com>
894
895 * doc/*: added the 3 new modules xmlregexp xmlautomata and xmlunicode
896 and regenerated the docs and web site
897
898Thu Sep 26 11:45:42 CEST 2002 Daniel Veillard <daniel@veillard.com>
899
900 * xinclude.c xmlschemas.c xmlschemastypes.c xpath.c: make sure
901 ATTRIBUTE_UNUSED is always put after the attribute declaration,
902 not before
903
904Thu Sep 26 11:33:28 CEST 2002 Daniel Veillard <daniel@veillard.com>
905
906 * python/generator.py python/libxml2class.txt: fixed a stupid error
907 breaking the python API
908
909Thu Sep 26 00:31:46 CEST 2002 Daniel Veillard <daniel@veillard.com>
910
911 * trio.c trio.h triodef.h trionan.c trionan.h triop.h
912 triostr.c triostr.h: applied a trio update patch from
913 Bjorn Reese which should work with MinGW
914
915Thu Sep 26 00:21:18 CEST 2002 Daniel Veillard <daniel@veillard.com>
916
917 * tree.c: improving some documentation comments
918 * xmlregexp.c: found and fixed a mem leak with python regression tests
919 * doc/*: rebuilt the doc and the API XML file including the
920 xmlregexp.h xmlautomata.h and xmlunicode.h headers
921 * python/generator.py python/libxml2class.txt python/libxml_wrap.h
922 python/types.c: added access to the XML Schemas regexps from
923 python
924 * python/tests/Makefile.am python/tests/regexp.py: added a
925 simple regexp bindings test
926
927Tue Sep 24 08:10:48 MDT 2002 John Fleck <jfleck@inkstain.net>
928
929 * doc/xml.html:
930 fixing ftp links - thanks to Vitaly Ostanin
931
932Tue Sep 24 16:08:17 CEST 2002 Daniel Veillard <daniel@veillard.com>
933
934 * xmlregexp.c: fixed the data callback on transition functionality
935 which was broken when using the compact form
936 * result/schemas/*: updated the results, less verbose, all tests
937 pass like before
938 * DOCBparser.c testAutomata.c testC14N.c testSchemas.c testThreads.c
939 testXPath.c valid.c xinclude.c xmllint.c xmlregexp.c xmlschemas.c
940 xmlschemastypes.c xpath.c python/libxml.c: removed a bunch of
941 annoying warnings
942 * xpath.c: try to provide better error report when possible
943
944Sat Sep 21 14:56:37 CEST 2002 Daniel Veillard <daniel@veillard.com>
945
946 * Makefile.am: fixed a breakage raised by Jacob
947
948Fri Sep 20 20:08:18 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
949
950 * include/win32config.h: added HAVE_ERRNO_H definition for parts
951 which don't use sockets
952
953Fri Sep 20 18:40:50 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
954
955 * win32/Makefile.msvc: applied zlib patch from Daniel Gehriger
956 * win32/configure.js: applied zlib patch from Daniel Gehriger
957
958Fri Sep 20 15:40:14 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
959
960 * win32/configure.js: applied the patch from Mark Vakoc for
961 regexp support
962 * win32/libxml2.def.src: applied the patch from Mark Vakoc
963 for regexp support
964
965Fri Sep 20 15:35:33 CEST 2002 Daniel Veillard <daniel@veillard.com>
966
967 * xmlschemastypes.c: as pointed by Igor Float and Double
968 parsing ain't finished yet
969
970Fri Sep 20 14:00:16 CEST 2002 Daniel Veillard <daniel@veillard.com>
971
972 * Makefile.am configure.in: trying to fix #88412 by bypassing
973 all the python subdir if python ain't detected
974
975Thu Sep 19 21:46:53 CEST 2002 Daniel Veillard <daniel@veillard.com>
976
977 * Makefile.am configure.in include/libxml/xmlversion.h.in:
978 made configuring with regexps/automata/unicode the default
979 but without schemas ATM
980 * testRegexp.c valid.c xmlregexp.c include/libxml/xmlregexp.h:
981 fixed the regexp based DTD validation performance and memory
982 problem by switching to a compact form for determinist regexps
983 and detecting the determinism property in the process. Seems
984 as fast as the old DTD validation specific engine :-) despite
985 the regexp built and compaction process.
986
987Wed Sep 18 18:27:26 CEST 2002 Daniel Veillard <daniel@veillard.com>
988
989 * valid.c: determinism is debugged, new DTD checking code now works
990 but xmlFAComputesDeterminism takes far too much CPU and the whole
991 set usues too much memory to be really usable as-is
992
993Wed Sep 18 00:54:30 CEST 2002 Daniel Veillard <daniel@veillard.com>
994
995 * tree.c: fixed another stupid bug in xmlGetNodePath()
996 * xmllint.c: --version now report the options compiled in
997
998Tue Sep 17 23:48:07 CEST 2002 Daniel Veillard <daniel@veillard.com>
999
1000 * HTMLparser.c: small cleanup
1001 * valid.c xmlregexp.c: switched DTD validation to use only regexp
1002 when configured with them. A bit of debugging around the determinism
1003 checks is still needed
1004
1005Tue Sep 17 21:22:25 CEST 2002 Daniel Veillard <daniel@veillard.com>
1006
1007 * python/libxml_wrap.h: stupid bug found by mattam@netcourrier.com
1008
1009Tue Sep 17 19:58:26 CEST 2002 Daniel Veillard <daniel@veillard.com>
1010
1011 * xmlIO.c: small portability glitch fixed.
1012
1013Mon Sep 17 12:38:08 CEST 2002 Daniel Veillard <daniel@veillard.com>
1014
1015 * xmlschemastypes.c: incomplete steps for real/double support
1016 * testAutomata.c include/libxml/xmlautomata.h
1017 include/libxml/xmlregexp.h: avoiding a compilation problem
1018 * valid.c include/libxml/valid.h: starting the work toward using
1019 the regexps for actual DTD validation
1020
1021Fri Sep 13 16:46:14 CEST 2002 Daniel Veillard <daniel@veillard.com>
1022
1023 * hash.c: cosmetic cleanup
1024 * valid.c include/libxml/tree.h include/libxml/valid.h: started
1025 integrating a DTD validation layer based on the regexps
1026
1027Thu Sep 12 18:01:29 CEST 2002 Daniel Veillard <daniel@veillard.com>
1028
1029 * xmlregexp.c xmlschemas.c: fixed a bug reported by Jeff Goff,
1030 the determinism was tested before eliminating the epsilon
1031 transitions :-(
1032
1033Thu Sep 12 16:57:45 CEST 2002 Daniel Veillard <daniel@veillard.com>
1034
1035 * python/generator.py python/libxml.c python/libxml.py
1036 python/libxml2-python-api.xml python/libxml2class.txt
1037 python/libxml_wrap.h python/types.c: updated the python
1038 bindings, added code for easier File I/O, and the ability to
1039 define a resolver from Python fixing bug #91635
1040 * python/tests/Makefile.am python/tests/inbuf.py
1041 python/tests/outbuf.py python/tests/pushSAXhtml.py
1042 python/tests/resolver.py python/tests/serialize.py: updated
1043 and augmented the set of Python tests.
1044
1045Tue Sep 10 21:05:28 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
1046
1047 * win32/configure.js: added more readme info for the binary
1048 package.
1049
1050Tue Sep 10 14:15:18 CEST 2002 Daniel Veillard <daniel@veillard.com>
1051
1052 * xmlIO.c: fixed a stupid out of bound array error
1053
1054Tue Sep 10 13:09:14 CEST 2002 Daniel Veillard <daniel@veillard.com>
1055
1056 * include/libxml/xmlIO.h xmlIO.c parser.c HTMLparser.c DOCBparser.c:
1057 messing around with support for Windows path, cleanups,
1058 trying to identify and fix the various code path to the
1059 filename access. Added xmlNormalizeWindowsPath()
1060
1061Thu Sep 5 16:19:18 CEST 2002 Daniel Veillard <daniel@veillard.com>
1062
1063 * error.c valid.c: working on better error reporting of validity
1064 errors, especially providing an accurate context.
1065 * result/valid/xlink.xml.err result/valid/rss.xml.err: better
1066 error reports in those cases.
1067
1068Thu Sep 5 13:29:47 CEST 2002 Daniel Veillard <daniel@veillard.com>
1069
1070 * DOCBparser.c HTMLparser.c c14n.c entities.c list.c
1071 parser.c parserInternals.c xmlIO.c: get rid of all the
1072 perror() calls made in the library execution paths. This
1073 should fix both #92059 and #92385
1074
1075Thu Sep 5 13:13:17 CEST 2002 Daniel Veillard <daniel@veillard.com>
1076
1077 * xmllint.c: memory leak reporting was broken after a change
1078 of the preprocessor symbol used to activate it.
1079
1080Thu Sep 5 13:10:57 CEST 2002 Daniel Veillard <daniel@veillard.com>
1081
1082 * tree.c: try to make the copy function work for node of
1083 type XML_DOCUMENT_FRAG_NODE, they are only created by the
1084 DOM layers though, not libxml2 itself.
1085
1086Thu Sep 5 12:57:38 CEST 2002 Daniel Veillard <daniel@veillard.com>
1087
1088 * valid.c: try to provide file and line informations, not all
1089 messages are covered, but it's a (good) start
1090
1091Thu Sep 5 12:49:35 CEST 2002 Daniel Veillard <daniel@veillard.com>
1092
1093 * xinclude.c: reimplemented a large part of the XInclude
1094 processor, trying to minimize resources used, James Henstridge
1095 provided a huge test case which was exhibiting severe memory
1096 consumption problems.
1097
1098Thu Sep 5 10:07:13 CEST 2002 Daniel Veillard <daniel@veillard.com>
1099
1100 * python/Makefile.am: applied patch from Christophe Merlet to
1101 reestablish DESTDIR
1102
1103Wed Sep 4 14:13:34 CEST 2002 Daniel Veillard <daniel@veillard.com>
1104
1105 * libxml.spec.in: fixes libary path for x86_64 AMD
1106
1107Tue Sep 3 21:14:19 MDT 2002 John Fleck <jfleck@inkstain.net>
1108
1109 * doc/tutorial/includekeyword.c
1110 * doc/tutorial/xmltutorial.xml:
1111 (plus resulting generated html files)
1112 fixing one spot I missed in the tutorial where I hadn't freed
1113 memory properly
1114
1115Sat Aug 31 19:31:17 MDT 2002 John Fleck <jfleck@inkstain.net>
1116
1117 * doc/tutorial/includeaddattribute.c
1118 * doc/tutorial/includeaddkeyword.c
1119 * doc/tutorial/includegetattribute.c
1120 * doc/tutorial/includekeyword.c
1121 * doc/tutorial/xmltutorial.xml
1122 * doc/tutorial/*.html:
1123 update tutorial to properly free memory (thanks to Christopher
1124 R. Harris for pointing out that this needs to be done)
1125 * doc/tutorial/images/callouts/*.png:
1126 added image files so the callouts are graphical, making it
1127 easier to read ( use "--param callout.graphics 1" to generate
1128 html with graphical callouts)
1129
1130Wed Aug 28 13:44:54 CEST 2002 Daniel Veillard <daniel@veillard.com>
1131
1132 * doc/Libxml2-Logo-180x168.gif doc/Libxml2-Logo-90x34.gif:
1133 nice logos generated by Marc Liyanage
1134 * doc/site.xsl *.html: changed the stylesheet to show the new
1135 logo and regenerated the pages
1136
1137Sun Aug 25 16:38:05 CEST 2002 Daniel Veillard <daniel@veillard.com>
1138
1139 * xmlIO.c: handle Windows sepecific file://localhost/ semantic ...
1140
1141Thu Aug 22 22:03:19 CEST 2002 Daniel Veillard <daniel@veillard.com>
1142
1143 * xpath.c: possible mem leak patch from Jason Adams
1144
1145Thu Aug 22 17:27:30 CEST 2002 Daniel Veillard <daniel@veillard.com>
1146
1147 * xpath.c: integrated xf:escape-uri() from Wesley Terpstra
1148 in the XQuery namespace
1149 * configure.in: preparing 2.4.24
1150 * doc/*.html: updated the web pages
1151
1152Thu Aug 22 16:19:42 CEST 2002 Daniel Veillard <daniel@veillard.com>
1153
1154 * python/generator.py: closing bug #85258 by generating conditional
1155 compile check to avoid linking to routines not configured in.
1156
11572002-08-22 Havoc Pennington <hp@pobox.com>
1158
1159 * autogen.sh: update error message for missing automake
1160
1161Thu Aug 22 11:45:50 CEST 2002 Daniel Veillard <daniel@veillard.com>
1162
1163 * python/Makefile.am: typo in target name resulted in libxml2.py
1164 to not be rebuilt. fixed DESTDIR similary to the libxslt one.
1165
1166Thu Aug 22 09:15:00 CEST 2002 Daniel Veillard <daniel@veillard.com>
1167
1168 * win32/win32/Makefile.mingw: updated with version from
1169 Elizabeth Barham at http://soggytrousers.net/repository/
1170
1171Tue Aug 20 16:40:48 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
1172
1173 * win32/Makefile.msvc: added the prefix location to the include
1174 and lib search path.
1175
11762002-08-18 Havoc Pennington <hp@pobox.com>
1177
1178 * autogen.sh: hardcode aclocal-1.4/automake-1.4 so that users with
1179 both automake 1.6 and 1.4 installed get the right automake. Means
1180 compilation from CVS will now require the latest automake 1.4
1181 release, or manually creating symlinks called "automake-1.4" and
1182 "aclocal-1.4"
1183
1184Wed Aug 14 18:54:19 CEST 2002 Daniel Veillard <daniel@veillard.com>
1185
1186 * configure.in python/Makefile.am: more AMD 64 induced changes from
1187 Frederic Crozat
1188
1189Wed Aug 14 16:43:53 CEST 2002 Daniel Veillard <daniel@veillard.com>
1190
1191 * xinclude.c: oops I was missing the xml:base fixup too
1192 * result/XInclude/*.xml: this adds xml:base attributes to most
1193 results of the tests
1194
1195Wed Aug 14 16:05:37 CEST 2002 Daniel Veillard <daniel@veillard.com>
1196
1197 * xinclude.c: quick but apparently working implementation of
1198 xi:fallback, should close bug #89684
1199 * Makefile.am test/XInclude/docs/fallback.xml
1200 result/XInclude/fallback.xml: added a basic test for fallback,
1201 and run with --nowarning to avoid a spurious warning
1202 * configure.in: applied patch from Frederic Crozat for python
1203 bindings on AMD 64bits machines.
1204
1205Wed Aug 14 10:47:46 CEST 2002 Daniel Veillard <daniel@veillard.com>
1206
1207 * parser.c: xmlSAXUserParseMemory() really ought to fail if
1208 the caller don't pass a SAX callback block.
1209
1210Wed Aug 14 10:29:02 CEST 2002 Daniel Veillard <daniel@veillard.com>
1211
1212 * tree.c: applied the same fix for the XML-1.0 namespace to
1213 xmlSearchNsByHref() as was done for xmlSearchNs()
1214
1215Mon Aug 12 16:52:08 CEST 2002 Daniel Veillard <daniel@veillard.com>
1216
1217 * libxml.3: small cleanup of the man page
1218 * HTMLtree.c: fixed a potential problem raised by Petr Vandrovec
1219 when serializing HREF attributes generated by XSLT.
1220
1221Mon Aug 12 15:24:05 CEST 2002 Daniel Veillard <daniel@veillard.com>
1222
1223 * HTMLtree.c include/libxml/HTMLtree.h: integrated a cleaned up
1224 version of Marc Liyanage' patch for boolean attributes in HTML
1225 output
1226
1227Mon Aug 12 14:11:59 CEST 2002 Daniel Veillard <daniel@veillard.com>
1228
1229 * python/tests/serialize.py: fixed the test results, indenting
1230 behaviour changed slightly
1231
1232Thu Aug 8 11:00:26 2002 Aleksey Sanin <aleksey@aleksey.com>
1233
1234 * win32/dsp/libxml2.def.src win32/libxml2.def.src: added
1235 new c14n function to Windows def files
1236
1237Fri Aug 2 16:46:46 2002 Aleksey Sanin <aleksey@aleksey.com>
1238
1239 * c14n.c: fixed a memory leak in c14n code
1240
1241Sat Aug 3 00:15:06 CEST 2002 Daniel Veillard <daniel@veillard.com>
1242
1243 * parser.c include/libxml/parser.h: adding a new API for Christian
1244 Glahn: xmlParseBalancedChunkMemoryRecover
1245 * valid.c: patch from Rick Jones for some grammar cleanup in
1246 validation messages
1247 * result/VC/* result/valid/*: this slightly change some of the
1248 regression tests outputs
1249
1250Thu Aug 1 14:50:28 CEST 2002 Daniel Veillard <daniel@veillard.com>
1251
1252 * tree.c: trying to fix a problem in namespaced attribute handling
1253 raised by Christian Glahn
1254
1255Thu Aug 1 12:17:30 CEST 2002 Daniel Veillard <daniel@veillard.com>
1256
1257 * encoding.c include/libxml/encoding.h: Opening the interface
1258 xmlNewCharEncodingHandler as requested in #89415
1259 * python/generator.py python/setup.py.in: applied cleanup
1260 patches from Marc-Andre Lemburg
1261 * tree.c: fixing bug #89332 on a specific case of loosing
1262 the XML-1.0 namespace on xml:xxx attributes
1263
1264Wed Jul 31 23:27:42 2002 Aleksey Sanin <aleksey@aleksey.com>
1265
1266 * c14n.c include/libxml/c14n.h: fixed one more c14n + namespaces
1267 corner case from new Merlin's test suite and added a callback
1268 that will be used to improve xmlsec performance
1269
1270
1271Mon Jul 29 18:22:00 CEST 2002 Daniel Veillard <daniel@veillard.com>
1272
1273 * HTMLtree.c: trying to fix the <style> escaping problem in
1274 HTML serialization bug #89342
1275
1276Thu Jul 25 01:33:47 CEST 2002 Daniel Veillard <daniel@veillard.com>
1277
1278 * doc/xml.html doc/*.html: applied syntax patch from Rick Jones
1279 and rebuilt the web site.
1280
1281Mon Jul 22 11:04:48 PDT 2002 Aleksey Sanin <aleksey@aleksey.com>
1282
1283 * include/libxml/tree.h: added _private member to xmlNs struct
1284
1285Sun Jul 21 17:48:47 CEST 2002 Daniel Veillard <daniel@veillard.com>
1286
1287 * HTMLparser.c: fixing bug #84876 based on the xml working
1288 code.
1289
1290Sun Jul 21 19:15:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
1291
1292 * python/Makefile.am: enhanced to fix bug 72012 (errors
1293 when using '-jX' make parameter)
1294
1295Fri Jul 19 16:35:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
1296
1297 * xpath.c: small additional enhancement for booleans
1298 compared to nodesets
1299
1300Wed Jul 17 19:48:14 CEST 2002 Daniel Veillard <daniel@veillard.com>
1301
1302 * HTMLtree.c: changed the order of the encoding declaration
1303 attributes in the meta tags due to a bug in IE/Mac
1304
1305Fri Jul 12 08:45:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
1306
1307 * xpath.c: enhanced handling of booleans (especially '='
1308 and '!=' for nodesets) - fixes bug 85256. Added new
1309 routine xmlXPathNotEqualValues for more proper handling
1310 of '!=' when nodesets are involved.
1311
1312Thu Jul 11 21:45:52 CEST 2002 Daniel Veillard <daniel@veillard.com>
1313
1314 * doc/Makefile.am: fixing Red Hat bug #68614 by adding the
1315 doc/xmlcatalog_man.xml to the source distribution
1316
1317Wed Jul 10 21:26:13 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
1318
1319 * win32/Makefile.msvc: Added a copy *.pdb to install, few have
1320 asked for this.
1321
1322Sat Jul 6 21:55:59 CEST 2002 Daniel Veillard <daniel@veillard.com>
1323
1324 * configure.in: preparing 2.4.23
1325 * doc/*: rebuilt the docs
1326
1327Sat Jul 6 21:11:20 CEST 2002 Daniel Veillard <daniel@veillard.com>
1328
1329 * parser.c: fixing bug #84169 by fixing the
1330 comment of xmlCreatePushParserCtxt to describe the
1331 encoding detection parameters better.
1332
1333Sat Jul 6 19:44:56 CEST 2002 Daniel Veillard <daniel@veillard.com>
1334
1335 * valid.c: fixing bug #79331 in one path the lookup for
1336 ID attributes on a namespaced node wasn't handled correctly :-\
1337
1338Fri Jul 5 20:07:43 CEST 2002 Daniel Veillard <daniel@veillard.com>
1339
1340 * HTMLparser.c: trying to fix 87235 about discarded white
1341 spaces in the HTML parser.
1342 * result/HTML/*: this changes the output of a number of HTML
1343 regression tests
1344
1345Mon Jul 1 23:23:41 CEST 2002 Daniel Veillard <daniel@veillard.com>
1346
1347 * xpath.c: applied patch from Richard Jinks for the namespace
1348 axis + fixed a memory error.
1349 * parser.c parserInternals.c: applied patches from Peter Jacobi
1350 removing ctxt->token for good.
1351 * xmlschemas.c xmlschemastypes.c: fixed a few memory leaks
1352 popped out by the regression tests.
1353 * Makefile.am: patch for threads makefile from Gary Pennington
1354
1355Fri Jun 28 19:38:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
1356
1357 * xpath.c: enhanced behaviour of position() after usage of
1358 expressions involving preceding-sibling (et al).
1359
1360Tue Jun 18 09:58:48 CEST 2002 Daniel Veillard <daniel@veillard.com>
1361
1362 * hash.c: applied a patch from Peter Jacobi to solve a problem
1363 when compiling with the Watcom C on Win32
1364 * result/schemas/*.err: the change of hashing algo generated
1365 permutations in the output
1366
1367Mon Jun 17 19:02:49 CEST 2002 Daniel Veillard <daniel@veillard.com>
1368
1369 * hash.c: applied patch from Sander Vesik improving the quality of
1370 the hash function.
1371
13722002-06-14 Aleksey Sanin <aleksey@aleksey.com>
1373
1374 * DOCBparser.c HTMLparser.c debugXML.c encoding.c
1375 nanoftp.c nanohttp.c parser.c tree.c uri.c xmlIO.c
1376 xmllint.c xpath.c: replaced sprintf() with snprintf()
1377 to prevent possible buffer overflow (the bug was pointed
1378 out by Anju Premachandran)
1379
1380Thu Jun 13 17:30:25 CEST 2002 Daniel Veillard <daniel@veillard.com>
1381
1382 * parser.c: removed an uninitialized data error popped by valgrind
1383 on PE references
1384
1385Wed Jun 12 21:38:46 MDT 2002 John Fleck <jfleck@inkstain.net>
1386
1387 * doc/xml.html
1388 adding tutorial reference to the web page
1389
1390Wed Jun 12 21:26:08 MDT 2002 John Fleck <jfleck@inkstain.net>
1391
1392 * doc/tutorial/xmltutorial.xml
1393 * doc/tutorial/ar01s07.html
1394 * doc/tutorial/ape.html
1395 * doc/tutorial/includegetattribute.c
1396 adding section to tutorial about retrieving an attribute
1397 value
1398
1399Tue Jun 11 12:07:04 CEST 2002 Daniel Veillard <daniel@veillard.com>
1400
1401 * parser.c: applied a couple of patches from Peter Jacobi to start
1402 to get rid of ctxt->token, with a possible significant speed
1403 improvement to be gained once done. Better compliance with PE
1404 references constructs in DTDs too.
1405 * test/valid/t[0-9]* result/valid/t[0-9]*: added a set of tests
1406 from Peter too
1407
1408Tue Jun 11 09:25:12 CEST 2002 Daniel Veillard <daniel@veillard.com>
1409
1410 * parser.c: Babak Vahedipour-Kunze reported that openTag in
1411 xmlParseElement was likely to have been deallocated at the
1412 time of the report, possibly leading to segfault. Just report
1413 the tag name now.
1414
1415Mon Jun 10 18:00:02 CEST 2002 Daniel Veillard <daniel@veillard.com>
1416
1417 * xpath.c: patch from Richard Jinks for XPath substring() function
1418 * result/XPath/expr/strings test/XPath/expr/strings: new set of tests
1419
14202002-06-06 Aleksey Sanin <aleksey@aleksey.com>
1421
1422 * xmlIO.c: patch from Rachel Hestilow to fix bug #84340
1423
1424Wed Jun 5 19:14:49 MDT 2002 John Fleck <jfleck@inkstain.net>
1425
1426 *doc/FAQ.html
1427 fixing typos in FAQ, thanks to Robert Funnell for the
1428 editing help
1429
1430Wed Jun 5 14:50:24 CEST 2002 Daniel Veillard <daniel@veillard.com>
1431
1432 * NEWS: got complaints from rpmlint that it was empty
1433
1434Tue Jun 4 09:09:18 MDT 2002 John Fleck <jfleck@inkstain.net>
1435
1436 * added doc/tutorial, including:
1437 apa.html
1438 apb.html
1439 apc.html
1440 apd.html
1441 ar01s02.html
1442 ar01s03.html
1443 ar01s04.html
1444 ar01s05.html
1445 ar01s06.html
1446 includeaddattribute.c
1447 includeaddkeyword.c
1448 includekeyword.c
1449 includestory.xml
1450 index.html
1451 xmltutorial.xml
1452 libxml tutorial, including generated html
1453
1454Mon Jun 3 21:21:26 2002 Aleksey Sanin <aleksey@aleksey.com>
1455
1456 * result/c14n/exc-without-comments/merlin-c14n-two-*
1457 result/c14n/without-comments/merlin-c14n-two-*
1458 test/c14n/exc-without-comments/merlin-c14n-two-*
1459 test/c14n/without-comments/merlin-c14n-two-*
1460 testC14N.c Makefile.am: added merlin-c14n-two.tar.gz tests for
1461 c14n/exc-c14n and slightly modified test script to handle
1462 these test cases
1463 * c14n.c: fixed bugs for complicated nodes set (namespace
1464 without node and others from merlin-c14n-two.tar.gz)
1465 * include/libxml/xpathInternals.h win32/dsp/libxml2.def.src
1466 win32/libxml2.def.src: "opened" xmlXPathNodeSetFreeNs() function
1467 for xmlsec performance patch
1468 * xpath.c: fixed self::node() for namespaces and attributes
1469
1470Mon Jun 03 00:04:21 2002 Chema Celorio <chema@ximian.com>
1471
1472 * tree.h: added xmlDocFormatDump which is just as xmlDocDump
1473 but with the format parameter
1474 * tree.c: made xmlDocDump a wrapper arround xmlDocFormatDump
1475
1476Fri May 31 12:16:48 2002 Aleksey Sanin <aleksey@aleksey.com>
1477
1478 * Makefile.am: updated c14n tests suite
1479 * c14n.c: performance improvement for previous c14n patch
1480
1481Fri May 31 11:47:12 CEST 2002 Daniel Veillard <daniel@veillard.com>
1482
1483 * parser.c: another peroformance patch from Peter Jacobi, that
1484 time on parsing attribute values.
1485
1486Thu May 30 23:34:27 2002 Aleksey Sanin <aleksey@aleksey.com>
1487
1488 * Makefile.am result/c14n/* test/c14n/*: C14N tests integrated
1489 into LibXML2 test suite
1490
1491Thu May 30 21:23:06 2002 Aleksey Sanin <aleksey@aleksey.com>
1492
1493 * c14n.c: propagating xpath ancesstors node fix to c14n
1494 plus small performance improvement to reduce number of
1495 mallocs
1496 * xpath.c: fixed ancestors axis processing for namespace nodes
1497
1498Wed May 29 10:21:39 CEST 2002 Daniel Veillard <daniel@veillard.com>
1499
1500 * SAX.c parser.c tree.c include/libxml/tree.h: performance patch from
1501 Peter Jacobi
1502
1503Mon May 27 23:18:33 CEST 2002 Daniel Veillard <daniel@veillard.com>
1504
1505 * configure.in: preparing 2.4.22
1506
1507Mon May 27 16:44:04 CEST 2002 Daniel Veillard <daniel@veillard.com>
1508
1509 * HTMLparser.c win32/libxml2.def.src win32/dsp/libxml2.def.src
1510 include/libxml/HTMLparser.h: fixing #79334 making htmlParseDocument
1511 a public entry point.
1512 * doc/*: rebuilt the API and docs
1513
1514Mon May 27 14:16:28 CEST 2002 Daniel Veillard <daniel@veillard.com>
1515
1516 * xpath.c: patch from Richard Jinks to fix a problem introduced
1517 in the previous patch and pointed by Norm
1518
1519Fri May 24 13:10:22 CEST 2002 Daniel Veillard <daniel@veillard.com>
1520
1521 * libxml.spec.in: fixing bug #81112
1522
1523Fri May 24 13:03:24 CEST 2002 Daniel Veillard <daniel@veillard.com>
1524
1525 * uri.c: fixing bug #82848
1526
1527Fri May 24 09:54:49 CEST 2002 Daniel Veillard <daniel@veillard.com>
1528
1529 * result/catalogs/mycatalog.full: Aleksey's commit changed the
1530 output of one catalog test
1531
1532Fri 24 May 2002 12:17:45 AM PDT Aleksey Sanin <aleksey@aleksey.com>
1533
1534 * global.data globals.c tree.c include/libxml/globals.h
1535 win32/libxml2.def.src win32/dsp/libxml2.def.src: changed
1536 default value for global parameter xmlIndentTreeOutput to 1 and
1537 introduced new global parameter xmlTreeIndentString (the string
1538 used to do one-level indent) with default value " " (as it was
1539 in tree.c)
1540
1541Thu May 23 13:55:57 CEST 2002 Daniel Veillard <daniel@veillard.com>
1542
1543 * Makefile.am: Merijn Broeren pointed out a problem when compiling
1544 with trio and schemas.
1545
1546Wed May 22 11:57:49 CEST 2002 Daniel Veillard <daniel@veillard.com>
1547
1548 * xpath.c: patch from Richard Jinks to fix the problem raised in
1549 http://mail.gnome.org/archives/xml/2002-April/msg00246.htm
1550
1551Wed May 22 08:38:19 CEST 2002 Daniel Veillard <daniel@veillard.com>
1552
1553 * xmlschemas.c: a bit of work on import.
1554 * xmlschemastypes.c: Charles Bozeman provided a compare function
1555 for date/time types so min/max facet restrictions should work,
1556 indeterminate comparisons return an error instead of equal.
1557 * test/schemas/date_0* result/schemas/date_0_0: specific test
1558 from Charles Bozeman too
1559
1560Sat May 18 09:54:12 CEST 2002 Daniel Veillard <daniel@veillard.com>
1561
1562 * libxml.3 doc/buildDocBookCatalog: apply a couple of patches
1563 from Christian Cornelssen fixing the man pages and the Catalog
1564 building script.
1565 * xmlschemas.c include/libxml/schemasInternals.h: nothing new yet
1566 next step is <xs:import> I now have a reasonable understanding
1567 of how it works.
1568
1569Thu May 16 10:43:26 CEST 2002 Daniel Veillard <daniel@veillard.com>
1570
1571 * xmlIO.c: applied a small buffer performance patch from Gary Pennington
1572
1573Wed May 15 00:25:34 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
1574
1575 * win32/libxml2.def.src: exported xmlXPathNodeSetAddNs()
1576
1577Tue May 14 13:00:48 CEST 2002 Daniel Veillard <daniel@veillard.com>
1578
1579 * xpath.c: fixing an XPath function evalutation bug pointed out
1580 by Alexey Efimov where the context was lost when evaluating
1581 the function arguments
1582
1583Mon 13 May 2002 11:37:39 PM PDT Aleksey Sanin <aleksey@aleksey.com>
1584
1585 * xpath.c include/libxml/xpathInternals.h: maked xmlXPathNodeSetAddNs()
1586 function public for XMLSec performance optimizations
1587
1588Mon May 13 12:32:22 CEST 2002 Daniel Veillard <daniel@veillard.com>
1589
1590 * python/generator.py python/libxml2class.txt : fixed a problem
1591 with the HTML parser pointed by Gary Benson
1592 * python/tests/Makefile.am python/tests/pushSAXhtml.py: sdding the
1593 example
1594
1595Thu 09 May 2002 11:19:00 AM PDT Aleksey Sanin <aleksey@aleksey.com>
1596 * parser.c: fixed bug #81159 (memory growth in SAX)
1597
1598Tue 07 May 2002 09:20:21 AM PDT Aleksey Sanin <aleksey@aleksey.com>
1599 * xpath.c: fixed bug #78858 (the real fix)
1600
1601Sat 04 May 2002 11:56:31 PM PDT Aleksey Sanin <aleksey@aleksey.com>
1602 * xpath.c: fixed bug #78858 (quick and durty fix to hide the problem)
1603
1604Sun May 5 08:57:08 CEST 2002 Daniel Veillard <daniel@veillard.com>
1605
1606 * tree.c: modified xmlNodeSetBase to allow changing the
1607 base of a document.
1608
1609Fri May 3 09:20:41 CEST 2002 Daniel Veillard <daniel@veillard.com>
1610
1611 * xmlschemastypes.c: patch Charles Bozeman for validation of
1612 all the date, time, and duration types
1613 * test/schemas/dur_0* result/schemas/dur_0*: associated tests
1614 * configure.in: fixed an error pointed by an user
1615 * xml2-config.in: fixed an error pointed by an user
1616
1617Wed 01 May 2002 11:29:27 AM PDT Aleksey Sanin <aleksey@aleksey.com>
1618
1619 * include/libxml/xmlIO.h win32/dsp/libxml2.def.src
1620 win32/libxml2.def.src xmlIO.c: exported default
1621 'file:', 'http:' and 'ftp:' protocols input handlers
1622 and maked protocols comparisson case insensitive
1623
1624Tue Apr 30 16:29:05 CEST 2002 Daniel Veillard <daniel@veillard.com>
1625
1626 * configure.in: Neven Has detected a typo
1627
1628Tue Apr 30 08:48:11 CEST 2002 Daniel Veillard <daniel@veillard.com>
1629
1630 * AUTHORS HACKING: added Aleksey Sanin <aleksey@aleksey.com>
1631 as one of the persons allowed to commit directly to the
1632 module.
1633
1634Mon Apr 29 17:48:26 CEST 2002 Daniel Veillard <daniel@veillard.com>
1635
1636 * configure.in include/libxml/xmlwin32version.h: preparing 2.4.21
1637 * valid.c: raised a too low limit
1638 * doc/*: rebuilt the docs
1639
1640Wed Apr 24 13:41:03 CEST 2002 Daniel Veillard <daniel@veillard.com>
1641
1642 * test/XPath/expr/floats test/XPath/expr/functions
1643 result/XPath/expr/floats result/XPath/expr/functions
1644 xpath.c: another XPath conformance patch from Richard Jinks
1645
1646Tue Apr 23 19:50:40 CEST 2002 Daniel Veillard <daniel@veillard.com>
1647
1648 * xmlschemas.c: fixed validation of attribute groups.
1649 * test/schemas result/schemas: added an example from the primer
1650
1651Tue Apr 23 09:11:37 CEST 2002 Daniel Veillard <daniel@veillard.com>
1652
1653 * Makefile.am xmlschemas.c xmlschemastypes.c: more work on Schemas
1654 * test/schemas result/schemas: updated the test list
1655
1656Mon Apr 22 17:59:14 CEST 2002 Daniel Veillard <daniel@veillard.com>
1657
1658 * TODO: updated a bit
1659 * parser.c: made a comment more specific
1660 * xmlregexp.c xmlschemas.c xmlschemastypes.c: more work on the
1661 Schemas conformance.
1662 * test/schemas result/schemas: updated the test list
1663
1664Sat Apr 20 19:36:39 CEST 2002 Daniel Veillard <daniel@veillard.com>
1665
1666 * xmlregexp.c xmlschemas.c include/libxml/xmlautomata.h:
1667 implementing xs:all with minOccurs = 0
1668 * tes/schemas/* result/schemas/*: added more tests covering
1669 xs:all
1670
1671Sat Apr 20 09:22:50 CEST 2002 Daniel Veillard <daniel@veillard.com>
1672
1673 * xmlregexp.c: first implementation of the all particle, this
1674 may need to be revisited for case where not all transitions
1675 must be crossed.
1676
1677Fri Apr 19 18:26:04 CEST 2002 Daniel Veillard <daniel@veillard.com>
1678
1679 * tree.c: another entity processing update from Markus Henke
1680
1681Fri Apr 19 17:14:24 CEST 2002 Bjorn Reese <breese@users.sourceforge.net>
1682
1683 * trionan.c: fixed crash on OSF/1
1684
1685Fri Apr 19 09:00:56 CEST 2002 Daniel Veillard <daniel@veillard.com>
1686
1687 * xmlschemas.c: more Schemas work
1688 * test/schemas/* result/schemas/*: added more tests coming
1689 from the spec.
1690
1691Thu Apr 18 23:00:02 CEST 2002 Daniel Veillard <daniel@veillard.com>
1692
1693 * c14n.c: patch from Aleksey Sanin reflecting a change in the
1694 ExcC14N specification
1695
1696Thu Apr 18 18:38:30 CEST 2002 Daniel Veillard <daniel@veillard.com>
1697
1698 * tree.c: patch from Markus Henke, fix for recursive entities.
1699
1700Thu Apr 18 17:49:24 CEST 2002 Daniel Veillard <daniel@veillard.com>
1701
1702 * xpath.c: fix a problem with string() on a document node.
1703
1704Thu Apr 18 16:40:42 CEST 2002 Daniel Veillard <daniel@veillard.com>
1705
1706 * Makefile.am xmlschemas.c: more Schemas work
1707 * test/schemas/* result/schemas/*: added more tests coming
1708 from the spec.
1709
1710Thu Apr 18 13:52:52 CEST 2002 Daniel Veillard <daniel@veillard.com>
1711
1712 * HTMLtree.c: fixed & serialization bug introduced in 2.4.20
1713 * result/HTML/*: this changes a few things in the results
1714
1715Wed Apr 17 20:34:37 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
1716
1717 * include/libxml/tree.h: eliminated 'declaration different than
1718 prototype' warning
1719 * include/win32config.h: "resolved" conflicts with errno.h
1720
1721Wed Apr 17 18:26:07 CEST 2002 Daniel Veillard <daniel@veillard.com>
1722
1723 * xmlregexp.c xmlschemas.c include/libxml/xmlautomata.h: more work
1724 on the automata interfaces and debug of counted choices
1725 * test/schemas/* result/schemas/*: added a number of tests
1726
1727Wed Apr 17 11:03:03 CEST 2002 Daniel Veillard <daniel@veillard.com>
1728
1729 * xmlschemas.c xmlschemastypes.c include/libxml/xmlschemas.h:
1730 a bit of work on Schemas
1731 * testSchemas.c: try to make it more useful
1732 * test/schemas/* result/schemas/* Makefile.am: changed the
1733 Schemas regression test procedure, started adding a few samples
1734
1735Tue Apr 16 19:52:01 CEST 2002 Igor Zlatkovic <izlatkovic@stud.fh-frankfurt.de>
1736
1737 * include/libxml/encoding.h: Patch for the Borland C++ builder
1738 * include/libxml/tree.h: Patch for the Borland C++ builder
1739 * threads.c: Patch for the Borland C++ builder
1740 * win32/bcb5: New directory for the Borland C++ builder
1741 project files
1742
1743Tue Apr 16 19:46:55 CEST 2002 Igor Zlatkovic <izlatkovic@stud.fh-frankfurt.de>
1744
1745 * win32/Makefile.msvc: Update for XML Schema support
1746 * win32/configure.js: Update for XML Schema support
1747 * win32/libxml2.def.src: Update for XML Schema support
1748
1749Tue Apr 16 17:46:43 CEST 2002 Daniel Veillard <daniel@veillard.com>
1750
1751 * Makefile.am TODO_SCHEMAS configure.in genUnicode.py testAutomata.c
1752 testRegexp.c testSchemas.c xmlregexp.c xmlschemas.c xmlschemastypes.c
1753 xmlunicode.c include/libxml/Makefile.am
1754 include/libxml/schemasInternals.h include/libxml/xmlautomata.h
1755 include/libxml/xmlregexp.h include/libxml/xmlschemas.h
1756 include/libxml/xmlschemastypes.h include/libxml/xmlunicode.h
1757 include/libxml/xmlversion.h.in : merged the current state of
1758 XML Schemas implementation, it is not configured in by default,
1759 a specific --schemas configure option has been added.
1760 * test/automata test/regexp test/schemas Makefile.am
1761 result/automata result/regexp result/schemas:
1762 merged automata/regexp/schemas regression tests
1763
1764Tue Apr 16 09:48:44 CEST 2002 Daniel Veillard <daniel@veillard.com>
1765
1766 * xpath.c: Gary found a compile time problem, fixes #78823
1767
1768Mon Apr 15 19:11:36 CEST 2002 Daniel Veillard <daniel@veillard.com>
1769
1770 * configure.in: release of 2.4.20
1771 * doc/*: updated and rebuilt the docs
1772
1773Mon Apr 15 14:55:53 CEST 2002 Daniel Veillard <daniel@veillard.com>
1774
1775 * python/Makefile.am: patch from Cristian Gafton to build on
1776 Red Hat 6.2, should also fix #75779
1777
1778Mon Apr 15 12:14:49 CEST 2002 Daniel Veillard <daniel@veillard.com>
1779
1780 * valid.c: first part of fixing #78729
1781
1782Sun Apr 14 23:44:58 CEST 2002 Daniel Veillard <daniel@veillard.com>
1783
1784 * HTMLtree.c uri.c: fixing bug #78662 i.e. add proper
1785 escaping of URI when saving HTML files.
1786 * result/HTML/*: this impacted some tests
1787
1788Sun Apr 14 14:55:15 CEST 2002 Daniel Veillard <daniel@veillard.com>
1789
1790 * configure.in: trying to fix #77441
1791
1792Fri Apr 12 23:02:16 CEST 2002 Daniel Veillard <daniel@veillard.com>
1793
1794 * include/libxml/xmlIO.h: Hallski complained it could not be
1795 included by itself.
1796
1797Thu Apr 11 10:23:36 CEST 2002 Daniel Veillard <daniel@veillard.com>
1798
1799 * configure.in: applied an IEEE flag patch for OSF/1 #77825
1800
1801Wed Apr 10 23:31:34 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
1802
1803 * win32/configure.js: patch from Nilo for the c14n option
1804 * win32/Makefile.msvc: fixed libxml2.def generation with threads
1805
1806Wed Apr 10 21:24:16 CEST 2002 Daniel Veillard <daniel@veillard.com>
1807
1808 * xpath.c include/libxml/xmlwin32version.h.in: Silvan Minghetti
1809 pointed erroneous use of LIBXML_THREADS_ENABLED instead of
1810 LIBXML_THREAD_ENABLED
1811
1812Wed Apr 10 18:12:52 CEST 2002 Daniel Veillard <daniel@veillard.com>
1813
1814 * xpath.c: another patch from Richard Jinks for substring conformance
1815 * test/XPath/expr/floats test/XPath/expr/strings
1816 result/XPath/expr/floats result/XPath/expr/strings: update of the
1817 test suite to check those.
1818
1819Wed Apr 10 13:29:49 CEST 2002 Daniel Veillard <daniel@veillard.com>
1820
1821 * xpath.c: patch from Richard Jinks for .x float parsing.
1822
1823Tue Apr 9 18:09:31 CEST 2002 Daniel Veillard <daniel@veillard.com>
1824
1825 * parser.c: patch from Markus Henke when an encoding ain't recognized
1826
1827Tue Apr 9 15:47:14 CEST 2002 Daniel Veillard <daniel@veillard.com>
1828
1829 * libxml.m4: got a report that #include <string.h> was needed
1830
1831Tue Apr 9 11:51:25 CEST 2002 Daniel Veillard <daniel@veillard.com>
1832
1833 * xmllint.c: applied a fix from Anthony Jones for -o /--output
1834
1835Tue Apr 2 20:27:11 MST 2002 John Fleck <jfleck@inkstain.net>
1836
1837 * doc/example.html: fixing typo
1838
1839Mon Apr 1 10:02:57 CEST 2002 Daniel Veillard <daniel@veillard.com>
1840
1841 * xpath.c: fixed a bug in the nodeset to boolean comparison code
1842 pointed out by Melvyn Sopacua.
1843
1844Fri Mar 29 23:41:53 CET 2002 Daniel Veillard <daniel@veillard.com>
1845
1846 * libxml.m4: Frédéric Crozat gave a patch related to the change
1847 of Include paths breaking the libxml.m4
1848
1849Fri Mar 29 18:25:54 CET 2002 Daniel Veillard <daniel@veillard.com>
1850
1851 * xpath.c: Fix bug #76927 forgot to save some context
1852 when evaluating binary expressions
1853
1854Thu Mar 28 19:22:48 CET 2002 Daniel Veillard <daniel@veillard.com>
1855
1856 * configure.in: fixed configure for MPE/iX from Markus Henke
1857 * xmlmemory.c: fixed initialization problems
1858 * xpath.c: another set of patches from Richard Jinks this
1859 fixes "make XPathtests" on linux
1860
1861Wed Mar 27 17:09:43 CET 2002 Daniel Veillard <daniel@veillard.com>
1862
1863 * trionan.c trionan.h xpath.c: more patches from Richard Jinks
1864 * test/XPath/expr/compare test/XPath/expr/equality
1865 test/XPath/expr/floats test/XPath/expr/functions
1866 test/XPath/expr/strings result/XPath/expr/compare
1867 result/XPath/expr/equality result/XPath/expr/floats
1868 result/XPath/expr/functions result/XPath/expr/strings: Updated
1869 tests though they show a divergence on Linux
1870
1871Wed Mar 27 10:06:53 CET 2002 Daniel Veillard <daniel@veillard.com>
1872
1873 * xpath.c trionan.c: previous commit also included patches
1874 from Richard Jinks on some IEEE support corner case
1875
1876Wed Mar 27 10:03:11 CET 2002 Daniel Veillard <daniel@veillard.com>
1877
1878 * AUTHORS HACKING: Added Igor Zlatkovic as official maintainer
1879 * python/Makefile.am python/tests/Makefile.am: Albert Chin pointed
1880 that $(datadir) should be used for docs
1881
1882Tue Mar 26 13:43:16 CET 2002 Daniel Veillard <daniel@veillard.com>
1883
1884 * xmlIO.c: Thomas Steinborn pointed out #76404 that libxml2
1885 could leak filedescriptors
1886
1887Tue Mar 26 08:55:53 CET 2002 Daniel Veillard <daniel@veillard.com>
1888
1889 * configure.in nanohttp.c: applied patch from Allan Clark for
1890 UnixWare/OpenServer
1891
1892Mon Mar 25 17:45:44 CET 2002 Daniel Veillard <daniel@veillard.com>
1893
1894 * configure.in: preparing 2.4.19
1895 * doc/*: rebuilt the docs
1896
1897Mon Mar 25 17:34:06 CET 2002 Daniel Veillard <daniel@veillard.com>
1898
1899 * nanohttp.c: fixing #76043, got fed up with non-portability
1900 of that piece of code.
1901
1902Mon Mar 25 13:08:21 CET 2002 Daniel Veillard <daniel@veillard.com>
1903
1904 * valid.c SAX.c: Never commit without running "make tests" :-(
1905 fix a couple of stupidities in the previous commit
1906 * result/*: a few changes in some attribute order result of previous
1907 commit.
1908
1909Mon Mar 25 11:46:05 CET 2002 Daniel Veillard <daniel@veillard.com>
1910
1911 * valid.c SAX.c: fixed bug #76168, attribute redeclared in
1912 the internal subset should not raise duplicate ID errors,
1913 also there was a small bug in conjunction to namespace
1914 declarations defaulted and xml:xxx attributes DTD definitions.
1915
1916Fri Mar 22 15:13:49 CET 2002 Daniel Veillard <daniel@veillard.com>
1917
1918 * xpath.c: Richard Jinks also raised some rounding problems
1919 this tries to fix them
1920
1921Fri Mar 22 13:22:09 CET 2002 Daniel Veillard <daniel@veillard.com>
1922
1923 * xpath.c: Richard Jinks spotted an incoherent memory allocation
1924 behaviour in xmlXPathCastToString()
1925
1926Thu Mar 21 14:25:29 CET 2002 Daniel Veillard <daniel@veillard.com>
1927
1928 * encoding.c: fixed a bug in the ISO-Latin 1 to UTF8 encoder
1929 raised by Morus Walter
1930
1931Thu Mar 21 14:07:13 CET 2002 Daniel Veillard <daniel@veillard.com>
1932
1933 * xmlcatalog.c include/libxml/xmlversion.h.in: applied 2 fixups
1934 from Igor
1935
1936Thu Mar 21 13:30:06 CET 2002 Daniel Veillard <daniel@veillard.com>
1937
1938 * xpath.c: fixing #75619, related to a problem when trying
1939 to evaluate condition when the current node set resulting
1940 from that sub-step evaluation is empty. Also fixes 2 potential
1941 problem with previous-sibling and next-siblings axis.
1942
1943Thu Mar 21 09:03:59 CET 2002 Daniel Veillard <daniel@veillard.com>
1944
1945 * c14n.c: patch from Mark Vakoc to build C14N if DocBook and
1946 HTML support is not configured in.
1947
1948Wed Mar 20 22:42:42 CET 2002 Daniel Veillard <daniel@veillard.com>
1949
1950 * HTMLparser.c error.c parser.c parserInternals.c tree.c xmlIO.c
1951 include/libxml/tree.h: dohh I really didn't intended to commit
1952 this test version :-(
1953
1954Wed Mar 20 20:20:57 CET 2002 Daniel Veillard <daniel@veillard.com>
1955
1956 * testSAX.c: I wanted to see the real speed at the SAX interface
1957 after a little too many Ximianer started complaining about the
1958 parser speed.
1959 added a --quiet option:
1960 paphio:~/XML -> ls -l db100000.xml
1961 -rw-rw-r-- 1 veillard www 20182040 Mar 20 10:30 db100000.xml
1962 paphio:~/XML -> time ./testSAX --quiet db100000.xml
1963 3200006 callbacks generated
1964 real 0m1.270s
1965 Which means 16MBytes/s and 3Mcallback/s
1966
1967Tue Mar 19 19:33:57 CET 2002 Daniel Veillard <daniel@veillard.com>
1968
1969 * xpath.c: valgrind spotted another error that time when running
1970 on libxslt regression tests
1971
1972Tue Mar 19 15:24:49 CET 2002 Daniel Veillard <daniel@veillard.com>
1973
1974 * Makefile.am: adding "make valgrind" running the full regression
1975 tests (except python ones) under Valgrind (using valgrind -q
1976 which was kindly added by the author).
1977 * valid.c: stupid bug pinpointed by Valgrind, the regression tests
1978 passes cleanly now except an obcure floating point initialization
1979 raised in log10() in one XPath regression test ???
1980 * tree.c: edited some comments to close #75244
1981
1982Tue Mar 19 12:15:20 CET 2002 Daniel Veillard <daniel@veillard.com>
1983
1984 * xpath.c: pretty insane thing, the xmlXPathFormatNumber()
1985 was not serializing 1 as "1" if LC_ALL=sv_SE :-( and in the
1986 context of ScrollKeeper, made sure that if the number is
1987 an integer, the serialization follows the description at
1988 http://www.w3.org/TR/xpath#section-String-Functions
1989
1990Mon Mar 18 19:18:13 CET 2002 Daniel Veillard <daniel@veillard.com>
1991
1992 * configure.in: preparing 2.4.18
1993 * doc/*: updated and rebuilt the web site
1994 * *.c libxml.h: implement the new IN_LIBXML scheme discussed with
1995 the Windows and Cygwin maintainers.
1996 * parser.c: humm, changed the way the SAX parser work when
1997 xmlSubstituteEntitiesDefault(1) is set, it will then
1998 do the entity registration and loading by itself in case the
1999 user provided SAX getEntity() returns NULL.
2000 * testSAX.c: added --noent to test the behaviour.
2001
2002Mon Mar 18 12:44:23 CET 2002 Daniel Veillard <daniel@veillard.com>
2003
2004 * parser.c: Wilfried Teiken provided a hackish but working
2005 way to get context reported back on entities when parsing
2006 with SAX and without breaking the DOM build.
2007
2008Sun Mar 17 11:31:55 CET 2002 Daniel Veillard <daniel@veillard.com>
2009
2010 * c14n.c: applied a new patch from Aleksey Sanin
2011 * doc/site.xsl doc/xml.html doc/*.html: updated the documentation
2012 to reference Aleksey implementation of XML digital Signatures
2013
2014Sat Mar 16 23:01:42 CET 2002 Daniel Veillard <daniel@veillard.com>
2015
2016 * xpath.c: small fix to avoid potential problem due to
2017 ordering of freeing data
2018 * python/Makefile.am: people were complaining about
2019 the generated file in python dir not being built
2020
2021Fri Mar 15 23:21:40 CET 2002 Daniel Veillard <daniel@veillard.com>
2022
2023 * libxml.spec.in python/Makefile.am python/tests/Makefile.am
2024 python/generator.py python/libxml.c python/types.c: Cleanup
2025 of the python Makefiles based on Jacob and James feedback,
2026 fixed the spec file accordingly, fixed the number of warning
2027 that passing my pedantic CFLAGS was generating. Conclusion
2028 is that Python includes are real crap.
2029
2030Fri Mar 15 19:41:25 CET 2002 Daniel Veillard <daniel@veillard.com>
2031
2032 * configure,in: it was reported quite a few times that
2033 xml2-config --cflags should not output
2034 -I$includeprefix/libxml2/libxml because libxml2 header names
2035 clashes with existing names like list.h from C++ stl.
2036 Includes should be #include<libxml/xxx.h> so ...
2037
2038Fri Mar 15 10:41:50 CET 2002 Daniel Veillard <daniel@veillard.com>
2039
2040 * c14n.c: another patch from Aleksey Sanin
2041
2042Fri Mar 15 08:55:55 CET 2002 Daniel Veillard <daniel@veillard.com>
2043
2044 * c14n.c: applied patch from Aleksey Sanin fixing a problem in the
2045 canonicalization algorithm
2046 * doc/xml.html doc/index.html: added the C14N references on the
2047 index page.
2048
20492002-03-13 jacob berkman <jacob@ximian.com>
2050
2051 * python/Makefile.am: remove LDADD and CFLAGS as this is broken
2052 usage, redundant, and gcc specific
2053
2054Wed Mar 13 11:00:59 CET 2002 Daniel Veillard <daniel@veillard.com>
2055
2056 * xpath.c: speedup some node selection operations, this can
2057 have a significant impact on DocBook Norm's stylesheets
2058 * nanohttp.c: someone reported that SOCKLEN_T may not be defined
2059 make sure it's always the case
2060 * debugXML.c: distinguish CDATA and comments in ls operations
2061
2062Tue Mar 12 19:45:24 CET 2002 Daniel Veillard <daniel@veillard.com>
2063
2064 * include/libxml/*.h: Heiko W. Rupp fixed a lot of comments
2065 to generate better API descriptions etc...
2066
2067Mon Mar 11 10:10:30 CET 2002 Daniel Veillard <daniel@veillard.com>
2068
2069 * c14n.c: Fixing #74186, made sure all boolean expressions
2070 get fully parenthesized, ran indent on the output
2071 * configure.in HTMLtree.c SAX.c c14n.c debugXML.c tree.c xpointer.c
2072 include/libxml/tree.h: also #74186 related, removed the
2073 --with-buffers option, and all the preprocessor conditional
2074 sections that were resulting from it.
2075
2076Sun Mar 10 17:47:58 CET 2002 Daniel Veillard <daniel@veillard.com>
2077
2078 * valid.c: applied patch from Dodji Seketeli fixing an
2079 uninitailized variable in xmlValidGetValidElements()
2080
2081Sat Mar 9 15:10:49 CET 2002 Daniel Veillard <daniel@veillard.com>
2082
2083 * c14n.c: fixed a few comments
2084 * doc/*.html doc/*/*.html: regenerated the docs and added
2085 the C14N API
2086 * doc/api.xsl doc/gnome-xml.sgml: fixups and added IDs
2087
2088Sat Mar 9 11:16:11 CET 2002 Daniel Veillard <daniel@veillard.com>
2089
2090 * check-xml-test-suite.py: fix to adapt varaiations in the
2091 bindings
2092 * configure.in python/setup.py python/setup.py.in: fixed to
2093 have the version of the python scripts automatically updated
2094
2095Fri Mar 8 16:45:55 CET 2002 Daniel Veillard <daniel@veillard.com>
2096
2097 * tree.c: fixed a bug newly introduced and pointed by Uwe Fechner
2098 in xmlCopyProp()
2099
2100Fri Mar 8 15:49:10 CET 2002 Daniel Veillard <daniel@veillard.com>
2101
2102 * configure.in: preparing 2.4.17 release
2103 * doc/*: updated and rebuilt the docs
2104 * xpath.c: fixed a comment
2105 * python/libxml.c: fixed a possible reentrancy problem
2106
2107Thu Mar 7 23:19:28 CET 2002 Daniel Veillard <daniel@veillard.com>
2108
2109 * tree.c python/tests/Makefile.am python/tests/attribs.py:
2110 fixed xmlHasNsProp() bugs for defaulted from DTD attribs,
2111 added a specific regression test
2112 * python/generator.py: xmlHasNsProp() and xmlHasProp() shall
2113 not raise exceptions when failing to find the attribute.
2114
2115Thu Mar 7 16:11:35 CET 2002 Daniel Veillard <daniel@veillard.com>
2116
2117 * configure.in xmllint.c: owen pointed out a problem with the
2118 ftme fix, gettimeofday() was not detected by configure and
2119 the ftime header wasn't included, dohhh
2120
2121Thu Mar 7 12:19:36 CET 2002 Daniel Veillard <daniel@veillard.com>
2122
2123 * configure.in xmllint.c: trying to fix #71457 for timing
2124 precision when gettimeofday() is not availble but ftime() is
2125
2126Thu Mar 7 11:24:02 CET 2002 Daniel Veillard <daniel@veillard.com>
2127
2128 * libxml.spec.in doc/Makefile.am: Fixed #73408 missing images
2129 are now copied on install and part of the -devel RPM
2130
2131Thu Mar 7 09:34:16 CET 2002 Daniel Veillard <daniel@veillard.com>
2132
2133 * xpath.c: trying to avoid bug #72150 which was apparently
2134 caused by a gcc bug (or a processor problem) as detailed
2135 at http://veillard.com/gcc.bug
2136
2137Thu Mar 7 01:02:37 CET 2002 Daniel Veillard <daniel@veillard.com>
2138
2139 * tree.c python/tests/Makefile.am python/tests/cutnpaste.py:
2140 fixed xmlReconciliateNs(), added a Python test/example for
2141 inter-document cut'n paste
2142 * python/libxml.py: fixed node.doc on document nodes and added
2143 xpathEval() onto node objects
2144
2145Wed Mar 6 22:38:03 CET 2002 Daniel Veillard <daniel@veillard.com>
2146
2147 * HTMLtree.c: fixed some htmlSetMetaEncoding() problems
2148 * python/libxml.c python/tests/Makefile.am python/tests/serialize.py:
2149 fixup and integrated tests for the serialization stuff
2150
2151Wed Mar 6 19:40:57 CET 2002 Daniel Veillard <daniel@veillard.com>
2152
2153 * Makefile.am libxml.3 libxml.4 libxml.spec.in: Fixed bug #72570
2154 moved the libxml man page to section 3
2155
2156Wed Mar 6 18:34:07 CET 2002 Daniel Veillard <daniel@veillard.com>
2157
2158 * tree.c: fix bug #72490
2159 * python/libxml.c python/libxml.py: added methods serialize()
2160 and saveTo() to all node elements.
2161
2162Tue Mar 5 21:27:03 CET 2002 Daniel Veillard <daniel@veillard.com>
2163
2164 * xmlIO.c: closed #73430, don't read from an input source
2165 which indicated an end-of-file or an error.
2166
2167Tue Mar 5 16:33:42 CET 2002 Daniel Veillard <daniel@veillard.com>
2168
2169 * parser.c: make sure SAX endDocument is always called as
2170 this could result in a Python memory leak otherwise (it's
2171 used to decrement ref-counting)
2172 * python/generator.py python/libxml.c python/libxml.py
2173 python/libxml2-python-api.xml python/libxml2class.txt
2174 python/tests/error.py python/tests/xpath.py: implemented
2175 the suggestions made by Gary Benson and extended the tests
2176 to match it.
2177
2178Tue Mar 5 10:35:24 CET 2002 Daniel Veillard <daniel@veillard.com>
2179
2180 * python/generator.py: applied patch fixing #73450
2181
2182Mon Mar 4 17:59:29 CET 2002 Daniel Veillard <daniel@veillard.com>
2183
2184 * xpath.c: fixing #61290 "namespace nodes have no parent"
2185 long standing divergence from the XPath REC. NodeSets
2186 simply hold a copy of namespace nodes and those node ->next
2187 points to the parent (which may not be the node carrying the
2188 definition).
2189 * include/libxml/xpath.h: flagged but didn't added a possible
2190 speedup
2191 * DOCBparser.c HTMLparser.c: removed some warnings from push
2192 parser due to new state being added.
2193 * tree.c: new fix from Boris Erdmann
2194 * configure.in c14n.c include/libxml/c14n.h testC14N.c: added
2195 the XML Canonalization support from Aleksey Sanin
2196
2197Sun Mar 3 15:12:42 CET 2002 Daniel Veillard <daniel@veillard.com>
2198
2199 * tree.c: patch from Boris Erdmann fixing some namespace odities
2200 with xmlCopyNode()
2201
2202Sat Mar 2 10:33:04 CET 2002 Daniel Veillard <daniel@veillard.com>
2203
2204 * xmlIO.c: fix bug #72706 when loading a NULL entity
2205
2206Fri Mar 1 17:14:42 CET 2002 Daniel Veillard <daniel@veillard.com>
2207
2208 * SAX.c: Fixed #72346, about handling of xmlns:foo="", this could
2209 actually change in a future XML Namespace revision.
2210
2211Fri Mar 1 17:12:15 CET 2002 Daniel Veillard <daniel@veillard.com>
2212
2213 * python/types.c python/tests/Makefile.am python/tests/xpathret.py:
2214 added the possibility of returning nodesets from XPath extension
2215 functions written in Python
2216
2217Fri Mar 1 13:56:12 CET 2002 Daniel Veillard <daniel@veillard.com>
2218
2219 * python/*: commiting some Python bindings work done while travelling
2220
2221Fri Mar 1 10:11:15 CET 2002 Daniel Veillard <daniel@veillard.com>
2222
2223 * xmllint.c: close #72663 and #72658, don't memdump unless compiled
2224 explicitely with memory debugging switched on
2225
2226Sat Feb 23 11:08:09 CET 2002 Daniel Veillard <daniel@veillard.com>
2227
2228 * python/generator.py python/libxml.c python/libxml2-python-api.xml
2229 python/libxml2class.txt python/libxml_wrap.h python/types.c:
2230 Added wrapper for the xmlURIPtr type, provided accessors, fixed
2231 the accessor generator for strings
2232 * python/tests/Makefile.am python/tests/tstURI.py: added a specific
2233 regression test.
2234
2235Fri Feb 22 23:44:57 CET 2002 Daniel Veillard <daniel@veillard.com>
2236
2237 * python/README python/generator.py python/libxml.c python/setup.py:
2238 added the 'usual' setup.py to allow building a libxml2-python
2239 module based on the same code. The initialization is however
2240 different the 2 .so files fo libxml2 and libxslt are identical and
2241 they entry point initialize both libraries. this is done to avoid
2242 some possible nasty problem since the Python don't merge the maps
2243 of all shared modules.
2244
2245Wed Feb 20 23:16:08 CET 2002 Daniel Veillard <daniel@veillard.com>
2246
2247 * parser.c: fixed a push/encoding bug reported by Michael
2248 on librsvg
2249
2250Wed Feb 20 19:54:05 CET 2002 Daniel Veillard <daniel@veillard.com>
2251
2252 * include/libxml/parserInternals.h: fixes a misplaced #endif
2253
2254Wed Feb 20 17:47:55 CET 2002 Daniel Veillard <daniel@veillard.com>
2255
2256 * parser.c valid.c: found and fixed a couple of allocation bugs
2257
2258Wed Feb 20 15:36:03 CET 2002 Daniel Veillard <daniel@veillard.com>
2259
2260 * doc/xml.html doc/python.html doc/*: added a Python and binding
2261 page describing the current state of the Python bindings and
2262 giving pointers to the other languages wrappers.
2263
2264Wed Feb 20 11:16:15 CET 2002 Daniel Veillard <daniel@veillard.com>
2265
2266 * configure.in include/libxml/xmlwin32version.h: preparing 2.4.16
2267 * doc/* python/libxml2class.txt: updated and rebuilt the docs,
2268 rebuilt the API and web site
2269 * xpath.c: fixed #71978 portability bugs
2270
2271Tue Feb 19 22:49:36 CET 2002 Daniel Veillard <daniel@veillard.com>
2272
2273 * SAX.c: oops broke automatic defaulting of namespaces attributes.
2274
2275Tue Feb 19 22:01:35 CET 2002 Daniel Veillard <daniel@veillard.com>
2276
2277 * include/libxml/parserInternals.h parser.c: had to change
2278 2 internal parsing API when processing document content
2279 to check the start and end of element content are defined
2280 in the same entity
2281 * valid.c include/libxml/valid.h: attribute normalization can
2282 generate a validity error added xmlValidCtxtNormalizeAttributeValue()
2283 with the context to report it.
2284 * SAX.c: fixed the last known bugs, crazy validation constraints
2285 when a document is standalone seems correctly handled. There
2286 is a couple of open issues left which need consideration especially
2287 PE93 on external unparsed entities and standalone status.
2288 Ran 1819 tests: 1817 suceeded, 2 failed and 0 generated an error in 8.26 s.
2289 The 2 tests left failing are actually in error. Cleanup done.
2290
2291Tue Feb 19 15:17:02 CET 2002 Daniel Veillard <daniel@veillard.com>
2292
2293 * valid.c: implemented E59 spaces in CDATA does not match the
2294 nonterminal S
2295
2296Tue Feb 19 14:44:53 CET 2002 Daniel Veillard <daniel@veillard.com>
2297
2298 * SAX.c parser.c valid.c: more validation test fixups
2299 * check-xml-test-suite.py: added duration info for the tests
2300
2301Mon Feb 18 23:25:08 CET 2002 Daniel Veillard <daniel@veillard.com>
2302
2303 * parser.c valid.c: a couple of errors were reported but not
2304 saved back as such in the parsing context. Down to 1% failure rate
2305 Ran 1819 tests: 1801 suceeded, 18 failed and 0 generated an error
2306
2307Mon Feb 18 20:16:15 CET 2002 Daniel Veillard <daniel@veillard.com>
2308
2309 * xmlInternald.c: isExtender was missing a char
2310 * parser.c include/libxml/parser.h: % are acceptable in the
2311 internal subset if within a PUBLIC ID
2312
2313Mon Feb 18 19:27:32 CET 2002 Daniel Veillard <daniel@veillard.com>
2314
2315 * SAX.c parserInternals.c valid.c: more work on the conformance
2316 suite. Took the step to finally block documents with encoding
2317 errors. It's a fatal error per the spec, people should have fixed
2318 their documents by now.
2319
2320Mon Feb 18 15:30:14 CET 2002 Daniel Veillard <daniel@veillard.com>
2321
2322 * check-xml-test-suite.py: fixed the test script after some discussion
2323 on the semantic of TYPE="error"
2324 * Makefile.am: added the script to the distrib
2325
2326Mon Feb 18 12:17:41 CET 2002 Daniel Veillard <daniel@veillard.com>
2327
2328 * SAX.c entities.c: fixed a couple of conformances issues deep
2329 into the validation code (standalone and undeclared Notations)
2330
2331Mon Feb 18 00:17:24 CET 2002 Daniel Veillard <daniel@veillard.com>
2332
2333 * parser.c: fixed #71741 supid typo an a bug about encoding parsing
2334 stayed there for years !
2335
2336Mon Feb 18 00:06:42 CET 2002 Daniel Veillard <daniel@veillard.com>
2337
2338 * valid.c SAX.c: fixed #71740 NotationDecl with a required field
2339 missing
2340
2341Sun Feb 17 23:45:40 CET 2002 Daniel Veillard <daniel@veillard.com>
2342
2343 * check-xml-test-suite.py: improved the behaviour a bit as
2344 well as the logs
2345 * parser.c valid.c SAX.c: fixed a few more bugs
2346 "Ran 1819 tests: 1778 suceeded, 41 failed, and 0 generated an error"
2347
2348Sun Feb 17 20:41:37 CET 2002 Daniel Veillard <daniel@veillard.com>
2349
2350 * check-xml-test-suite.py: python script to run regression tests
2351 against the XML Test suite of W3C/OASis
2352 * SAX.c: fixed a validation bug
2353 * parser.c: fixed 3 errors pointed by the test suite
2354 * doc/buildDocBookCatalog: fixed a typo pointed by drake
2355 * python/Makefile.am: fixed a dependendy
2356
2357Fri Feb 15 21:47:13 CET 2002 Daniel Veillard <daniel@veillard.com>
2358
2359 * xmlmemory.c: avoid a warning bug #71594
2360
2361Wed Feb 13 22:13:33 CET 2002 Daniel Veillard <daniel@veillard.com>
2362
2363 * xmlmemory.c: Jesse Perry provided a patch to remove a few
2364 warning on alpha/Tru64
2365
2366Wed Feb 13 14:30:49 CET 2002 Daniel Veillard <daniel@veillard.com>
2367
2368 * include/libxml/entities.h: fixing a comment
2369 * valid.c: fixing some troubles with validity check on namespaces
2370 * result/VC/NS3 test/VC/NS3: added a specific regression test
2371
2372Wed Feb 13 14:05:24 CET 2002 Daniel Veillard <daniel@veillard.com>
2373
2374 * tree.c: Fixing #71342 serializing '\n' in attribute values
2375 * result/noent/att3 result/att3 test/att3: added a specific
2376 test.
2377
2378Tue Feb 12 14:45:32 CET 2002 Daniel Veillard <daniel@veillard.com>
2379
2380 * python/libxml.c: couple of bug fixes
2381
2382Mon Feb 11 19:41:29 CET 2002 Daniel Veillard <daniel@veillard.com>
2383
2384 * python/*.py: removed tabs and used spaces.
2385
2386Mon Feb 11 19:25:44 CET 2002 Daniel Veillard <daniel@veillard.com>
2387
2388 * configure.in include/libxml/xmlwin32version.h: preparing 2.4.15
2389 * doc/news.html doc/xml.html doc/xmlio.html: rebuilt some docs
2390
2391Mon Feb 11 14:53:24 CET 2002 Daniel Veillard <daniel@veillard.com>
2392
2393 * doc/xmlcatalog_man.xml: trying to close Red Hat bug #58707
2394 https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=58707
2395
2396Mon Feb 11 09:53:02 CET 2002 Daniel Veillard <daniel@veillard.com>
2397
2398 * include/libxml/encoding.h include/libxml/entities.h
2399 include/libxml/globals.h include/libxml/parser.h
2400 include/libxml/threads.h include/libxml/tree.h
2401 include/libxml/xmlmemory.h: trying to fix the include mess
2402
2403Mon Feb 11 08:53:33 CET 2002 Daniel Veillard <daniel@veillard.com>
2404
2405 * include/libxml/xmlmemory.h: reverted part of the previous
2406 attempt to provide #69655, this was breaking the build.
2407
2408Sun Feb 10 14:13:34 CET 2002 Daniel Veillard <daniel@veillard.com>
2409
2410 * HTMLtree.c Makefile.am build_glob.py configure.in debugXML.c
2411 globals.c parser.c threads.c tree.c valid.c xmlmemory.c
2412 xpath.c xpointer.c include/libxml/globals.h include/libxml/parser.h
2413 include/libxml/parserInternals.h include/libxml/tree.h
2414 include/libxml/xmlmemory.h include/libxml/xpathInternals.h:
2415 Tentatively fixed #69655 , make compiling with -Wredundant-decls
2416 clean.
2417 * python/libxml.c: fixed a warning.
2418
2419Sun Feb 10 12:02:59 CET 2002 Daniel Veillard <daniel@veillard.com>
2420
2421 * tree.c valid.c xinclude.c: fix #68882, cleanup the XInclude
2422 copying of node, merge back IDs in the target document.
2423 * result/XInclude/docids.xml test/XInclude/docs/docids.xml
2424 test/XInclude/ents/ids.xml: test case
2425 * result/VC/ElementValid4: output changed due to a typo fix
2426
2427Sat Feb 9 23:15:04 CET 2002 Daniel Veillard <daniel@veillard.com>
2428
2429 * python/Makefile.am: seems some version of automake didn't
2430 generate the dependancies right as Jacob found out. Add
2431 an extra dependancy rule.
2432
2433Sat Feb 9 18:59:23 CET 2002 Daniel Veillard <daniel@veillard.com>
2434
2435 * parserInternals.c valid.c: Justin Fletcher found some parts
2436 of the code needing cleanup
2437 * libxml.spec.in python/Makefile.am python/generator.py
2438 python/libxml.c python/libxml.py: Fixed the python Makefiles
2439 corrected a bug showing up on ia64, changed the name of the
2440 python internal module too
2441
2442Fri Feb 8 15:19:28 CET 2002 Daniel Veillard <daniel@veillard.com>
2443
2444 * Makefile.am: applied patch from Andris Pavenis for binary
2445 name suffixes
2446
2447Fri Feb 8 14:43:17 CET 2002 Daniel Veillard <daniel@veillard.com>
2448
2449 * xmllint.c win32/win32config.h: fixing #68748
2450
2451Fri Feb 8 14:37:05 CET 2002 Daniel Veillard <daniel@veillard.com>
2452
2453 * valid.c: fixing #70166
2454
2455Fri Feb 8 14:31:24 CET 2002 Daniel Veillard <daniel@veillard.com>
2456
2457 * valid.c: fixing #70077
2458
2459Fri Feb 8 14:24:02 CET 2002 Daniel Veillard <daniel@veillard.com>
2460
2461 * Copyright Makefile.am README configure.in libxml.spec.in:
2462 Changed to the MIT Licence
2463 * doc/FAQ.html doc/catalog.html doc/intro.html doc/xml.html
2464 doc/xmlio.html: updated the doc accordingly
2465 * include/libxml/xmlwin32version.h configure.in: preparing
2466 2.4.14 release
2467 * python/generator.py python/libxml.c python/libxml2-python-api.xml
2468 python/libxml2class.txt python/libxml_wrap.h python/types.c:
2469 fixed the const xmlChar * wrapper and generator, XPath extension
2470 functions now use the context as first argument
2471 * python/tests/tstxpath.py python/tests/xpath.py
2472 python/tests/xpathext.py: Updated the tests accordingly
2473 * tree.c: fixed bug #70067
2474
2475Thu Feb 7 17:33:58 CET 2002 Daniel Veillard <daniel@veillard.com>
2476
2477 * Makefile.am: cleanup
2478 * debugXML.c: always use stdout if output is NULL
2479 * xmlIO.c: don't close filedescriptors passed to outputBuffers
2480 * python/Makefile.am python/generator.py python/libxml2class.txt
2481 python/libxml_wrap.h python/types.c: augmented the number of bindings
2482 handling FILE * and XPath contexts
2483 * python/tests/Makefile.am: avoid a stupid problem due to the
2484 use of TEST.
2485
2486Wed Feb 6 23:37:07 CET 2002 Daniel Veillard <daniel@veillard.com>
2487
2488 * configure.in: fixed stupid bug #70738 found by alfons hoogervorst
2489
2490Wed Feb 6 17:04:51 CET 2002 Daniel Veillard <daniel@veillard.com>
2491
2492 * python/TODO python/libxml.c: cleanup the extension function lookup
2493 * xmlmemory.c include/libxml/xmlmemory.h: always compile the list
2494
2495Tue Feb 5 17:33:30 CET 2002 Daniel Veillard <daniel@veillard.com>
2496
2497 * configure.in python/Makefile.am: do not install outside
2498 of prefix
2499
2500Mon Feb 4 15:05:55 CET 2002 Daniel Veillard <daniel@veillard.com>
2501
2502 * python/TODO python/libxml.c: started adding SAX interfaces
2503 * python/tests/Makefile.am python/tests/pushSAX.py: added a basic
2504 SAX test
2505
2506Mon Feb 4 01:12:42 CET 2002 Daniel Veillard <daniel@veillard.com>
2507
2508 * tree.c: hardened the addChild function
2509 * python/generator.py python/libxml.c python/libxml2-python-api.xml
2510 python/libxml2class.txt python/libxml_wrap.h python/TODO:
2511 added accessors needed for xmlNode, a bit more testing and
2512 extension of interfaces
2513 * python/tests/Makefile.am python/tests/build.py: added a test
2514 build from scratch/save/load/check
2515
2516Sun Feb 3 21:10:39 CET 2002 Daniel Veillard <daniel@veillard.com>
2517
2518 * parserInternals.c: change a small bit in the way valididy
2519 error messages get initialized
2520 * python/TODO python/libxml.c python/libxml2-python-api.xml
2521 python/libxml2class.txt python/libxml_wrap.h python/types.c:
2522 added some memory debugging to track leaks at the libxml2 level
2523 * python/tests/*.py: changed all tests to check for leaks,
2524 there is just one left in XPath extension registrations.
2525
2526Sun Feb 3 17:50:46 CET 2002 Daniel Veillard <daniel@veillard.com>
2527
2528 * python/TODO python/generator.py python/libxml2-python-api.xml
2529 python/libxml2class.txt: more accessor classes for the parser
2530 context, allow to switch on and check validity
2531 * python/tests/Makefile.am python/tests/error.py
2532 python/tests/invalid.xml python/tests/valid.xml
2533 python/tests/validate.py: attded more test and and added error.py
2534 which I forgot to commit in the last step
2535
2536Sun Feb 3 16:03:55 CET 2002 Daniel Veillard <daniel@veillard.com>
2537
2538 * python/Makefile.am python/types.c: cleanup
2539 * python/libxml.c python/libxml.py python/libxml_wrap.h
2540 python/generator.py python/libxml2-python-api.xml
2541 python/libxml2class.txt: added class for parser context, added
2542 first cut for push mode support. Added a framework to generate
2543 accessors functions.
2544 * python/tests/Makefile.am python/tests/push.py: added a push
2545 test
2546
2547Sun Feb 3 00:17:26 CET 2002 Daniel Veillard <daniel@veillard.com>
2548
2549 * python/Makefile.am python/TODO python/libxml.py: fixed a small
2550 bug a bit of cleanup.
2551
2552Sat Feb 2 22:47:10 CET 2002 Daniel Veillard <daniel@veillard.com>
2553
2554 * python/Makefile.am python/libxml.c python/libxml2-python-api.xml
2555 python/libxml2class.txt: adding error redirections and preformat
2556 to a python handler
2557 * python/tests/Makefile.am python/tests/*.py: cleanup made all
2558 tests self checking
2559
2560Sat Feb 2 13:18:54 CET 2002 Daniel Veillard <daniel@veillard.com>
2561
2562 * python/libxml.c python/libxml.py: fixed a stupid bug when renaming
2563 a function
2564
2565Sat Feb 2 11:25:51 CET 2002 Daniel Veillard <daniel@veillard.com>
2566
2567 * libxml.spec.in python/Makefile.am python/TODO python/generator.py
2568 python/libxml.c python/libxml2-python-api.xml
2569 python/libxml2class.txt: Progressing through the TODOs, class
2570 description output, extra XML API, RPM now builds the wrappers
2571 for all python installed versions
2572
2573Sat Feb 2 10:13:52 CET 2002 Daniel Veillard <daniel@veillard.com>
2574
2575 * configure.in libxml.spec.in python/Makefile.am python/TODO
2576 python/generator.py python/libxml2class.txt: added more informations
2577 in the libxml2-python package including docs. Slightly changed
2578 the class hierarchy
2579 * python/tests/*: added basic regression tests infrastructure too
2580
2581Fri Feb 1 23:11:58 CET 2002 Daniel Veillard <daniel@veillard.com>
2582
2583 * configure.in libxml.spec.in example/Makefile.am python/Makefile.am:
2584 added libxml2-python as part of the packages installed
2585
2586Fri Feb 1 18:48:19 CET 2002 Daniel Veillard <daniel@veillard.com>
2587
2588 * python/Makefile.am python/generator.py python/libxml.c
2589 python/libxml.py: more work, now able to extend the
2590 XPath interpreter with functions written in python.
2591
2592Fri Feb 1 10:28:51 CET 2002 Daniel Veillard <daniel@veillard.com>
2593
2594 * python/Makefile.am: Jacob sent a patch to allow building from
2595 tarfile.
2596
2597Fri Feb 1 00:40:48 CET 2002 Daniel Veillard <daniel@veillard.com>
2598
2599 * python/Makefile.am python/libxml.c configure.in Makefile.am:
2600 inserted the python wrappers build, I hope this won't be too
2601 unportable
2602
2603Thu Jan 31 21:27:37 CET 2002 Daniel Veillard <daniel@veillard.com>
2604
2605 * xpath.c: minor optimization
2606 * python/generator.py python/libxml.c python/libxml.py
2607 python/libxml_wrap.h: more work on the python bindings,
2608 they now support XPath and there is no evident leak
2609
2610Thu Jan 31 00:48:06 CET 2002 Daniel Veillard <daniel@veillard.com>
2611
2612 * python/generator.py python/libxml.c python/libxml.py:
2613 more work on the python bindings generator.
2614
2615Wed Jan 30 21:51:26 CET 2002 Daniel Veillard <daniel@veillard.com>
2616
2617 * python/generator.py python/libxml.c python/libxml_wrap.h:
2618 more work on the python bindings.
2619
2620Wed Jan 30 17:35:33 CET 2002 Daniel Veillard <daniel@veillard.com>
2621
2622 * python/generator.py python/libxml.c python/libxml.py
2623 python/libxml_wrap.h: commited early version of a python binding
2624 for private use only ATM
2625
2626Sat Jan 26 22:41:13 CET 2002 Daniel Veillard <daniel@veillard.com>
2627
2628 * entities.c tree.c include/libxml/entities.h: applied patch
2629 from Anthony Jones to implement copy of DTD subtree too. Had
2630 just to keep 2 function private which really ought to become
2631 public ones.
2632
2633Fri Jan 25 15:14:55 CET 2002 Daniel Veillard <daniel@veillard.com>
2634
2635 * xmllint.c: added pointers to the web pages in the usage()
2636
2637Thu Jan 24 17:04:04 CET 2002 Daniel Veillard <daniel@veillard.com>
2638
2639 * tree.c: more fixes from Petr Kozelka for attribute handling
2640 in the tree API to align the semantic with DOM.
2641
2642Thu Jan 24 16:00:53 CET 2002 Daniel Veillard <daniel@veillard.com>
2643
2644 * valid.c tree.c entities.c: another set of patches from
2645 Anthony Jones for copy operations cleanup and robustness
2646
2647Wed Jan 23 18:53:55 CET 2002 Daniel Veillard <daniel@veillard.com>
2648
2649 * doc/APIchunk*.html doc/parsedecl.py doc/api.xsl: generated
2650 an alphabetic index based on comments content
2651 * doc/*: rebuilt the web site with the new references
2652
2653Wed Jan 23 15:14:22 CET 2002 Daniel Veillard <daniel@veillard.com>
2654
2655 * parserInternals.h: Greg Sjaardema suggested to use an
2656 eponential buffer groth policy in xmlParserAddNodeInfo()
2657
2658Wed Jan 23 13:32:40 CET 2002 Daniel Veillard <daniel@veillard.com>
2659
2660 * doc/api.xsl doc/APIconstructors.html doc/APIfiles.html
2661 doc/APIfunctions.html doc/APIsymbols.html doc/libxml2-refs.xml
2662 doc/parsedecl.py doc/Makefile.am: updated the python extractor
2663 to generate cross-references, and added/updated the stylesheets
2664 to generate and link API indexes. The generic keyword index
2665 is not done yet.
2666 * doc/*.html: regenerated all the usual docs too
2667
2668Tue Jan 22 23:11:26 CET 2002 Daniel Veillard <daniel@veillard.com>
2669
2670 * debugXML.c: added an xpath function to the shell for T. V. Raman
2671
2672Tue Jan 22 22:42:23 CET 2002 Daniel Veillard <daniel@veillard.com>
2673
2674 * debugXML.c: patch from Anthony Jones to catch NULL nodes in
2675 debug routines.
2676
2677Tue Jan 22 22:38:42 CET 2002 Daniel Veillard <daniel@veillard.com>
2678
2679 * tree.c: apply an patch from Petr Kozelka for unlink and replace
2680 support of attribute nodes
2681
2682Tue Jan 22 19:12:06 CET 2002 Daniel Veillard <daniel@veillard.com>
2683
2684 * doc/libxml2-api.xml doc/parsedecl.py: Build a new version
2685 hopefully near complete and fully documented of the API in XML
2686 * HTMLtree.c SAX.c debugXML.c error.c globals.c parser.c tree.c
2687 xmlIO.c xmlmemory.c include/libxml/catalog.h include/libxml/hash.h
2688 include/libxml/list.h include/libxml/parser.h include/libxml/tree.h
2689 include/libxml/parserInternals.h include/libxml/valid.hi
2690 include/libxml/xmlIO.h include/libxml/xmlerror.hi
2691 include/libxml/xmlmemory.h include/libxml/xmlversion.h.ini
2692 include/libxml/xpath.h include/libxml/xpathInternals.h:
2693 Cleaned up the doc comments a lot in the process, the interface
2694 coverage is now 100%
2695
2696Tue Jan 22 00:12:58 CET 2002 Daniel Veillard <daniel@veillard.com>
2697
2698 * doc/libxml2-api.xml doc/parsedecl.py: improved the script to
2699 extracts comments from the gtk-doc DocBook output (a bit
2700 convoluted but seems to work).
2701
2702Mon Jan 21 18:29:19 CET 2002 Daniel Veillard <daniel@veillard.com>
2703
2704 * Makefile.am doc/Makefile.am doc/libxml2-api.xml doc/parsedecl.py:
2705 added an XML description of the API, moved the script generating
2706 it here. Added a "make api" target
2707
2708Mon Jan 21 14:34:37 CET 2002 Daniel Veillard <daniel@veillard.com>
2709
2710 * tree.c: Adam Lounds pointed out a bug in xmlSearchNs()
2711
2712Mon Jan 21 09:55:21 CET 2002 Daniel Veillard <daniel@veillard.com>
2713
2714 * xpath.c include/libxml/xpathInternals.h: the change made to
2715 xmlXPathFuncLookupFunc was incompatible roll it back
2716
2717Sun Jan 20 23:03:41 CET 2002 Daniel Veillard <daniel@veillard.com>
2718
2719 * SAX.c: cleanup patch from Anthony Jones
2720 * doc/Makefile.am: fix the headers to avoid in make scan
2721 * parserInternals.c xpath.c include/libxml/*.h: cleanup of the
2722 includes, * vs Ptr and general cleanup
2723 * parsedecl.py: first version of a script to extract the
2724 module interfaces, the goal will be to provide .decl or XML
2725 specification of the interfaces to build wrappers.
2726
2727Sun Jan 20 13:38:22 CET 2002 Daniel Veillard <daniel@veillard.com>
2728
2729 * doc/xmlcatalog_man.xml xmlcatalog.c: Fixed bug #68830, xmlcatalog
2730 now provides return codes in case of errors
2731
2732Sat Jan 19 16:36:21 CET 2002 Bjorn Reese <breese@users.sourceforge.net>
2733
2734 * trio.h trio.c triodef.h triop.h trionan.h trionan.c Makefile.am:
2735 Upgraded to trio baseline 1.6
2736 * strio.h strio.c: Replaced by triostr.h and triostr.c
2737
2738Fri Jan 18 17:22:50 CET 2002 Daniel Veillard <daniel@veillard.com>
2739
2740 * globals.c xmlIO.c xmlcatalog.c: removed the last occurences
2741 of strdup usage in the code
2742
2743Fri Jan 18 12:47:15 CET 2002 Daniel Veillard <daniel@veillard.com>
2744
2745 * parser.c error.c: Keith Isdale complained rightly that
2746 xmlInitParser() did not preserve value set by xmlSetGenericErrorFunc
2747
2748Thu Jan 17 09:44:44 CET 2002 Daniel Veillard <daniel@veillard.com>
2749
2750 * tree.c: fixed the funxtion to set the xml: attributes
2751 * debugXML.c: added "setbase" to test it.
2752
2753Wed Jan 16 16:36:08 CET 2002 Daniel Veillard <daniel@veillard.com>
2754
2755 * tree.c: update xmlNodeSetContent() and xmlNodeSetContentLen()
2756 to allow updating an attribute content
2757
2758Tue Jan 15 18:09:23 CET 2002 Daniel Veillard <daniel@veillard.com>
2759
2760 * libxml.h: try to avoid problems when compiling on Windows
2761
2762Mon Jan 14 18:56:25 CET 2002 Daniel Veillard <daniel@veillard.com>
2763
2764 * hash.c: patch from Anthony Jones for hash.c allocation size
2765 * Makefile.am: trying to work around Yet Another Libtool Madness
2766 and build the 2.4.13 release finally ...
2767
2768Mon Jan 14 18:27:19 CET 2002 Daniel Veillard <daniel@veillard.com>
2769
2770 * configure.in include/libxml/xmlwin32version.h: updated to 2.4.13
2771 * doc/* : update of the documentation
2772
2773Mon Jan 14 17:53:41 CET 2002 Daniel Veillard <daniel@veillard.com>
2774
2775 * debugXML.c tree.c: some cleanup after an unsuccessful attempt
2776 at fixing #61290 :-(
2777
2778Sun Jan 13 21:30:54 CET 2002 Daniel Veillard <daniel@veillard.com>
2779
2780 * tree.c: fixed xmlSaveFormatFileEnc() when encoding == NULL
2781 Fixes bug #67229
2782
2783Sun Jan 13 17:14:06 CET 2002 Daniel Veillard <daniel@veillard.com>
2784
2785 * tree.c: trying to avoid troubles when a subtree is copied
2786 and coalesced in part with the target tree. Should fix
2787 bug #67407
2788
2789Sun Jan 13 16:37:15 CET 2002 Daniel Veillard <daniel@veillard.com>
2790
2791 * valid.c: fixed validation of attributes content of type
2792 NAME NAMES NMTOKEN and NMTOKENS to accept internationalized
2793 values, very old bug. Fixes #67671
2794
2795Sun Jan 13 15:07:49 CET 2002 Daniel Veillard <daniel@veillard.com>
2796
2797 * parser.c include/libxml/parserInternals.h tree.c: integrated
2798 a couple of fixes and a new API function xmlSetEntityReferenceFunc()
2799 from Keith Isdale and dedicated to xsldbg the XSLT debugger.
2800
2801Sun Jan 13 14:23:21 CET 2002 Daniel Veillard <daniel@veillard.com>
2802
2803 * threads.c: applied Serguei Narojnyi's patch to add native
2804 thread support on the Win32 platform
2805 * testThreadsWin32.c Makefile.am: added the test program also
2806 from Serguei, Win32 specific
2807 * include/win32config.h include/libxml/xmlwin32version.h.in:
2808 added patch from Igor for the Windows thread specific defines.
2809
2810Wed Jan 9 12:50:39 CET 2002 Daniel Veillard <daniel@veillard.com>
2811
2812 * entities.c: Anthony Jones pointed a bug in xmlCopyEntity()
2813
2814Tue Jan 8 14:23:22 CET 2002 Daniel Veillard <daniel@veillard.com>
2815
2816 * doc/*.html doc/site.xsl doc/Makefile: renamed XML.html
2817 output page into XMLinfo.html. Close bug #66951 and
2818 raised by Robert Collins too.
2819
2820Tue Jan 8 14:13:18 CET 2002 Daniel Veillard <daniel@veillard.com>
2821
2822 * encoding.c: Paul Keogh pointed out a possibility of segfault
2823 on repeted xmlAddEncodingAlias() / xmlCleanupEncodingAlias().
2824 Closes bug # 68238
2825
2826Tue Jan 8 12:48:27 CET 2002 Daniel Veillard <daniel@veillard.com>
2827
2828 * doc/*.html: updated the Gdome2 links
2829
2830Tue Jan 8 11:32:30 CET 2002 Daniel Veillard <daniel@veillard.com>
2831
2832 * libxml.h: Applied following patches from Robert Collins
2833 and make sure IN_LIBXML is defined when compiling it
2834 -------
2835 * include/libxml/xmlversion.h.in (LIBXML_DLL_IMPORT): Use on Cygwin
2836 as well as Visual C.
2837 * parser.c (XML_DIR_SEP): Don't use '\\' for Cygwin.
2838 * parserInternals.c (XML_DIR_SEP): Don't use '\\' for Cygwin.
2839 * strio.c (PLATFORM_UNIX): Define for Cygwin.
2840 * triodef.h (TRIO_PLATFORM_UNIX): Define for Cygwin.
2841 * xmlIO.c (xmlFileOpen): Use unix behaviour for Cygwin.
2842 Use binary mode opens for Cygwin (xmlFileOpenW xmlParserGetDirectory
2843 xmlSysIDExists xmlNoNetExists).
2844 * xmllint.c: Don't include winsock2.h for Cygwin.
2845
2846Mon Jan 7 17:52:48 CET 2002 Daniel Veillard <daniel@veillard.com>
2847
2848 * parser.c: Jirka Kosek pointer out a bug in xmlParseTextDecl()
2849 when the version info is not present.
2850
2851Mon Jan 7 00:03:58 CET 2002 Daniel Veillard <daniel@veillard.com>
2852
2853 * tree.c: Anthony Jones pointed out a problem in
2854 xmlStringGetNodeList() and provided a fix for it
2855
2856Sun Jan 6 13:45:49 CET 2002 Daniel Veillard <daniel@veillard.com>
2857
2858 * parser.c: patch from Frank J Franklin to remove a bug in
2859 xmlCreatePushParserCtxt() when the initial buffer passed
2860 is large.
2861
2862Sat Jan 5 19:24:23 CET 2002 Daniel Veillard <daniel@veillard.com>
2863
2864 * win32/*: big cleanup of the Windows/MSVC project files
2865 from Igor Zlatkovic
2866
2867Wed Jan 2 14:11:35 CET 2002 Daniel Veillard <daniel@veillard.com>
2868
2869 * doc/Makefile.am: should fix #67674 and avoid troubles if
2870 xsltproc is not available or fails in the prefix provided
2871
2872Tue Jan 1 17:48:56 CET 2002 Daniel Veillard <daniel@veillard.com>
2873
2874 * xmlmemory.c: one more doc patch from Charlie Bozeman.
2875
2876Mon Dec 31 17:35:40 CET 2001 Daniel Veillard <daniel@veillard.com>
2877
2878 * DOCBparser.c parser.c valid.c include/libxml/parserInternals.h
2879 include/libxml/xmlerror.h include/libxml/xpathInternals.h:
2880 Fixed a few other problems raised by Charlie Bozeman.
2881 * result/VC/ElementValid[5-7]: fixed the output
2882
2883Mon Dec 31 17:13:34 CET 2001 Daniel Veillard <daniel@veillard.com>
2884
2885 * *.c include/libxml/*.h doc/html/*: applied 42 documentation
2886 patches from Charlie Bozeman. Regenerated the HTML docs.
2887
2888Thu Dec 20 14:59:52 CET 2001 Daniel Veillard <daniel@veillard.com>
2889
2890 * include/libxml/debugXML.h win32/dsp/libxml2.def.src: fixes
2891 for Windows from Igor
2892
2893Tue Dec 18 12:13:33 CET 2001 Daniel Veillard <daniel@veillard.com>
2894
2895 * xmllint.c: applied Justin Fletcher patch for --output or -o
2896
2897Tue Dec 18 08:52:32 CET 2001 Daniel Veillard <daniel@veillard.com>
2898
2899 * win32/libxml2/libxml2.def.src: close #67019
2900
2901Tue Dec 18 08:08:51 CET 2001 Daniel Veillard <daniel@veillard.com>
2902
2903 * xmllint.c: applied Justin Fletcher generic timing patch
2904 similar to the one already applied to xsltproc.
2905
2906Mon Dec 17 16:29:08 CET 2001 Daniel Veillard <daniel@veillard.com>
2907
2908 * include/libxml/tree.h tree.c: applied documentation patches
2909 from Charlie Bozeman
2910
2911Thu Dec 13 21:24:16 MST 2001 John Fleck <jfleck@inkstain.net>
2912
2913 *doc/xmllint.xml, xmllint.1 - document --dropdtd
2914
2915Thu Dec 13 23:19:50 CET 2001 Daniel Veillard <daniel@veillard.com>
2916
2917 * valid.c: fix the xmlStrdup() used in the previous patch.
2918 * valid.c: added --dropdtd
2919 * tree.c: fixed xmlUnlinkNode so it also removes the references
2920 from the document if the node is a DTD
2921
2922Thu Dec 13 15:54:35 CET 2001 Daniel Veillard <daniel@veillard.com>
2923
2924 * HTMLtree.c valid.c: cleanup some static declarations
2925
2926Thu Dec 13 15:23:04 CET 2001 Daniel Veillard <daniel@veillard.com>
2927
2928 * xmllint.c: removed another strdup()
2929 * doc/FAQ: removed the HP/UX entry
2930
2931Thu Dec 13 09:44:58 CET 2001 Daniel Veillard <daniel@veillard.com>
2932
2933 * valid.c: fix bug #66816 when validating.
2934 * xmllint.c: don't use sys/time.h if configure did not found it
2935
2936Mon Dec 10 21:39:55 MST 2001 John Fleck <jfleck@inkstain.net>
2937
2938 * docs/xmllint.1, xmllint.xml, xmlcatalog.1, xmlcatalog_man.html,
2939 xmlcatalog_man.xml
2940
2941Mon Dec 10 22:06:16 CET 2001 Daniel Veillard <daniel@veillard.com>
2942
2943 * include/libxml/xmlmemory.h: Hietaniemi Jarkko pointed out that
2944 xmlInitMemory() was declared twice
2945
2946Sun Dec 9 14:59:23 CET 2001 Daniel Veillard <daniel@veillard.com>
2947
2948 * globals.c: do not reference strdup() !
2949 * configure.in libxml-2.0.pc.in: trying to fix the libs
2950 of the various config extraction modules
2951
2952Fri Dec 7 15:21:33 CET 2001 Daniel Veillard <daniel@veillard.com>
2953
2954 * configure.in : preparing 2.4.12
2955 * doc/* : updated and rebuilt the docs
2956
2957Fri Dec 7 12:32:00 CET 2001 Daniel Veillard <daniel@veillard.com>
2958
2959 * uri.c: closed bug #66159
2960 * testURI.c: added --escape option
2961 * configure.in: some cleanup for xml2-config --cflags
2962
2963Thu Dec 6 15:31:30 CET 2001 Daniel Veillard <daniel@veillard.com>
2964
2965 * globals.c testThreads.c: removed some misplaced includes
2966 of xmlversion.h
2967
2968Thu Dec 6 09:06:08 EST 2001 Daniel Veillard <daniel@veillard.com>
2969
2970 * threads.c: patch from Gary Pennington fixing a possible
2971 problem at initialization time.
2972
2973Wed Dec 5 13:01:37 CET 2001 Daniel Veillard <daniel@veillard.com>
2974
2975 * configure.in libxml.h parser.c testThreads.c macos/: integrated
2976 Eric Lavigne contribution to build libxml2 on MacOS using
2977 CodeWarrior.
2978
2979Tue Dec 4 14:13:44 CET 2001 Daniel Veillard <daniel@veillard.com>
2980
2981 * xmllint.c: applied Geert Kloosterman's patch to fix
2982 --repeat --timing output
2983
2984Thu Nov 29 17:10:22 CET 2001 Daniel Veillard <daniel@veillard.com>
2985
2986 * parser.c: Robin Berjon <robin@knowscape.com> found a case
2987 where non-wellformed XML declaractions were not detected.
2988
2989Wed Nov 28 15:41:40 CET 2001 Daniel Veillard <daniel@veillard.com>
2990
2991 * xpointer.c: fixed a compilation bug pointed by Danny Jamshy
2992
2993Wed Nov 28 10:09:51 CET 2001 Daniel Veillard <daniel@veillard.com>
2994
2995 * xmlIO.c: as robert pointed again, xmlInputCallbackInitialized
2996 gets reset by xmlCleanupInputCallbacks() and this makes the
2997 function useless. Same for output.
2998
2999Tue Nov 27 17:22:36 CET 2001 Daniel Veillard <daniel@veillard.com>
3000
3001 * xmlIO.c: robert pointed out a loop error in callback cleanups
3002
3003Mon Nov 26 16:56:00 CET 2001 Daniel Veillard <daniel@veillard.com>
3004
3005 * tree.c debugXML.c include/libxml/tree.h include/libxml/debugXML.h:
3006 moved xmlGetLineNo() and xmlGetNodePath() into the main tree module,
3007 they are not really tied to debugging
3008
3009Mon Nov 26 11:31:36 CET 2001 Daniel Veillard <daniel@veillard.com>
3010
3011 * configure.in include/libxml/xmlwin32version.h: preparing 2.4.11
3012 * xmllint.c: better --catalogs description
3013
3014Sun Nov 25 11:34:24 CET 2001 Daniel Veillard <daniel@veillard.com>
3015
3016 * tree.c: fixed a couple of problems in xmlSetProp()
3017
3018Thu Nov 22 19:19:10 CET 2001 Daniel Veillard <daniel@veillard.com>
3019
3020 * debugXML.c tree.c xmlIO.c xmlmemory.c: some cleanups when chasing
3021 unappropriate stdout output.
3022
3023Thu Nov 22 13:58:14 CET 2001 Daniel Veillard <daniel@veillard.com>
3024
3025 * include/libxml/tree.h: Fixed a couple of macro errors pointed out
3026 by Denis Beurive, closes #65111
3027
3028Tue Nov 20 10:34:01 CET 2001 Daniel Veillard <daniel@veillard.com>
3029
3030 * valid.c: in case of content model validity error, don't
3031 print it if validity warnings were not requested.
3032
3033Tue Nov 20 09:30:02 CET 2001 Daniel Veillard <daniel@veillard.com>
3034
3035 * nanoftp.c: applied a couple of patches from Brian D Ripley.
3036 * parserInternals.c: removed the last exit() call. Print an
3037 unmaskable error on stderr instead (library mismatch detection)
3038
3039Sat Nov 17 17:16:51 MST 2001 John Fleck <jfleck@inkstain.net>
3040
3041 * doc/xmllint.xml, doc/xmllint.1 - update xmllint man page with
3042 shell instructions from Heiko Rupp
3043
3044Thu Nov 15 14:53:42 CET 2001 Daniel Veillard <daniel@veillard.com>
3045
3046 * catalog.c: use the URL notation file:// for default catalog paths
3047
3048Wed Nov 14 16:03:02 CET 2001 Daniel Veillard <daniel@veillard.com>
3049
3050 * include/libxml/tree.h: better comments for _private fields
3051 * tree.c: removed a problem when copying an entity reference.
3052
3053Tue Nov 13 16:23:04 CET 2001 Daniel Veillard <daniel@veillard.com>
3054
3055 * vms/*: updated instructions and diffs from John A Fotheringham
3056
3057Mon Nov 12 23:43:22 CET 2001 Daniel Veillard <daniel@veillard.com>
3058
3059 * include/libxml/xmlerror.h: avoid an include problem if
3060 #include <libxml/xmlerror.h> happens first in code
3061 seems to be the case in KDE libs
3062
3063Mon Nov 12 22:32:41 CET 2001 Daniel Veillard <daniel@veillard.com>
3064
3065 * win32/dsp/* include/libxml/xmlwin32version.h.in: update
3066 from Igor for Windows
3067
3068Mon Nov 12 10:19:41 CET 2001 Daniel Veillard <daniel@veillard.com>
3069
3070 * Makefile.am: Gary Pennington pointed out a missing prefix
3071
3072Sat Nov 10 12:55:42 CET 2001 Daniel Veillard <daniel@veillard.com>
3073
3074 * configure.in include/libxml/xmlwin32version.h: preparing 2.4.10
3075 * doc/*: upgraded and rebuilt the docs
3076
3077Sat Nov 10 12:33:38 CET 2001 Daniel Veillard <daniel@veillard.com>
3078
3079 * HTMLparser.c: fix comment in scripts element parsing.
3080 * result/HTML/doc3*: updated the results.
3081
3082Sat Nov 10 11:18:18 CET 2001 Daniel Veillard <daniel@veillard.com>
3083
3084 * uri.c: another URI bug fix #63336, using Joel Young patch.
3085
3086Sat Nov 10 11:07:26 CET 2001 Daniel Veillard <daniel@veillard.com>
3087
3088 * debugXML.c include/libxml/debugXML.h: add xmlGetNodePath()
3089 a cleaned up version of the Pwd shell string generation.
3090
3091Fri Nov 9 00:34:13 CET 2001 Daniel Veillard <daniel@veillard.com>
3092
3093 * valid.c include/libxml/tree.h: trying to fix namespaces +
3094 validation problems for good, closing #63619 in the process
3095 * result/valid/dia.xml test/valid/dia.xml: the Dia test was
3096 wrong in this respect, fixed it.
3097
3098Thu Nov 8 18:31:40 CET 2001 Daniel Veillard <daniel@veillard.com>
3099
3100 * xmllint.c: Morus Walter patch to allow --format and --encode
3101
3102Thu Nov 8 14:52:18 CET 2001 Daniel Veillard <daniel@veillard.com>
3103
3104 * debugXML.c: Stefan Kost provided an help command for the shell
3105
3106Wed Nov 7 14:32:55 CET 2001 Daniel Veillard <daniel@veillard.com>
3107
3108 * debugXML.c: Heiko Rupp pointed that the shell would crash
3109 on empty nodesets returns.
3110
3111Wed Nov 7 13:52:36 CET 2001 Daniel Veillard <daniel@veillard.com>
3112
3113 * Makefile.am: Weiqi Gao pointed out that xmlcatalog
3114 migh need the history libraries
3115
3116Tue Nov 6 23:49:09 CET 2001 Daniel Veillard <daniel@veillard.com>
3117
3118 * HTMLparser.c test/HTML/lt.html result/HTML/lt.html*:
3119 handle the case of < in quoted attributes, Bastian Kleineidam
3120
3121Tue Nov 6 16:21:33 CET 2001 Daniel Veillard <daniel@veillard.com>
3122
3123 * configure.in include/libxml/xmlwin32version.h: releasing 2.4.9
3124 fixing catalog breakages
3125 * Makefile.am catalog.c result/catalogs/catal
3126 result/catalogs/mycatalog.* test/catalogs/catal*:
3127 fixed more problems in catalog support, added more regression tests
3128 for both XML and SGML catalog handling
3129
3130Mon Nov 5 20:26:41 CET 2001 Daniel Veillard <daniel@veillard.com>
3131
3132 * debugXML.c: applied an improvement to xmlGetLineNo() from
3133 Keith Isdale
3134
3135Mon Nov 5 15:20:16 CET 2001 Daniel Veillard <daniel@veillard.com>
3136
3137 * catalog.c: dohhhh XML catalog add and remove ops were broken too.
3138 Side effect of the progressive catalog loading
3139
3140Mon Nov 5 12:40:54 CET 2001 Daniel Veillard <daniel@veillard.com>
3141
3142 * Makefile.am: confexecdir and confexec_DATA were defined twice
3143 pointed out by Karl Eichwalder
3144
3145Sun Nov 4 23:18:34 CET 2001 Daniel Veillard <daniel@veillard.com>
3146
3147 * xmlcatalog.c: avoid unlink() and use remove() instead.
3148
3149Sun Nov 4 23:12:38 CET 2001 Daniel Veillard <daniel@veillard.com>
3150
3151 * libxml.spec.in: cleanup
3152 * include/libxml/xmlwin32version.h: updated with 2.4.8
3153
3154Sun Nov 4 21:17:24 CET 2001 Daniel Veillard <daniel@veillard.com>
3155
3156 * encoding.c global.data globals.c testThreads.c: fix bug #63752
3157 of compiling libxml with a non standard set of options
3158
3159Sun Nov 4 13:11:41 MST 2001 John Fleck <jfleck@inkstain.net
3160
3161 * doc/xmllint.xml, xmllint.1 - updating xmllint man page to
3162 document --sgml option, fixing gnome bugzilla #63382
3163
3164Sun Nov 4 20:56:53 CET 2001 Daniel Veillard <daniel@veillard.com>
3165
3166 * include/libxml/catalog.h catalog.c: Fixed SGML catalogs
3167 breakage of 2.4.7, added a couple of really needed APIs
3168 like xmlCatalogIsEmpty() and xmlNewCatalog()
3169 * xmlcatalog.c: updated --sgml --noout to be a suitable replacement
3170 for install-catalog
3171 * configure.in: preparing 2.4.8
3172
3173Thu Nov 1 15:29:31 CET 2001 Daniel Veillard <daniel@veillard.com>
3174
3175 * HTMLtree.c tree.c include/libxml/HTMLtree.h
3176 include/libxml/tree.h include/libxml/xmlIO.h: more include
3177 cleanups, export cleanly one html output + format function.
3178
3179Thu Nov 1 14:12:12 CET 2001 Daniel Veillard <daniel@veillard.com>
3180
3181 * parser.c: removed initGenericErrorDefaultFunc call from
3182 xmlInitParser() since it could destroy previous calls to
3183 xsltSetGenericErrorFunc() effects
3184
3185Thu Nov 1 09:37:13 CET 2001 Daniel Veillard <daniel@veillard.com>
3186
3187 * debugXML.c include/libxml/debugXML.h: bool can be a reserved
3188 keyword.
3189
3190Wed Oct 31 18:50:08 CET 2001 Daniel Veillard <daniel@veillard.com>
3191
3192 * Makefile.am: cleanup
3193 * threads.c: cleanup too
3194 * xmlIO.c include/libxml/xmlIO.h: added xmlNoNetExternalEntityLoader()
3195 from xsltproc
3196 * include/libxml/tree.h include/libxml/parser.h: trying to break a
3197 dependancy loop.
3198
3199Tue Oct 30 18:38:53 CET 2001 Daniel Veillard <daniel@veillard.com>
3200
3201 * catalog.c: Justin Fletcher pointed out that xmlParseXMLCatalog
3202 was not used anymore !
3203
3204Tue Oct 30 13:33:13 CET 2001 Daniel Veillard <daniel@veillard.com>
3205
3206 * configure.in: preparing 2.4.7
3207 * Makefile.am doc/Makefile.am: switched to the latest xmllint
3208 manual page from John
3209 * doc/*: updated the doc and rebuilt the generated pages
3210
3211Tue Oct 30 11:31:19 CET 2001 Daniel Veillard <daniel@veillard.com>
3212
3213 * xmlIO.c: closing bug #62711, the library should never
3214 close stdin or stdout.
3215
3216Tue Oct 30 10:46:12 CET 2001 Daniel Veillard <daniel@veillard.com>
3217
3218 * uri.c: second pass at fixing #63336, using Joel Young
3219 final patch. looks okay.
3220
3221Tue Oct 30 00:56:05 CET 2001 Daniel Veillard <daniel@veillard.com>
3222
3223 * uri.c include/libxml/uri.h: trying to clear #63336
3224 allowing the escaping routine to parse unconformant
3225 URI-References.
3226
3227Mon Oct 29 19:09:46 CET 2001 Daniel Veillard <daniel@veillard.com>
3228
3229 * vms/readme.vms vms/build_libxml.com nanoftp.c
3230 include/libxml/xmlversion.h.in: a few VMS updates from
3231 John A Fotheringham
3232 * include/libxml/xmlIO.h xmlIO.c: added xmlCleanupInputCallbacks()
3233 and xmlCleanupOutputCallbacks() for the Perl binding people.
3234
3235Mon Oct 29 12:44:17 CET 2001 Daniel Veillard <daniel@veillard.com>
3236
3237 * parser.c globals.c DOCBparser.c HTMLparser.c error.c:
3238 apply fixes to close #63271 and avoid segfaults when
3239 the error routine gets callbed before xmlInitParser()
3240 get called.
3241 * nanoftp.c error.c: Applied patches from Justin Fletcher
3242 correcting some xmlGenericError misuses.
3243
3244Sat Oct 27 14:04:45 MDT 2001 John Fleck <jfleck@inkstain.net>
3245
3246 *doc/xmllint.xml, doc/xmllint.1
3247 New and improved man page for xmllint - .xml is the original, .1
3248 is the generated man page
3249
3250Wed Oct 24 14:34:25 CEST 2001 Daniel Veillard <daniel@veillard.com>
3251
3252 * doc/site.xsl doc/*.html doc/Makefile.am: now autogenerate
3253 the web site from the main HTML document.
3254
3255Tue Oct 23 14:32:04 CEST 2001 Daniel Veillard <daniel@veillard.com>
3256
3257 * parser.c: fixed an erroneous validation bug when PE refs
3258 occurs in external parsed entities referenced from the
3259 internals subset
3260 * test/valid/index.xml test/valid/dtds/nitf-2-5.dtd
3261 test/valid/dtds/NewsMLv1.0.dtd result/valid/index.xml*:
3262 added the associated testcase, it's a nice one.
3263 * HTMLparser.c: generate the DTD node as HTML still ...
3264 * HTMLtree.c: fixed errors in Set/GetMetaEncoding
3265
3266Mon Oct 22 14:20:17 CEST 2001 Daniel Veillard <daniel@veillard.com>
3267
3268 * HTMLparser.c: fixed a bug in htmlNewDoc()
3269
3270Mon Oct 22 11:32:36 CEST 2001 Daniel Veillard <daniel@veillard.com>
3271
3272 * test/threads/*: added entities testing to the Thread test
3273 * testThreads.c: make the test reasonable
3274 * DOCBparser.c: fix the DTD public and system ID
3275 * xmllint.c: added --sgml for SGML DocBook importing
3276 * Makefile.am: added Docbtests target
3277
3278Fri Oct 19 11:47:13 CEST 2001 Daniel Veillard <daniel@veillard.com>
3279
3280 * nanoftp.c: use only "anonymous@" string for anonymous passwds
3281 * testThreads.c: removed bogus include
3282
3283Thu Oct 18 16:56:23 CEST 2001 Daniel Veillard <daniel@veillard.com>
3284
3285 * parser.c valid.c result/valid/rss.xml result/valid/rss.xml.err:
3286 fixed a very serious (looping) validation bug
3287
3288Wed Oct 17 11:56:25 EDT 2001 Daniel Veillard <daniel@veillard.com>
3289
3290 * include/libxml/globals.h include/libxml/threads.h threads.c
3291 testThreads.c: far more testing, cleaning up bugs
3292 * *.c : make sure globals.h is always included.
3293
3294Wed Oct 17 17:41:41 CEST 2001 Daniel Veillard <daniel@veillard.com>
3295
3296 * HTMLparser.c: try to get rid of parser loops for good.
3297
3298Wed Oct 17 13:29:02 CEST 2001 Daniel Veillard <daniel@veillard.com>
3299
3300 * configure.in: fixed some bugs in CFLAGS passing.
3301 * test/threads Makefile.am testThreads.c: added a specific
3302 threaded test case (really nasty, guaranteed).
3303
3304Tue Oct 16 23:01:49 CEST 2001 Daniel Veillard <daniel@veillard.com>
3305
3306 * catalog.c: serious cleanup on the management of the
3307 XML catalog tree, more tests done, especially with
3308 the catalog PI.
3309
3310Tue Oct 16 08:43:43 EDT 2001 Daniel Veillard <daniel@veillard.com>
3311
3312 * catalog.c: avoid a problem in catalog cleanup on SMP if
3313 catalogs were not initialized.
3314
3315Tue Oct 16 14:33:19 CEST 2001 Daniel Veillard <daniel@veillard.com>
3316
3317 * catalog.c xpath.c: trying to cleanup the not thread safe
3318 parts of the library.
3319
3320Mon Oct 15 14:30:11 CEST 2001 Daniel Veillard <daniel@veillard.com>
3321
3322 * include/libxml/globals.h configure.in global.data: make
3323 the allocation be per-thread a configure option
3324 * encoding.c include/libxml/parser.h: fixed compilation
3325 errors
3326
3327Mon Oct 15 12:45:03 CEST 2001 Daniel Veillard <daniel@veillard.com>
3328
3329 * include/libxml/parser.h: Norm reported that a few lines
3330 added were breaking libxslt compile, removed them for now
3331
3332Sun Oct 14 05:55:01 EDT 2001 Daniel Veillard <daniel@veillard.com>
3333
3334 * parser.c parserInternals.c threads.c: debugged and fixed
3335 initialization problems which were giving troubles on SMP
3336 boxes.
3337
3338Sat Oct 13 16:17:13 CEST 2001 Daniel Veillard <daniel@veillard.com>
3339
3340 * include/libxml/Makefile.am: missing globals.h
3341
3342Sat Oct 13 14:15:00 CEST 2001 Daniel Veillard <daniel@veillard.com>
3343
3344 * globals.c: added a couple of standard includes.
3345
3346Sat Oct 13 11:08:20 CEST 2001 Daniel Veillard <daniel@veillard.com>
3347
3348 * include/libxml/SAX.h include/libxml/globals.h include/libxml/parser.h
3349 include/libxml/parserInternals.h include/libxml/tree.h
3350 include/libxml/xmlerror.h HTMLparser.c SAX.c error.c globals.c
3351 nanoftp.c nanohttp.c parser.c parserInternals.c testDocbook.c
3352 testHTML.c testSAX.c tree.c uri.c xlink.c xmlmemory.c:
3353 Applied the last patches from Gary, cleanup, activated threading
3354 all user accessible global variables are now handled in globals.[ch]
3355 Still a bit rought but make tests passes with either
3356 --with-threads defined at configure time or not.
3357 * Makefile.am example/Makefile.am: added globals.[ch] and threads
3358 linking options
3359
3360Fri Oct 12 19:25:55 CEST 2001 Daniel Veillard <daniel@veillard.com>
3361
3362 * Makefile.am include/libxml/Makefile.am
3363 include/libxml/globals.h globals.c include/libxml/threads.h
3364 threads.c build_glob.py global.data xmlcatalog.c acconfig.h
3365 configure.in: started integrating the core of the thread support
3366 not activated yet but half integrated. The code should still
3367 compile and work anyway.
3368
3369Fri Oct 12 00:53:03 CEST 2001 Daniel Veillard <daniel@veillard.com>
3370
3371 * HTMLtree.c catalog.c debugXML.c entities.c nanoftp.c
3372 parser.c valid.c xmlmemory.c xpath.c xpointer.c: started
3373 integrating the non-controversial parts of Gary Pennington
3374 multithread patches
3375 * catalog.c: corrected a small bug introduced
3376
3377Thu Oct 11 20:58:15 CEST 2001 Daniel Veillard <daniel@veillard.com>
3378
3379 * catalog.c include/libxml/catalog.h: very serious cleanup,
3380 isolating unportable code and as much as possible the accesses
3381 to the global shared catalog. May need more testing !
3382
3383Thu Oct 11 11:10:31 CEST 2001 Daniel Veillard <daniel@veillard.com>
3384
3385 * include/libxml/debugXML.h debugXML.c tree.c: integrating
3386 Keith Isdale patches for the XSLT debugger interfaces. Some
3387 cleanup
3388
3389Thu Oct 11 08:44:01 CEST 2001 Daniel Veillard <daniel@veillard.com>
3390
3391 * win32/Makefile.mingw: update from Tobias Peters for 2.4.5
3392 * DOCBparser.c: generate line nubers in elements
3393
3394Wed Oct 10 11:35:45 CEST 2001 Daniel Veillard <daniel@veillard.com>
3395
3396 * configure.in: preparing 2.4.6 release
3397 * doc/xml.html doc/html/*: updated and rebuilt the docs
3398 * include/libxml/*.h *.c: fixed a number of teh/the widht/width typos
3399
3400Mon Oct 8 20:38:27 MDT 2001 John Fleck <jfleck@inkstain.net>
3401
3402 * doc/xmlcatalog_man.xml, xmlcatalog.1, xmlcatalog_man.html
3403 adding documentation for DV's supercatalog support
3404
3405Mon Oct 8 17:00:16 CEST 2001 Daniel Veillard <daniel@veillard.com>
3406
3407 * include/libxml/catalog.h catalog.c xmlcatalog.c: adding SGML
3408 super catalog support adding one API and one flag --sgml to
3409 xmlcatalog
3410
3411Sun Oct 7 16:43:57 MDT 2001 John Fleck <jfleck@inkstain.net>
3412
3413 * doc/xmlcatalog_man.xml, xmlcatalog.1
3414 One more crack at
3415 https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=54392
3416
3417
3418Sun Oct 7 18:47:02 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
3419
3420 * xpath.c: implemented xmlXPathObjectCopy for external objects
3421 * include/libxml/xpathInternals.h: added xmlXPathStackIsExternal
3422
3423Sat Oct 6 16:25:52 MDT 2001 John Fleck <jfleck@inkstain.net>
3424
3425 *doc/xmlcatalog_man.xml, xmlcatalog_man.html, xmlcatalog.1
3426 finishing up fix to
3427 https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=54392, making
3428 the xmlcatalog man page display more elegantly
3429
3430Sat Oct 6 15:27:12 CEST 2001 Daniel Veillard <daniel@veillard.com>
3431
3432 * configure.in: closing bug #61832
3433 * HTMLparser.c: removed a warning
3434
3435Sat Oct 6 15:07:14 CEST 2001 Daniel Veillard <daniel@veillard.com>
3436
3437 * xpath.c: fixing #61673 part I, do not loose doc information
3438 when copying result value trees.
3439
3440Sat Oct 6 11:58:58 CEST 2001 Daniel Veillard <daniel@veillard.com>
3441
3442 * xpath.c: trying to harden the XPath interpreter
3443
3444Fri Oct 5 20:37:51 MDT 2001 John Fleck <jfleck@inkstain.net>
3445
3446 * doc/xmlcatalog.1 updated using a new stylesheet to address, in
3447 part, https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=54392
3448
3449Fri Oct 5 23:35:00 HKT 2001 William Brack <wbrack@mmm.com.hk>
3450
3451 * HTMLparser: repaired another loop problem
3452
3453Fri Oct 5 11:16:21 CEST 2001 Daniel Veillard <daniel@veillard.com>
3454
3455 * uri.c: applied fix from Mathias Hasselmann about a bug in URI
3456 parsing.
3457 * xpath.c: fix bug #61291 the default XML namespace node is
3458 missing from the namespace axis.
3459 * tree.c: refuse to create namespaces nodes with prefix "xml"
3460
3461Thu Oct 4 16:47:44 CEST 2001 Daniel Veillard <daniel@veillard.com>
3462
3463 * SAX.c: ouch a non-defined namespace could lead to a crash,
3464 fixed #61215
3465
3466Thu Oct 4 16:24:26 CEST 2001 Daniel Veillard <daniel@veillard.com>
3467
3468 * parserInternals.c: closed bug #61054
3469
3470Wed Oct 3 15:19:04 CEST 2001 Daniel Veillard <daniel@veillard.com>
3471
3472 * include/libxml/Makefile.am: closing #60708
3473
3474Tue Oct 2 15:52:05 CEST 2001 Daniel Veillard <daniel@veillard.com>
3475
3476 * win32/dsp/libxml2.def.src include/libxml/parser.h parser.c:
3477 adding xmlSAXParseFileWithData following Marco Stipek suggestion
3478
3479Tue Oct 2 11:27:58 CEST 2001 Daniel Veillard <daniel@veillard.com>
3480
3481 * valid.c: close bug #61550 when xml: wasn't considered a namespace
3482
3483Tue Oct 2 11:18:32 CEST 2001 Daniel Veillard <daniel@veillard.com>
3484
3485 * win32/dsp/libxml2.def.src: Igor Zlatkovic patches
3486 * DOCBparser.c HTMLparser.c parser.c: fixed typos
3487
3488Mon Oct 1 09:34:51 CEST 2001 Daniel Veillard <daniel@veillard.com>
3489
3490 * catalog.c: Justin Fletcher provided cleaup code in case
3491 HAVE_STAT is not defined
3492 * include/win32config.h: Igor Zlatkovic suggested to have
3493 HAVE_STAT defined there
3494
3495Sat Sep 29 00:15:00 HKT 2001 William Brack <wbrack@mmm.com.hk>
3496
3497 * catalog.c - fixed typing error reported by M. Barros
3498
3499Sun Sep 23 21:02:39 MDT 2001 John Fleck <jfleck@inkstain.net>
3500
3501 * xmllint.c - fixing typo
3502
3503Sat Sep 22 10:00:00 HKT 2001 William Brack <wbrack@mmm.com.hk>
3504
3505 * HTMLparser.c: small enhancement to prevent loop on
3506 unrecognizable data
3507
3508Fri Sep 21 11:45:53 CEST 2001 Daniel Veillard <daniel@veillard.com>
3509
3510 * parserInternals.c: applying patch from bug #60757 this
3511 should close it
3512
3513Thu Sep 20 15:54:29 CEST 2001 Daniel Veillard <daniel@veillard.com>
3514
3515 * catalog.c xmlcatalog.c: removed a couple of warning
3516 * xpath.c: try to solve the linking problem on platforms
3517 needing trio to compile
3518
3519Wed Sep 19 10:01:37 CEST 2001 Daniel Veillard <daniel@veillard.com>
3520
3521 * Makefile.am libxml.spec.in: backing up non-documented changes
3522 commited without review or aproval by Jens Finke <jens@gnome.org>
3523 * HACKING: made 100% clear that no commit should be done directly
3524
3525Mon Sep 17 18:52:37 CEST 2001 Daniel Veillard <daniel@veillard.com>
3526
3527 * configure.in: Joe Orton provided a patch fixing a problem
3528 when iconv is specified to be in a non-standard directory
3529 but wasn't exported in xml2-config --cflags
3530
3531Fri Sep 14 19:32:43 CEST 2001 Daniel Veillard <daniel@veillard.com>
3532
3533 * configure.in: let's ship 2.4.5 before getting too much
3534 troubles with 2.4.4 errors.
3535
3536Fri Sep 14 12:26:58 CEST 2001 Daniel Veillard <daniel@veillard.com>
3537
3538 * encoding.c entities.c: do not output hexadecimal charrefs
3539 when serializing HTML since some version of Netscape can't
3540 grok it, generate decimal ones.
3541 * result/HTML/doc3.htm: output changed due to previous test
3542 * parserInternals.c: repair xmlKeepBlanksDefault() broken in 2.4.4
3543
3544Thu Sep 13 13:34:27 CEST 2001 Daniel Veillard <daniel@veillard.com>
3545
3546 * libxml-2.0.pc.in: dohh generated the wrong include path :-(
3547 * doc/Makefile.am libxml.spec.in: re-dohh forgot the new manpage :-(
3548
3549Wed Sep 12 22:14:55 CEST 2001 Daniel Veillard <daniel@veillard.com>
3550 Released 2.4.4
3551
3552 * config.h.in configure.in libxml.spec.in include/libxml/Makefile.am
3553 libxml-2.0.pc.in: moved includes to includedir/libxml2/libxml,
3554 updated the configuration scripts systems accordingly
3555
3556Wed Sep 12 20:49:32 CEST 2001 Daniel Veillard <daniel@veillard.com>
3557
3558 * configure.in: preparing for 2.4.4
3559 * doc/xml.html doc/html/*: updated and rebuilt the docs
3560
3561Wed Sep 12 16:58:16 CEST 2001 Daniel Veillard <daniel@veillard.com>
3562
3563 * win32/dsp/libxml2.def.src: tried to incorporate comments
3564 from bug #59220
3565
3566Tue Sep 11 11:25:36 CEST 2001 Daniel Veillard <daniel@veillard.com>
3567
3568 * parser.c result/noent/wml.xml: fixed bug #59981 related
3569 to handling of '&' in attributes when entities are substitued
3570
3571Mon Sep 10 22:14:42 CEST 2001 Daniel Veillard <daniel@veillard.com>
3572
3573 * libxml.h include/libxml/xmlversion.h.in
3574 include/libxml/xmlwin32version.h include/libxml/xmlwin32version.h.in:
3575 Tried to close bug #60131
3576
3577Mon Sep 10 20:46:03 CEST 2001 Daniel Veillard <daniel@veillard.com>
3578
3579 * SAX.c: fixed a bug in the HTML parser introduced Sep 9
3580
3581Mon Sep 10 20:13:09 CEST 2001 Daniel Veillard <daniel@veillard.com>
3582
3583 * SAX.c: fixing bug #59946 on xmlns=""
3584
3585Mon Sep 10 16:39:42 CEST 2001 Daniel Veillard <daniel@veillard.com>
3586
3587 * include/libxml/xmlerror.h SAX.c: fixing bug 59732, simple
3588 but allocates a new error code.
3589
3590Sun Sep 9 10:33:15 CEST 2001 Daniel Veillard <daniel@veillard.com>
3591
3592 * xmllint.c: John Fleck fixed typos in the options output
3593 * parser.c SAX.c: fix ignorable white space SAX selection
3594
3595Sat Sep 8 11:43:53 CEST 2001 Daniel Veillard <daniel@veillard.com>
3596
3597 * entities.c: Steve Underwood found the possibility of an
3598 ininite loop in case of error.
3599
3600Fri Sep 7 11:35:00 CEST 2001 Daniel Veillard <daniel@veillard.com>
3601
3602 * Makefile.am: Need $(ICONV_LIBS) in libxml2_la_LIBADD
3603
3604Wed Sep 5 17:47:43 CEST 2001 Daniel Veillard <daniel@veillard.com>
3605
3606 * parser.c: warn if version is not 1.0 but it's not
3607 strictly speaking an error after analyzing the spec
3608
3609Mon Sep 3 10:07:03 MDT 2001 John Fleck <jfleck@inkstain.net>
3610
3611 *doc/catalog.html - add link to the html version of the
3612 man page, other linguistic cleanups
3613
3614Mon Sep 3 09:10:08 MDT 2001 John Fleck <jfleck@inkstain.net>
3615
3616 * doc/xmlcatalog_man.xml, xmlcatalog_man.html, xmlcatalog.1
3617 adding documentation for xmlcatalog. Note: xmlcatalog.1, the man
3618 file, has not yet been included in the build.
3619
3620Sat Sep 1 18:17:47 CEST 2001 Daniel Veillard <daniel@veillard.com>
3621
3622 * catalog.c: removed a duplicate affectation Justin Fletcher
3623
3624Fri Aug 31 22:02:10 CEST 2001 Daniel Veillard <daniel@veillard.com>
3625
3626 * tree.c: Armin Sander pointed a possible text coalescing
3627 problem, completed his patch.
3628
3629Fri Aug 31 18:30:28 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
3630
3631 * trionan.c: Fixed const and volatile re-definition problem
3632
3633Fri Aug 31 16:51:28 CEST 2001 Daniel Veillard <daniel@veillard.com>
3634
3635 * libxml.4 parser.c: doc updates from Heiko Rupp
3636 * parserInternals.c: 2 sanity checks from Heiko Rupp
3637
3638Tue Aug 28 22:38:45 CEST 2001 Daniel Veillard <daniel@veillard.com>
3639
3640 * tree.c: applied patch from Armin Sander to make some pointers
3641 const in xmlCopyNode()
3642 * include/libxml/tree.h: added fix to the header
3643
3644Mon Aug 27 16:24:47 CEST 2001 Daniel Veillard <daniel@veillard.com>
3645
3646 * xpath.c: hum, restrict the integer usage gcc bug workaround
3647 to only gcc compilers so that other architecture don't get
3648 penalized by this limitation.
3649 * include/libxml/xpath.h: small typo fix from Heiko W. Rupp
3650
3651Sun Aug 26 20:45:04 CEST 2001 Daniel Veillard <daniel@veillard.com>
3652
3653 * valid.c: fixed a Windows compiler warning (Chris Poblete)
3654 * xpath.c: fix for mod when dividend is 0 (Chris Poblete)
3655
3656Sat Aug 25 15:30:17 CEST 2001 Daniel Veillard <daniel@veillard.com>
3657
3658 * include/libxml/catalog.h catalog.c xmlcatalog.c: added a
3659 --convert option to xmlcatalog to convert SGML ones to
3660 the XML syntax.
3661 * xmllint.c: small cleanup for $SGML_CATALOG_FILES support.
3662
3663 2.4.3 got released at that point
3664Thu Aug 23 23:16:32 CEST 2001 Daniel Veillard <daniel@veillard.com>
3665
3666 * catalog.c xmlIO.c: started some serious testing and fixed
3667 a few bug and optmization needs.
3668
3669Thu Aug 23 17:26:58 CEST 2001 Daniel Veillard <daniel@veillard.com>
3670
3671 * Makefile.am configure.in include/libxml/xmlwin32version.h:
3672 preparing for a 2.4.3 release even if it may not be ready yet
3673 * catalog.c parser.c xmlIO.c include/libxml/catalog.h: redirected
3674 all file parsing lookup to go through the entity resolver, add
3675 to add an API to bypass it (needed to load catalogs themselves),
3676 some cleanup on the catalog code too.
3677 * nanoftp.c: small cleanup
3678 * doc/catalog.html: small update
3679
3680Thu Aug 23 12:22:26 CEST 2001 Daniel Veillard <daniel@veillard.com>
3681
3682 * catalog.c: fixed bugi #59406 in SGML catalog parsing reported by
3683 Jun Kuriyama
3684
3685Thu Aug 23 02:51:29 CEST 2001 Daniel Veillard <daniel@veillard.com>
3686
3687 * doc/catalog.html: finished the catalog documentation
3688
3689Thu Aug 23 01:38:42 CEST 2001 Daniel Veillard <daniel@veillard.com>
3690
3691 * doc/catalog.html doc/xml.html: added documentation about
3692 Catalog support, misses an API description
3693 * doc/html/*: reextracted the API pages
3694
3695Wed Aug 22 18:27:47 CEST 2001 Daniel Veillard <daniel@veillard.com>
3696
3697 * include/libxml/catalog.h catalog.c xmlIO.c HTMLparser.c:
3698 Added the part about section 7.2 on URI resolution,
3699 fixed a side effect in the HTML parser, look complete
3700 and ready to rock except the URI/SystemID part!
3701
3702Wed Aug 22 16:27:03 CEST 2001 Daniel Veillard <daniel@veillard.com>
3703
3704 * include/libxml/catalog.h include/libxml/parser.h
3705 include/libxml/xmlerror.h catalog.c parser.c parserInternals.c
3706 xmlIO.c: added support and APIs needed for the catalog PI
3707 * include/libxml/xmlIO.h: cleanup
3708
3709Wed Aug 22 02:03:31 CEST 2001 Daniel Veillard <daniel@veillard.com>
3710
3711 * catalog.c parser.c xmlIO.c xmlcatalog.c xmllint.c
3712 include/libxml/catalog.h: starts to look okay, really
3713 plugged the new framework, cleaned a lot of stuff,
3714 added some APIs, except the PI's support missing this
3715 should be mostly complete
3716 * result/catalogs/* test/catalogs/*: added new test, enriched
3717 the existing one with URN ID tests
3718
3719Tue Aug 21 14:56:18 CEST 2001 Daniel Veillard <daniel@veillard.com>
3720
3721 * catalog.c: fixed nextCatalog
3722 * result/catalogs/docbook test/catalogs/*: started adding
3723 a small regression test
3724
3725Tue Aug 21 12:52:38 CEST 2001 Daniel Veillard <daniel@veillard.com>
3726
3727 * Makefile.am catalog.c xmlcatalog.c include/libxml/catalog.h:
3728 more work on the XML catalog support.
3729 * parser.c include/libxml/parser.h: small cleanup seems using
3730 list as a public parameter name can give portability troubles
3731 * trionan.c trionan.h xpath.c include/libxml/trionan.h
3732 include/libxml/xpath.h include/libxml/Makefile.am: removed
3733 trionan from the libxml API, added xmlXPathIsInf and xmlXPathIsNaN
3734 wrappers
3735
3736Tue Aug 21 11:18:45 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
3737
3738 * Makefile.am trio.c triodef.h trionan.c xpath.c
3739 include/libxml/Makefile.am include/libxml/trionan.h:
3740 Re-worked Not-A-Number and Infinity support.
3741 * xmlcatalog.c: added readline include files
3742
3743Mon Aug 20 02:04:13 CEST 2001 Daniel Veillard <daniel@veillard.com>
3744
3745 * Makefile.am xmlcatalog.c libxml.spec.in: renaming
3746 testCatalog as xmlcatalog, making it an installed app
3747 adding a shell, and preparing it to be a /etc/xml/catalog
3748 management tool, though not ready yet
3749 * catalog.c include/libxml/catalog.h: adding support for
3750 XML Catalogs http://www.oasis-open.org/committees/entity/
3751 not finished, there is some interesting tradeoffs and a
3752 few open questions left.
3753
3754Sun Aug 19 14:59:56 CEST 2001 Daniel Veillard <daniel@veillard.com>
3755
3756 * xmllint.c: fixed a line formatting problem
3757
3758Fri Aug 17 11:35:31 CEST 2001 Daniel Veillard <daniel@veillard.com>
3759
3760 * SAX.c: removed a couple of unused variable (Albert Chin)
3761
3762Fri Aug 17 01:25:21 CEST 2001 Daniel Veillard <daniel@veillard.com>
3763
3764 * HTMLparser.c HTMLtree.c include/libxml/HTMLparser.h:
3765 trying to fix some troubles w.r.t. function returning
3766 const xxxPtr.
3767
3768Thu Aug 16 21:33:20 CEST 2001 Daniel Veillard <daniel@veillard.com>
3769
3770 * win32/dsp/libxml2.def.src: another set of symbols conditionally
3771 defined
3772
3773Thu Aug 16 21:31:14 CEST 2001 Daniel Veillard <daniel@veillard.com>
3774
3775 * xpointer.c: removed unused var
3776
3777Thu Aug 16 18:26:40 CEST 2001 Daniel Veillard <daniel@veillard.com>
3778
3779 * testXPath.c: another small cleanup closing bug #59110
3780
3781Thu Aug 16 17:59:18 CEST 2001 Daniel Veillard <daniel@veillard.com>
3782
3783 * win32/dsp/libxml2.def.src: small cleanup closing bug
3784 #59108
3785
3786Wed Aug 15 22:46:01 CEST 2001 Daniel Veillard <daniel@veillard.com>
3787
3788 * example/gjobread.c: add xmlCleanupParser() before leaving
3789
3790Wed Aug 15 14:57:08 CEST 2001 Daniel Veillard <daniel@veillard.com>
3791
3792 * config.h.in configure.in include/libxml/xmlwin32version.h:
3793 released 2.4.2
3794
3795Wed Aug 15 13:56:22 CEST 2001 Daniel Veillard <daniel@veillard.com>
3796
3797 * include/libxml/valid.h debugXML.c valid.c: deprecate
3798 the non-boundchecking Sprintf functions, add Snprintf
3799 this should close bug #57984
3800
3801Wed Aug 15 10:46:07 CEST 2001 Daniel Veillard <daniel@veillard.com>
3802
3803 * xmlIO.c: xmlOutputBufferCreateFilename() didn't unescaped
3804 URIs before doing the lookups (pointed by Mark Vakoc)
3805
3806Tue Aug 14 18:37:23 CEST 2001 Daniel Veillard <daniel@veillard.com>
3807
3808 * xpath.c: serious changes on Result Value Trees and NodeSets
3809 w.r.t. deallocation and collect operations. Probably not
3810 100% clean (merge of allocated trees smells like a problem).
3811 Seems sufficient to close #58943
3812
3813Tue Aug 14 16:12:00 CEST 2001 Daniel Veillard <daniel@veillard.com>
3814
3815 * xmllint.c: adding a --format option
3816
3817Tue Aug 14 14:16:24 CEST 2001 Daniel Veillard <daniel@veillard.com>
3818
3819 * xpath.c: count() was broken on Result Value Tree
3820 * xmlIO.c: fixed file:/// accesses on _WIN32
3821
3822Mon Aug 13 13:22:53 CEST 2001 Daniel Veillard <daniel@veillard.com>
3823
3824 * libxml.m4: s/LIBXML_VERSION_NUMBER/LIBXML_VERSION/ seems the
3825 macro was renamed, this should close bug #58683
3826
3827Mon Aug 13 12:33:40 CEST 2001 Daniel Veillard <daniel@veillard.com>
3828
3829 * SAX.c: small fix fixing bug #58539 reported by coolo, in
3830 entity substitution mode text at the end of the entity might
3831 be added due to text coalescing.
3832 * nanoftp.c parser.c: small cleanup
3833
3834Wed Aug 8 22:57:05 CEST 2001 Daniel Veillard <daniel@veillard.com>
3835
3836 * HACKING: added John Fleck right to commit in the doc subdir
3837
3838Tue Aug 7 03:05:58 CEST 2001 Daniel Veillard <daniel@veillard.com>
3839
3840 * SAX.c testXPath.c valid.c xmllint.c include/libxml/valid.h:
3841 allow to inherit attributes from the DTD directly in the
3842 tree, this is needed for XPath and can be a useful feature.
3843 Inherited namespaces are always provided at the tree level now
3844 * test/defattr* result/defattr* result/noent/defattr*: added a couple
3845 of tests for this feature (XSLT being the prime user).
3846
3847Fri Aug 3 14:02:20 CEST 2001 Daniel Veillard <daniel@veillard.com>
3848
3849 * DOCBparser.c Makefile.am nanohttp.c parser.c testHTML.c
3850 testSAX.c xmlIO.c xmllint.c include/win32config.h
3851 include/libxml/xmlversion.h.in include/libxml/xmlwin32version.h
3852 include/libxml/xmlwin32version.h.in win32/README.MSDev
3853 win32/dsp/*: applied Win32 Facelift No.2 patches from
3854 Igor Zlatkovic for Windows/MSC
3855
3856Wed Aug 1 23:21:06 CEST 2001 Daniel Veillard <daniel@veillard.com>
3857
3858 * SAX.c: unparsedEntityDecl() the URI computation of the
3859 entity wasn't done breaking XSLT unparsed-entity-uri()
3860
3861Wed Aug 1 17:44:57 CEST 2001 Daniel Veillard <daniel@veillard.com>
3862
3863 * xpath.c: fixed a bug when walking the descendants and
3864 the current node has no children
3865 * debugXML.c: show up when a text node is supposed to not be escaped
3866
3867Wed Aug 1 01:33:35 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
3868
3869 * xpath.c: fixed a bug in xmlXPathNodeTrailingSorted (for now it
3870 worked like the set:leading() function)
3871 * include/libxml/xpathInternals.h: added xmlXPathNodeSetContains
3872
3873Tue Jul 31 18:24:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3874
3875 * nanohttp.c: protected an use of EAGAIN, Brian Stafford
3876
3877Tue Jul 31 17:48:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3878
3879 * include/libxml/xmlIO.h: apply change to close #58141
3880 * win32/libxml2/*: update of the MSC projects from Igor Zlatkovic
3881
3882Tue Jul 31 17:09:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3883
3884 * parser.c: when the internal subset uses a PE, then the
3885 included entity can use conditional sections.
3886
3887Mon Jul 30 12:58:39 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3888
3889 * xpath.c include/libxml/xpath.h: fixed a serious memory problen
3890 when walking the namespace axis showing up in
3891 libxst/tests/general/bug-12
3892 * xmlmemory.c: added the possibility to trace a given block
3893 defined by its address
3894
3895Sun Jul 29 07:18:53 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3896
3897 * parser.c: don't override existing encoding specified before
3898 starting xmlParseDocument()
3899
3900Sat Jul 28 13:33:10 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3901
3902 * include/libxml/xmlwin32version.h: reinserted, needed for
3903 Windows users of CVS
3904
39052001-07-27 Darin Adler <darin@bentspoon.com>
3906
3907 * encoding.c: (xmlIconvWrapper): Add cast to fix warning.
3908 * testCatalog.c: Add include of <libxml/parser.h>.
3909
39102001-07-27 Darin Adler <darin@bentspoon.com>
3911
3912 * include/libxml/.cvsignore:
3913 * include/libxml/xmlwin32version.h:
3914 Remove this file from CVS because it's generated.
3915
3916Fri Jul 27 10:03:56 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3917
3918 * parser.c include/libxml/parser.h: applied const patches from
3919 Tom Moog #58002
3920
3921Thu Jul 26 18:55:52 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
3922
3923 * xpath.c include/libxml/xpath{,Internals}.h: added a function
3924 lookup framework
3925
3926Fri Jul 27 01:50:20 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3927
3928 * tree.c: fixed xmlCopyNode() for documents
3929
3930Thu Jul 26 12:40:35 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3931
3932 * parser.c: fixed bugs #58073 reported by Greg Shtilman
3933
3934Thu Jul 26 11:38:37 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3935
3936 * parser.c: fixes bug #57652 reported by Morus Walter
3937
3938Thu Jul 26 10:24:34 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3939
3940 * nanohttp.c: John Kroll provided a small fix to xmlNanoHTTPSave
3941
3942Thu Jul 26 07:16:04 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3943
3944 * parser.c parserInternals.c: fixed the xmlLineNumbersDefault()
3945 errors, lesson don't add new functions at 1am before a release
3946 * xpath.c: integrated fix from Bjorn to avoid divide by zero
3947 from XPath initialization when possible.
3948
3949Tue Jul 24 15:39:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3950
3951 * result/scripts/base*: removing history/readline changed
3952 this slightly
3953 * include/libxml/parser.h SAX.c parser.c parserInternals.c
3954 xmllint.c: make element content line number generation
3955 optionnal to avoid breaking old apps added interface to switch
3956
3957Tue Jul 24 15:06:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3958
3959 * configure.in: get rid of the readline and libhistory
3960 dependancies by default, release 2.4.1 with IA64 fix
3961 * nanohttp.c tree.c xmlIO.c include/libxml/nanohttp.h
3962 include/libxml/tree.h include/libxml/xmlIO.h: incorporated
3963 John Kroll fixes to allow saving to HTTP via PUT (or
3964 POST of needed).
3965 * doc/html/*.html: regenerated the docs
3966
3967Sun Jul 22 05:56:16 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
3968
3969 * hash.c include/libxml/hash.h: added xmlHashScannerFull,
3970 xmlHashScanFull and xmlHashScannFull3 to get passed the
3971 three keys as arguments to the callback function
3972
3973Thu Jul 19 15:29:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3974
3975 * configure.in Makefile.am: removed libxml softlink for good
3976 * include/libxml/*.h *.c doc/Makefile.am: cleanup to get
3977 100% coverage by gtk-doc
3978
3979Tue Jul 17 17:36:46 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3980
3981 * xmlmemory.c include/libxml/xmlmemory.h: debugging on IA64,
3982 fixed serious troubles due to size_t vs. int mismatch
3983
3984Tue Jul 17 16:04:36 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3985
3986 * SAX.c xmlIO.c: cleaned up some warning on the Alpha
3987
3988Mon Jul 16 06:32:44 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
3989
3990 * include/libxml/xpath{,Internals}.h xpath.c: added a more
3991 convenient extension API for value and context managing
3992 Now handles external objects through xmlXPathPopExternal,
3993 xmlXPathWrapExternal and xmlXPathReturnExternal.
3994 Added functions for sets operations (intersection, etc.)
3995
3996Mon Jul 16 20:05:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3997
3998 * include/libxml/parserInternals.h include/libxml/HTMLparser.h
3999 xmlIO.c tree.c parserInternals.c entities.c encoding.c
4000 HTMLparser.c: cleanup of global variables, marking some
4001 const or private.
4002
4003Mon Jul 16 00:17:15 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
4004
4005 * include/libxml/xpath.h: exported xmlXPath{NAN,PINF,NINF}
4006 fixed xmlXPathNodeSetItem when passing index=0
4007
4008Sun Jul 15 17:58:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4009
4010 * include/libxml/xmlwin32version.h.in: added xmlCheckVersion()
4011
4012Sat Jul 14 19:31:21 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4013
4014 * xmllint.c: fixed compilation under Cygwin #57503
4015 * TODO: update
4016
40172001-07-13 Peter Williams <peterw@ximian.com>
4018
4019 * config.h.in: add #undef HAVE_DLFCN_H
4020
4021 * example/Makefile.am (INCLUDES): Compile fix when srcdir !=
4022 builddir.
4023
4024Fri Jul 13 11:09:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4025
4026 * win32/libxml2/libxml2.def.src: added a couple of exported entries
4027 raised by #57348 and #57381
4028
4029Thu Jul 12 21:20:17 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4030
4031 * DOCBparser.c HTMLparser.c HTMLtree.c SAX.c debugXML.c parser.c
4032 tree.c xpointer.c: store the line numbder in element->content,
4033 may break some software, need a configuration mechanism
4034
40352001-07-10 Darin Adler <darin@bentspoon.com>
4036
4037 * .cvsignore:
4038 * example/.cvsignore:
4039 * include/.cvsignore:
4040 * include/libxml/.cvsignore:
4041 Various things that are generated and should be ignored.
4042
4043Tue Jul 10 17:47:09 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4044
4045 * configure.in include/libxml/xmlwin32version.h: release of 2.4.0
4046 * doc/xml.html doc/html/*: updated the docs
4047
4048Mon Jul 9 22:06:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4049
4050 * valid.c: fixed "Internal: MIXED struct bad" when #CDATA elements
4051 validation occured on content with element child
4052
4053Mon Jul 9 17:59:08 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4054
4055 * tree.c: fixed XML Base computation which was broken
4056 * debugXML.c: added a base function to the shell
4057 * Makefile.am result/scripts/* test/scripts/*: added scripts
4058 based regression tests, and adding 2 XML Base tests
4059
4060Mon Jul 9 12:31:05 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4061
4062 * tree.c: set properties doc and call xmlSetListDoc for properties
4063 content when grafting them in a different tree.
4064 * aclocal.m4: remove from CVS
4065
4066Sun Jul 8 23:09:07 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4067
4068 * win32/libxml2/libxml2.def.src: added some missing entry point
4069 for XPath (Mark Vakoc)
4070
4071Sun Jul 8 20:34:35 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4072
4073 * xmlIO.c: fixed an old bug raised by Bernhard Zwisch, the I/O
4074 layer should URI-Unescape before trying to open resources.
4075
4076Sun Jul 8 16:26:00 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4077
4078 * xpath.c: fix the name() bug for elements in the default
4079 namespace reported by Charlie Bozeman
4080
4081Sun Jul 8 15:11:05 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4082
4083 * SAX.c parser.c testXPath.c xpath.c: trying to fix #56948, this
4084 led to an XPath fix, improvements of SAX initialization, and
4085 an added option --nocdata to testXPath
4086
4087Sat Jul 7 21:09:55 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4088
4089 * doc/libxml-doc.el: Felix Natter provided anew version working
4090 with XEmacs too
4091
4092Sat Jul 7 02:16:00 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4093
4094 * include/libxml/xpath.h: small cleanup
4095 * doc/xml.html: update
4096
4097Fri Jul 6 01:40:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4098
4099 * Makefile.am configure.in include/libxml/xmlwin32version.h:
4100 released 2.3.14
4101
4102Fri Jul 6 00:47:41 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4103
4104 * doc/html/*: rebuilt the docs for the release
4105 * doc/xml.html: added 2.3.14 release.
4106
4107Thu Jul 5 22:01:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4108
4109 * xpath.c: a bug reported by Stephan Kulow empty nodesets
4110 were not equal to empty strings
4111
4112Thu Jul 5 00:52:25 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4113
4114 * SAX.c: fixed a URI-Reference computation problem when validating
4115 * xmlIO.c: small cleanup
4116
4117Thu Jul 5 00:04:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4118
4119 * parser.c: improved the description of a couple of interfaces
4120 upon Larry Stamper suggestion
4121
4122Wed Jul 4 21:42:24 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4123
4124 * SAX.c entities.c parser.c: changed completely the way entities
4125 are handled when running the parser in entity substitution mode.
4126 This fixes a bug reported by Stephan Kulow and nearly divides
4127 by 3 the amount of memory required by libxslt to load and process
4128 DocBook TDG.
4129
4130Wed Jul 4 18:02:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4131
4132 * HTMLparser.c: fixing a too early root closing problem raised
4133 byt Prashanth Naidu
4134
4135Wed Jul 4 01:42:01 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4136
4137 * xpath.c: fixed a missing copy in xmlXPathVariableLookupNS()
4138 raised by Mark Vakoc.
4139
4140Tue Jul 3 18:35:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4141
4142 * example/Makefile.am: fixed the include path to add srcdir/include
4143 * Makefile.am configure.in: fix from Albert Chin for iconv detection
4144 and some cleanup
4145
4146Tue Jul 3 10:12:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4147
4148 * xpath.c include/libxml/xpath.h include/libxml/xpathInternals.h:
4149 lot of optimization work, results in significant improvements
4150 when handling really complex XPath queries. Add a small optimizer
4151 for unions, improve [n] and [last()], avoid some costly ops.
4152
4153Fri Jun 29 23:26:54 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4154
4155 * include/libxml/parser.h parser.c: xmlStrstr args are both const
4156 * xpath.c: small cleanup
4157 * xmlGetNsList: reformated, fixed problems if used on Entities
4158
4159Thu Jun 28 18:19:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4160
4161 * doc/xml.html: added 1.8.14 and 2.3.13 releases
4162
4163Thu Jun 28 18:16:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4164
4165 * configure.in include/libxml/xmlwin32version.h: released 2.3.13
4166 * Makefile.am example/Makefile.am: workaround automake generating
4167 erroneous deps
4168
4169Thu Jun 28 15:08:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4170
4171 * include/win32config.h: bug #56801 Yon Derek provided a patch
4172 to the windows config file.
4173
4174Thu Jun 28 14:51:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4175
4176 * xpointer.c include/win32config.h win32/libxml2/libxml2.def.src
4177 libxml.h : Yon Derek provided a set of changes to compile from
4178 CVS on Windows/MSC
4179
4180Thu Jun 28 14:11:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4181
4182 * parser.c: fixed UTF8 BOM support in push mode
4183 * test/utf8bom.xml result/utf8bom.xml result/noent/utf8bom.xml:
4184 added a specific testcase
4185
4186Wed Jun 27 18:33:13 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4187
4188 * Makefile.am: added --push regression tests
4189 * parserInternals.c: the XML parser segfaulted in --push mode
4190
4191Wed Jun 27 13:09:51 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4192
4193 * configure.in: moved the symlinks detection within a CVS
4194 check, this is not portable and will be removed soon.
4195 * xpath.c: small cleanup/speedup
4196
4197Tue Jun 26 18:05:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4198
4199 * configure.in doc/xml.html include/libxml/xmlwin32version.h:
4200 release of 2.3.12
4201 * parser.c: make an error message if unknow entities in all cases
4202
4203Tue Jun 26 09:46:29 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4204
4205 * uri.c: fixed 2 uri normalization bugs on '//' reduction
4206
4207Mon Jun 25 18:06:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4208
4209 * include/libxml/Makefile.am: Laszlo Peter pointed out that
4210 includes were installed in the wrong dir
4211
4212Mon Jun 25 17:07:37 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4213
4214 * doc/html.xml: warn against sending code to exhibit bugs.
4215
4216Sun Jun 24 23:31:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4217
4218 * xpath.c: patch to xmlXPathFormatNumber for the optimizer on
4219 Tru64 from Thomas Leitner
4220
4221Sun Jun 24 14:05:54 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4222
4223 * AUTHORS: added William and Bjorn
4224 * include/libxml/*.h *.c README doc/*.html etc.: changed old email to
4225 daniel@veillard.com hopefully I won't have to do this again
4226 * doc/Makefile.am doc/html/*.html: cleanup makefile, checked that
4227 docs can be rebuilt cleanly now
4228 * include/libxml/xml*version.h*: removed include/libxml/xmlversion.h
4229 from CVs it's generated, added include/libxml/xmlwin32version.h
4230 also generated but which should change far less frequently.
4231 * catalog.c nanoftp.c: made sure to include libxml.h not
4232 libxml/xmlversion.h directly
4233 * include/libxml/*.h: include xmlwin32version.h instead of xmlversion.h
4234 when compiling on WIN32 and MSC
4235
4236Sat Jun 23 23:54:12 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4237
4238 * include/Makefile.am include/libxml/Makefile.am configure.in:
4239 fixed make distcheck and rebuilding the rpms
4240
4241Sat Jun 23 20:50:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4242
4243 * configure.in: should finish the migration of exported includes
4244 into a real include/libxml in CVS, at least for CVS users.
4245 * removed the exported headers, added in include/libxml (as well
4246 as xmlversion.h.in).
4247
4248Sat Jun 23 20:37:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4249
4250 * configure.in: fixed the way to detect symlink
4251
4252Sat Jun 23 20:30:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4253
4254 * configure.in: updated, include/libxml is now a real CVS dir
4255
4256Sat Jun 23 19:36:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4257
4258 * doc/libxml-doc.el: a new version of libxml-doc.el. This new
4259 version works with both libxml1 and libxml2 (it autodetects
4260 the prefix of the html-files) from Felix Natter.
4261 * doc/xml.html: updated doc accordingly
4262
4263Sat Jun 23 18:30:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4264
4265 * xpath.c: fixed the bug generating a template loop in libxslt
4266 when using docbook-xsl-1.4, * should filter out document nodes
4267 * HACKING: added William
4268 * TODO: updated
4269
4270Fri Jun 22 18:02:37 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4271
4272 * doc/FAQ.html: added a warning about gcc-3.0
4273 * doc/xml.html: added reference to gdome2 and removed a confusing
4274 sentence
4275
4276Fri Jun 22 17:02:16 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4277
4278 * xmlversion.h: okay this is a generated file, but Windows
4279 users need it and they can't generate it, and I want CVS
4280 Windows users ...
4281 * win32/libxml2/libxml2_so.dsp: Windows project file for
4282 the shared lib version of libxml2
4283 * win32/libxml2/libxml2.def.src: bug #56527 set of exported
4284 resources needed for libxslt/xsltproc by Yon Derek
4285
4286Fri Jun 22 16:39:36 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
4287
4288 * trio.c: MSVC fix (provided by Igor Zlatkovic)
4289
4290Fri Jun 22 12:42:16 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4291
4292 * include/win32config.h: another small fix for ATTRIBUTE_UNUSED
4293
4294Fri Jun 22 12:42:16 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4295
4296 * include/win32config.h: Yon Derek provided a first fix
4297 to be able to compile libxslt/xsltproc on Windows
4298
4299Fri Jun 22 00:04:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4300
4301 * xpath.c: attempt to work around what seemed a gcc optimizer
4302 bug when handling floats on i386 http://veillard.com/gcc.bug
4303 * tree.c entities.c encoding.c: doing some cleanups while
4304 chasing it
4305
4306Thu Jun 21 13:13:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4307
4308 * Makefile.am: cleanup when --without-debug is specified
4309 * xinclude.c xpath.c xpathInternals.h xpointer.c: cleanup
4310 w.r.t. --without-debug and other include points
4311 * catalog.h testCatalog.c: a bit of cleanup and prepare for XML
4312 Catalogs
4313 * configure.in entities.h tree.h HTMLparser.c: removed
4314 --without-corba, made the _private field mandatory
4315
4316Wed Jun 20 19:37:25 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4317
4318 * parser.c parserInternals.c encoding.c: Since Notepad on Win2k
4319 outputs a BOM in UTF8, an errata has been issued to avoid the
4320 problem, that was the most reasonable solution... Add support
4321 for a leading UTF8 BOM in entities.
4322
4323Wed Jun 20 15:38:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4324
4325 * valid.c: fixed a bug found when post validating an entity ref
4326 * xmllint.c: added --loaddtd and sligly changed --postvalid to
4327 activate it too
4328
4329Tue Jun 19 20:03:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4330
4331 * tree.c xinclude.c xpointer.c: bug #56402 exposed a number of
4332 weakness in the node copy the XPointer and the XInclude
4333 implementations. Serious cleanup.
4334
4335Tue Jun 19 14:50:18 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4336
4337 * Makefile.am: Kjartan Maraas provided a small patch to
4338 add xml2-config.in to EXTRA_DIST
4339
4340Tue Jun 19 13:04:10 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4341
4342 * valid.c tree.c parserInternals.c parser.c: Stephan Kulow
4343 provided another failing case found in KDE, the way the
4344 ctxt->vctxt.nodeTab was allocated and freed changed over
4345 time but it wasn't completely cleaned up. This should fix it.
4346
4347Sun Jun 17 19:56:33 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4348
4349 * parser.c: Stephan Kulow also raised the fact that line number
4350 could get miscounted making debug harder, fixed the problem
4351 in xmlParseCharData()
4352
4353Sun Jun 17 19:17:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4354
4355 * valid.c: Stephan Kulow pointed out a problem when validating
4356 and using an empty entity, forgot a 'break' in a case.
4357
4358Sun Jun 17 16:47:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4359
4360 * tree.c: fixed xmlHasNsProp() accordingly to bug #55683
4361 * doc/xml.html: updated with 2.3.11
4362
4363Sun Jun 17 12:24:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4364
4365 * TODO: updated adding cleanup of generated doc
4366 * configure.in: prepared to release 2.3.11
4367 * xmllint.c: added --version for bug reporting
4368 * doc/html/*.html: rebuilt the doc
4369
4370Sat Jun 16 23:23:33 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4371
4372 * xpath.c: first part of the work on selecting namespace to
4373 fix bug #56115
4374
4375Sat Jun 16 00:20:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4376
4377 * Makefile.am example/Makefile.am: Laszlo PETER provided a fix
4378 when using -liconv
4379 * TODO: updated
4380
4381Fri Jun 15 07:08:57 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4382
4383 * HTMLtree.[ch]: more work on the HTML serialization routnes,
4384 cleanup, encoding support.
4385
4386Thu Jun 14 10:31:17 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4387
4388 * xpath.c: Thomas Broyer suggested a better patch for the / arg
4389
4390Thu Jun 14 01:01:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4391
4392 * xpath.c: bug detected by Ankh when / is used as a function arg
4393
4394Wed Jun 13 23:08:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4395
4396 * HTMLparser.[ch] HTMLtree.c: stored the inline/block property
4397 of element and use it to avoid outputting formatting spaces at
4398 the wrong place. Implemented the format parameter for HTML save.
4399 * result/HTML/doc2.htm result/HTML/doc3.htm result/HTML/fp40.htm
4400 result/HTML/script.html result/HTML/test2.html result/HTML/test3.html
4401 result/HTML/wired.html: of course this impact the result of a
4402 number of HTML tests
4403
4404Thu Jun 14 09:49:09 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4405
4406 * HTMLtree.[ch]: started augmenting the HTML save API with
4407 encoding and formatting parameters
4408
4409Wed Jun 13 09:44:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4410
4411 * HTMLtree.h: cleanup and started evaluating the work needed on
4412 revamping the HTML output code
4413
4414Mon Jun 11 19:29:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4415
4416 * DOCBparser.c: handling of PIs and <?sgml-declaration in entities.
4417
4418Tue Jun 12 08:46:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4419
4420 * valid.c: fixed bug #56049, forgot one check in the
4421 validation routine
4422
4423Tue Jun 12 08:09:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4424
4425 * tree.[ch]: grrr ... namespace is a C++ reserved keyword
4426
4427Tue Jun 12 06:29:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4428
4429 * libxml.h: fixed an error in last commit
4430 * doc/FAQ.html: added an entry for compilation from CVS
4431
4432Mon Jun 11 10:07:29 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4433
4434 * xmlversion.h.in libxml.h: Cygwin patches
4435 * tree.c: xmlFreeNodeList patch similar to xmlFreeNode one
4436 * tree.h: cleanup
4437
4438Sat Jun 9 19:16:00 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4439
4440 * tree.c: patched xmlFreeNode() to avoid freeing() a static
4441 memory block in a strange case where libxml is linked twice
4442 in the binary.
4443
4444Sat Jun 9 18:39:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4445
4446 * valid.c: (a? , b? , c? , ... , z?) was storing/restauring
4447 state far too often, simple fix used to avoid it.
4448
4449Sat Jun 9 16:10:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4450
4451 * xinclude.c: Raphael Hertzog had a trouble with DTD nodes
4452 being processed, applied his patch
4453 * tree.c: fixed a bug raised in xmlStaticCopyNodeList()
4454
4455Sat Jun 9 15:50:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4456
4457 * nanoftp.c nanohttp.c uri.c include/win32config.h: Igor Zlatkovic
4458 provided fixes to compile on MSCC again
4459 * win32/libxml2/libxml2.def.src win32/libxml2/libxml2*.dsp: he
4460 also provided an update for the project files.
4461
4462Thu Jun 7 21:52:10 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4463
4464 * tree.c: applied Steve Tinney patch to xmlNewNsProp to fix
4465 bug #55810
4466
4467Thu Jun 7 21:29:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4468
4469 * tree.c: fixed xmlGetNsProp() to close bug #55683
4470 Note this requires libxslt to use it's own function instead.
4471
4472Thu Jun 7 18:06:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4473
4474 * HTMLtree.c: when in a pre element no formatting space should
4475 be added.
4476 * test/HTML/pre.html result/HTML/pre.html*: added a regression test
4477
4478Thu Jun 7 17:29:38 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4479
4480 * configure.in: added tests for signal() and signal.h
4481
4482Fri Jun 8 10:17:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4483
4484 * xpath.c: robert pointed out xmlXPathNINF was not initialized
4485
4486Fri Jun 8 10:01:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4487
4488 * doc/libxml-doc.el: Felix Natter provided a new version for
4489 libxml2
4490
4491Fri Jun 8 07:20:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4492
4493 * HTMLtree.c: when in a pre element no formatting space should
4494 be added.
4495
4496Wed Jun 6 18:07:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4497
4498 * configure.in: add -mieee to CFLAGS when compiling on Linux/alpha
4499
4500Thu Jun 7 06:44:01 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4501
4502 * DOCBparser.c: implemented the <?sgml-declaration encoding="xxx"?>
4503 hack
4504 * tree.[ch]: added xmlHasNsProp as suggested in bug report #55653
4505 * uri.c: fixed a warning
4506
4507Tue Jun 5 22:54:21 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4508
4509 * HTMLtree.c: trying to close bug #55772 escaping in script
4510 elements
4511 * doc/xml.html: suggest to send mail to the list
4512
4513Tue Jun 5 19:11:02 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4514
4515 * error.c: attempt to fix the xmlGetVarStr breakage once and for
4516 good. Use a macro and based on the solution provided in
4517 vsnprintf manual page from GNU.
4518
4519Tue Jun 5 14:46:10 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
4520
4521 * error.c: Workaround for non-preserving variadic list.
4522 * trio.c trio.h triop.h strio.c strio.h: Upgraded to trio baseline 1.4
4523
4524Sat Jun 2 06:12:33 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4525
4526 * doc/xml.html: added 2.3.10 release
4527
4528Fri Jun 1 11:27:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4529
4530 * configure.in: releasing 2.3.10
4531
4532Thu May 31 20:42:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4533
4534 * xmlIO.c: Gary Pennington spotted a few troubles with file:///
4535
4536Thu May 31 20:18:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4537
4538 * encoding.c: Robert Collins provided a patch to add the
4539 "US-ASCII" encoding alias
4540
4541Wed May 30 21:12:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4542
4543 * xpath.c encoding.[ch]: William M. Brack provided a set of UTF8
4544 string oriented functions and started cleaning the related areas
4545 in xpath.c which needed fixing in this respect
4546
4547Wed May 30 20:30:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4548
4549 * HTMLtree.c: applied patch from Jaroslaw Kolakowski to close bug
4550 #55380
4551 * tree.c: patch to xmlNodeGetContent() to get CDATA section content
4552
4553Mon May 28 12:56:29 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4554
4555 * TODO: updated
4556 * nanohttp.[ch] : started adding APIs to get the redirected URL
4557 when this occurs (needed for further base computation
4558 * tree.h: cleanup
4559 * encoding.c: cleanup
4560 * SAX.c: minor change around ctxt->loadsubset
4561
4562Fri May 25 09:36:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4563
4564 * Makefile.am include/Makefile.am: small change to have
4565 include/libxml rebuilt if working from CVS.
4566 * uri.c: applied another patch from Carl Douglas for URI escaping,
4567 this should close bug #51876
4568
4569Wed May 23 15:40:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4570
4571 * xinclude.c: fixed XInclude recursive behaviour bug #54678
4572 * result/XInclude/recursive.xml test/XInclude/docs/recursive.xml
4573 test/XInclude/ents/inc.txt test/XInclude/ents/sub-inc.ent:
4574 added specific regression test
4575 * parser.h: preparing for the XSLT mode where DTD inherited
4576 attributes are added to the tree.
4577
4578Wed May 23 13:59:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4579
4580 * xinclude.[ch]: Updated the namespace for the Last Call version
4581 * result/XInclude/include test/XInclude/include: updated the
4582 testsuite accordingly
4583
4584Wed May 23 12:27:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4585
4586 * uri.[ch]: applied a patch from Carl Douglas for URI escaping,
4587 related to bug #51876
4588
4589Tue May 22 18:46:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4590
4591 * tree.c: fixed a gross mistake in base computation, xml:base is
4592 not completely correct yet (need cascade).
4593 * xpath.[ch]: added the few things needed to find a function name
4594 and URI from the XPath context when it is called.
4595
4596Tue May 22 17:00:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4597
4598 * catalog.[ch]: fixes and add xmlLoadCatalogs()
4599 * DOCBparser.c: small cleanup
4600 * xmllint.c: added a --catalogs option to load catalogs from
4601 $SGML_CATALOG_FILES
4602 * tree.c: cleanup
4603 * configure.in: iconv library fixup, ICONV_LIBS
4604
4605Mon May 21 16:05:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4606
4607 * catalog.c: handling of CATALOG entries. detection of recursion,
4608 and a few bugfixes
4609 * xpath.c: fixing bug #54951 QNAME with no prefix should not match
4610 against the default namespace
4611
4612Mon May 21 10:14:07 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4613
4614 * xpath.c: Joe Orton reported a bug found with IRIx compiler.
4615
4616Sun May 20 15:15:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4617
4618 * parser.c: fixed propagation context info when parsing an
4619 external entity.
4620 * doc/html/*.html: regenerated a couple of docs
4621
4622Sat May 19 17:11:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4623
4624 * doc/xml.html: update with 2.3.9 informations
4625
4626Sat May 19 16:50:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4627
4628 * HTMLtree.h debugXML.h parserInternals.h tree.h valid.c
4629 xmlversion.h.in xpathInternals.h xpath.h: some cleanup for gtk-doc
4630 * doc/html/* : rebuilt the docs
4631 * valid.c: small patch which may improve some case when
4632 validating.
4633
4634Sat May 19 15:20:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4635
4636 * HTMLparser.c: Closed bug #54891
4637 * result/HTML/cf_128.html* test/HTML/cf_128.html: added the test
4638 to the suite
4639
4640Thu May 17 14:15:07 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4641
4642 * encoding.h hash.c nanoftp.h parser.h tree.h uri.h xlink.h xpointer.c:
4643 applied a documentation patch from LotR and filled in a few missing
4644 descriptions
4645
4646Wed May 16 23:02:41 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4647
4648 * xpath.c tree.c parser.c: speed optimizations at the parser level
4649 document tree freeing and xpath evaluation
4650
4651Wed May 16 12:55:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4652
4653 * parser.c parser.h parserInternals.h: fixed a couple of
4654 interfaces for handling memory buffer input to const char *
4655 upon suggestion of JamesH.
4656
4657Tue May 15 17:22:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4658
4659 * configure.in: LoTR sent a patch fixing the previous commit
4660
4661Tue May 15 14:40:04 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4662
4663 * configure.in: trying to deal again with the stoopid -R linking
4664 flag of Solaris
4665
4666Tue May 15 12:49:50 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4667
4668 * xpath.h: two nodeset access macros from Thomas Broyer
4669
4670Tue May 15 11:42:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4671
4672 * xpath.c xpath.h xpathInternals.h: apply an XPath API cleanup
4673 patch from Thomas Broyer
4674
4675Tue May 15 10:52:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4676
4677 * valid.c test/VCM/v2[34].xml: Fixed bug #54631 added specific test
4678 case
4679 * INSTALL: was empty added stuff from the FAQ
4680
4681Fri May 11 19:37:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4682
4683 * tree.[ch]: fixing bug #54446, by cleaning some bugs in the
4684 attributes handling and #54433 by adding xmlUnsetProp()
4685 and xmlUnsetNsProp()
4686
4687Fri May 11 16:07:13 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4688
4689 * HTMLparser.c: Patch from Jonas Borgström
4690 (htmlGetEndPriority): New function, returns
4691 the priority of a certain element.
4692 (htmlAutoCloseOnClose): Only close inline elements if they
4693 all have lower or equal priority.
4694 * result/HTML: this of course changed a number of tests results.
4695
4696Thu May 10 17:30:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4697
4698 * xmlIO.c catalog.c: plugged in the default catalog resolution
4699 * doc/gnome-xml.sgml: linked in the Docbook parser and catalog
4700 documentations
4701 * doc/html/libxml-*.html: rebuild added the missing ones to CVS
4702
4703Thu May 10 16:14:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4704
4705 * Makefile.am xmlversion.h.in configure.in include/Makefile.am:
4706 integrating catalogs
4707 * catalog.[ch] testCatalog.c: adding a small catalo API
4708 (only SGML catalog support).
4709 * parser.c: restaured xmlKeepBlanksDefault(0) API
4710
4711Wed May 9 12:50:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4712
4713 * tree.c: zb@bisp.com reported an error in xmlNodeGetLang()
4714
4715Tue May 8 12:31:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4716
4717 * parser.c: added xmlParseExternalEntityPrivate() to allow
4718 propagation of ctxt->_private when parsing external entities
4719
4720Tue May 8 10:26:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4721
4722 * HTMLtree.c: fixed the bug reported by Bjorn in htmlNodeDump
4723
4724Tue May 8 09:30:12 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4725
4726 * configure.in: fixed a small portability problem with AM_CONDITIONAL
4727
4728Mon May 7 22:44:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4729
4730 * valid.c: warn when indeterminist content model is detected
4731 * result/VC/ElementValid8: this adds a message
4732 * Makefile.am: add --novalid for VCM tests
4733 * parserInternals.c: added a call to Init memory
4734
4735Fri May 4 19:51:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4736
4737 * HTMLparser.c: fixed htmlNewDoc SYSTEM and PUBLIC ID inversion
4738 when both parameters are NULL.
4739
4740Fri May 4 17:19:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4741
4742 * valid.c: applied small patch from Gary Pennington, reindented
4743 some part of the code.
4744
4745Thu May 3 13:10:43 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4746
4747 * configure.in doc/xml.html doc/html/*: preparing for 2.3.8
4748 release, updated and regenerated the docs
4749
4750Thu May 3 12:47:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4751
4752 * xpath.c result/XPath/expr/floats : clarified and cleanup
4753 printing of abnormal floats in tests.
4754
4755Thu May 3 10:25:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4756
4757 * HTMLparser.c: trying to fix the problem reported by Jonas Borgström
4758 * results/HTML/ : a few changes in the output of the HTML tests as
4759 a result.
4760 * configure.in: tying to fix -liconv where needed
4761
4762Wed May 2 19:10:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4763
4764 * Makefile.am: fixed a stupid error
4765
4766Wed May 2 18:39:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4767
4768 * configure.in Makefile.am: make the inclusion of the trio
4769 modules in the library conditional
4770
4771Wed May 2 14:39:57 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4772
4773 * DOCBparser.c: patche from László Kovács, fixed entities refs
4774 in attributes handling
4775
4776Wed May 2 12:56:04 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4777
4778 * xmlIO.c: Bjorn Reese provided a fix for a problem on buffer
4779 flushing
4780
4781Mon Apr 30 22:29:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4782
4783 * xpath.c: fix of an XSLT namespace bug reported on the list
4784 general/bug-8-
4785
4786Mon Apr 30 19:42:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4787
4788 * strio.h trio.c: Dan McNichol suggested a couple of small
4789 fixes for AIX 4.3.3 using Visual Age 5.0.2 compiler
4790
4791Mon Apr 30 13:44:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4792
4793 * tree.c parser.c encoding.c: spent a bit more time looking
4794 at the parsing speed and DOM handling. Added a few more
4795 speedups.
4796
4797Sun Apr 29 21:53:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4798
4799 * parser.c: small but effective parsing speed improvement
4800
4801Sun Apr 29 19:02:13 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4802
4803 * configure.in: default on the DocBook parser inclusion (for Gnome)
4804 * DOCBparser.h: fixed a header reference
4805
4806Sat Apr 28 19:00:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4807
4808 * configure.in xpath.c: applied Bjorn patches for FPE on the
4809 alpha
4810
4811Sat Apr 28 18:54:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4812
4813 * tree.[ch] xmlIO.h: applied patch from Joe McAlerney to add
4814 xmlSaveFormatFileTo()
4815
4816Sat Apr 28 16:33:05 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4817
4818 * xpath.c: simple and efficient optimization, XPath functions
4819 aways bind to the same code, cache this
4820 * TODO: updated (by saying some is obsolete)
4821
4822Sat Apr 28 14:23:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4823
4824 * xpath.c: more cleanup work on XPath name parsing routines
4825
4826Fri Apr 27 19:06:13 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4827
4828 * parserInternals.c xpath.[ch]: some UTF8 cleanup on
4829 xmlXPathParseName
4830 * xpath.c: Igor Zlatkovic suggested a change for NAN and MSC
4831 * debugXML.c: avoid compilation problems if compiling without
4832 HTML support, Igor Zlatkovic
4833 * win32/libxml2/libxml2.def.src: being able to compile without
4834 XPath on Windows
4835
4836Thu Apr 26 22:53:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4837
4838 * libxml.m4: yet another patch from Toshio Kuratomi
4839
4840Thu Apr 26 21:27:43 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4841
4842 * libxml.m4 libxml2-spec.in: new patches from Toshio Kuratomi
4843
4844Thu Apr 26 20:53:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4845
4846 * tree.[ch]: added xmlSaveFormatFile interface for saving
4847 and indenting a file.
4848
4849Thu Apr 26 16:35:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4850
4851 * xpath.c: fixed bug #53689 related to processing-instruction()
4852
4853Thu Apr 26 12:57:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4854
4855 * DOCBparser.c: patche from László Kovács
4856
4857Thu Apr 26 11:31:54 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4858
4859 * parser.c: applied fixes from Christian Glahn bug report #53391
4860
4861Thu Apr 26 11:14:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4862
4863 * error.c: Jean François Lecomte provided a complete description
4864 and a fix to bug #53537
4865
4866Thu Apr 26 09:42:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4867
4868 * libxml.m4: added AM_PATH_XML2 provided by Toshio Kuratomi
4869
4870Wed Apr 25 21:05:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4871
4872 * DOCBparser.c SAX.c: a bit more work on entities processing.
4873 Still Need to cleanup XML output and references in attributes
4874
4875Wed Apr 25 17:52:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4876
4877 * DOCBparser.c include/Makefile.am: two patches from László Kovács
4878
4879Wed Apr 25 14:56:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4880
4881 * tree.c: trying to fix #53574, not completely complete,
4882 I would like xmllint --copy --debug test/ent1 and
4883 xmllint --debug test/ent1 to show the same result.
4884 * xpath.c: fix a bug when trying to sort namespace nodes
4885
4886Wed Apr 25 12:28:57 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4887
4888 * HTMLtree.c: real fix for #53402
4889
4890Tue Apr 24 17:36:35 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4891
4892 * HTMLtree.c HTMLtree.h : closing #53402 i.e. output of
4893 PIs when using xsl:output
4894 * valid.c: closing #53537 some case generate segfaults if there
4895 is validity errors
4896
4897Tue Apr 24 15:19:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4898
4899 * SAX.c testDocbook.c DOCBparser.c: more work on the support
4900 of external parsed entities, added --noent to testDocbook
4901 * valid.c: Garry Pennington found an uninitialized variable
4902 access in xmlValidateElementContent()
4903
4904Tue Apr 24 14:41:25 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4905
4906 * HTMLparser.c : HTML parsing still sucks ... trying to deal
4907 with madness
4908 * result/HTML/ : this modified the result of the regression tests
4909 a lot.
4910
4911Tue Apr 24 14:10:38 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4912
4913 * entities.c: xmlEncodeEntitiesReentrant fixed a few accesses
4914 to doc where it wasn't checked against NULL reported by
4915 Jens Laas
4916
4917Tue Apr 24 13:21:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4918
4919 * HTMLparser.c: Jonas Borgström patch, the <td>, and <th> elements
4920 now means the end of any open <span>,<font>,<a>,<b>,<i>,<u>.
4921
4922Mon Apr 23 15:40:04 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4923
4924 * DOCBparser.c DOCBparser.h testDocbook.c configure.in Makefile.am
4925 xmlversion.h.in: started (re)integrating the DocBook SGML parser.
4926 * SAX.[ch]: cleanup and updates for DocBook
4927 * debugXML.c parser.h tree.[ch] valid.c xpath.c: small macro or
4928 ex SGML identifier changes
4929 * valid.c: removed a static unused function.
4930
4931Mon Apr 23 11:05:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4932
4933 * HTMLtree.c: applied change for Paul Sponagl on script saving
4934 * Makefile.am: the warning about entity title.xml are normal.
4935
4936Sun Apr 22 22:09:35 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4937
4938 * configure.in: release of 2.3.7
4939 * Makefile.am: fixing make distcheck
4940
4941Sun Apr 22 21:29:52 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4942
4943 * doc/html/* doc/xml.html: updated and regenerated the docs
4944
4945Sun Apr 22 21:11:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4946
4947 * xpath.c: fixed the XPointer problem introduced in 2.3.6
4948
4949Sun Apr 22 14:11:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4950
4951 * tree.c: fixed #53388 with the provided patch
4952
4953Sun Apr 22 12:34:41 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4954
4955 * valid.c: Bjorn detected an invalid memory access. Fixed
4956 vstateVPush()
4957
4958Sun Apr 22 10:49:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4959
4960 * xpath.c: fixed xmlXPathCompile to detected unproperly ended expr
4961
4962Sat Apr 21 18:27:51 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
4963
4964 * libxml.h: new header used only for the compilation of libxml
4965 * HTMLparser.c HTMLtree.c SAX.c debugXML.c encoding.c entities.c
4966 error.c hash.c list.c nanoftp.c nanohttp.c parser.c
4967 parserInternals.c testHTML.c testSAX.c testURI.c testXPath.c
4968 tree.c uri.c valid.c xinclude.c xlink.c xmlIO.c xmllint.c
4969 xmlmemory.c xpath.c xpointer.c: libxml.h integration
4970 * trio.[ch] triop.h strio.[ch]: upgraded to the latest trio
4971 baseline (version 1.2 plus a single patch).
4972 * xpath.c result/XPath/expr/floats test/XPath/expr/floats: parses
4973 scientific notation for numbers. Tests added.
4974 * xpath.c: formatting of numbers changed to use sprintf
4975 (contribution from William Brack)
4976
4977Sat Apr 21 16:12:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4978
4979 * valid.c: cleanup, more useful debugging
4980 * parserInternals.c: cleanup vctxt.nodeTab (de)allocation
4981 * xmlIO.c: entity loading is printed as an error when validating
4982
4983Sat Apr 21 12:25:49 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4984
4985 * valid.c: fixed to validate within entities
4986 * test/VCM/v22.xml: added a specific testcase
4987
4988Fri Apr 20 17:45:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4989
4990 * valid.c: forgot an epsilon transition in for ()+
4991 * test/VCM/v21.xml : added a specific test case
4992
4993Fri Apr 20 15:46:04 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
4994
4995 * valid.c: removed a state explosion exhibited by RSS
4996 * test/valid/rss.xml result/valid/rss.xml*: added the testcase
4997 from bug #51872
4998
4999Fri Apr 20 14:52:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5000
5001 * valid.[ch] tree.h: worked *hard* to get non-determinist content
5002 validation without using an ugly NFA -> DFA algo in the source.
5003 Made a specific algorithm easier to maintain, using a single
5004 stack and without recursion.
5005 * Makefile.am test/VCM/*.xml: added more tests to "make Validtests"
5006 * hash.c: made the growing routine static
5007 * tree.h parser.c: added the parent information to an
5008 xmlElementContent node.
5009
5010Wed Apr 18 23:33:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5011
5012 * SAX.c parser.c xpath.c: generating IDs when not validating
5013 from an external parsed entity was poisoning the ID has table
5014 with removed values. This was killing XSLT on the KDE help
5015 browser.
5016
5017Wed Apr 18 17:09:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5018
5019 * entities.h: andrew@ugh.net.au detected a double declaration
5020
5021Wed Apr 18 15:06:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5022
5023 * debugXML.c hash.c tree.h valid.c : some changes related to
5024 the validation suport to improve speed with DocBook
5025 * result/VC/OneID2 result/VC/OneID3 : this slightly changes
5026 the way validation errors get reported
5027
5028Wed Apr 18 11:42:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5029
5030 * HTMLparser.c HTMLtree.c: applied part of the patches provided
5031 by P C Chow and William M. Brack for XSLT HTML output
5032
5033Mon Apr 16 19:44:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5034
5035 * xmlversion.h.in win32config.h win32/libxml2/*: applied
5036 Igor Zlatkovic patches for MSC compilation and added his
5037 updates
5038
5039Tue Apr 17 10:08:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5040
5041 * xpath.c: fixed xmlXPathNodeCollectAndTest() to do proper
5042 prefix lookup.
5043 * parserInternals.c: fixed the bug reported by Morus Walter
5044 due to an off by one typo in xmlStringCurrentChar()
5045
5046Thu Apr 12 17:41:09 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5047
5048 * HTMLparser.c result/HTML/*: revamped the way the HTML
5049 parser handles end of tags or end of input
5050
5051Thu Apr 12 10:50:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5052
5053 * tree.[ch] : added xmlDocCopyNode for gdome2 support
5054
5055Wed Apr 11 16:37:50 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5056
5057 * tree.h: include xmlmemory.h this seems to havoid a nasty glibc
5058 bug where the linktime verions of free() won't work ...
5059
5060Wed Apr 11 14:21:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5061
5062 * config.h.in configure.in xmlversion.h.in: added ansidecl.h test
5063
5064Wed Apr 11 13:50:42 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5065
5066 * doc/xml.html: added 2.3.6 release
5067
5068Wed Apr 11 13:26:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5069
5070 * tree.c: fixed xmlStringGetNodeList() to handle charrefs
5071 * result/wml.xml: resulted in a small output change
5072
5073Wed Apr 11 09:47:55 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5074
5075 * tree.c: xmlNewDoc was missing the charset initialization
5076 * xmllint.c: added --auto to autogenerate a doc, allow to
5077 reproduce the problem fixed on xmlNewDoc
5078
5079Tue Apr 10 18:13:10 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5080
5081 * xpath.c: trying to get 52979 solved
5082 * tree.c result/ result/noent/: trying to get 52712 solved, this
5083 also made me clean up the fact that XML output in general should
5084 not add formating blanks by default, this changed the output of
5085 a few tests
5086
5087Tue Apr 10 16:30:20 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5088
5089 * xpath.c: Bill Brack pointer an error in detecting a null nodeset
5090
5091Sun Apr 8 15:07:16 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5092
5093 * configure.in: finally released 2.3.6
5094
5095Sun Apr 8 11:39:21 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5096
5097 * xpath.c: checking for null pointer generated by new code
5098
5099Fri Apr 6 12:53:05 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5100
5101 * xpath.c: fixed a [] evaluation problem reported
5102 * test/XPath/tests/simpleaddr: extended test
5103 * result/XPath/simpleaddr: updated result
5104
5105Wed Apr 4 02:07:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5106
5107 * xmllint.c: Dan Timis reported a portability problem
5108 on Macs without mmap, fixed it.
5109
5110Tue Apr 3 20:20:51 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5111
5112 * testXPath.c : added a --tree option allowing to display the
5113 tree dump of the XPath expression
5114
5115Mon Apr 2 17:13:51 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5116
5117 * xpath.c: fixed a memleak when comparing nodesets
5118 * HTMLtree.c: don't invent the HTML doctype if not available (XSLT)
5119 * tree.c: added a TODO
5120
5121Tue Mar 27 14:32:06 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5122
5123 * configure.in Makefile.am config.h.in xmlversion.h.in: detect if
5124 we need string functions
5125 * trio.[ch] strio.[ch]: embedded the Trio-0.23 string functions
5126 to be able to use them where needed. Applied some changes
5127 to reduce name linking pollution and compile in only what's
5128 needed.
5129 * HTMLtree.c debugXML.c entities.c error.c nanoftp.c valid.c
5130 xlink.c xmlversion.h.in xpath.c: got rid of the #ifdef
5131 for the string manipulation functions
5132 * xmlmemory.[ch]: removed DEBUG_MEMORY_FREED and added it automatically
5133 to the free() function of xmlmemory.c
5134 * entities.c HTMLtree.c parserInternals.c tree.c uri.c valid.c
5135 xinclude.c xmlIO.c xpath.c xpointer.c: removed the MEM_CLEANUP
5136 usage.
5137
5138
5139Tue Mar 27 02:30:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5140
5141 * error.c: applied the context output patch of the error
5142 handling submitted by Chuck Griffith
5143 * error/VC/*: this slightly change some error logs
5144
5145Tue Mar 27 00:51:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5146
5147 * parser.c: fixed line number reporting on error
5148
5149Mon Mar 26 23:21:41 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5150
5151 * parser.c: Sullivan and Darin found a parser bug,
5152 applied the patch.
5153
5154Mon Mar 26 18:24:52 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5155
5156 * HTMLparser.c HTMLtree.c SAX.c debugXML.c error.c parserInternals.c
5157 testHTML.c testSAX.c tree.c valid.c xmlIO.c xmlmemory.c
5158 xmlversion.h.in xpointer.c: of course the way I defined
5159 UNUSED breaks on old gcc version. Try to be smart and
5160 also define it directly in xmlversion.h
5161 * configure.in: removed -ansi flag from the pedantic set
5162
5163Sat Mar 24 17:45:36 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5164 Huge cleanup, I switched to compile with
5165 -Wall -g -O -ansi -pedantic -W -Wunused -Wimplicit
5166 -Wreturn-type -Wswitch -Wcomment -Wtrigraphs -Wformat
5167 -Wchar-subscripts -Wuninitialized -Wparentheses -Wshadow
5168 -Wpointer-arith -Wcast-align -Wwrite-strings -Waggregate-return
5169 -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Winline
5170 * HTMLparser.[ch] HTMLtree.c SAX.c debugXML.c encoding.[ch]
5171 encoding.h entities.c error.c list.[ch] nanoftp.c
5172 nanohttp.c parser.[ch] parserInternals.[ch] testHTML.c
5173 testSAX.c testURI.c testXPath.c tree.[ch] uri.c
5174 valid.[ch] xinclude.c xmlIO.[ch] xmllint.c xmlmemory.c
5175 xpath.c xpathInternals.h xpointer.[ch] example/gjobread.c:
5176 Cleanup, staticfied a number of non-exported functions,
5177 detected and cleaned up a dozen of problem found this way,
5178 avoided a lot of public function name/typedef/system names clashes
5179 * doc/xml.html: updated
5180 * configure.in: switched private flags to the really pedantic ones.
5181
5182Thu Mar 22 22:44:15 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5183
5184 * configure.in: 2.3.5
5185 * doc/html/*: rebuilt the docs
5186
5187Thu Mar 22 15:36:45 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5188
5189 * parser.c: fixed a reported bug in NOTATION parsing
5190 * uri.c: accepted but not fixed bug 51876, added TODO
5191 * Makefile.am: fixed bug 51876
5192
5193Thu Mar 22 13:41:22 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5194
5195 * config.h.in configure.in error.c: fix a compilation problem
5196 on platforms without vsnprintf (xml@thewrittenword.com)
5197
5198Wed Mar 21 19:04:34 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5199
5200 * parser.c: fixed a function name header typo
5201 * SAX.c: notations can also occur in external subset.
5202
5203Tue Mar 20 14:21:28 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5204
5205 * error.c: removed a C++ like comment
5206
5207Tue Mar 20 12:22:36 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5208
5209 * parser.c: fixing bug 52299 strange condition leading
5210 to a parser crash due to a buffer overflow
5211 * result/noent/attrib.xml result/attrib.xml test/attrib.xml:
5212 added the specific test case
5213
5214Mon Mar 19 16:50:52 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5215
5216 * xpath.[ch]: still a lot of cleanup based on XSLT, added
5217 xmlXPathConvert{String,Number,Boolean} to be able to make
5218 type casts without a context stack, fixed some implementation
5219 problems related to the absence of context at parse-time,
5220 added xmlXPathEvalPredicate() and xmlXPathFreeCompExpr()
5221 in the public API too
5222 * xpointer.c xpathInternals.h: we need to know at parse time
5223 whether we are compiling an XPointer
5224
5225Mon Mar 19 11:54:31 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5226
5227 * xpath.[ch] xpointer.c: restaured the Binary and API compatibility
5228 cleaned up the parser internals, refactored XPath code, added
5229 new compilation based APIs and cleanly separated public and
5230 private APIs.
5231
5232Mon Mar 19 00:59:25 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5233
5234 * xpath.h: the comp field must be added at the end to avoid
5235 killing binary compat.
5236
5237Mon Mar 19 00:11:18 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5238
5239 * Makefile.am: detect XPath memleaks in regreson tests
5240 * error.c: fixed and error w.r.t. error reporting still using
5241 stderr
5242 * hash.c: added new line at end of file
5243 * tree.h: minor cleanup
5244 * xpath.[ch] xpointer.[ch]: Major changes ! Separated XPath
5245 expression parsing from evaluation, resulted in a number of
5246 changes internally, and in XPointer. Likely to break stuff
5247 using xpathInternals.h but should remain binary compatible,
5248 new interfaces will be added.
5249
5250Wed Mar 14 20:34:02 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5251
5252 * configure.in: fixed a couple of problems reported by
5253 okiddle@yahoo.co.uk and allanc@chickenandporn.com when compiling
5254 without gcc on non linux platforms.
5255
5256Wed Mar 14 20:13:54 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5257
5258 * doc/Makefile.am configure.in: yearke@eng.buffalo.edu suggested
5259 a fix for --with-html-dir= configure support. I hope it won't
5260 break rpm generation
5261
5262Wed Mar 14 17:28:49 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5263
5264 * xmlIO.c: one function comment cleanup.
5265
5266Wed Mar 14 14:55:46 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5267
5268 * SAX.c: external subset notations were improperly registered
5269 in the internal subset.
5270
5271Tue Mar 13 10:28:49 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5272
5273 * README.cvs-commits: added, pointing to HACKING
5274 * HACKING: updated
5275
5276Mon Mar 12 22:09:40 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5277
5278 * parser.c: and Matt Sergeant found one in the XML push
5279 parser (erroneous check I forgot to remove when I fixed the
5280 main parser).
5281
5282Mon Mar 12 19:19:04 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5283
5284 * xpath.c: ptittom found a small bug in UnaryExpr
5285
5286Sat Mar 10 13:09:53 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5287
5288 * configure.in: bumped to 2.3.4
5289 * error.c: fixed bug #51860
5290 * tree.c: fixed bug #51861
5291 * valid.c: cleanup, more debug, failed to fix one bug crap ...
5292 * tree.[ch] : added xmlDefaultBufferSize
5293 * nanoftp.c: typo in function name header block
5294 * doc/xml.html : updated, added link to XML::LibXSLT
5295 * doc/html/* : rebuilt the docs
5296
5297Wed Mar 7 20:43:47 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5298
5299 * parser.c SAX.c: the new content parsing code raised an
5300 ugly bug in the characters() SAX callback. Found it
5301 just because of strangeness in XSLT XML Rec ouptut :-(
5302
5303Wed Mar 7 16:50:22 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5304
5305 * Makefile.am: Martin Baulig suggested to add -lm
5306 * tree.c: found another bug in xmlNodeGetContent()
5307
5308Tue Mar 6 09:21:30 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5309
5310 * xpath.c: Bjorn found the error related to strictness of comparison.
5311
5312Mon Mar 5 21:47:31 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5313
5314 * parser.c: trying to fix the Dtd parsing problem reported
5315 by Gary, side effect of last week speed optimizations.
5316
5317Sat Mar 3 19:45:59 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5318
5319 * xml2Conf.sh.in: fixes pointed out by Fredrik Hallenberg
5320 * parserInternals.c: removed unneeded test raised by Stric
5321
5322Sat Mar 3 13:04:37 CET 2001 Bjorn Reese <breese@users.sourceforge.net>
5323
5324 * xpath.c: Fixed xmlXPathNodeCollectAndTest (problem reported
5325 and fixed by William Brack). Added xmlXPathFormatNumber.
5326 Changed the sorting slightly.
5327 * configure.in Makefile.am example/Makefile.am: Added -lm.
5328 Please note that applications linking with libxml2, must
5329 also like with the math library from now on.
5330
5331Sat Mar 3 07:38:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5332
5333 * HTMLparser.c: fixed loop reported by Marc Sanfacon
5334
5335Sat Mar 3 02:10:24 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5336
5337 * parser.c: one must report spaces even if the Dtd element
5338 content proves that this is not part of the element content.
5339 * result/valid/*.xml: this changed the ouptu slightly
5340
5341Thu Mar 1 17:53:39 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5342
5343 * configure.in: bumped to 2.3.3
5344 * doc/xml.html: updated
5345
5346Wed Feb 28 00:43:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5347
5348 * tree.c: minor doc fix
5349 * xpath.c: deallocation issues when a result tree has been
5350 converted to a node-set
5351
5352Mon Feb 26 22:09:45 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5353
5354 * doc/xml.html: oops corrected dates s/2000/2001
5355
5356Mon Feb 26 12:48:35 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5357
5358 * valid.c: new patch from Gary Pennington
5359
5360Mon Feb 26 09:30:23 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5361
5362 * doc/xml.html: applied patch from Ankh
5363
5364Mon Feb 26 03:34:43 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5365
5366 * xinclude.c: fixed a problem building on Mac
5367
5368Sun Feb 25 21:52:30 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5369
5370 * parser.c: more work on increasing parsing ferformances
5371
5372Sun Feb 25 18:03:42 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5373
5374 * xmlmemory.h HTMLparser.c HTMLtree.c entities.c parser.c
5375 xpath.c xpointer.c tree.c uri.c valid.c xinclude.c xmlIO.c:
5376 avoiding memcpy in production builds MEM_CLEANUP macro use
5377 * parser.[ch] parserInternals.c: optimizations of the tightest
5378 internal loops inside the parser. Better checking of I/O
5379 flushing/loading conditions
5380 * xmllint.c : added --timing
5381
5382Sun Feb 25 05:48:51 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5383
5384 * configure.in: bumped to 2.3.2
5385 * doc/xml.html: updated for release
5386
5387Sat Feb 24 14:07:52 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5388
5389 * xpath.c: found a memleak and fixed a nasty bug
5390
5391Sat Feb 24 03:35:48 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5392
5393 * xmllint.[c1] : added return code errors for xmllint
5394 * xpath.c: specific debug dump function for result value trees
5395
5396Thu Feb 22 07:52:27 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5397
5398 * xpath.c: finally implemented xmlXPathCompareNodeSets
5399 * test/XPath/expr/floats results/XPath/expr/floats: added
5400 a test for float expressions
5401
5402Tue Feb 20 18:57:54 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5403
5404 * tree.c: fixed xmlNodeGetContent, it was not recursing on child
5405 * parserInternals.[ch]: trying to speed up parsing
5406 * xpath.c : speeded up node set equality op
5407
5408Mon Feb 19 19:01:57 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5409
5410 * Makefile.am valid.c list.[ch]: Gary Pennington provided a
5411 better handling of ID/IDREF and the list modules associated
5412 * configure.in: small CFLAGS cleanup
5413
5414Mon Feb 19 16:13:22 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5415
5416 * configure.in: fixed iconv detection on AIX (stric)
5417
5418Mon Feb 19 10:59:41 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5419
5420 * xpath.c: fixed "*" (unbelievable !) and a couple of warnings
5421
5422Sun Feb 18 17:52:37 MET 2001 Bjorn Reese <breese@users.sourceforge.net>
5423
5424 * xpath.c: fixed whitespace handling in xmlXPathStringEvalNumber,
5425 and optimized xmlXPathNodeSetSort
5426
5427Sat Feb 17 14:18:42 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5428
5429 * xpath.c: bug fix when context size is 0
5430 * parser.c: I like Norm's Dtd because they still manage to break
5431 the parser occasionally
5432
5433Fri Feb 16 14:20:35 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5434
5435 * xpath.c: xmlXPathEqualNodeSetFloat the arg is really a double now
5436
5437Fri Feb 16 01:10:06 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5438
5439 * tree.[ch] parser.c xpath.c: fixed the problem of addressing
5440 attributes within the XML-1.0 namespace
5441
5442Thu Feb 15 16:53:20 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5443
5444 * xpathInternals.h: exported a few axis functions
5445 * doc/xml.html: updated the doc
5446
5447Thu Feb 15 15:57:14 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5448
5449 * configure.in: applied patch from Daniel van Balen for OpenBSD
5450 and bumped version to 2.3.1
5451 * HTMLtree.c result/HTML/doc3.htm result/HTML/wired.html: the
5452 attempt to find autoclosing was simply broken, removed it,
5453 updated the examples, this is better
5454
5455Wed Feb 14 11:35:39 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5456
5457 * hash.[ch]: added Paolo Casarini patch to provide Delete from
5458 hash functionnalities.
5459 * doc/html/* : rebuild the doc
5460
5461Tue Feb 13 18:01:48 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5462
5463 * xpath.c result/XPath/tests/chaptersprefol: bugfixes on order and
5464 on predicate
5465 * HTMLparser.[ch] HTMLtree.c result/HTML/doc3.htm.err
5466 result/HTML/doc3.htm.sax result/HTML/wired.html: sometimes one
5467 really want to have tags closed on output even if we accept
5468 unclosed ones on input
5469
5470Mon Feb 12 18:33:20 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5471
5472 * xpath.c: ouch don't free NULL, rare case fixed
5473 * tree.c: don't coalesce text nodes if they don't have the
5474 same behaviour wrt escaping on output
5475
5476Sun Feb 11 21:15:41 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5477
5478 * xpath.c: small fixup
5479 * SAX.c: don't warn on empty namespaces.
5480
5481Thu Feb 8 11:28:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5482
5483 * README: a bit of cleanup
5484 * configure.in: preparing for 2.3.0 release
5485
5486Thu Feb 8 10:37:00 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5487
5488 * hash.[ch]: added a first version of xmlHashSize()
5489 * valid.c: another bug fix from Gary Pennington
5490
5491Wed Feb 7 19:22:37 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5492
5493 * valid.c: couple of bug fixes pointed by Gary Pennington
5494 * HTMLtree.c: #if 0 cleanup
5495
5496Tue Feb 6 14:02:56 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5497
5498 * xpath.c: started profiling XSLT, added xmlXPathNodeSetAddUnique()
5499 which removes a time consuming check of xmlXPathNodeSetAdd()
5500 and use it in places where we are sure to not break unicity
5501
5502Mon Feb 5 18:51:36 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5503
5504 * xpath.c: bug fixes found from XSLT
5505 * tree.c: preserve node->name special values when copying nodes.
5506 * parserInternals.[ch] parser.[ch] SAX.c : added a mode where
5507 external subset are fetched when available but without full
5508 validation. Added xmlLoadExtDtdDefaultValue, need a function.
5509 * HTMLtree.c: add support for xmlStringTextNoenc for XSLt HTML
5510 output with encoding disabled.
5511
5512Sat Feb 3 09:50:29 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5513
5514 * xmliO.c: Harry Blundell pointed out that xmlCheckFilename
5515 xmlCheckFilename should not be called from xmlFileOpenW
5516 and xmlGzfileOpenW
5517
5518Fri Feb 2 18:04:35 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5519
5520 * uri.c: rewrite of xmlNormalizeURIPath from Paul D. Smith
5521 * test/URI/smith.uri result/URI/smith.uri Makefile.am:
5522 added the new tests for URI normalization
5523 * testURI.c: fixed stoopid bugs
5524 * result/VC/OneID3 result/VC/UniqueElementTypeDeclaration:
5525 the URI in the error messages are now properly normalized
5526
5527Fri Feb 2 09:18:53 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5528
5529 * uri.c: applied Marc Sanfacon's patch for xmlNormalizeURIPath
5530
5531Thu Feb 1 05:28:55 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5532
5533 * xpath.c: fixed a number of problems in XPATH_XSLT_TREE processing
5534
5535Wed Jan 31 21:45:37 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5536
5537 * xpath.c: fixed mod operator
5538
5539Wed Jan 31 16:50:42 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5540
5541 * parser.c: fixed xmlStrcat doc
5542 * tree.c: 2 fixes form Anders Carlson for copying nodes and
5543 trees.
5544
5545Wed Jan 31 14:19:16 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5546
5547 * xpath.c result/XPath/tests/chaptersbase
5548 result/XPath/tests/simplebase: fixed XPath node()
5549 * tree.c: small fix in xmlNewNs()
5550 * Makefile.am: removed extraneous xml2Conf.sh rule
5551
5552Sun Jan 28 08:37:03 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5553
5554 * Makefile.am configure.in libxml.spec.in example/Makefile.am:
5555 Changed the library name, in order to get libxml-devel and
5556 libxml2-devel to coexist on a single system
5557 * xml-config.1 xml-config.in xmlConf.sh.in: renamed
5558 * xml2-config.1 xml2-config.in xml2Conf.sh.in: new files
5559
5560Sat Jan 27 19:58:22 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5561
5562 * Makefile.am configure.in libxml-2.0.pc.in: started working on getting
5563 libxml2-devel installable in // as libxml-devel.
5564
5565Sat Jan 27 18:49:02 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5566
5567 * doc/Makefile.am: fixed make rebuild in doc
5568 * doc/html/*.html: rebuilt the docs
5569
5570Fri Jan 26 10:30:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5571
5572 * tree.c: patch from Bjorn Reese on xmlBufferCCat
5573
5574Thu Jan 25 19:22:25 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5575
5576 * Makefile.am doc/Makefile.am libxml.spec.in: painful work to get
5577 the HTML doc to go into the -devel RPM ...
5578 * aclocal.m4 config.h.in: some updates due to auto* magic
5579
5580Thu Jan 25 19:11:49 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5581
5582 * xpath.h: added a hook in the context structure allowing to
5583 link to extra support, needed for XSLT
5584
5585Thu Jan 25 13:34:11 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5586
5587 * xpath.[ch] xpointer.c: added xmlXPathCmpNodes, changed
5588 xmlXPtrCmpPoints to use it.
5589 * propagated the following patch from Alejandro Forero
5590 * include/win32config.h xmlIO.c: applied further suggestions
5591 from Igor Zlatkovic <igorz@dialup.nacamar.de> and cleanup
5592 * example/gjobread.c: fixed warnings, now that it builds
5593
5594Wed Jan 24 20:27:28 COT 2001 Alejandro Forero <bachue@bachue.com>
5595
5596 * xmlIO.c (xmlFileOpen, xmlFileOpenW): Removed unnecesary checks.
5597
5598 * xmlIO.c (xmlCheckFilename): Function added to know whether a given
5599 filename points to a valid file (not a directory).
5600 * xmlIO.c (xmlFileOpen, xmlFileOpenW, xmlGzfileOpen, xmlGzfileOpenW):
5601 Added calls to xmlCheckFilenameDir.
5602
5603 * xmlIO.c (xmlGzfileOpen, xmlGzfileOpenW, xmlFdOpen, xmlFdOpenW): Pass
5604 `path' (rather than `filename') as the parameter to gzopen and open.
5605
5606Tue Jan 23 16:26:30 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5607
5608 * Makefile.am: fixed a problem with EXTRA_DIST
5609
5610Mon Jan 22 23:42:17 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5611
5612 * Makefile.am example/Makefile.am: finally found the trick
5613 to build the example, i.e. add "." in SUBDIRS before example
5614 in the list <grin/>
5615
5616Mon Jan 22 16:30:37 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5617
5618 * doc/xml.html: updated with an XSLT section, removed pointer to
5619 W3C CVS base.
5620
5621Mon Jan 22 11:43:21 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5622
5623 * xpath.c: when copying a XSLT tree object teh tree need to be copied
5624 too, and deallocation need to occur the same way.
5625
5626Mon Jan 22 10:35:40 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5627
5628 * xpathInternals.h xpath.[ch] debugXML.c: added the XPATH_XSLT_TREE
5629 type correponding to an XSLT result tree fragment. Share most
5630 of the data format with node set, as well as operators.
5631 * HTMLtree.c: added a newline at the end of the doctype output
5632 whe this one is not present initially.
5633 * tree.c: make sure taht the parent and doc pointers are properly
5634 set when copying attributes (lists).
5635
5636Sun Jan 21 10:47:38 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5637
5638 * htmlTree.[ch] xmlIO.h: exported htmlDocContentDumpOutput
5639
5640Fri Jan 19 18:15:50 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5641
5642 * xpath.c: seems I finally killed that ugly path evaluation
5643 context bug (tagged 9999 in case is is wrong)
5644
5645Fri Jan 19 06:30:38 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5646
5647 * xpath.[ch] xpathInternals.h: added xmlXPathRegisterVariableLookup()
5648 for XSLT
5649
5650Thu Jan 18 16:19:47 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5651
5652 * xmlIO.c: Gary Pennington <Gary.Pennington@uk.sun.com> fix
5653 for xmlGzfileOpen() bug
5654
5655Thu Jan 18 13:11:50 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5656
5657 * xpath.c: removed an error found by XSLT usage
5658 * tree.c parserInternals.h: use a predefined static string
5659 for text and comment nodes, avoid freeing them in xmlFreeNode,
5660 exported the string name in parserInternals.h and added
5661 another value to disable encoding at output (for XSLT),
5662 gain memory, time.
5663
5664Wed Jan 17 09:15:16 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5665
5666 * win32/README.MSDev win32/libxml2/libxml2_a.dsp
5667 win32/libxml2/libxml2_so.dsp: new makefiles and update
5668 provided by Igor Zlatkovic <igor@stud.fh-frankfurt.de>
5669
5670Tue Jan 16 18:24:46 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5671
5672 * tree.c : xmlSaveFile, xmlSaveFileEnc, applied patch from
5673 Gary Pennington
5674
5675Mon Jan 15 20:24:18 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5676
5677 * xpath.c: fixed the comaprision of values and nodelists,
5678 need to compare nodelist still ...
5679 * debugXML.c: avoided a possible core dump
5680 * HTMLparser.c: cleanup
5681 * nanohttp.c: contributed fix.
5682 * tree.c: fixes in properties handling added xmlSetNsProp
5683 needed by libxslt
5684 * xpathInternals.h: exported xmlXPathBooleanFunction, added a
5685 comment
5686 * TODO: updated
5687
5688Sat Jan 6 22:05:09 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5689
5690 * parser.c parserInternals.c: applied Bjorn Reese optimization
5691 patch
5692
5693Sat Jan 6 19:13:27 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5694
5695 * Makefile.am: applied patch fro make check from Martin Vidner
5696
5697Thu Jan 4 19:07:49 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5698
5699 * configure.in: preparing 2.2.11
5700 * doc/html/*: rebuild the HTML files
5701 * doc/xml.html : updated
5702
5703Thu Jan 4 14:09:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5704
5705 * tree.c: fixed a stupid bug
5706 * valid.c: applied "Paul D. Smith" <pausmith@nortelnetworks.com>
5707 patches related to validation of an XInclude processing result
5708 * TODO: updated
5709
5710Thu Jan 4 11:46:40 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5711
5712 * encoding.c xmlIO.c: Fixing the problem reported by Marc Sanfacon
5713 on large files
5714
5715Wed Jan 3 21:51:13 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5716
5717 * xmlIO.c: fixed xmlParserInputBufferCreateMem doc
5718
5719Wed Jan 3 18:56:00 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5720
5721 * HTMLparser.c: htmlCheckParagraph to check htmlOmittedDefaultValue,
5722 reported by Jonas Borgström
5723 * nanohttp.c: Applied Bjorn Reese' IPV6 first patch
5724
5725Wed Jan 3 16:19:39 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5726
5727 * testXPath.c xpath.c: fixing the XPath union expressions problem
5728 reported by Martin Vidner <martin@artax.karlin.mff.cuni.cz>
5729
5730Wed Jan 3 14:22:33 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5731
5732 * xmllint.c: Made is so if the file name is "-" is will read form
5733 standard input. Sven Heinicke <sven@zen.org>
5734 * tree.c: fixed a problem when growing buffer
5735 * tree.h: fixed the comment of the node types following andersca
5736 comment
5737 * TODO: updated
5738
5739Wed Dec 27 12:35:49 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5740
5741 * HTMLparser.[ch]: added a way to avoid adding automatically
5742 omitted tags. htmlHandleOmittedElem() allows to change the
5743 default handling.
5744 * tree.[ch] xmllint.c: added xmlDocDumpFormatMemory() and
5745 xmlDocDumpFormatMemoryEnc(), uses memory functions for output
5746 of xmllint too when using --memory flag, added a memory test
5747 suite at the Makefile level.
5748 * xpathInternals.h xpath.[ch] xpointer.c: fixed problems
5749 with namespace use when encountering QNames in XPath evalation,
5750 added xmlns() scheme in XPointer.
5751 * nanoftp.c : incorporated a fix
5752 * parser.c xmlIO.c: fixed problems raised with encoding when using
5753 the memory I/O
5754 * parserInternals.c: closed bug 25934 reported by
5755 torsten.landschoff@innominate.de
5756 * TODO: updated
5757
5758Sat Nov 25 11:46:27 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5759
5760 * configure.in doc/html/* doc/xml.html: made a 2.2.9 release
5761 on a non-updated tree :-(, made a 2.2.10 release to correct the
5762 situation
5763
5764Sat Nov 25 10:41:37 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5765
5766 * nanohttp.c parser.[ch] tree.[ch] xmlIO.[ch] xmllint.c xpath.c
5767 parserInternals.h vms/build_libxml.com vms/config.vms Makefile.am:
5768 integrated a set of OpenVMS changes from Howard Taylor
5769 <Howard.Taylor@pacoast.com>
5770
5771Sat Nov 25 01:21:01 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5772
5773 * tree.[ch] xmlIO.c: added xmlDocDumpMemoryEnc() from John Kroll
5774 * error.c: applied fix suggested by "Leo Davidson" <leo@ox.compsoc.net>
5775
5776Sat Nov 25 00:24:49 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5777
5778 * HTMLparser.c: some fixes on auto-open of html/head/body
5779 * encoding.c: fixed a compilation error on some gcc env
5780 * xpath.c xpointer.[ch] xpathInternals.h: improved the
5781 XPointer implementation
5782 * test/XPath/xptr/strpoint test/XPath/xptr/strrange3: added
5783 related XPointer tests and associated results
5784
5785Fri Nov 24 14:01:44 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5786
5787 * doc/xmldtd.html doc/xml.html: following a short step by step
5788 guidance on IRC to help maciej with DTDs I started a small
5789 page on the subject.
5790
5791Fri Nov 17 17:28:06 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5792
5793 * HTMLparser.c: fixed handling of broken charrefs
5794 * xmlmemory.h libxml2.dsp include/win32config.h: reporting Windows
5795 patches
5796
5797Mon Nov 13 19:17:20 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5798
5799 * doc/xml.html doc/html/* : rebuilt the docs after adding
5800 xinclude and updated page for 2.2.7 and 2.2.8
5801 * configure.in: releasing 2.2.8
5802
5803Mon Nov 13 12:39:38 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5804
5805 * parser.[ch] parserInternals.c: applied the conditional
5806 section processing fix from Jonathan P Springer
5807 <jonathan.springer2@gte.net>
5808 * xmlversion.h.in win32/libxml2/libxml2.dsp : Updated MS
5809 project file, fixed iconv default non support
5810 * xpath.c: fixed the problem of evaluating relative expressions
5811 when a node context is provided.
5812
5813Sun Nov 12 16:31:19 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5814
5815 * nanoftp.c: fixed gcc 2.95 new warnings
5816 * SAX.c: fixed a stupid bug
5817 * tree.c: fixed a formatting problem when round-tripping
5818 from/to memory
5819 * xinclude.c: chased memleak, fixed a base problem
5820 * xpointer.c: added xmlXPtrBuildRangeNodeList(), finished ?
5821 xmlXPtrBuildNodeList()
5822 * TODO: updated
5823 * Makefile.am test/XInclude/docs test/XInclude/ents result/XInclude:
5824 adding a first small set of regression tests for XInclude
5825
5826Tue Nov 7 15:11:34 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5827
5828 * nanohttp.[ch]: applied Wayne Davison patches to access
5829 the WWW-Authorization header.
5830 * parser.c: Closed Bug#30847: Problems when switching encoding
5831 in short files by applying Simon Berg's patch.
5832 * valid.c: fixed a validation problem
5833 * hash.c parser.h parserInternals.h testHTML.c testSAX.c tree.h
5834 xmlerror.h xmlmemory.h xmlversion.h.in: applied a DLL patch from
5835 Wayne Davison
5836 * xpointer.[ch]: added first version of xmlXPtrBuildNodeList()
5837 need to be extended to non full nodes selections.
5838 * xinclude.c: starts to work decently
5839
5840Mon Nov 6 17:22:46 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5841
5842 * tree.[ch] xinclude.[ch] xmllint.c configure.in valid.c
5843 debugXML.c xmlversion.h.in: Started adding XInclude support,
5844 this is a new xmllint option
5845 * tree.c xpath.c: applied TOM patches for XPath
5846 * xpointer.c: fixed a couple of errors.
5847 * uri.c: added an escaping function needed for xinclude
5848 * testXPath.c hash.c HTMLtree.c: minor cleanups raised by
5849 new warning from RH70 gcc's version
5850
5851Tue Oct 31 14:14:13 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5852
5853 * HTMLparser.c: fixed loop on invalid char in scripts
5854 * parser.c: update to description of xmlIOParseDTD()
5855 * libxml.m4 xmlversion.h.in: changes contributed by
5856 Michael Schmeing <m.schmeing@internet-factory.de>
5857 * configure.in: preparing for 2.2.7
5858 * Makefile.am: trying to avoid config.h and acconfig.h
5859 being included in the distrib
5860 * configure.in: released 2.2.7
5861
5862Mon Oct 30 17:08:10 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5863
5864 * tree.[ch] debugXML.c parserInternals.c xpath.c: Deprecated Pi's
5865 like namespaces for good. Unified xmlNs and xmlNode somewhat.
5866
5867Mon Oct 30 16:26:49 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5868
5869 * parser.[ch]: added xmlIOParseDTD()
5870 * xpointer.c: added support for the 2 extra parameters of
5871 string-range, fixed a stoopid error when '0' was present
5872 in XPointer expressions
5873 * test/XPath/xptr/strrange2 result/XPath/xptr/strrange2: added
5874 testsuite for the above
5875
5876Mon Oct 30 10:26:43 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5877
5878 * libxml.spec.in: improved package descriptions
5879
5880Sun Oct 29 19:03:11 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5881
5882 * xpath.c xpathInternals.h: applied a large cleaning patch
5883 from TOM <ptittom@free.fr>, it also add namespace support
5884 for function and variables registration.
5885
5886Sun Oct 29 18:51:46 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5887
5888 * uri.c: Wayne Davison's patch fixing xmlBuildURI()
5889 * Makefile.mingw: Wayne Davison's update adding hash.c
5890
5891Sun Oct 29 18:38:12 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5892
5893 * xpath.c: fixed the root evaluation problems
5894 * HTMLparser.c result/HTML/doc3.htm: fixed the problem of non
5895 ignorable spaces with <b> <bold> <em>
5896 * tree.c: fixed a loop in xmlSearchNsByHref()
5897
5898Fri Oct 27 18:57:32 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5899
5900 * xpath.c: applied another XPath patch from TOM
5901 * xpath.c include/makefile.am: applied another patch from
5902 china@thewrittenword.com (cleanup on IRIX).
5903
5904Fri Oct 27 13:45:28 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5905
5906 * xml-config.1: received a fixed version from Fredrik Hallenberg
5907 <hallon@lysator.liu.se>
5908
5909Thu Oct 26 16:05:25 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5910
5911 * xpath.c textXPath.c xpathInternals.h: applied TOM <ptittom@free.fr>
5912 cleanup patch for XPath
5913
5914Wed Oct 25 21:31:10 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5915
5916 * patched to redirrect all "out of context" error messages to
5917 a reconfigurable routine. The changes are:
5918 * xmlerror.h : added the export of an error context type (void *)
5919 an error handler type xmlGenericErrorFunc there is an interface
5920 xmlSetGenericErrorFunc(void *ctx, xmlGenericErrorFunc handler);
5921 to reset the error handling routine and its argument
5922 (by default it's equivalent to respectively fprintf and stderr.
5923 * all the c files: all wild accesses to stderr or stdout within
5924 the library have been replaced to calls to the handler.
5925
5926Wed Oct 25 15:27:19 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5927
5928 * configure.in: release 2.2.6
5929 * xpath.[ch] xpointer.c xpathInternals.h: added xpathInternals.h
5930 exporting the inner functions of xpath for extension modules
5931 * doc/*: updated and rebuilt the doc
5932
5933Wed Oct 25 12:48:55 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5934
5935 * nanohttp.c : applied Wayne HTTP cleanup patch
5936 * tree.[ch]: applied TOM <ptittom@free.fr> for xmlNodeSetBase()
5937 and xmlNodeSetSpacePreserve()
5938
5939Wed Oct 25 12:11:03 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5940
5941 * xpath.c: closing bug #29260
5942
5943Tue Oct 24 18:49:34 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5944
5945 * hash.[ch] debugXML.c: expanded/enhanced the API, added
5946 multikey tuples, made hash structure opaque
5947 * valid.[ch]: moved elements, attributes, notations decalarations
5948 as well as ID and refs to hash tables.
5949 * entities.c: hash cleanup
5950 * xmlmemory.c: fixed a dump problem in debug mode
5951 * include/Makefile.am: problem passing in DESTDIR= values patch
5952 from Marc Christensen <marc@calderasystems.com>
5953 * nanohttp.c: removed debugging remains
5954 * HTMLparser.c: the bogus tag should be ignored (Wayne)
5955 * HTMLparser.c parser.c: fixing a number of problems with the
5956 macros in the *parser.c files (Wayne).
5957 * HTMLparser.c: close the previous option when opening a new one
5958 (Marc Sanfacon).
5959 * result/HTML/*: updated the HTML results accordingly
5960
5961Sun Oct 22 18:39:19 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5962
5963 * entities.[ch] xpath.[ch] hash.[ch] debugXML.c tree.h: added/hacked
5964 hash tables from Bjorn Reese <breese@mail1.stofanet.dk>. Switched
5965 XPath functions and XML entities table to them. More to come...
5966 * xmlIO.c: fixed libxml closing FILEs it didn't open.
5967
5968Sun Oct 22 13:59:50 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5969
5970 * tree.c: coalesce adjacent text nodes
5971 * valid.c: handling of blank nodes in DTd validation (raised
5972 by problems with a posteriori validation).
5973 * nanohttp.c: changing behaviour on HTTP write stuff.
5974 * HTMLtree.c: forced body and html to be explicitely closed.
5975 * xpath.h: exported more XPath functions.
5976
5977Sun Oct 15 22:28:32 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5978
5979 * Release of 2.2.5
5980 * xpointer.c: range() range-inside and other helper functions
5981 * parserInternals.c: fixed perf problem raised by rolf@pointsman.de
5982
5983Sun Oct 15 16:21:27 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5984
5985 * SAX.c: HTML attributes need normalization too (Bjorn Reese)
5986 * HTMLparser.[ch]: addded htmlIsScriptAttribute()
5987
5988Sun Oct 15 13:18:36 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5989
5990 * doc/*: rebuilt docs preparing for 2.2.5 release, added URI
5991 and XPointer modules
5992
5993Sun Oct 15 12:13:30 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5994
5995 * SAX.h: closed #25107
5996
5997Sun Oct 15 12:06:16 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5998
5999 * testSAX.c: fixed problem with cdata reporting
6000 * SAXresult/* : updated
6001
6002Sun Oct 15 12:00:24 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6003
6004 * parser.c test/wap.xml result/noent/wap.xml result/wap.xml:
6005 Closed bug #27499, added to regression tests
6006 * TODO: updated
6007
6008Sun Oct 15 01:34:37 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6009
6010 * HTMLparser.c HTMLtree.[ch] SAX.c testHTML.c tree.c: fixed HTML
6011 support for SCRIPT and STYLE with help from Bjorn Reese
6012 * test/HTML/* result/HTML/*: added simple testcase and updated
6013 the existing ones.
6014
6015Fri Oct 13 18:24:31 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6016
6017 * xpath.c xpointer.c: XPointer reorder of ranges start/end and
6018 string-range for empty strings
6019 * test/XPath/docs/str test/XPath/xptr/chaptersrange
6020 test/XPath/xptr/strrange: augmented the XPointer testsuite
6021
6022Fri Oct 13 12:21:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6023
6024 * doc/xml.html doc/xmlmem.html: added a module describing memory
6025 interfaces and use, updated the main page.
6026
6027Fri Oct 13 01:23:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6028
6029 * nanoftp.c nanohttp.c xmlIO.c: Wayne Davison Win32 patch
6030 nanoftp code work on Windows too now
6031
6032Fri Oct 13 00:54:37 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6033
6034 * testXPath.c xpath.[ch]: moved some debug functions to xpath core
6035 * xpointer.c: implemented string-range() at least a good first version
6036 * test/XPath/docs/str test/XPath/xptr/strrange
6037 result/XPath/xptr/strrange: the string-range() tests
6038
6039Thu Oct 12 10:02:59 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6040
6041 * Makefile.am include/Makefile.am include/win32config.h
6042 win32/Makefile.mingw: fixed problems reported by Wayne Davison
6043 and make distcheck
6044
6045Thu Oct 12 01:44:08 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6046
6047 * nanohttp.c: added xmlNanoHTTPTimeout(int delay), removed a bug
6048 xmlNanoHTTPMethod on input MimeType Tony Lam <Tony.Lam@eng.sun.com>
6049 * xpointer.c: slight extension of xmlXPtrLocationSetMerge
6050
6051Thu Oct 12 01:37:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6052
6053 * config.h.in configure.in nanoftp.c nanohttp.c xmlversion.h.in :
6054 patch for socklen_t detection by
6055 Albert Chin-A-Young <china@thewrittenword.com>
6056
6057Wed Oct 11 17:53:57 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6058
6059 * tree.c valid.c xmllint.c: Fixed a few postvalidation bugs
6060 and added a --dtdvalid option to xmllint used to test it
6061
6062Wed Oct 11 15:01:29 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6063
6064 * xml-config.1 Makefile.am libxml.spec.in: adding a man page for
6065 xml-config by Fredrik Hallenberg <hallon@lysator.liu.se>
6066
6067Wed Oct 11 12:41:30 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6068
6069 * xpath.[ch] xpointer.[ch]: worked on XPath functions and variable
6070 handlings (registration, lookup, cleanup)
6071
6072Wed Oct 11 01:46:44 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6073
6074 * configure.in Makefile.am include/makefile.am: adding XPointer
6075 and XPtrtests target
6076 * xpointer.[ch] : new files for XPointer support
6077 * test/XPath/xptr result/XPath/xptr: added XPointer testsuite and
6078 more XPath tests
6079
6080Wed Oct 11 01:23:25 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6081
6082 * configure.in: fixed, very broken, make distcheck works again
6083
6084Wed Oct 11 02:53:10 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6085
6086 * More work toward 2.2.5, integrated a number of patches
6087 * configure.in Makefile.am win32config.h.in: trying to cleanup
6088 make distcheck .... huh ...
6089 * include/Makefile.am include/win32config.h: new directory
6090 for includes
6091 * win32/Makefile.mingw win32/README.MSDev win32/libxml2/libxml2.dsp
6092 updated teh makefiles and instructions for WIN32
6093 * xpath.c: small fixes
6094 * test/XPath/ results/XPath: updated the testcases and results
6095 * HTMLparser.c nanohttp.c testXPath.c: incorporated provided or
6096 suggested patches
6097 * valid.c: fixed an ID bug
6098
6099Mon Oct 9 14:28:56 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6100
6101 * moved xml-error.h to xmlerror.h: seems this allowed to bypass
6102 the automake bug where wrong dependancies were generated.
6103 * xpath.[ch]: worked on XPointer
6104
6105Fri Oct 6 12:58:04 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6106
6107 * configure.in Makefile.am: 2.2.5, ship the include in an
6108 include/libxml subdirectory, use symlinks when using CVS
6109 * testSAX.c: fixed small bug
6110 * testXPath.c: changed the way testfiles are parsed
6111 * debugXML.c: same kind of cleanup when parsing an argument expression
6112 XPath/XPointers can have blanks embedded
6113 * xpath.[ch]: more cleanup, reorgs for XPointer work
6114 * parserInternals.c parser.c HTMLparser.c: fixed wrong include
6115 * win32/README.MSDev win32/libxml2/libxml2.dsp: Windows stuff
6116
6117Thu Oct 5 18:13:15 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6118
6119 * debugXML.c testXPath.c xpath.[ch]: got pissed by some nastyness
6120 in the XPath engine, rewrote large parts of it, now it's far
6121 cleaner and in sync with the REC not an old WD. Fixed a parsing
6122 problem in the interactive XML shell found when testing XPath.
6123
6124Wed Oct 4 15:25:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6125
6126 * debugXML.c testXPath.c xpath.[ch]: More work on XPath/Xpointer,
6127 incorporated "(TOM)" <ptittom@free.fr> patches rebuilt the XPath
6128 examples with the extra test
6129
6130Wed Oct 4 14:39:01 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6131
6132 * parser.c xmlIO.c xmlIO.h: fixed bug 26650, and improved
6133 the global init function.
6134
6135Tue Oct 3 11:28:52 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6136
6137 * HTMLparser.c: Doohhh, attribute name parsing was still case
6138 sensitive ! Fixed this ...
6139 * result/HTML/* : updated the tests results accordingly
6140
6141Mon Oct 2 23:47:32 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6142
6143 * xpath.[ch] debugXML.c testXPath.c: fixed the XPath evaluation
6144 engine, should be far more stable, incorporated a new version of
6145 preceding/following axis, need testing
6146 * uri.c: fixed file:///c:/a/b/c problem
6147 * test/XPath/tests/idsimple: augmented the XPath tests
6148
6149Sun Oct 1 22:33:00 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6150
6151 * doc/* rebuilding docs for 2.2.4 release
6152
6153Sun Oct 1 22:16:33 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6154
6155 * configure.in: releasing 2.2.4
6156 * parser.[ch]: added xmlStrEqual()
6157 * HTMLparser.c HTMLtree.c SAX.c debugXML.c entities.c parser.c
6158 tree.c valid.c xlink.c xpath.c: converted all !xmlStrcmp to
6159 use xmlStrEqual instead
6160 * TODO: updated
6161 * added an XPath test
6162
6163Sun Oct 1 20:19:39 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6164
6165 * HTMLparser.c: fixed htmlStartCloseIndexinitialized init
6166 * entities.h: exported xmlInitializePredefinedEntities
6167 * parser.[ch] : added xmlInitParser()
6168 * parserInternals.h : had to export htmlInitAutoClose()
6169
6170Sun Oct 1 16:28:22 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6171
6172 * xpath.[ch] : fixed some serious XPath Predicate evaluation
6173 problems
6174 * Makefile.am : added XPath regression tests to normal tests
6175 * uri.c: fixed a problem with local paths, cleanup
6176 * parser.c: fixed a problem with large CData sections
6177
6178Sat Sep 30 16:35:54 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6179
6180 * configure.in xml-config.in: patch from "Ben Taylor"
6181 <sol7x86@hotmail.com> for solaris shared libs lookup
6182
61832000-09-30 Martin Baulig <baulig@suse.de>
6184
6185 * libxml-2.0.pc.in: Provide pkg-config script.
6186
6187 * configure.in: Create the libxml-2.0.pc script from the
6188 libxml-2.0.pc.in templates.
6189 * Makefile.am (pkgconfig_DATA): Install the libxml-2.0.pc
6190 script in `$(libdir)/pkgconfig'.
6191
6192Mon Sep 25 16:23:41 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6193
6194 * HTMLparser.c parser.c tree.c tree.h: Avoiding a few warning
6195 when compiling with MSC
6196
6197Sun Sep 24 20:32:52 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6198
6199 * xpath.c: patch for normalize-string() substring-before(),
6200 substring-after() and translate() functions from Bjorn Reese
6201 <breese@mail1.stofanet.dk>
6202 * libxml.m4 Makefile.am: added libxml.m4 from Debian ?
6203 Fredrik Hallenberg <hallon@lysator.liu.se>
6204 * TODO: updated
6205
6206Sun Sep 24 10:00:49 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6207
6208 * xmlversion.h.in nanoftp.c nanohttp.c: traying to work out the
6209 problem of socklen_t being undefined on a number of platforms
6210 * debugXML.c: fixed a compilation problem when without snprintf
6211
6212Sat Sep 23 12:19:45 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6213
6214 * HTMLparser.c uri.c: Another patch from Wayne Davison, correcting
6215 an URI bug and a fix for the control-character-induced infinite loop
6216 * nanohttp.c: preventive fix for compiling on WIN32
6217
6218Fri Sep 22 18:06:08 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6219
6220 * xmlint.c: closing bug #25000
6221
6222Fri Sep 22 14:17:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6223
6224 * xmlIO.h tree.h: made xmlNodeDump() and xmlNodeDumpOutput() public
6225 * parser.[ch] nanohttp.c HTMLtree.c HTMLparser.c tree.c: applied and
6226 modified slightly Wayne Davison patch adding xmlStrcasecmp and
6227 related function, fixing xmlStrncmp(), and associated cleanup
6228 * result/HTML/entities.html.sax: updating result
6229
6230Tue Sep 19 14:20:10 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6231
6232 * uri.c: applied patch for URI escaping from Wayne Davison
6233 <wayned@blorf.net>
6234 * tree.c parserInternals.c HTMLparser.c: memset checks patches
6235 from Denis Barbier <barbier@imacs.polytechnique.fr>
6236 * HTMLparser.c: UTF8 characters in HTML tag-attribute values
6237 patch from Wayne Davison
6238
6239Sun Sep 17 18:37:03 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6240
6241 * doc/xml.html : updated with new releases, adding "how to help"
6242
6243Sun Sep 17 17:58:37 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6244
6245 * SAX.c debugXML.c parser.c parserInternals.c tree.c valid.c xpath.c:
6246 removed a few warnings in pedantic mode ...
6247 * parserInternals.c parser.c: moved encoding switching function
6248 to parserInternals.c
6249 * configure.in, doc/Makefile.am libxml.spec.in: released 2.2.3
6250
6251Sat Sep 16 20:12:41 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6252
6253 * HTMLparser.c parser.c: set ctxt->errNo before calling the
6254 error or warning handlers
6255
6256Wed Sep 13 22:03:18 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6257
6258 * parserInternals.c parserInternals.h parser.c Makefile.am:
6259 created a new module parserInternals.c, moved most of the
6260 code shared by the various parsers there, as well as
6261 deprecated code from parser.c. More cleanup of parser.c
6262 * uri.c: fixed a problem when URI is NULL
6263 * valid.c: speedup when looking for an attribute declaration
6264
6265Sun Sep 10 17:53:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6266
6267 * uri.c tree.c SAX.c parser.c entities.c debugXML.c: finished
6268 the cleanup of the computation of URI references when seeking
6269 external entities. The URI reference string and the resulting
6270 URI are both stored now.
6271 * parser.c HTMLparser.c valid.c nanoftp.c nanohttp.c xpath.c:
6272 large s(n)printf checks and cleanup from Denis Barbier
6273 <barbier@imacs.polytechnique.fr>
6274 * xmlversion.h.in tree.h: couple of SGML declarations for a
6275 possible docbook module.
6276 * result/VC/ : a couple of test output changed due to the change
6277 of the entities URI
6278
6279Sun Sep 10 15:59:58 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6280
6281 * parser.h: added a _private field for linking user's data
6282
6283Sun Sep 10 15:14:43 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6284
6285 * parser.c parserInternals.h: demacroified most of the IS_XXX
6286 the gain in size is significant so ...
6287
6288Fri Sep 8 20:48:29 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6289
6290 * entities.c: cases where looking up entities with doc==NULL
6291 covered
6292
6293Tue Sep 5 12:41:15 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6294
6295 * uri.c: applied Wayne Davison patch
6296 * Makefile.in test/URI/uri.data result/URI/uri.data: updated URI tests
6297
6298Mon Sep 4 13:01:45 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6299
6300 * uri.c testUri.c: applied Wayne Davison patches
6301 * test/URI/uri.data result/URI/uri.data: first set of tests/results
6302 * Makefile.in: added URItest and included thenin "make tests"
6303
6304Sun Sep 3 19:19:29 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6305
6306 * xmlversion.h.in: closed bug 22941
6307
6308Thu Aug 31 16:55:55 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6309
6310 * doc/xmlio.html: added doc and example for entity loader
6311 redefinition.
6312
6313Thu Aug 31 14:59:28 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6314
6315 * doc/xmlio.html doc/xml.html: added a doc on the I/O mechanism
6316 used by libxml
6317
6318Tue Aug 29 20:22:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6319
6320 * parser.c: Fixed bug on invalid ontent characters and when using
6321 push.
6322 * xmllint.c: fixed xmllint endling of errors in push mode
6323
6324Tue Aug 29 11:24:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6325
6326 * HTMLparser.c testHTML.c: applied two new patches from
6327 Wayne Davison <wayned@users.sourceforge.net>
6328 * result/HTML/*.sax: regenerated HTML SAX output
6329 * parser.c: more cleanup.
6330
6331Mon Aug 28 11:58:12 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6332
6333 * HTMLparser.[ch] testHTML.c: applied the second set of
6334 patches from Wayne Davison <wayned@users.sourceforge.net>,
6335 adding htmlEncodeEntities()
6336 * HTMLparser.c: fixed an ignorable white space detection bug
6337 occuring when parsing with SAX only
6338 * result/HTML/*.sax: updated since the output is now HTML
6339 encoded...
6340
6341Mon Aug 28 00:38:31 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6342
6343 * HTMLparser.[ch]: applied some of Wayne Davison
6344 <wayned@users.sourceforge.net> patches
6345
6346Sun Aug 27 22:14:01 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6347
6348 * SAX.c tree.c debugXML.c: fixed bogus behaviour when an
6349 undeclared namespace prefix was used, added a warning.
6350 Cleaned up support w.r.t. entities, spilling out a warning
6351 and being pedantic on lookups.
6352 * test/warning/ent9 : added testcase for previous example.
6353 * TODO: updated
6354 * parserInternals.h parser.c: changed the way names are parsed
6355 now allow infinite size and decrease penalty for normal use
6356 * parser.c: Started a big cleanup/check of the parser code,
6357 fixed some of the most tortuous entity code, spotted code
6358 unused anymore
6359 * test/*: added tests for very long names and related nasty
6360 things.
6361
6362Sat Aug 26 23:31:04 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6363
6364 * doc/encoding.html: added encoding aliases doc
6365 * doc/xml.html: updates
6366 * encoding.[ch]: added EncodingAliases functions
6367 * entities.[ch] valid.[ch] debugXML.c: removed two serious
6368 bottleneck affecting large DTDs like Docbook
6369 * parser.[ch] xmllint.c: added a pedantic option, will be
6370 useful
6371 * SAX.c: redefinition of entities is reported in pedantic mode
6372 * testHTML.c: uninitialized warning from gcc
6373 * uri.c: fixed a couple of bugs
6374 * TODO: added issue raised by Michael
6375
6376Wed Aug 23 01:50:51 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6377
6378 * doc/encoding.html: propagated Martin Duerst suggestions
6379
6380Wed Aug 23 00:23:41 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6381
6382 * parser.c: Fixed Bug#21552: libxml fails to decode &amp;
6383 * uri.c testUri.c patches, by Marc Sanfacon (1 left)
6384 * parser.c HTMLparser.c: HTML/encoding push problems reportedi
6385 by Wayne Davison
6386
6387Sun Aug 20 17:03:38 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6388
6389 * nanoftp.c nanohttp.c: small cleanup
6390 * TODO: updated
6391
6392Sat Aug 19 22:57:02 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6393
6394 * added an old VC testcase and updated title.xml entity
6395
6396Sat Aug 19 21:02:08 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6397
6398 * HTMLparser.c SAX.c tree.c HTMLtree.h result/HTML/*: work
6399 done on auto-opening of <p> tags and cleanup of SAX output
6400
6401Sat Aug 19 18:45:40 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6402
6403 * libxml.4 xmllint.1 Makefile.am libxml.spec.in: added man pages
6404
6405Sat Aug 19 18:38:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6406
6407 * doc/xml.html libxml.* structure.*: updated the doc a bit
6408
6409Thu Aug 17 15:50:00 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6410
6411 * testSAX.c testHTML.c result/HTML/: cleanup of the output
6412 of SAX tests
6413
6414Mon Aug 14 13:56:33 EDT 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6415
6416 * Patch from Albert Chin-A-Young <china@thewrittenword.com>:
6417 * xmllint.c: workaround a MAP_FAILEd definition bug in DU-4.0
6418
6419Mon Aug 14 11:10:20 EDT 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6420
6421 * Patch from Dave Yearke <yearke@eng.buffalo.edu>:
6422 * testHTML.c: fix core dump on Solaris 2.x systems
6423 * HTMLparser.c: fix segfault if ctxt->sax->characters() is NULL
6424 * result/HTML/*.sax: previous bug fix lead to new results
6425
6426Mon Aug 14 10:26:09 EDT 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6427
6428 * Patch from Albert Chin-A-Young <china@thewrittenword.com>:
6429 * configure.in: added --with-readline=DIR to accept alternate
6430 path for readline include/library
6431 * configure.in: added AM_C_PROTOTYPES to add -Aa -D_HPUX_SOURCE
6432 for ANSI under HP-UX
6433 * config.in: Removed @LIBS@ from xml-config because @XML_LIBS@
6434 includes @LIBS@
6435
6436Sat Aug 12 23:19:42 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6437
6438 * doc/* : rebuilt the docs
6439 * getting ready for 2.2.2 release
6440
6441Sat Aug 12 16:42:37 EDT 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6442
6443 * parser.[ch]: added xmlGetFeaturesList() xmlGetFeature()
6444 and xmlAddFeature()
6445 * tree.[ch]: added xmlAddChildList()
6446 * xmllint.c: MAP_FAILED macro test
6447 * parser.h: added xmlParseCtxtExternalEntity()
6448 * valid.c: applied bug fixes removed warning
6449 * tree.c: added CDATA block to elements content
6450 * testSAX.c: cleanup of output
6451 * testHTML.c: added SAX testing
6452 * encoding.c: better error recovery
6453 * SAX.c, parser.c: fixed one of the external entity processing
6454 of the OASis testsuite
6455 * Makefile.am: added HTML SAX regression tests
6456 * configure.in: bumped to 2.2.2
6457 * test/HTML/ result/HTML: added a few of HTML tests, and added the
6458 SAX results
6459
6460Fri Aug 4 11:21:50 PDT 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6461
6462 * configure.in: patch for HP compiler
6463
64642000-08-04 Sven Heinicke <sven@zen.org>
6465
6466 * xmllint.c: Was coredumping sometimes when the file given didn't
6467 exist.
6468
6469Sat Jul 22 05:59:05 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6470
6471 * parser.c xmlIO.[ch]: fixed the problem of encoding support
6472
6473 when using in memory parsing. Need some cleanup.
6474 * xmllint.c configure.in: added a --memory flag to test memory
6475 parsing
6476
6477Fri Jul 21 17:09:57 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6478
6479 * nanohttp.c: fixed socklen_t replacement to unsigned int
6480 * parser.c: fixed a space handdling missing at the end of
6481 production 28 DOCTYPE.
6482 * xmlmemory.c: fixed a stupid bug on the routine to override
6483 allocation functions
6484 * TODO: updated
6485
6486Fri Jul 14 17:01:14 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6487
6488 * doc/ regenerated the docs
6489
6490Fri Jul 14 16:12:20 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6491
6492 * doc/encoding.html doc/xml.html: added I18N doc
6493 * encoding.[ch] HTMLtree.[ch] parser.c HTMLparser.c: I18N encoding
6494 improvements, both parser and filters, added ASCII & HTML,
6495 fixed the ISO-Latin-1 one
6496 * xmllint.c testHTML.c: added/made visible --encode
6497 * debugXML.c : cleanup
6498 * most .c files: applied patches due to warning on Windows and
6499 when using Sun Pro cc compiler
6500 * xpath.c : cleanup memleaks
6501 * nanoftp.c : added a TESTING preprocessor flag for standalong
6502 compile so that people can report bugs more easilly
6503 * nanohttp.c : ditched socklen_t which was a portability mess
6504 and replaced it with unsigned int.
6505 * tree.[ch]: added xmlHasProp()
6506 * TODO: updated
6507 * test/ : added more test for entities, NS, encoding, HTML, wap
6508 * configure.in: preparing for 2.2.0 release
6509
6510Mon Jul 10 16:17:18 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6511
6512 * nanoftp.c: fixed the way the control connection is handled
6513 * libxml.spec.in: fixed the dependancies and cleanup
6514
6515Mon Jul 3 14:37:07 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6516
6517 * doc/xml.html: changed the xmlsoft.org structure, updated the
6518 examples w.r.t. root and childs
6519
6520Sun Jul 2 20:51:43 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6521
6522 * libxml.spec.in: fixed bug #7419, dependancies fouled for libxml-devel
6523
6524Sun Jul 2 09:52:45 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6525
6526 * HTMLparser.c: Work on character encoding support for the HTML parser
6527 * HTMLparser.c: Fixed some autoopen/autoclose probs for the HTML parser
6528 * encoding.c: Fixed a potential memleak in the encoding stuff
6529
6530Sat Jul 1 13:44:22 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6531
6532 * doc/FAQ.html doc/Makefile.am : added a FAQ
6533
6534Fri Jun 30 20:29:08 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6535
6536 * HTMLparser.c HTMLtree.c SAX.c valid.c tree.h : more cleanup
6537 of the HTML parser to force it to not bypass SAX
6538
6539Fri Jun 30 11:19:59 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6540
6541 * win32config.h.in: updated
6542 * xmlversion.h.in: crap forgot to update this, this mean 2.1.0
6543 lacks iconv support :-( need to release 2.1.1
6544 * configure.in: release 2.1.1
6545 * HTMLparser: fixed bug #14784
6546 * xpath.c HTMLparser.c encoding.c parser.c: fix warning raised
6547 by Windows compiler
6548 * HTMLparser.c SAX.c HTMLtree.h tree.h: create HTML document in
6549 the SAX startDocument() callback.
6550 * TODO: updated
6551
6552Thu Jun 29 12:06:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6553
6554 * added xmlStopParser()
6555
6556Wed Jun 28 23:10:26 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6557
6558 * configure.in: 2.1.0 prerelease
6559 * Large resync between W3C and Gnome tree
6560 * nanoftp, nanohttp.c: fixed stalled connections probs
6561 * HTMLtree.c SAX.c : support for attribute without values in
6562 HTML for andersca
6563 * valid.c: Fixed most validation + namespace problems
6564 * HTMLparser.c: start document callback for andersca
6565 * debugXML.c xpath.c: lots of XPath fixups from Picdar Technology
6566 * parser.h, SAX.c: serious speed improvement for large
6567 CDATA blocks
6568 * encoding.[ch] xmlIO.[ch]: Improved seriously saving to
6569 different encoding
6570 * example/Makefile.am example/gjobread.c tree.h: work on
6571 libxml1 libxml2 convergence.
6572 * config.h.in parser.c xmllint.c: added xmlCheckVersion()
6573 and the LIBXML_TEST_VERSION macro
6574
6575Fri Jun 23 22:26:07 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6576
6577 * doc/xml.html: various patches and improvements typo fixed by
6578 Felix Natter
6579 * doc/libxml-doc.el: Emacs module to lookup the libxml documentation
6580 from Felix Natter <fnatter@gmx.net>
6581
6582Sat May 6 10:09:45 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6583
6584 * doc/upgrade.html: updated with instructions for support of both
6585 libxml-1.x and libxml-2.x
6586 * doc/gjobread.c : applied Todd Dukes <tdukes@ibmoto.com> patch
6587 for 2.x support and also fixed includes
6588
6589
6590Wed May 3 14:21:25 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6591
6592 * encoding.[ch], xmlIO.[ch], parser.c, configure.in : revamped
6593 the encoding support, added iconv support, so now libxml if
6594 compiled with iconv automatically support japanese encodings
6595 among others. Work based on initial patch from Yuan-Chen Cheng
6596 I may have broken binary compat in the encoding handler
6597 registration scheme, but that was so utterly broken I don't
6598 expect anybody to have used this feature until now.
6599 * parserInternals.h: fixup on the CHAR range macro
6600 * xml-error.h, parser.c: catch URL/URI errors using the uri.c
6601 code.
6602 * tree.[ch]: added xmlBufferGrow(), was needed for iconv
6603 * uri.c: added xmlParseURI() I can't believe I forgot to
6604 implement this one in 2.0 !!!
6605 * SAX.c: moved doc->encoding update in the endDocument() call.
6606 * TODO: updated.
6607
6608Mon Apr 24 13:30:13 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6609
6610 * tree.h: removed extraneous xmlRemoveProp definition
6611 * TODO: added item about --disable-corba configure switch
6612 * tree.c parser.c: fixed problems for xmlCopyDoc and postvalidation
6613 * nanoftp.c: fixed include problems giving troubles on AIX and
6614 slowlaris
6615 * xmlIO.[ch] valid.h tree.[ch] xlink.c xmlmemory.c uri.c
6616 parser.c nanoftp.c nanohttp.c SAX.c testSAX.c :
6617 comment and headers changes to lower gtk-doc number of warnings
6618 * doc/html/*: rebuilt docs
6619
6620Sun Apr 16 11:23:29 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6621
6622 * HACKING: documented the tag for 1.x and instructions
6623
6624Wed Apr 12 15:47:22 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6625
6626 * xmlIO.[ch] parser.[ch]: More interfaces for new I/O functions
6627 xmlNewIOInputStream, xmlParserInputBufferCreateIO,
6628 xmlCreateIOParserCtxt
6629 * parser.c parserInternals.h: speedup of IS_CHAR like macros,
6630 significant overall improvement
6631 * xmllint.c: added I/O test to xmllint
6632 * testSAX.c: added a speed test
6633 * doc/* : updated/regenerated
6634
6635Sat Apr 8 14:54:54 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6636
6637 * xpath.c uri.h parserInternals.h: cosmetic changes from
6638 "Timur I. Bakeyev" <timur@bat.ru>, including making
6639 xmlCreateURI() public
6640
6641Fri Apr 7 18:35:02 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6642
6643 * xmlIO.[ch] parser.c: cleane up the xmlParserInputBuffer mess
6644 and the code at the same time. Added a clean mechanism for
6645 overload or added input methods: xmlRegisterInputCallbacks()
6646 * tree.c: fixed xmlPrevSibling and xmlNextSibling per
6647 Christophe Le Gal (Christophe.Le-Gal@imag.fr) input
6648 * TODO: updated
6649 * doc/* : updated/regenerated
6650 * doc/Makefile.am: tweaks to avoid problem with libxml link in the
6651 source dir
6652
6653Wed Apr 5 21:11:35 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6654
6655 * testURI.c: yet another forgotten commit, I should get some sleep !
6656
6657Wed Apr 5 20:36:46 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6658
6659 * xmllint.c: forgot to commit this too ?
6660
6661Wed Apr 5 16:22:44 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6662
6663 * xmlversion.h.in : forgot to commit this previously
6664
6665Mon Apr 3 21:47:10 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6666
6667 * configure.in: preparing libxml-2.0.0 version looks Ok so far
6668 * README TODO: updated for release
6669 * uri.c uri.h: added authority parsing/saving
6670 * uri.c testURI.c Makefile.am: moved the testing code to testURI.c
6671 * xmlversion.h.in configure.in nanoftp.[ch] nanohttp.[ch] encoding.h
6672 debugXML.[ch] xpath.[ch] xmlIO.c tester.c testXPath.c testHTML.c
6673 tree.c HTMLtree.c HTMLparser.c tree.c tree.h parser.c
6674 Makefile.am : added compile-time customization of libxml
6675 --with-ftp --with-http --with-html --with-xpath --with-debug
6676 --with-mem-debug
6677 * *.[ch] autoconf.sh : moved to an absolute adressing of includes :
6678 #include <libxml/xxx.h> I hope it won't break too much stuff
6679 and will be manageable in the future...
6680 * xmllint.c Makefile.am libxml.spec.in : renamed tester.c to xmllint.c
6681 and added xmllint to the installed programs
6682 * uri.h: added xmlFreeURI()
6683
6684Fri Mar 24 14:35:21 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6685
6686 * uri.c uri.h: finished the escaping handling, the base support
6687 and the URI path normalization. Looks good just lacks the
6688 authority content parsing code.
6689 * Makefile.am: added instructions to generate testURI
6690 * TODO: updated
6691 * doc/xml.html, doc/smallfootonly.gif doc/w3c.png: updated,
6692 added links and icons for W3C and Gnome
6693
6694Mon Mar 20 14:05:26 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6695
6696 * xmlmemory.[ch] : seems I forgot to actually update the files in
6697 the last commit :-)
6698 * doc/xml.html doc/html/* : updated and uploaded the docs
6699
6700Mon Mar 20 12:33:51 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6701
6702 * test/valid/dtds/xhtml*: removed RCS infos (pain with CVS)
6703 * TODO: updated
6704 * xmlmemory.[ch] : added xmlMemSetup() and xmlMemGet() to override
6705 libxml default allocation function with another set (like gmalloc/
6706 gfree).
6707 * Makefile.am, uri.c, uri.h: added a set of functions to do
6708 exact (litteraly copied from the RFC 2396 productions) parsing
6709 and handling of URI. Will be needed for XLink, one XML WFC,
6710 XML Base and reused in the nano[ftp/http] modules. Still work
6711 to be done.
6712
6713Tue Mar 14 20:52:35 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6714
6715 * configure.in, libxml.spec.in : libxml2
6716 * doc/* : updated the doc page, rebuilt the docs
6717
6718Tue Mar 14 19:11:29 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6719
6720 * all: tagged LIB_XML_1_X
6721 * *.c *.h : updated from W3C CVS tree
6722 * configure.in : 2.0.0-beta
6723 * libxml.spec.in : libxml2 package nam
6724 * result/* : new version of the tests output
6725
6726Mon Mar 6 09:34:52 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6727
6728 * doc/xml.html, doc/update.html: updated docs, 1.8.7
6729
6730Sat Mar 4 16:14:42 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6731
6732 * doc/* : rebuilt the docs
6733 * parser.c: final patch on #6766
6734 * valid.c: small patch on validity checks.
6735
6736Sat Mar 4 12:38:41 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6737
6738 * doc/upgrade.html: instruction on how to upgrade from 1.x to 2.x
6739 added
6740 * parser.c: adding xmlKeepBlanksDefault() as a way to manage
6741 compatibility w.r.t. XML spec and existing code.
6742
6743Thu Mar 2 04:45:15 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6744
6745 * parser.c: seems a better solution to <a> </a> exists,
6746 will try it for a while
6747
6748Thu Mar 2 02:26:13 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6749
6750 * parser.c: tried to remove the <a> </a> generating <a/>
6751 this is hard. Left a flag for that purpose. Fixed bug #6766
6752 * configure.in: prepared 1.8.7 not released, due to previous
6753 problem
6754
6755Thu Mar 2 03:03:50 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6756
6757 * doc/xml.html : applied second patch from Paul DuBois
6758
6759Tue Feb 29 23:55:13 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6760
6761 * doc/xml.html : applied patch from Paul DuBois
6762
6763Thu Feb 3 16:36:39 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6764
6765 * parser.c HTMLparser.c: do a bit of bufferization in push mode.
6766
6767Thu Feb 3 15:59:37 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6768
6769 * nanoftp.c nanohttp.c tree.c HTMLtree.[ch] debugXML.c xpath.c: Fixed
6770 compilation warnings on various platforms.
6771 * parser.c: Fixed #5281 validity error callbacks are now desactived
6772 by default if not validating.
6773
6774Thu Feb 3 13:46:14 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6775
6776 * nanoftp.c, win32config.h.in: patches to compile on WIN32
6777
6778Wed Feb 2 22:51:16 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6779
6780 * nanoftp.c: snprintf/sprintf patch courtesy George Katsirelos
6781 <gkatsi@cs.toronto.edu>
6782
6783Mon Jan 31 18:58:21 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6784
6785 * nanoftp.c nanohttp.c: Fixed '#' and '?' stripping when
6786 processing URLs
6787
6788Mon Jan 31 14:25:57 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6789
6790 * nanoftp.[ch]: cleanup, bug fixes, integration in rpmfind, added
6791 xmlNanoFTPUpdateURL for persistent control connections.
6792 * configure.in: 1.8.6
6793
6794Thu Jan 27 17:52:29 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6795
6796 * nanohttp.[ch], nanoftp.[ch]: cleanup, added proxy support
6797 * tree.[ch] : added xmlSaveNoEmptyTags
6798
67992000-01-29 James Henstridge <james@daa.com.au>
6800
6801 * nanoftp.c: include <netinet/in.h> for IPPROTO_TCP.
6802
6803 * Makefile.am: added nanoftp.[ch] to the build.
6804
6805Wed Jan 26 18:14:55 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6806
6807 * nanoftp.[ch]: cleanup, comments, API
6808 * debugXML.c : fixed a bug in the cat command
6809 * doc/*: regenerated the docs
6810
6811Wed Jan 26 16:52:50 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6812
6813 * nanoftp.[ch] parser.c xmlIO.[ch]: added a Nano FTP implementation
6814 * debugXML.c : fixed a bug in the cat command
6815 * valid.c: fixing some small probs
6816 * libxml.spec.in: get rid of the SNAP suffix
6817 * doc/xml.html: updated the status
6818
6819Mon Jan 24 14:31:09 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6820
6821 * xml-config.in: xml-config --version to just return the
6822 version number
6823 * xpath.c: some cleanup w.r.t. axis when the current node is
6824 an attribute.
6825 * TODO: updated
6826
6827Tue Jan 18 18:46:06 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6828
6829 * configure.in: prepared for libxml-1.8.5
6830 * doc/* recompiled the documentation
6831
68322000-01-17 Jody Goldberg <jgoldberg@home.com>
6833
6834 * configure.in : WARNING autoconf subtlety alert :
6835 Use AC_CHECK_HEADERS rather than AC_CHECK_HEADER
6836 when looking for zlib.h so that HAVE_ZLIB_H is defined.
6837 * config.h.in : Have a #undef for HAVE_ZLIB_H so that it will
6838 get defined by AC_CHECK_HEADERS.
6839
6840Mon Jan 17 17:04:12 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6841
6842 * tree.c: fixed a hideous bug in xmlGetProp() thanks to
6843 Rune.Djurhuus@fast.no
6844
6845Sat Jan 15 15:09:06 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6846
6847 * TODO: updated
6848 * tree.c, parser.c: made sure that only memory alloc problems
6849 and internal parser errors are allowed to write to stdout or
6850 stderr.
6851
6852Thu Jan 13 11:49:11 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6853
6854 * tree.c : restored xmlNewGlobalNs since this seems used by
6855 a lot of existing code :-(, fixed a bug in xmlNewNs
6856 * nanohttp.c: fixed a problem with INCLUDE_WINSOCK
6857 * HTMLparser.c, parser.c, entities.c, valid.c : removed all calls
6858 to exit() from the library code.
6859 * xpath.c, parser.c: removed bugs or unused code detected by
6860 Windows compilers
6861 * parser.c: started adding interfaces for parsing well balanced
6862 XML fragments
6863 * configure.in: releasing 1.8.4
6864 * doc/* : rebuilt the docs
6865
6866Sun Jan 9 23:03:20 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6867
6868 * tree.[ch] : added xmlNewDocFragment() for DOM
6869 * testHTML.c: uninitialized variable.
6870
6871Wed Jan 5 17:29:17 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6872
6873 * doc/* : rebuild the docs
6874
6875Wed Jan 5 17:08:43 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6876
6877 * acconfig.h: readline and history patch
6878 * valid.[ch]: added xmlRemoveID() and xmlRemoveRef()
6879 * tree.c: added check and handling when possibly removing an ID
6880 * tree.c, HTMLparser.h, HTMLtree.h: fixed entities parsing
6881 and saving.
6882 * test/HTML/entities.html result/HTML/entities.html* : test for
6883 various entities reference cases
6884 * result/HTML/* : as a result output of some testcase have
6885 changed
6886 * HTMLparser.c, parser.c: fixed a bug in the push mode triggered
6887 by previous example. added xmlParseTryOrFinish().
6888 * xpath.h tree.h parser.h valid.h xmlIO.h xlink.h encoding.h
6889 entities.h debugXML.h HTMLparser.h: changed the way struct are
6890 declared to allow gtk-doc to expose those
6891 * parser.c: closed bug #4960
6892 * Makefile.am configure.in: Applied patch from
6893 Albert Chin-A-Young <china@thewrittenword.com> for better zlib
6894 and math/socket libs detection
6895
6896Mon Jan 3 18:29:43 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6897
6898 * configure.in, Makefile.am: link tester against readline
6899 * doc/xml.html doc/*/*: updated and rebuilt the documentation pages
6900
6901Mon Jan 3 11:58:05 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
6902
6903 * tree.[ch]: added xmlRemoveProp
6904 * win32config.h.in nanohttp.c: avoid including the Windows
6905 socket stuff in every C files
6906 * parser.c: removed an indetermination xmLDecl/PI(xml...) in
6907 the XmL parser(s)
6908 * test/ns4 result/ns4 etc...: added test case for previous prob
6909 * tree.c: xmlNewNs wasn't checking for double definition
6910 * Makefile.in: fixed a problem with dist-hook duplicates
6911 * parser.[hc], xmlIO.c: fixed the loading of external entities
6912 APIs, now xmlLoadExternalEntity() is used everywhere and
6913 setting up an app specific front-end using the
6914 * SAX.c parser.c: some fixes, now the xhtml spec validates
6915 with the xhtml DTD.
6916 * error.c: fixed crashes in case of no input stream
6917 * test/valid/[dtds/]/xhtml* : added the xhtml spec and dtds
6918 to the validation tests and results
6919
6920Wed Dec 29 15:29:52 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
6921
6922 * HTMLparser.[ch] testHTML.c: added push mode for the HTML parser
6923 too htmlCreatePushParserCtxt() and htmlParseChunk()
6924 * parser.c: a bit of cleanup.
6925 * SAX.c, HTMLparser.c: some attributes may not have values (contrary
6926 to XML) removed the last mem leak known
6927 * HTMLtree.c: output message cleanup
6928 * xmlmemory.c: display content info about memory blocks
6929 * result/HTML/wired.* : missing att value warning change
6930
6931Tue Dec 28 17:42:41 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
6932
6933 * doc/* : rebuilt the documentation
6934
6935Tue Dec 28 18:44:22 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
6936
6937 * parser.[ch] parserInternals.h: Push parser for XML,
6938 seems to work fine now
6939 * tester.c debugXML.[ch]: Added an XML shell debug facility and
6940 --push for push testing
6941 * xpath.[ch] : cleaned up for Shell usage, added missing APIs
6942 * testSAX.c: added --push
6943 * HTMLtree.[ch] tree.[ch]: new functions for dumping parts of the
6944 subtree
6945 * xmlIO.[ch] : enriched API + fixes for push mode
6946 * entities.[ch]: added the entity content length to the struct.
6947 * xmlmemory.[ch]: new API to show the last entries for the shell
6948 * valid.c: added required attribute testing
6949 * SAX.c: the cdata callback now merge contiguous fragments
6950 * HTMLparser.c: cleanup of some macros
6951
6952Wed Dec 22 12:20:53 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
6953
6954 * parser.c: fix for PIs name starting with xml
6955 * tree.c: fixed a potential problem with || and && ops
6956 * *.c, configure.in win32config.h.in : generate win32config.h for
6957 those on the Other Side !
6958
6959Tue Dec 21 17:22:17 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
6960
6961 * parser.c: fixed a stupid = vs. == bug :-(
6962 * doc/gnome-xml.sgml: s/glade/xml/
6963
6964Tue Dec 21 14:29:34 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
6965
6966 * configure.in, doc/xml.html : bug fix release 1.8.2
6967 * debugXML.h nanohttp.h xml-error.h xmlmemory.h xpath.h :
6968 Hopefully the end of that silly C++ include problem
6969 * tree.[ch]: Added a few functions: xmlReplaceNode, xmlAddPrevSibling,
6970 xmlAddNextSibling, xmlNodeSetName and xmlDocSetRootElement
6971 * HTMLparser.c HTMLparser.h HTMLtree.c: When saving HTML try to avoid
6972 troubles with autoclosed elements when the stree shape doesn't
6973 follow the DtD specs. Added htmlIsAutoClosed() and
6974 htmlAutoCloseTag()
6975 * result/HTML/*.htm*: Updated the HTML examples regression tests output
6976 * SAX.c tree.c: fixed bug on defaulting namespaces on attributes
6977 * debugXML.c: fixed a bug on printing default namespaces.
6978 * HTMLtree.c: fixed a problem when outputing XML parsed docs as HTML
6979
6980Mon Dec 20 16:20:55 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
6981
6982 * result/HTML/*.htm[l] : updated the HTML regression tests according
6983 to the new output
6984 * xpath.h xml-error.h valid.h tree.h parser.h entities.h SAX.h
6985 HTMLtree.h tree.c entities.c: headers tweakings to avoid a nasty
6986 problem due to intermix of extern "C" { ... } declarations for C++
6987 and recursive includes in the headers
6988
69891999-12-20 Chris Lahey <clahey@umich.edu>
6990
6991 * HTMLtree.c: Made it so that html nodes with a single child do
6992 not insert a carriage return before or after the child node.
6993
6994Sat Dec 18 16:07:03 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
6995
6996 * configure.in, doc/xml.html : bug fix release 1.8.1
6997 * parser.c: fixed bug #4344
6998 * xpath.h xml-error.h xlink.h nanohttp.h debugXML.h SAX.h HTMLparser.h
6999 added the glue to avoid C++ problems
7000 * doc/* : regenerated the documentation
7001
7002Thu Dec 16 16:19:29 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7003
7004 * tree.c: fixed a bug introduced in 1.8.0 and breaking default
7005 namespace recognition, and Dia as a resul :-(
7006 * encoding.c: closed bug #3950
7007
7008Wed Dec 15 19:22:23 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7009
7010 * valid.c: debugging a posteriori validation, except URI expansion
7011 stuff this should be fixed now
7012 * parserInternals.h: fixed a bug in IS_BASECHAR reported by
7013 Carl Nygard <cnygard@bellatlantic.net>
7014 * tester.c: added --postvalid, cleaning of the code
7015 * tree.[ch]: added xmlDocGetRootElement()
7016
7017Tue Dec 14 20:30:34 PST 1999 Ramiro Estrugo <ramiro@eazel.com>
7018
7019 * SAX.h, tree.h : changed 'namespace' to 'nameSpace' to workaround
7020 c++ losage.
7021
7022Sun Dec 12 13:08:15 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7023
7024 * configure.in, doc/xml.html : bumped to 1.8.0
7025 * xlink.[ch], Makefile.am : added framework for link detection
7026 * parser.h: added nbChars to parser context, needed for cleanup.
7027 * xmlmemory.c: removed a nasty bug when out of mem
7028 * valid.[ch]: adding namespace support for attribute decl
7029 * tester.c: added --debugent option
7030 * debugXML.[ch]: added xmlDebugDumpEntities()
7031 * parser.c: cleanup, avoiding use of CUR_PTR like plague, using
7032 buffers instead, this was really needed, validation was breaking
7033 in strange ways due to that. Added xmlParseStringPEReference()
7034 and other parsing from strings functions. Entities processing
7035 modified again, but PERef are still not handled correcly but
7036 unless you're Eve Maller you won't notice :-)
7037 * HTMLparser.c: large changes toward reliability, and switched to
7038 lowercase internal tags, XHTML is lowercase, so it will help
7039 that output is closer to next version.
7040 * doc/* : regenerated the documentation, it is now hosted at
7041 http://xmlsoft.org/ (same bits I just bought the domain :-)
7042
7043
7044Fri Dec 3 13:46:32 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7045
7046 * SAX.h, SAX.c, makefile.am: added SAX.h mostly useful for the
7047 doc generation
7048 * parser.c: fixed bugs #3908 and #3937 and a memory leak
7049 in the SAX API
7050 * doc/*: rebuilt the doc making sure everything appears in the
7051 HTML files
7052
7053Wed Dec 1 10:27:47 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7054
7055 * tree.[ch] HTMLtree.c, debugXML.c, configure.in, xml-config.in:
7056 added the patch from Carl Nygard <cnygard@bellatlantic.net>
7057 which allow impressive speed improvement on dataset with
7058 large text pieces, but at the cost of broken binary
7059 compatibility and slightly bigger memory usage.
7060 Configure with --with-buffers to activate them, they
7061 are protected with XML_USE_BUFFER_CONTENT define.
7062 * entities.[ch], parser.c: added xmlCleanupPredefinedEntities(),
7063 goal is 0 memory left allocated once parser is no more used
7064 * testDAV.c, testHTML.c, testSAX.c, testXPath.c: make sure we
7065 call xmlCleanupParser() and xmlMemoryDump()
7066
7067Wed Nov 24 19:00:06 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7068
7069 * tree.[ch] xmlIO.[ch] parser.c valid.c: code cleanup with -pedantic
7070 * parser.[ch] encoding.[ch]: added memory cleanup routines
7071 * parser.c: closing bug #3788
7072 * doc/*: rebuilt the doc
7073
7074Tue Nov 23 11:23:55 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7075
7076 * tree.[ch]: closing bug 3748, added xmlNewDocRawNode(),
7077 xmlNewTextChild() and xmlSetCompressMode() behaviour.
7078 * tester.c: added --compress option
7079 * doc/*: rebuilt the documentation
7080
7081Fri Nov 19 18:41:28 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7082
7083 * HTMLparser.c: bugfixing, the damn thing MUST not crash even
7084 if given /proc/kcore as input !
7085 * doc/xml.html doc/*: updated and rebuilt the documentation
7086
7087Thu Nov 18 14:57:18 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7088
7089 * parser.c: Fixed some wrongly space collapsing code due to
7090 a misreading of the spec.
7091 * result/*: fixed the output accordingly
7092
7093Wed Nov 17 18:28:06 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7094
7095 * encoding.c: bug fix and typos
7096 * xmlIO.[ch] parser.c: first bits toward real progressive parsing
7097 * parser.c: added attribute normalization closing bug #3597
7098 * test/att* result/att* SAXresult/att*: testcase for attribute
7099 normalization
7100
7101Mon Nov 15 18:50:56 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7102
7103 * configure.in: closing bug #3163 by adding extra flags for the
7104 cc compiler on HP-UX
7105
7106Fri Nov 12 17:41:20 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7107
7108 * valid.[ch] : removed a typo and an enumerated type bug in the
7109 xmlAddElementDecl() function
7110 * tree.c : I changed xmlSetProp() and xmlNewProp() to do the
7111 call to xmlEncodeEntitiesReentrant() so that the functions
7112 New, Set and Get are at the same level.
7113 * parser.c HTMLparser.c: extra memory allocation bug for
7114 attributes detected by someone using libxml in embedded systems :-)
7115
7116Thu Oct 28 17:49:26 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7117
7118 * xmlmemory.h: turned off mem debug :-\
7119
7120Mon Oct 25 12:13:25 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7121
7122 * parser.c: closed bug #2784 a one line fix, but worth pushing
7123 a new release out
7124 * HTMLparser.c: fixed auto-close bugs on list items, zeroing
7125 some structures, comments before and after the
7126 main element, and other nastyness
7127 * HTMLtree.c tree.c: accomodate the extended HTML supported
7128 * configure.in: pushing 1.7.4
7129 * test/ent8 and related outputs : added a new test for bug #2784
7130 * test/HTML/wired.html and related output: a nasty HTML example
7131 * Makefile.am: improved the test scripts
7132 * docs/* : reran the documentation extractor, updated xml.html
7133
7134Thu Oct 14 10:29:56 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7135
7136 * HTMLparser.c, HTMLtree.c, tree.h: completely revamped the
7137 HTMLparser and debugged the HTML related code. HTML documents
7138 now have their own type
7139 * entities.c: do not dump &apos; for HTML output
7140 * xmlmemory.c: improvement, breakpoint mechanism
7141 * testHTML.c: added --sax --repeat ...
7142 * Makefile.am: improved the HTML tests
7143 * valid.[ch]: added xmlValidGetValidElements and
7144 xmlValidGetPotentialChildren
7145 * tester.c: added --insert to test the 2 new functions
7146 * test//* result//* SAXresult//* : regression test cleanup
7147 and extension.
7148 * doc/html : added doc for new modules gnome-xml-xmlmemory.html and
7149 gnome-xml-nanohttp.html
7150
7151Mon Oct 11 14:31:58 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7152
7153 * HTMLparser.c: fixed problems with some autoclose tags
7154 * tree.c: fixed XML output problems.
7155 * result/* SAXresult/*: update of the tests output
7156
7157Sat Oct 9 11:02:57 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7158
7159 * Makefile.am: Arturo patch for xmlConf.sh version info
7160 * parser.c: Tim Josling patch for single quoted items
7161 * tester.c: Tim Josling patch for tester options usage
7162 * tree.h: indent cleanup
7163
7164Fri Oct 8 16:35:37 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7165
7166 * HTMLparser.c parser.h : Fixed problems with HTML parsing
7167 reported by Kristian Hogsberg Kristensen <hogsberg@daimi.au.dk>
7168
7169Fri Oct 8 11:37:11 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7170
7171 * tree.c : Raph patch for initialization of CORBA fields
7172 * parser.c, xpath.c, ...: modification of doc comments
7173 * xpath.c : allow spaces in xpath expressions
7174
7175Mon Sep 27 10:16:43 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7176
7177 * xmlmemory.h: turning off memory debug :-(
7178
7179Sun Sep 26 13:16:54 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7180
7181 * parser.[ch] : added xmlSAXUserParseFile() and xmlSAXUserParseMemory()
7182 better SAX interfaces.
7183 * testSAX.c: uses the new SAX routine, avoid fetching any remote
7184 entity.
7185 * configure.in: 1.7.2
7186
7187Fri Sep 24 16:01:01 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7188
7189 * libxml.spec.in: fixed the URL
7190 * doc/xml.html: improved the documentation front-end
7191
7192Fri Sep 24 01:06:36 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7193
7194 * nanohttp.c: conditionned references to snprintf with HAVE_SNPRINTF
7195
7196Fri Sep 24 00:15:58 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7197
7198 * libxml.spec.in: fixed the alpha compile problem
7199 * parser.[ch]: changed errno to errNo in the parser context :-(
7200 * *.[ch]: changed CHAR to xmlChar to avoid problem on WIN32
7201 * doc/xml.html: changed CHAR to xmlChar
7202 * doc/html/*: recompiled the documentation
7203 * configure.in: 1.7.1
7204
7205Wed Sep 22 11:40:31 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7206
7207 * parser.h: modified the parser context struct to regain 1.4.0
7208 binary compatibility
7209 * parser.c, xml-error.h: added errno ot teh context and defined
7210 a set of errors values with update of errno
7211 * nanohttp.[ch]: minimalist HTTP front-end for fetching remote
7212 DTDs and entities
7213 * *.h, *.c: complete cleanup of the use of config.h and include
7214 protection depending on the current setup.
7215 * overalll debugging, maintenance and bug-fixing on all modules
7216 * updated the documentation
7217 * ready for 1.7.0
7218
7219Wed Sep 8 22:46:14 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7220
7221 * HTMLparser.c : cleanup
7222 * SAX.c valid.c valid.h: added ID/IDREF checking
7223 * tree.c tree.h: extended doc structure for refs
7224 * configure.in: 1.6.2
7225 * parser.c: patched bug in SAX user arg call
7226 * parserInternals.h: patched missing close in C++ wrapping
7227 * testXPath.c xpath.c xpath.h: prepared for extensibility,
7228 especially upcoming XPointer implementation.
7229 * doc/xml.html: augmented, typo
7230
7231Sat Sep 4 22:48:05 CEST 1999 Timur Bakeyev <mc@bat.ru>
7232
7233 * doc/Makefile.am: replaced "install -d " with "mkinstalldirs" -
7234 not all invocations of install understand -d.
7235
7236Sat Sep 4 22:20:07 CEST 1999 Timur Bakeyev <mc@bat.ru>
7237
7238 * Makefile.am: prepend all the test* calls with $(top_builddir) -
7239 to make 'check' works, when builddir != srcdir.
7240
7241Sat Sep 4 20:25:46 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7242
7243 * doc/xml.html : updated the documentation
7244
7245Fri Sep 3 00:01:08 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7246
7247 * xmlmemory.[ch] Makefile.am :added a memory wrapper to chase
7248 not deallocated memory blocks
7249 * *.c : replaces all calls to malloc() free() and realloc() to
7250 the wrapper functions/macros
7251 * tree.c : removed memory leaks dues to calling xmlFreeNode()
7252 instead of xmlFreeNodeList()
7253
7254Wed Sep 1 14:15:09 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7255
7256 * HTMLparser.c: corrected a stupid bug leading to core dump at
7257 tree deallocation. Removed warnings indicated by
7258 Stephane.Conversy@lri.fr
7259 * entities.c: Fixes Yet Another Stupid Bug, entities were not
7260 looked for in the external subset
7261
7262Mon Aug 30 13:22:26 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7263
7264 * parser.c valid.[ch] xpath.c: patched compilation warnings reported
7265 on SGI by Stephane.Conversy@lri.fr
7266
7267Sun Aug 29 22:27:29 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7268
7269 * all .h : changed the prototype declaration indent as in gtk
7270 * most .c : working on reducing the TODOs in the code
7271 * most .c : cleanup though -pedantic and Insure++
7272 * improvements on validation ID checkings.
7273 * tree.[ch] SAX.c: added support for namespace on attributes #2022
7274 * xml-config.in: closed #1810
7275
7276Mon Aug 16 03:27:38 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7277
7278 * tree.h, valid.c, valid.h: more work on validity, IDs
7279 * xpath.c: added/fixed comparidon and equlity, added a new isinf
7280 definition for AIX
7281
7282Sun Aug 15 21:15:17 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7283
7284 * Makefile.am libxml.spec.in: corrected missing xmlConf.sh in
7285 the distribution due to a cut'n paste error at last commit
7286
7287Tue Aug 10 20:28:09 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7288
7289 * configure.in: upgraded to version 1.4.0
7290 * valid.[ch], SAX.c, parser.[ch] parserInternals.h ...
7291 Big update, added a large part of the validation process,
7292 it should be usable, but some parts are missing
7293 * xpath.c: improved the implementation w.r.t. root.
7294 * Makefile.am: added more tests
7295 * test and result trees: added a lot of tests
7296 * libxml.spec.in: export libxml.so.0 and libxml.so.1
7297
7298Tue Aug 10 11:33:41 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7299
7300 * Added an HACKING file
7301
7302Tue Jul 27 21:43:00 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7303
7304 * xpath.[ch] : improvements and debug of the XPath implementation
7305 * parser.c, HTMLparser.c : modified the parsers to be progressive
7306 * tree.[ch] : extended the Buffer promitives
7307 * xmlIO.[ch] : added basic I/O routines providing progressive
7308 parsing and ready for I18N conversion plugins
7309 * SAXresult/* : the SAX callback sequence maybe slightly different
7310 now
7311 * test*.c : improved/updated the tests programs
7312 * doc/* : recompiled the docs.
7313
73141999-07-26 Michael Meeks <michael@edenproject.org>
7315
7316 * tree.h: Add const to 'content' in xmlNewDocNode, xmlNewChild
7317
7318 * tree.c: Ditto.
7319
7320Thu Jul 15 16:17:16 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7321
7322 * configure.in: upgraded to version 1.4.0
7323 * xpath.c, xpath.h, testXPath.c, makefile.am: added code for the XPath
7324 draft from W3C. Will be used by XPointer, Xlink, XSL, and possibly
7325 XML query language, see http://www.w3.org/TR/xpath for more details.
7326 * parser.c, parser.h: added CHAR* related string functions for XPath
7327 * HTMLparser.[ch], HTMLtree.c: a bit of cleanup on entities.
7328 * doc/gnome-xml.sgml, doc/html/* : added XPath and HTML documentation,
7329 rebuild the docs.
7330 * Makefile.am, test/XPath/*, result/XPath/*: added an XPathtests target
7331 and regression testing capabilities for XPath.
7332
7333Mon Jul 12 12:36:39 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7334
7335 * parser.c, HTMLparser.c: applied patch from John Ellson <ellson@lucent.com>
7336 closing bug #1646
7337
7338Mon Jul 12 11:04:44 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7339
7340 * Makefile.am, example/Makefile.am: closed bug #1683
7341
7342Sun Jul 11 18:16:34 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7343
7344 * example/Makefile.am, configure.in: added the makefile for the
7345 gjobread example
7346
7347Sat Jul 10 14:19:11 CEST 1999 Tomasz K³oczko <kloczek@pld.org.pl>
7348
7349 * doc/Makefile.am:
7350 - fix which allow "make install DESTDIR=</install/prefix>".
7351
7352Fri Jul 9 12:10:24 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7353
7354 * HTMLparser.c parser.c: applied patch from John Ellson <ellson@lucent.com>
7355 which fixed a problem on the file reading-code.
7356
7357Wed Jul 7 09:28:43 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7358
7359 * HTMLparser.[ch], HTMLtree.[ch]: more work for HTML parsing and
7360 output.
7361 * Makefile.am, test/HTML/*, result/HTML/*: added HTMLtests targetestHTMLt
7362
7363Wed Jul 7 00:25:42 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7364
7365 * parser.h : Oops removed the binary compatibility problem
7366 * HTMLparser.[ch], HTMLtree.h : More work on the HTML parse/dump
7367 * parser.c, HTMLparser.c: applied patches for reading from stdin
7368
7369Mon Jul 5 18:45:31 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7370
7371 * parser.c, entities.c, valid.c: cleanup bug #1591
7372 * configure.in: cleanup bug #1592
7373 * HTMLparser.[ch], testHTML.c: started adding an HTML parser using
7374 the same tree back-end. Hence gdome will be available for it.
7375 * doc/Makefile.am: close bug #617
7376
7377Sat Jun 26 23:36:38 EDT 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7378
7379 * parser.c: alloctate a per parser context SAX interface block
7380
7381Tue Jun 22 23:46:32 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7382
7383 * released 1.3.0 with xmlEncodeEntities restoring old behaviour
7384 and xmlEncodeEntitiesReentrant with the correct one :-\
7385
7386Mon Jun 21 14:07:53 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7387
7388 * commit of my internal XML base changes, quite a lot of
7389 changes, cleanups, better entities support, framework for
7390 new I/O and charset detection and handling
7391 * Fixed the configure/Makefile stuff to generate shared libs
7392 with the proper version info, so we jumped on rev from
7393 0.0.0 to 1.2.0 ! The binary interfaces have been broken,
7394 xmlEncodeEntities() result need to be freed now, and a string
7395 xmlParserVersion provide the current library version.
7396
7397Tue Jun 15 14:24:19 1999 Raph Levien <raph@acm.org>
7398
7399 * parser.c: fixed a buffer overrun for when you have a very long
7400 attribute with no entities in it.
7401
7402Mon Jun 14 00:17:50 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7403
7404 * added example directory
7405 * added example/gjobs.xml gjobread.c, still need a Makefile.in
7406
7407Wed Jun 2 19:40:58 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7408
7409 * Release of libxml-1.1, nearly everything has been touched for
7410 this.
7411 * Added more regression tests
7412 * Updated the documentation
7413
7414Sat May 29 13:34:42 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7415
7416 * tree.[ch]: unified the XML_NO_CORBA defines.
7417 * parser.c encoding.[ch]: started plugging in char encoding detection
7418
7419Fri May 28 22:58:42 EDT 1999 Manish Vachharajani <mvachhar@vger.rutgers.edu>
7420
7421 * tree.c: (xmlSaveFile) - removed double call of xmlContentDump.
7422 Also freed allocated buffer.
7423
7424Wed Apr 21 22:07:35 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7425 * parser.[ch] tree.[ch] entities.[ch] valid.[ch] : removed the main
7426 reentrancy problem at printing. One is left in entities.c, to
7427 remove ASAP
7428 * testSAX.c : added a test example showing the use of the SAX
7429 interface if one doesn't want to build the DOM tree.
7430 * html/gnome-xml-*.html html/index.sgml: regenerated the documentation
7431
7432Mon Apr 5 14:14:40 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7433
7434 * parser.[ch] tree.[ch] SAX.c, parserInternals.h valid.[ch]:
7435 large revamping of the parser to use SAX callbacks
7436 http://www.megginson.com/SAX/ (or at least a C like interface
7437 a la Expat). It's now possible to set up your own callbacks
7438 and the parser will not build a DOM tree.
7439 * test/* result/*: updated the test suite, I finally removed
7440 the old Namespace draft support (PI based).
7441
7442Fri Apr 2 17:57:32 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7443
7444 * Makefile.am: added test result to EXTRA_DIST for make tests
7445
7446Wed Mar 24 21:37:02 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7447
7448 * parser.c, parserInternals.h: moved the chars macro definitions
7449 to parserInternals.h
7450 * parser.c, error.c: applied patches from "Knut Åkesson"
7451 <ka@s2.chalmers.se> for clean compilation under MSVC 6 :-o
7452
7453Tue Mar 23 11:10:15 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7454
7455 * xml-config.in : applied patch to make --version work
7456
74571999-03-05 Raja R Harinath <harinath@cs.umn.edu>
7458
7459 * Makefile.am (check-local): Alias for `tests' target. This will
7460 cause `make check' to do the right thing.
7461 (tests): Don't run tests in srcdir. Also, replaced calls to
7462 basename with a `sed' "equivalent".
7463
7464Fri Mar 5 07:23:53 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7465
7466 * Renamed error.h to xml-error.h, corrected Makefile.am to list
7467 it in the header and not the sources, updated the doc.
7468 Thanks to Tim Mooney <mooney@dogbert.cc.ndsu.nodak.edu> for
7469 pointing this out.
7470
7471Mon Mar 1 13:27:17 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7472
7473 * parser.c, parser.h, parserInternals.h: memory leak hunting,
7474 exported the inputStream routines.
7475 * doc/html/* : updated accordingly
7476
7477Sun Feb 28 22:51:33 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7478
7479 * parser.c, parser.h, parserInternals.h: added a few extra
7480 internal calls to allocate and free parser contexts ...
7481 * doc/html/* : updated accordingly
7482
7483Thu Feb 25 11:52:24 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7484
7485 * configure.in, Makefile.am, doc/makefile.am : General changes for
7486 1.0.0 release and including the generated HTML documentation.
7487
7488Thu Feb 25 09:44:52 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7489
7490 * makefile.am : added parserInternals.h, oops.
7491
7492Mon Feb 22 11:24:56 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7493
7494 * parserInternals.h: added this header giving access to the parser
7495 internal functions.
7496 * doc/Makefile.am : added a rebuild target which rebuilds the full
7497 set of documentations
7498 * parser.[ch] tree.[ch] valid.[ch]: serious updates w.r.t. parsing
7499 the internal subset.
7500 * *.c *.h: modifications needed to generate the documentation using
7501 gtk-doc, cleanup of functions blocks, reorganisation of struct
7502 declarations.
7503
7504Tue Feb 16 17:27:29 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7505
7506 * Makefile.am, spec, doc/Makefile.am : upgrading to 0.99.8, fixing
7507 the tar and spec file to include the beginning of the doc.
7508
75091999-02-13 Nuno Ferreira <nmrf@rnl.ist.utl.pt>
7510
7511 * doc/.cvsignore: Added this file.
7512
7513Mon Feb 8 19:27:56 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7514
7515 * tree.c: fixed xmlGetProp to return "" when the attribute
7516 exists, even if the node-list is NULL.
7517
7518Mon Feb 8 16:10:15 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7519
7520 * tree.c: patched an error outputting empty attribute values.
7521 * Makefile.am and doc/makefile.am: have been updated during the
7522 week-end. Sorry for an empty CVS log, I got a shell problem.
7523
7524Mon Feb 1 12:10:13 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7525
7526 * tree.h: cleaned up using enums instead of defines
7527 * parser.c, valid.[ch]: more work on parsing/output of element
7528 declarations
7529
7530Sun Jan 31 22:06:48 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7531
7532 * valid.[ch], tree.c, parser.c : more work toward full parsing
7533 of XML DTDs.
7534 * README: added informations about mailing-list and on-line
7535 documentation
7536
75371999-01-27 Raja R Harinath <harinath@cs.umn.edu>
7538
7539 * configure.in (XML_INCLUDEDIR): Use -I not -L for includes.
7540
7541Sun Jan 17 20:06:36 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7542
7543 * parser.c, tree.[ch] : more work toward conformance testing,
7544 added a last element to accelerate parsing of very flat structures
7545 started working on internal subset Element content declaration.
7546 * valid.[ch] : first cut at adding code toward validation.
7547 * previous changes had also small impact on most files, especially
7548 the conformance testing using James Clark test suite.
7549
7550Sun Jan 17 14:45:06 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
7551
7552 * test/* : updated the examples, most of them were not well
7553 formed (humm), and added rdf2.
7554 * result/* : resulting changes in the output.
7555
7556Sun Dec 6 13:06:58 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7557
7558 * tree.c: changed the behaviour of xmlGetProp on NULL values.
7559
7560Sat Dec 5 12:25:09 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7561
7562 * tree.c: patched a bug in the generation of empty attributes
7563
7564Fri Nov 27 01:36:54 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7565
7566 * entities.[ch], tree.[ch], tester.c: added copy interfaces
7567 for node/trees/documents/... Biggest problem is namespace
7568 support when copying subtrees.
7569
7570Sun Nov 15 19:59:47 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7571
7572 * parser.c, entities.c: improve entities and char ref encoding,
7573 and cleanups of error messages.
7574
7575Fri Nov 13 13:03:10 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7576
7577 * parser.c, entities.c: simple bug hunting done during rpm2html and
7578 rpmfind integration.
7579
7580Sun Nov 8 13:11:07 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7581
7582 * parser.[ch]: Added interfaces allowing to specify a SAX
7583 handler before parsing.
7584
7585Sun Nov 8 09:39:17 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7586
7587 * parser.c: redirrect all errors reporting through the SAX
7588 error function
7589
7590Wed Nov 4 14:21:54 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7591
7592 * entities.c: rather use HAVE_SNPRINTF and not depend on glib
7593 * libtool, tlmain ...: update of the libtool files
7594
75951998-11-04 Miguel de Icaza <miguel@nuclecu.unam.mx>
7596
7597 * entities.c: Use g_snprintf insteda of snprintf.
7598
7599Sun Nov 1 14:31:06 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7600
7601 * entities.c, parser.c: debug and cleanup of CharRef handling/saving.
7602 added ent5 test for this purpose.
7603 * parser.c, parser.h: formatting, comments and UTF-8 planning.
7604
7605Fri Oct 30 01:36:52 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7606
7607 * parser.c: fixed? a strange error due to compression on a GWP
7608 document.
7609
7610Thu Oct 29 00:48:45 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7611
7612 * tree.[ch]: bug fixing
7613 * entities.[ch]: defined a specific type for predefined entities
7614 * doc/xml.html: more documentation on the library, how to use it,
7615 overview of the interfaces.
7616
7617Wed Oct 28 17:56:35 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7618
7619 * tree.[ch]: more cleanup on the API, made the tree mor conformant.
7620
7621Tue Oct 27 17:54:00 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7622
7623 * tree.c: corrected a small bug
7624 * doc/xml.html: continuing writing documentation.
7625
7626Tue Oct 27 17:54:00 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7627
7628 * debugXML.h debugXML.c: added debugging utilities.
7629 * tester.c: added --debug switch.
7630 * tree.c: patched an incorrect node->type assignment.
7631 * parser.c: formatting, ensure that node->doc != NULL in attributes
7632
7633Tue Oct 27 01:15:39 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7634
7635 * parser.[ch] SAX.c tree.[ch]: large amount of changes to improve
7636 entity support and provide an internal representation close to
7637 DOM one (entity ref nodes, and attribute value as tree). I tried
7638 to preserve the interface but this will surely break some apps
7639 (I have to change rpm2html/rpmfind for example). I had to change
7640 two interfaces, and the generated tree is somewhat different.
7641 * doc/* : started documenting the XML library, the tree and
7642 DOM/Corba. This is a first step.
7643
7644Sat Oct 24 14:23:51 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7645
7646 * parser.c: Set up the fonctions comment block, boring but useful.
7647 * parser.h, SAX.c, parser.c: now attributes are processed through
7648 the SAX interface. The problem is that my SAX interface diverged
7649 quite a bit from the original one, well this is not an official
7650 spec, and translating it from Java to C is hairy anyway...
7651
7652Tue Oct 20 02:11:21 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7653
7654 * SAX.c, entities.c, tree.c, encoding.c, error.c: Set up the
7655 fonctions comment block, boring but useful.
7656
7657Sun Oct 18 20:40:58 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7658
7659 * encoding.[ch], Makefile.am: Added the UTF-8, UTF-16 and ISO Latin 1
7660 conversion routines. However they are not yet used to convert the
7661 inputs. The core will run with UTF-8.
7662
7663Sun Oct 18 15:08:19 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7664
7665 * tree.c : make sure that the type id is properly set-up when
7666 a new object is allocated, needed for DOM.
7667
7668Sat Oct 17 02:43:21 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7669
7670 * tree.h, tree.c: Ok, the main objects in the tree will be native
7671 corba objects, it costs 8 bytes per Node, Attribute and Document
7672 but it simplifies the Corba integration a lot (no extra interface
7673 objects to allocate/free).
7674
7675Tue Oct 13 21:46:57 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7676
7677 * tree.h, tree.c, parser.c: added prev and doc pointers to Node,
7678 and changed NODEs contants for conformity with DOM Level 1
7679
7680Wed Oct 7 23:42:46 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7681
7682 * added hooks to keep track of servants when creating objects
7683 xmlDoc and xmlNode (for Corba export).
7684
7685Sun Oct 4 03:18:09 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7686
7687 * added xml-config script.
7688
7689Thu Oct 1 16:22:37 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7690
7691 * autogen.sh : applied patch from Frederic Devernay <devernay@istar.fr>
7692 to autoupdate libtool and automake conf files.
7693
76941998-09-30 Miguel de Icaza <miguel@nuclecu.unam.mx>
7695
7696 * Makefile.am: Use '?' to separate the sed
7697 commands as ',' is used when people pass -Wl,something.
7698
7699
7700Thu Sep 24 15:13:29 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7701
7702 * tree.c, tree.h: added a per-document compression interface.
7703
7704Tue Sep 22 20:47:38 EDT 1998
7705
7706 * tree.c, tree.h: added saving with compression and added interfaces
7707 to control the compression level (xmlGetCompressMode,
7708 xmlSetCompressMode) and a new save to filename function (xmlSaveFile).
7709
7710Mon Sep 21 20:11:13 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7711
7712 * parser.c: corrected a loop for files of size 0
7713
77141998-08-20 Raja R Harinath <harinath@cs.umn.edu>
7715
7716 * error.h: New file. Contains prototyes from `error.c'.
7717
7718Thu Aug 13 19:02:34 1998 Tom Tromey <tromey@cygnus.com>
7719
7720 * Makefile.am (xmlincdir): New macro.
7721 (xmlinc_HEADERS): Renamed from include_HEADERS.
7722
7723Thu Aug 13 00:40:14 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7724
7725 * applied small patch on numeric entities from
7726 Christopher Blizzard <blizzard@appliedtheory.com>
7727
7728Wed Aug 12 23:12:58 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7729
7730 * New release 0.2, removed the old xml_* files so that it's
7731 coherent with the other CVS base (W3C), far better conformance
7732 to standard, new namespaces, decent entities support, beginning
7733 of a SAX-like interface. Nearly nothing left intact, even the
7734 test examples ...
7735
77361998-07-30 Christopher Blizzard <blizzard@appliedtheory.com>
7737
7738 * .cvsignore: Add .deps dir
7739
7740Sun Jul 26 17:29:52 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7741
7742 * xml_tree: changed the memory allocation scheme for name in xmlNewNode
7743
7744Sun Jul 26 00:17:51 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7745
7746 * configure.in: added test for CPP
7747 * AUTHORS, Changelog: the original ones didn't get commited but the
7748 glib ones instead, fixed.
7749 * Makefile.am: corrected an error in library naming
7750
7751Fri Jul 24 16:47:14 1998 Daniel Veillard <Daniel.Veillard@w3.org>
7752
7753 * integrated code developped at W3C
7754 * changed the original Copyright
7755 * migrated to automake
7756 * prefixed the filenames by xml_ to avoid filename clashes
7757
Daniel Veillarde0ed10c2003-01-06 11:06:26 +00007758Mon Jan 6 12:05:12 CET 2003 Daniel Veillard <daniel@veillard.com>
7759
7760 * doc/tutorial/* : fixed #101894 if doc == NULL xmlFreeDoc
7761 should not be called.
7762
Daniel Veillard0aaaacd2003-01-06 10:59:57 +00007763Mon Jan 6 11:59:09 CET 2003 Daniel Veillard <daniel@veillard.com>
7764
7765 * libxml-2.0.pc.in: applied the patch to fix #101894
7766
Daniel Veillard8a1b1852003-01-05 22:37:17 +00007767Sun Jan 5 23:35:47 CET 2003 Daniel Veillard <daniel@veillard.com>
7768
7769 * tree.c : applied patch from Lukas Schroeder for register callbacks
7770 * valid.c: modified patch from Lukas Schroeder to test
7771 register callbacks with --chkregister
7772
Daniel Veillard067bae52003-01-05 01:27:54 +00007773Sun Jan 5 02:23:20 CET 2003 Daniel Veillard <daniel@veillard.com>
7774
7775 * xmlreader.c: seriously changed the way data are pushed to
7776 the underlying parser, go by block of 512 bytes instead of
7777 tryng to detect tag boundaries at that level. Changed the
7778 way empty element are detected and tagged.
7779 * python/tests/reader.py python/tests/reader2.py
7780 python/tests/reader3.py: small changes mostly due to context
7781 reporting being different and DTD node being reported. Some
7782 errors previously undetected are now caught and fixed.
7783 * doc/xmlreader.html: flagged last section as TODO
7784
Daniel Veillard51a447a2003-01-04 19:42:46 +00007785Sat Jan 4 20:40:28 CET 2003 Daniel Veillard <daniel@veillard.com>
7786
7787 * python/libxml.py: integrated the Python 2.2 optimizations
7788 from Hannu Krosing, while maintaining compatibility with
7789 1.5 and 2.1
7790
Daniel Veillarde59494f2003-01-04 16:35:29 +00007791Sat Jan 4 17:33:17 CET 2003 Daniel Veillard <daniel@veillard.com>
7792
7793 * xmllint.c: a bit of cleanup
7794 * xmlreader.c: small fix
7795 * doc/xmlreader.html: more work on the XmlTextReader tutorial
7796 * python/libxml.py: a few fixes pointed out by Hannu Krosing
7797
Daniel Veillard623a9eb2003-01-04 12:47:20 +00007798Sat Jan 4 13:46:14 CET 2003 Daniel Veillard <daniel@veillard.com>
7799
7800 * python/setup.py.in: patch from Stéphane Bidoul to include
7801 drv_libxml2.py in setup.py
7802
Daniel Veillard66b82892003-01-04 00:44:13 +00007803Sat Jan 4 01:43:06 CET 2003 Daniel Veillard <daniel@veillard.com>
7804
7805 * doc/xmlreader.html: starting documenting the new XmlTextReader
7806 interface.
7807
Daniel Veillard7704fb12003-01-03 16:19:51 +00007808Fri Jan 3 17:18:32 CET 2003 Daniel Veillard <daniel@veillard.com>
7809
7810 * xmllint.c: added the --stream flag to use the TextReader API
7811 * xmlreader.c: small performance tweak
7812
Daniel Veillarda80ff6e2003-01-03 12:52:08 +00007813Fri Jan 3 13:50:55 CET 2003 Daniel Veillard <daniel@veillard.com>
7814
7815 * xmlreader.c python/tests/reader2py: okay the DTD validation
7816 code on top of the XMLTextParser API should be solid now.
7817
Daniel Veillard1fdfd112003-01-03 01:18:43 +00007818Fri Jan 3 02:17:18 CET 2003 Daniel Veillard <daniel@veillard.com>
7819
7820 * xmlreader.c python/tests/reader2py: Fixing some more mess
7821 with validation and recursive entities while using the
7822 reader interface, it's getting a bit messy...
7823
Daniel Veillarddab8ea92003-01-02 14:16:45 +00007824Thu Jan 2 15:15:26 CET 2003 Daniel Veillard <daniel@veillard.com>
7825
7826 * xmlreader.c python/tests/reader.py: another couple of problem
7827 related to IsEmptyElement reported by Stéphane Bidoul needed
7828 some fixes.
7829
Daniel Veillard4f860202003-01-02 13:00:02 +00007830Thu Jan 2 13:57:07 CET 2003 Daniel Veillard <daniel@veillard.com>
7831
7832 * libxml.spec.in python/Makefile.am python/drv_libxml2.py:
7833 integrated drv_libxml2.py Python xml.sax driver from Stéphane Bidoul
7834 based on the python XmlTextReader interface.
7835
Daniel Veillard3c265e42003-01-01 21:06:49 +00007836Wed Jan 1 22:05:40 CET 2003 Daniel Veillard <daniel@veillard.com>
7837
7838 * tree.c: backing out one change in the last patch which broke the
7839 regression tests
7840
Daniel Veillard5335dc52003-01-01 20:59:38 +00007841Wed Jan 1 21:57:28 CET 2003 Daniel Veillard <daniel@veillard.com>
7842
7843 * global.data globals.c tree.c include/libxml/globals.h: applied
7844 an old patch from Lukas Schroeder to track node creation and
7845 destruction. Probably missing a lot of references at the moment
7846 and not usable reliably.
7847
Daniel Veillard8ba17412003-01-01 19:13:12 +00007848Wed Jan 1 20:12:07 CET 2003 Daniel Veillard <daniel@veillard.com>
7849
7850 * NEWS doc/Makefile.am doc/news.xsl: generate the NEWS file
7851 from doc/news.html and a stylesheet
7852
Daniel Veillarde3c036e2003-01-01 15:11:05 +00007853Wed Jan 1 16:09:57 CET 2003 Daniel Veillard <daniel@veillard.com>
7854
7855 * xmlreader.c python/tests/reader.py: fixed another couple of
7856 xmlreader bugs reported by Stéphane Bidoul and added tests.
7857
Daniel Veillard9e395c22003-01-01 14:50:44 +00007858Wed Jan 1 15:42:54 CET 2003 Daniel Veillard <daniel@veillard.com>
7859
7860 * xmlreader.c python/tests/reader2.py: fixed another validity
7861 checking in external parsed entities raised by Stéphane Bidoul
7862 and added a specific regression test.
7863 * python/tests/reader3.py: cleanup
7864
Daniel Veillardd5896142002-12-31 14:45:26 +00007865Tue Dec 31 15:44:02 CET 2002 Daniel Veillard <daniel@veillard.com>
7866
7867 * xmlreader.c python/tests/reader2.py: fixed a problem with
7868 validation within entities pointed by Stéphane Bidoul, augmented
7869 the tests to catch those.
7870
Daniel Veillarddc85f282002-12-31 11:18:37 +00007871Tue Dec 31 12:15:37 CET 2002 Daniel Veillard <daniel@veillard.com>
7872
7873 * python/generator.py: modified the generator to allow keeping
7874 class references when creating new classes, needed to fix a bug
7875 pointed by Stéphane Bidoul where the input buffer of the
7876 xmlTextReader instance gets destroyed if the python wrapper for
7877 the input is not referenced anymore.
7878
Daniel Veillard4d8db8a2002-12-30 18:40:42 +00007879Mon Dec 30 19:39:36 CET 2002 Daniel Veillard <daniel@veillard.com>
7880
7881 * xmlreader.c python/tests/reader.py: fixed another pair of problem
7882 pointed by Stéphane Bidoul: depth start at 0 and a parse problem.
7883
Daniel Veillard571b8892002-12-30 12:37:59 +00007884Mon Dec 30 13:36:50 CET 2002 Daniel Veillard <daniel@veillard.com>
7885
7886 * xmlreader.c python/tests/reader.py: fixed another problem
7887 pointed by Stéphane Bidoul
7888
Daniel Veillardaaa105b2002-12-30 11:42:17 +00007889Mon Dec 30 12:39:55 CET 2002 Daniel Veillard <daniel@veillard.com>
7890
7891 * xmlreader.c python/tests/reader.py: fixed a limit case problem
7892 with "<a/>"
7893
Daniel Veillardecaba492002-12-30 10:55:29 +00007894Mon Dec 30 11:53:44 CET 2002 Daniel Veillard <daniel@veillard.com>
7895
7896 * SAX.c: warn on xmlns:prefix="foo"
7897 * xmlreader.c python/tests/reader.py: fixed a couple of problem
7898 for namespace attributes handling.
7899
Daniel Veillard2d84a892002-12-30 00:01:08 +00007900Mon Dec 30 00:59:07 CET 2002 Daniel Veillard <daniel@veillard.com>
7901
7902 * entities.c parser.c tree.c include/libxml/entities.h: Fixed
7903 a really nasty problem raised by a DocBook XSLT transform
7904 provided by Sebastian Bergmann
7905
Daniel Veillard29b3e282002-12-29 11:14:41 +00007906Sun Dec 29 12:13:18 CET 2002 Daniel Veillard <daniel@veillard.com>
7907
7908 * xmlreader.c python/tests/reader.py: fixed a bug pointed out
7909 by Stéphane Bidoul and integrated it into the tests
7910
Daniel Veillarde18fc182002-12-28 22:56:33 +00007911Sat Dec 28 23:49:12 CET 2002 Daniel Veillard <daniel@veillard.com>
7912
7913 * xmlreader.c include/libxml/xmlreader.h doc/libxml2-api.xml:
7914 extended the XmlTextReader API a bit, addding accessors for
7915 the current doc and node, and an entity substitution mode for
7916 the parser.
7917 * python/libxml.py python/libxml2class.txt: related updates
7918 * python/tests/Makefile.am python/tests/reader.py
7919 python/tests/reader2.py python/tests/reader3.py: updated a bit
7920 the old tests and added a new one to test the entities handling
7921
Daniel Veillardaba976d2002-12-28 21:14:18 +00007922Sat Dec 28 22:11:57 CET 2002 Daniel Veillard <daniel@veillard.com>
7923
7924 * python/generator.py python/libxml2class.txt
7925 python/tests/reader.py python/tests/reader2.py: changed the
7926 generator to provide casing for the XmlTextReader similar to
7927 C# so that examples and documentation are more directly transposable.
7928 Fixed the couple of tests in the suite.
7929
Daniel Veillard83298842002-12-28 15:12:33 +00007930Sat Dec 28 15:55:32 CET 2002 Daniel Veillard <daniel@veillard.com>
7931
7932 * doc/guidelines.html: added a document on guildeline for
7933 publishing and deploying XML
7934
Daniel Veillard336fc7d2002-12-27 19:37:04 +00007935Fri Dec 27 20:35:15 CET 2002 Daniel Veillard <daniel@veillard.com>
7936
7937 * valid.c xmlreader.c: final touch running DTD validation
7938 on the XmlTextReader
7939 * python/tests/Makefile.am python/tests/reader2.py: added a
7940 specific run based on the examples from test/valid/*.xml
7941
Daniel Veillardf25b4ca2002-12-27 15:18:35 +00007942Fri Dec 27 15:17:20 CET 2002 Daniel Veillard <daniel@veillard.com>
7943
7944 * python/libxml.py: added a few predefined xmlTextReader parser
7945 configuration values.
7946
Daniel Veillard0e9dafa2002-12-27 11:58:25 +00007947Fri Dec 27 12:57:22 CET 2002 Daniel Veillard <daniel@veillard.com>
7948
7949 * python/libxml_wrap.h: trying to fix #102037
7950
Daniel Veillard8dbd4952002-12-27 11:34:48 +00007951Fri Dec 27 12:18:14 CET 2002 Daniel Veillard <daniel@veillard.com>
7952
7953 * SAX.c: fixing bug #95296, when the predefined entities
7954 are redefined in the DTD the default one must be used
7955 instead anyway.
7956
MST 2002 John Fleck6647aed2002-12-26 02:23:24 +00007957Wed Dec 25 19:22:06 MST 2002 John Fleck <jfleck@inkstain.net>
7958
7959 * doc/xmllint.xml
7960 * doc/xmllint.1
7961 Add discussion of XML_DEBUG_CATALOG to xmllint man
7962 page - bug #100907
7963
7964
Daniel Veillarddf512f42002-12-23 15:56:21 +00007965Mon Dec 23 16:54:22 CET 2002 Daniel Veillard <daniel@veillard.com>
7966
7967 * xmlreader.c: Fixed the empty node detection to avoid reporting
7968 an inexistant close tag.
7969
Daniel Veillard0d132cf2002-12-23 14:43:32 +00007970Mon Dec 23 15:42:24 CET 2002 Daniel Veillard <daniel@veillard.com>
7971
7972 * python/libxml.c python/setup.py.in: patch from Stéphane Bidoul
7973 for Python 2.1
7974
Daniel Veillardfe8aab92002-12-22 10:25:41 +00007975Sun Dec 22 11:24:06 CET 2002 Daniel Veillard <daniel@veillard.com>
7976
7977 * testC14N.c vms/config.vms: applied Craig A. Berry patches for VMS
7978
Daniel Veillard4258b9c2002-12-20 10:29:40 +00007979Fri Dec 20 11:27:49 CET 2002 Daniel Veillard <daniel@veillard.com>
7980
7981 * doc/libxml2-api.xml python/tests/reader.py: one really need
7982 to provide the base URI information when creating a reader parser
7983 from an input stream. Updated the API and the example using it.
7984
Daniel Veillardea7751d2002-12-20 00:16:24 +00007985Fri Dec 20 01:11:30 CET 2002 Daniel Veillard <daniel@veillard.com>
7986
7987 * testReader.c xmlreader.c valid.c include/libxml/tree.h
7988 include/libxml/valid.h include/libxml/xmlreader.h: working on
7989 DTD validation on top of xml reader interfaces. Allows to
7990 validate arbitrary large instances. This required some extensions
7991 to the valid module interface and augmenting the size of xmlID
7992 and xmlRef structs a bit.
7993 * uri.c xmlregexp.c: simple cleanup.
7994
Daniel Veillardbeb70bd2002-12-18 14:53:54 +00007995Wed Dec 18 15:51:22 CET 2002 Daniel Veillard <daniel@veillard.com>
7996
7997 * xmlreader.c include/libxml/xmlreader.h doc/libxml2-api.xml: more
7998 work on the xml reader interfaces.
7999 * AUTHORS MAINTAINERS doc/* win32/*: updated Igor's mail and the
8000 Web page for the Windows binaries.
8001
Daniel Veillard4a6d39b2002-12-17 18:33:01 +00008002Tue Dec 17 19:31:07 CET 2002 Daniel Veillard <daniel@veillard.com>
8003
8004 * xmlIO.c: applied a patch for VMS following the report by
8005 Nigel Hall
8006
Daniel Veillard3772de32002-12-17 10:31:45 +00008007Tue Dec 17 11:29:41 CET 2002 Daniel Veillard <daniel@veillard.com>
8008
8009 * parser.c: the parseStartTag bug fix wasn't complete.
8010
Daniel Veillard67df8092002-12-16 22:04:11 +00008011Mon Dec 16 23:00:05 CET 2002 Daniel Veillard <daniel@veillard.com>
8012
8013 * parser.c: Vyacheslav Pindyura managed to trigger a bug in
8014 parseStartTag, fixing it.
8015 * test/att4 result/att4 result/noent/att4: adding the test
8016 * xmlreader.c include/libxml/xmlreader.h doc/libxml2-api.xml: added
8017 more methods to XmlTextReader.
8018
Igor Zlatkovicd453c632002-12-16 18:45:48 +00008019Mon Dec 16 19:31:16 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
8020
8021 * win32/libxml2.def.src: added more xml reader exports
8022 * win32/Makefile.msvc win32/Makefile.mingw: added xml reader interface
8023 to the build
8024
MST 2002 John Fleck7c67a832002-12-16 13:38:06 +00008025Mon Dec 16 06:36:54 MST 2002 John Fleck <jfleck@inkstain.net>
8026
8027 * doc/tutorial/xmltutorial.xml
8028 plus generated html and pdf
8029 Updating tutorial again based on further comments from Niraj
8030 Tolia on the last iteration
8031
MST 2002 John Fleck44aacb32002-12-16 04:34:57 +00008032Sun Dec 15 21:27:30 MST 2002 John Fleck <jfleck@inkstain.net>
8033
8034 * doc/tutorial/xmltutorial.xml
8035 * doc/tutorial/includekeyword.c
8036 * doc/tutorial/includegetattribute.c
8037 plus generated html and pdf
8038 Adding fix from Niraj Tolia to tutorial to properly free memory.
8039
8040
Daniel Veillardda46d2d2002-12-15 23:36:49 +00008041Mon Dec 16 00:34:25 CET 2002 Daniel Veillard <daniel@veillard.com>
8042
8043 * xmlreader.c include/libxml/xmlreader.h doc/libxml2-api.xml: added
8044 more methods of XmlTextReader.
8045 * python/libxml2class.txt python/tests/reader.py: this increased the
8046 methods in the bndings, augmented the test to check those new
8047 functions.
8048
Daniel Veillard0eb38c72002-12-14 23:00:35 +00008049Sat Dec 14 23:57:39 CET 2002 Daniel Veillard <daniel@veillard.com>
8050
8051 * xmlreader.c doc/libxml2-api.xml: added the close and getattribute
8052 methods of XmlTextReader.
8053 * python/generator.py python/libxml_wrap.h python/types.c
8054 python/libxml2class.txt: added the reader to the Python bindings
8055 * python/tests/Makefile.am python/tests/reader.py: added a specific
8056 test for the Python bindings of the Reader APIs
8057 * parser.c: small cleanup.
8058
Daniel Veillard06503452002-12-13 10:42:08 +00008059Fri Dec 13 11:39:44 CET 2002 Daniel Veillard <daniel@veillard.com>
8060
8061 * xinclude.c: fallback was only copying the first child not the
8062 full child list of the fallback element, closes #89684 as reopened
8063 by Bernd Kuemmerlen
8064
Igor Zlatkovic2d45f522002-12-12 12:33:43 +00008065Thu Dec 12 13:34:59 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
8066
8067 * win32/libxml2.def.src: exported htmlNodeDumpOutput
8068
Daniel Veillard000eafb2002-12-12 10:04:22 +00008069Thu Dec 12 10:59:11 CET 2002 Daniel Veillard <daniel@veillard.com>
8070
Daniel Veillardc1eed322002-12-12 11:01:32 +00008071 * configure.in: preparing release of 2.4.30
Daniel Veillard000eafb2002-12-12 10:04:22 +00008072 * doc/apibuild.py doc/libxml2-api.xml: fixups to the api builder,
Daniel Veillardc1eed322002-12-12 11:01:32 +00008073 gives enum values, fix functype return type, put back fields in
8074 structs
8075 * doc/*: updated the docs rebuilt
Daniel Veillard000eafb2002-12-12 10:04:22 +00008076
Daniel Veillard024b5702002-12-12 00:15:55 +00008077Thu Dec 12 01:09:34 CET 2002 Daniel Veillard <daniel@veillard.com>
8078
8079 * HTMLtree.c include/libxml/HTMLtree.h: patch from Mark Vadok
8080 about htmlNodeDumpOutput location.
8081 * xpath.c: removed an undefined function signature
8082 * doc/apibuild.py doc/libxml2-api.xml: the script was exporting
8083 too many symbols in the API breaking the python bindings.
8084 Updated with the libxslt/libexslt changes.
8085
Daniel Veillard9b4bb4d2002-12-11 19:28:47 +00008086Wed Dec 11 20:26:15 CET 2002 Daniel Veillard <daniel@veillard.com>
8087
8088 * configure.in: preparing release of 2.4.29
8089 * doc/*: rebuilt the docs and API
8090 * xmlreader.c: a few more fixes for the XmlTextReader API
8091
Igor Zlatkovicf6273a02002-12-11 17:00:54 +00008092Wed Dec 11 18:01:15 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
8093
8094 * include/win32config.h: applied mingw patch from Magnus Henoch
8095
Daniel Veillard5aad8322002-12-11 15:59:44 +00008096Wed Dec 11 16:58:48 CET 2002 Daniel Veillard <daniel@veillard.com>
8097
8098 * catalog.c doc/libxml2-api.xml: a bit more cleanup
8099
Daniel Veillarda9b66d02002-12-11 14:23:49 +00008100Wed Dec 11 14:54:47 CET 2002 Daniel Veillard <daniel@veillard.com>
8101
8102 * doc/apibuild.py doc/libxml2-api.xml doc/Makefile.am: new API
8103 building Python script, does the C parsing directly, generates
8104 a better API description including structure fieds defs and
8105 enums. Still a couple of bugs, but good enough for the python
8106 wrappers now.
8107 * DOCBparser.c SAX.c nanohttp.c parser.c parserInternals.c tree.c
8108 valid.c xmlIO.c xmlmemory.c xmlreader.c xmlregexp.c xmlschemas.c
8109 include/libxml/schemasInternals.h include/libxml/tree.h: more
8110 cleanup based on the python analysis script reports.
8111 * libxml.spec.in: make sure the API XML description is part of the
8112 devel package.
8113
Daniel Veillard01c13b52002-12-10 15:19:08 +00008114Tue Dec 10 16:16:34 CET 2002 Daniel Veillard <daniel@veillard.com>
8115
8116 * DOCBparser.c HTMLparser.c c14n.c debugXML.c encoding.c hash.c
8117 nanoftp.c nanohttp.c parser.c parserInternals.c testC14N.c
8118 testDocbook.c threads.c tree.c valid.c xmlIO.c xmllint.c xmlmemory.c
8119 xmlreader.c xmlregexp.c xmlschemas.c xmlschemastypes.c xpath.c:
8120 code cleanup, especially the function comments.
8121 * tree.c: fixed a small bug when freeing nodes which are XInclude ones.
8122
Daniel Veillarde1ca5032002-12-09 14:13:43 +00008123Mon Dec 9 15:08:17 CET 2002 Daniel Veillard <daniel@veillard.com>
8124
8125 * Makefile.am xmlreader.c include/libxml/Makefile.am
8126 include/libxml/xmlreader.h: Adding a new set of APIs based on
8127 the C# TextXmlReader API but converted to C. Allow to parse
8128 in constant memory usage, far simpler to program and explain
8129 than the SAX like APIs, unfinished but working.
8130 * testReader.c: test program
8131
Igor Zlatkovic70a296c2002-12-08 17:34:54 +00008132Sun Dec 8 18:36:01 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
8133
8134 * win32/libxml2.def.src: applied YALDSP from Mark Vakoc
8135
Daniel Veillard64b35282002-12-04 15:10:40 +00008136Wed Dec 4 16:08:49 CET 2002 Daniel Veillard <daniel@veillard.com>
8137
8138 * tree.c: Chip turner indicated that XHTML1 serialization
8139 rule for style actually break on both IE and Mozilla,
8140 try to avoid the rule if escaping ain't necessary
8141
Daniel Veillard8efff672002-12-04 11:44:48 +00008142Wed Dec 4 12:43:28 CET 2002 Daniel Veillard <daniel@veillard.com>
8143
8144 * nanhttp.c: handle HTTP URL escaping, problem reported by
8145 Glen Nakamura and Stefano Zacchiroli
8146
Daniel Veillard1c732d22002-11-30 11:22:59 +00008147Sat Nov 30 12:19:17 CET 2002 Daniel Veillard <daniel@veillard.com>
8148
8149 * DOCBparser.c HTMLparser.c parser.c valid.c xpath.c: code cleanup
8150
Daniel Veillardfdd27d22002-11-28 11:55:38 +00008151Thu Nov 28 12:53:22 CET 2002 Daniel Veillard <daniel@veillard.com>
8152
8153 * uri.c: Johann Richard pointed out some XPointer problems for
8154 URN based URI references in XInclude. Modified the URI parsing
8155 and saving routines to allow correct parsing and saving of
8156 XPointers, especially when attached to "opaque" scheme accordingly
8157 to RFC 2396
8158
Daniel Veillard8db67d22002-11-27 19:39:27 +00008159Wed Nov 27 20:36:08 CET 2002 Daniel Veillard <daniel@veillard.com>
8160
8161 * HTMLtree.c include/libxml/HTMLtree.h: applied the same kind
8162 of refactoring to the HTML saving code.
8163 * doc/libxml2-*.xml doc/API*.html: slight API changes got reflected
8164 in the doc.
8165
Daniel Veillardebc4ca92002-11-27 11:43:05 +00008166Wed Nov 27 12:40:16 CET 2002 Daniel Veillard <daniel@veillard.com>
8167
8168 * tree.c include/libxml/tree.h: refactored the XML dump of a node
8169 to a buffer API to reuse the generic dump to an OutputIO layer,
8170 this reduces code, fixes xmlNodeDump() for XHTML, also made
8171 xmlNodeDump() now return the number of byte written.
8172
Daniel Veillard9d5ea172002-11-27 08:02:06 +00008173Wed Nov 27 09:00:00 CET 2002 Daniel Veillard <daniel@veillard.com>
8174
8175 * python/setup.py.in: another patch from Stéphane Bidoul for
8176 Python bindings on Windows
8177 * doc/parsedecl.py: small cleanup
8178
Daniel Veillard9715c172002-11-25 16:33:40 +00008179Mon Nov 25 17:28:53 CET 2002 Daniel Veillard <daniel@veillard.com>
8180
8181 * libxml.spec.in configure.in: add a line in %changelog for releases
8182
Daniel Veillard9bc53102002-11-25 13:20:04 +00008183Mon Nov 25 14:18:27 CET 2002 Daniel Veillard <daniel@veillard.com>
8184
8185 * parser.c: patch from Marcus Clarke fixing a problem in entities
8186 parsing that was detected in KDe documentations environment.
8187
Daniel Veillardfaa35ff2002-11-24 13:53:43 +00008188Mon Nov 24 14:13:21 CET 2002 ERDI Gergo <cactus@cactus.rulez.org>
8189
8190 * python/libxml.c (libxml_prev): Return the previous as opposed to
8191 the next node (I guess this is the result of some cut & paste programming:)
8192
Daniel Veillard80d7b902002-11-23 16:23:08 +00008193Sat Nov 23 17:22:22 CET 2002 Daniel Veillard <daniel@veillard.com>
8194
8195 * doc/Makefile.am: Jan Rafaj pointed a bug in the Makefile.
8196
Daniel Veillarda1196ed2002-11-23 11:22:49 +00008197Sat Nov 23 12:21:24 CET 2002 Daniel Veillard <daniel@veillard.com>
8198
8199 * python/generator.py python/libxml.c python/setup.py.in: trying
8200 to fix the Python bindings build on Windows (Stéphane Bidoul)
8201
Igor Zlatkovic9ab71552002-11-22 21:41:43 +00008202Fri Nov 22 22:41:34 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
8203
8204 * win32/configure.js: added option for python bindings
8205 * win32/libxml2.def.src: added more exports
8206
Igor Zlatkovicace7cd22002-11-22 18:07:00 +00008207Fri Nov 22 18:50:34 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
8208
8209 * win32/Makefile.mingw: fixed unresolved symbols when linking with
8210 pthreads
8211 * win32/wince/*: applied updates to Windows CE port from Javier
8212
Daniel Veillardf9c4cad2002-11-22 15:57:07 +00008213Fri Nov 22 15:51:22 CET 2002 Daniel Veillard <daniel@veillard.com>
8214
8215 * configure.in: preparing 2.4.28
8216 * libxml.spec.in doc/Makefile.am: some cleanup
8217 * doc/*: updated the news and regenerated.
8218
Daniel Veillardfee408f2002-11-22 13:18:30 +00008219Fri Nov 22 14:15:14 CET 2002 Daniel Veillard <daniel@veillard.com>
8220
8221 * HTMLparser.c: final touch at closing #87235 </p> end tags
8222 need to be generated.
8223 * result/HTML/cf_128.html result/HTML/test2.html result/HTML/test3.html:
8224 this change slightly the output of a few tests
8225 * doc/*: regenerated
8226
Daniel Veillardd2ff0392002-11-22 12:28:38 +00008227Fri Nov 22 13:26:19 CET 2002 Daniel Veillard <daniel@veillard.com>
8228
8229 * parserInternals.c: fixing bug #99190 when UTF8 document are
8230 parsed using the progressive parser and the end of the chunk
8231 is in the middle of an UTF8 multibyte character.
8232
William M. Brack8b2c7f12002-11-22 05:07:29 +00008233Fri Nov 22 13:13:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
8234
8235 * threads.c: fixed initialization problem in xmlNewGlobalState
8236 which was causing crash.
8237 * globals.c: removed duplicate call to initxmlDefaultSAXHandler
8238 in xmlInitializeGlobalState.
8239 * parserInternals.c: cleaned up ctxt->sax initialisation.
8240
Daniel Veillardd5c2f922002-11-21 14:10:52 +00008241Thu Nov 21 15:05:45 CET 2002 Daniel Veillard <daniel@veillard.com>
8242
8243 * tree.c include/libxml/tree.h: modified the existing APIs
8244 to handle XHTML1 serialization rules automatically, also add
8245 xmlIsXHTML() to libxml2 API. Some tweaking to make sure
8246 libxslt serialization uses it when needed without changing
8247 the library API.
8248 * test/xhtml1 result/noent/xhtml1 result/valid/xhtml1.xhtml
8249 result/xhtml1: added a new test specifically for xhtml1 output
8250 and updated the result of one XHTML1 test
8251
Daniel Veillardd076a202002-11-20 13:28:31 +00008252Wed Nov 20 14:24:56 CET 2002 Daniel Veillard <daniel@veillard.com>
8253
8254 * xinclude.c parserInternals.c encoding.c: fixed #99082
8255 for xi:include encoding="..." support on text includes.
8256 * result/XInclude/tstencoding.xml test/XInclude/docs/tstencoding.xml
8257 test/XInclude/ents/isolatin.txt : added a specific regression test
8258 * python/generator.py python/libxml2class.txt: fixed the generator
8259 the new set of comments generated for doc/libxml2-api.xml were
8260 breaking the python generation.
8261
Daniel Veillard817e70b2002-11-19 22:28:48 +00008262Tue Nov 19 23:25:47 CET 2002 Daniel Veillard <daniel@veillard.com>
8263
8264 * doc/Makefile.am: repair some problem if gtk-doc fail or such
8265 * configure.in: patch for Solaris on new autoconf closes #98880
8266 * doc/parsedecl.py: repair the frigging API building script,
8267 did I say that python xmllib sucks ?
8268 * doc/libxml2-api.xml doc/libxml2-refs.xml: regenerated, reordering
8269 and some comment are no more truncated.
8270
Daniel Veillarda7e05b42002-11-19 08:11:14 +00008271Tue Nov 19 09:09:04 CET 2002 Daniel Veillard <daniel@veillard.com>
8272
8273 * parser.c: Martin Stoilov pointed out a potential leak in
8274 xmlCreateMemoryParserCtxt
8275
Daniel Veillardbc6e1a32002-11-18 15:07:25 +00008276Mon Nov 18 16:05:51 CET 2002 Daniel Veillard <daniel@veillard.com>
8277
8278 * HTMLparser.c: fixed bug #98879 a corner case when 0 is
8279 included in HTML documents and using the push parser.
8280
Daniel Veillard4efd3be2002-11-18 09:11:13 +00008281Mon Nov 18 00:11:24 CET 2002 ERDI Gergo <cactus@cactus.rulez.org>
8282
8283 * configure.in (PYTHON_SITE_PACKAGES): If --with-python is
8284 specified, look for the Python interpreter not just in the
8285 specified root but also in the specified location. Fixes #98825
8286
Daniel Veillarda8c0adb2002-11-17 22:37:35 +00008287Sun Nov 17 23:36:06 CET 2002 Daniel Veillard <daniel@veillard.com>
8288
8289 * python/libxml.c: fixing bug #98792 , node may have no doc
8290 and dereferencing without checking ain't good ...
8291
Daniel Veillarddad3f682002-11-17 16:47:27 +00008292Sun Nov 17 10:25:43 CET 2002 Daniel Veillard <daniel@veillard.com>
8293
8294 * configure.in: preparing release 2.4.27
8295 * doc/* : updated and rebuilt the docs
8296 * doc/Makefile.am libxml.spec.in: try to make sure the tutorial
8297 and all the docs are actually packaged and in the final RPMs
8298 * parser.c parserInternals.c include/libxml/parser.h: restore
8299 xmllint --recover feature.
8300
Daniel Veillard68e9e742002-11-16 15:35:11 +00008301Sat Nov 16 16:30:25 CET 2002 Daniel Veillard <daniel@veillard.com>
8302
8303 * parser.c xpath.c: fixing #96925 wich was also dependant on the
8304 processing of parsed entities, and XPath computation on sustitued
8305 entities.
8306 * testXPath.c: make sure entities are substitued.
8307
Daniel Veillard328f48c2002-11-15 15:24:34 +00008308Fri Nov 15 16:22:54 CET 2002 Daniel Veillard <daniel@veillard.com>
8309
8310 * parser.c: fixed #96594, which was totally dependant on the
8311 processing of internal parsed entities, which had to be changed.
8312
Daniel Veillard66651aa2002-11-15 11:21:43 +00008313Fri Nov 15 12:16:07 CET 2002 Daniel Veillard <daniel@veillard.com>
8314
8315 * Makefile.am python/Makefile.am python/tests/Makefile.am:
8316 trying to fix bug #98517 about building outside the source tree
8317 * doc/xml.html doc/FAQ.html: fixed the link to libiconv #94585
8318
Igor Zlatkovic2772cea2002-11-14 17:45:20 +00008319Thu Nov 14 18:41:55 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
8320
8321 * include/win32config.h: cleanup
8322 * win32/Makefile.mingw: integrated mingw in JScript configure
8323 * win32/Makefile.msvc: modified to allow mingw coexistence
8324 * win32/configure.js: integrated mingw
8325 * win32/Readme.txt: cleanup
8326
Daniel Veillard8dd86a52002-11-12 21:14:17 +00008327Tue Nov 12 22:06:45 CET 2002 Daniel Veillard <daniel@veillard.com>
8328
8329 * HTMLparser.c: strengthen the guard in the Pop macros,
8330 like in the XML parser, closes bug #97315
8331
Daniel Veillard0821b152002-11-12 20:57:47 +00008332Tue Nov 12 21:56:39 CET 2002 Daniel Veillard <daniel@veillard.com>
8333
8334 * include/libxml/parser.h: fixed bug #98338 , fatalError SAX
8335 callback is never used.
8336
Daniel Veillard8606bbb2002-11-12 12:36:52 +00008337Tue Nov 12 13:32:50 CET 2002 Daniel Veillard <daniel@veillard.com>
8338
8339 * parserInternals.c: fixed the initialization of the SAX structure
8340 which was breaking xsltproc
8341 * xpath.c: patch from Petr Pajas for CDATA nodes
8342 * tree.c: patch from Petr Pajas improving xmlGetNodePath()
8343 * parser.c include/libxml/parser.h: patch from Peter Jones
8344 removing a leak in xmlSAXParseMemory() and adding the
8345 function xmlSAXParseMemoryWithData()
8346
MST 2002 John Fleckf854d992002-11-12 03:49:05 +00008347Mon Nov 11 20:47:03 MST 2002 John Fleck <jfleck@inkstain.net>
8348
8349 adding pdf of tutorial, changing web page to link to it
8350 * doc/tutorial/xmltutorial.pdf
8351 * doc/xml.html
8352 * doc/docs.html
8353
MST 2002 John Fleck52717f32002-11-11 03:49:33 +00008354Sun Nov 10 20:48:57 MST 2002 John Fleck <jfleck@inkstain.net>
8355
8356 * doc/tutorial/ar01s08.html
8357 adding file what I forgot for tutorial
8358
8359
MST 2002 John Fleckbd3b4fd2002-11-11 03:41:11 +00008360Sun Nov 10 20:33:13 MST 2002 John Fleck <jfleck@inkstain.net>
8361
8362 Adding encoding discussion to tutorial
8363 Added:
8364 * doc/tutorial/images/*.png: DocBook admonition image files
8365 * doc/tutorial/apf.html, apg.html: new generated html
8366 * doc/tutorial/includeconvert.c: conversion code entity file
8367 changed:
8368 * doc/tutorial/xmltutorial.xml: DocBook original
8369 * doc/tutorial/*.html: generated html
8370
Igor Zlatkovic22bafff2002-11-08 17:19:08 +00008371Fri Nov 8 17:59:32 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
8372
8373 * include/libxml/*.h: retired xmlwin32version.h
8374 * doc/Makefile.am: retired xmlwin32version.h
8375 * win32/configure.js: retired xmlwin32version.h
8376
Igor Zlatkovica2258da2002-11-08 15:55:33 +00008377Fri Nov 8 16:55:47 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
8378
8379 * win32/libxml2.def.src: exported additional symbols
Igor Zlatkovic22bafff2002-11-08 17:19:08 +00008380 * include/libxml/xmlmemory.h: exported the rest of the xmlMem*
8381 sisterhood
Igor Zlatkovica2258da2002-11-08 15:55:33 +00008382
Daniel Veillard7216cfd2002-11-08 15:10:00 +00008383Fri Nov 8 16:08:13 CET 2002 Daniel Veillard <daniel@veillard.com>
8384
8385 * globals.c: fixed a typo pointed out by Igor
8386 * xpath.c: try to speed up node compare using line numbers
8387 if available.
8388
Daniel Veillarda70d62f2002-11-07 14:18:03 +00008389Thu Nov 7 15:16:02 CET 2002 Daniel Veillard <daniel@veillard.com>
8390
8391 * tree.c: make xmlFreeNode() handle attributes correctly.
8392
Igor Zlatkovicb8e99cc2002-11-06 22:52:29 +00008393Wed Nov 6 23:51:11 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
8394
8395 * catalog.c: completed the #96963 fix, as reported by Karl
8396 Eichwalder
8397
Daniel Veillard56f21f22002-11-06 15:49:46 +00008398Wed Nov 6 16:48:44 CET 2002 Daniel Veillard <daniel@veillard.com>
8399
8400 * xpointer.c: tried to fix bug #97852 reported by Nicolas Noffke
8401
Daniel Veillard91ad8792002-11-04 17:06:52 +00008402Sun Nov 3 10:43:44 CET 2002 Daniel Veillard <daniel@veillard.com>
8403
8404 * Makefile.am: switched the order of a couple of includes
8405 to fix bugs #97100
8406
Igor Zlatkovic2bb82ee2002-10-31 16:15:43 +00008407Thu Oct 31 17:11:46 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
8408
8409 * catalog.c: fixed bug #96963, reverted to the old behaviour of
8410 xmlLoadCatalogs that used to separate directories with a ':'.
8411
Igor Zlatkovic9fdd8f32002-10-31 16:01:23 +00008412Thu Oct 31 16:55:21 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
8413
8414 * threads.c: improvements to the Windows-side of thread handling
8415 * testThreads.c: conditionally excluded unistd.h
8416 * testThradsWin32.c: broke overlong lines
8417 * include/win32config.h: adapted thread-related macros to the new
8418 scheme and for pthreads on Windows
8419 * win32/Makefile.msvc: introduced a more flexible thread build,
8420 added testThreads[Win32].c to the build
8421 * win32/configure.js: introduced a more flexible thread config
8422
John Fleck61f6fb62002-10-31 15:23:29 +000084232002-10-31 John Fleck <jfleck@inkstain.net>
8424
8425 * doc/xml.html (and, by implication, FAQ.html)
8426 added UTF-8 conversaion FAQ from Marcus Labib Iskander
8427
Igor Zlatkovicf95b56b2002-10-29 17:33:35 +00008428Tue Oct 29 18:32:33 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
8429
8430 * configure.in: removed xmlwin32version.h
8431 * include/libxml/Makefile.am: removed xmlwin32version.h
8432
Daniel Veillardce66ce12002-10-28 19:01:59 +00008433Mon Oct 28 14:01:29 CET 2002 Daniel Veillard <daniel@veillard.com>
8434
8435 * tree.c: applied patch from Brian Stafford to fix a bug
8436 in xmlReconciliateNs()
8437
Daniel Veillard7e3f1402002-10-28 18:52:57 +00008438Mon Oct 28 13:51:55 CET 2002 Daniel Veillard <daniel@veillard.com>
8439
8440 * tree.c: applied patch from Christian Glahn to allow
8441 xmlNewChild() on document fragment nodes
8442
Daniel Veillardb39bc392002-10-26 19:29:51 +00008443Sat Oct 26 15:27:00 CEST 2002 Daniel Veillard <daniel@veillard.com>
8444
8445 * parser.c: Christian Glahn found a problem with a recent
8446 patch to xmlParseBalancedChunkMemoryRecover()
8447 * xmlschemas.c: Charles Bozeman fixed some Schemas validation
8448 problems
8449 * result/schemas/elem* result/schemas/seq* test/schemas.elem*
8450 test/schemas/seq*: added the test cases from Charles
8451
Daniel Veillard366a9152002-10-23 20:43:53 +00008452Wed Oct 23 16:42:29 CEST 2002 Daniel Veillard <daniel@veillard.com>
8453
8454 * Makefile.am config.h.in libxml.spec.in doc/Makefile.am:
8455 serious cleanup of the spec file and associated changes
8456 in the Makefiles.
8457 * valid.c: try to remove some warnings on x86_64
8458
Daniel Veillardd033d022002-10-23 14:55:02 +00008459Wed Oct 23 10:53:42 CEST 2002 Daniel Veillard <daniel@veillard.com>
8460
8461 * include/Makefile.am: added winsockcompat.h to EXTRA_DIST to
8462 fix bug #96586
8463
Daniel Veillardce02dbc2002-10-22 19:14:58 +00008464Tue Oct 22 21:13:06 CEST 2002 Daniel Veillard <daniel@veillard.com>
8465
8466 * HTMLparser.c: Mikhail Sogrine pointed out a bug in HTML
8467 parsing, applied his patch
8468 * result/HTML/attrents.html result/HTML/attrents.html.err
8469 result/HTML/attrents.html.sax test/HTML/attrents.html:
8470 added the test and result case provided by Mikhail Sogrine
8471
Daniel Veillarde645e8c2002-10-22 17:35:37 +00008472Tue Oct 22 19:33:20 CEST 2002 Daniel Veillard <daniel@veillard.com>
8473
8474 * vms/build_libxml.com vms/config.vms vms/readme.vms
8475 include/libxml/parser.h include/libxml/parserInternals.h
8476 include/libxml/tree.h include/libxml/xmlIO.h
8477 HTMLparser.c catalog.c debugXML.c parser.c parserInternals.c
8478 tree.c triodef.h trionan.c uri.c xmlIO.c xpath.c:
8479 Applied the VMS update patch from Craig A. Berry
8480 * doc/*.html: update
8481
Daniel Veillardf000f072002-10-22 14:28:17 +00008482Tue Oct 22 16:27:31 CEST 2002 Daniel Veillard <daniel@veillard.com>
8483
8484 * include/libxml/encoding.h encoding.c: made xmlGetUTF8Char public
8485
Daniel Veillard1e208222002-10-22 14:25:25 +00008486Tue Oct 22 16:25:18 CEST 2002 Daniel Veillard <daniel@veillard.com>
8487
8488 * debugXML.c: adding a grep command to --shell in xmllint
8489 for T.V. Raman
8490
Daniel Veillard9cdcf362002-10-22 14:23:59 +00008491Tue Oct 22 16:23:57 CEST 2002 Daniel Veillard <daniel@veillard.com>
8492
8493 * xmlcatalog.c: tried to fix some of the problem with --sgml
8494
Daniel Veillard935494a2002-10-22 14:22:46 +00008495Mon Oct 21 09:57:10 CEST 2002 Daniel Veillard <daniel@veillard.com>
8496
8497 * parser.c: tried to fix bug #91500 where doc->children may
8498 be overriden by a call to xmlParseBalancedChunkMemory()
8499
8500Mon Oct 21 09:04:32 CEST 2002 Daniel Veillard <daniel@veillard.com>
8501
8502 * catalog.c: tried to fix bug #90945 w.r.t. parsing of system
8503 identifiers in SGML catalogs containing '&'
8504
Daniel Veillardc0ac0692002-10-20 21:31:50 +00008505Sun Oct 20 23:31:47 CEST 2002 Daniel Veillard <daniel@veillard.com>
8506
8507 * python/types.c: fixed bugs when passing result value tree
8508 to Python functions.
8509
Daniel Veillard48267432002-10-18 11:21:38 +00008510Fri Oct 18 13:18:53 CEST 2002 Daniel Veillard <daniel@veillard.com>
8511
8512 * configure.in: preparing the release of 2.4.26
8513 * doc/*: updated and rebuilt the documentation
8514
Daniel Veillardbb284f42002-10-16 18:02:47 +00008515Wed Oct 16 20:01:46 CEST 2002 Daniel Veillard <daniel@veillard.com>
8516
8517 * parser.c: fixed a XML Namespace compliance bug reported by
8518 Alexander Grimalovsky
8519
Daniel Veillard44892f72002-10-16 15:23:26 +00008520Wed Oct 16 17:18:42 CEST 2002 Daniel Veillard <daniel@veillard.com>
8521
8522 * HTMLtree.c: fixed serialization of script and style when
8523 they are not lowercase (i.e. added using the API to the tree).
8524
Daniel Veillard2fd85422002-10-16 14:32:41 +00008525Wed Oct 16 16:31:05 CEST 2002 Daniel Veillard <daniel@veillard.com>
8526
8527 * valid.c: make xmlValidateDocument emit a warning msg if there
8528 is no DTD, pointed by Christian Glahn
8529
Daniel Veillard32370232002-10-16 14:08:14 +00008530Wed Oct 16 16:05:38 CEST 2002 Daniel Veillard <daniel@veillard.com>
8531
8532 * xmlregexp.c xmlschemas.c: fixed the validation of sequences
8533 content model when some of the blocks have min or max, and a couple
8534 of bugs found in the process.
8535 * result/schemas/list0* test/schemas/list0*: added some specific
8536 regression tests
8537
Daniel Veillarda2e8c5c2002-10-15 10:41:43 +00008538Tue Oct 15 12:41:01 CEST 2002 Daniel Veillard <daniel@veillard.com>
8539
8540 * README: updated the contact informations
8541
Daniel Veillard63186732002-10-15 08:43:17 +00008542Tue Oct 15 10:35:57 CEST 2002 Daniel Veillard <daniel@veillard.com>
8543
8544 * Makefile.am: use test -f instead of test -e since Solaris /bin/sh
8545 misses it, reported by Peter Bray.
8546
Daniel Veillard96c3a3b2002-10-14 15:39:04 +00008547Mon Oct 14 17:37:32 CEST 2002 Daniel Veillard <daniel@veillard.com>
8548
8549 * tree.c: investigating xmlNodeGetContent() on namespace nodes
8550 and removed a few warnings
8551
Daniel Veillard819d5cb2002-10-14 11:15:18 +00008552Mon Oct 14 13:12:55 CEST 2002 Daniel Veillard <daniel@veillard.com>
8553
8554 * parser.c: Christian Glahn found a small bug in the push parser.
8555 * xmlIO.c include/libxml/xmlIO.h: cleaned up and made xmlCheckFilename
8556 public
8557
Daniel Veillard6045c902002-10-09 21:13:59 +00008558Wed Oct 9 23:11:02 CEST 2002 Daniel Veillard <daniel@veillard.com>
8559
8560 * xmlschemas.c include/libxml/xmlschemas.h: added
8561 xmlSchemaNewMemParserCtxt to parse a schemas from a memory area
8562 * testSchemas.c: added --memory to test the new interface
8563
Daniel Veillardf0070122002-10-09 14:24:17 +00008564Wed Oct 9 16:22:54 CEST 2002 Daniel Veillard <daniel@veillard.com>
8565
8566 * doc/index.py doc/search.php: integrated the XSLT indexing,
8567 a few fixed in the indexer, added a scope selection at the
8568 search level.
8569
Daniel Veillard01992e02002-10-09 10:20:30 +00008570Wed Oct 9 12:18:37 CEST 2002 Daniel Veillard <daniel@veillard.com>
8571
8572 * valid.c: Joe Marcus Clarke reported a segfault on FBsd
8573 this was due to uninitialized parts of the validation context
8574
Daniel Veillard321be0c2002-10-08 21:26:42 +00008575Tue Oct 8 23:24:20 CEST 2002 Daniel Veillard <daniel@veillard.com>
8576
8577 * debugXML.c: applied patch from Mark Vakoc except the API
8578 change, preserved it.
8579 * doc/*: updated the docs to point to the search engine for
8580 information lookup or before bug/help reports.
8581
Daniel Veillard01e87d22002-10-08 16:55:06 +00008582Tue Oct 8 18:53:31 CEST 2002 Daniel Veillard <daniel@veillard.com>
8583
8584 * doc/index.py doc/search.php: added mailing-list archives
8585 indexing and lookup
8586
Daniel Veillard9dc1cf12002-10-08 08:26:11 +00008587Tue Oct 8 10:25:07 CEST 2002 Daniel Veillard <daniel@veillard.com>
8588
8589 * tree.c: patch from Mark Vakoc to fix xmlNodeGetPath()
8590
Daniel Veillard9b006132002-10-07 11:13:27 +00008591Mon Oct 7 13:12:03 CEST 2002 Daniel Veillard <daniel@veillard.com>
8592
8593 * doc/index.py: improved HTML indexing
8594 * doc/search.php: make the queries also lookup the HTML based indexes
8595
Daniel Veillard141d04b2002-10-06 21:51:18 +00008596Sun Oct 6 23:50:29 CEST 2002 Daniel Veillard <daniel@veillard.com>
8597
8598 * doc/index.py: added HTML page indexing
8599
Igor Zlatkovic91a62702002-10-04 13:34:16 +00008600Fri Oct 4 15:33:55 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
8601
Igor Zlatkovicd7f3c332002-10-04 13:38:53 +00008602 * xmlIO.c: extended Windows path normalisation to fix the base
Igor Zlatkovic91a62702002-10-04 13:34:16 +00008603 problem in libxslt.
8604 * catalog.c: fixed list handling in XML_CATALOG_FILES
8605
Daniel Veillardceb09b92002-10-04 11:46:37 +00008606Fri Oct 4 13:43:02 CEST 2002 Daniel Veillard <daniel@veillard.com>
8607
8608 * valid.c: typo/bug found by Christian Glahn
8609
Igor Zlatkovic9d66fa12002-09-29 17:54:36 +00008610Sun Sep 29 19:44:10 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
8611
8612 * xmlIO.c: applied Windows CE patch from Javier.
8613 * win32/wince: new directory, contains support for the PocketPC
8614 with Windows CE from Javier.
8615 * include/win32config.h: reorganised, removed duplicate
8616 definitions and applied WinCE patch from Javier.
8617 * include/wsockcompat.h: new file, now contains WinSock
8618 compatibility macros.
8619 * win32/Makefile.msvc: introduced double-run compilation.
8620
Daniel Veillarde16b5742002-09-26 17:50:03 +00008621Thu Sep 26 19:48:06 CEST 2002 Daniel Veillard <daniel@veillard.com>
8622
8623 * configure.in include/libxml/xmlwin32version.h: preparing release
8624 of 2.4.25
8625 * doc/*: updated and regenerated teh docs and web pages.
8626
Daniel Veillard90d68fb2002-09-26 16:10:21 +00008627Thu Sep 26 17:33:46 CEST 2002 Daniel Veillard <daniel@veillard.com>
8628
8629 * SAX.c valid.c include/libxml/valid.h: fixed bug #92518 validation
8630 error were not covering namespace declarations.
8631 * result/valid/dia.xml test/valid/dia.xml: the test wasn't valid,
8632 it was missing the attribute declaration for the namespace
8633 * result/VC/NS3: the fix now report breakages in that test
8634
Daniel Veillardabe01742002-09-26 12:40:03 +00008635Thu Sep 26 14:39:07 CEST 2002 Daniel Veillard <daniel@veillard.com>
8636
8637 * HTMLtree.c: fixing bug #94241 on HTML boolean attributes
8638
Daniel Veillard2ace1952002-09-26 12:28:02 +00008639Thu Sep 26 14:25:33 CEST 2002 Daniel Veillard <daniel@veillard.com>
8640
8641 * doc/*: added the 3 new modules xmlregexp xmlautomata and xmlunicode
8642 and regenerated the docs and web site
8643
Daniel Veillarddda8f1b2002-09-26 09:47:36 +00008644Thu Sep 26 11:45:42 CEST 2002 Daniel Veillard <daniel@veillard.com>
8645
8646 * xinclude.c xmlschemas.c xmlschemastypes.c xpath.c: make sure
8647 ATTRIBUTE_UNUSED is always put after the attribute declaration,
8648 not before
8649
Daniel Veillardd4cb1e82002-09-26 09:34:23 +00008650Thu Sep 26 11:33:28 CEST 2002 Daniel Veillard <daniel@veillard.com>
8651
8652 * python/generator.py python/libxml2class.txt: fixed a stupid error
8653 breaking the python API
8654
Daniel Veillardb7c29c32002-09-25 22:44:43 +00008655Thu Sep 26 00:31:46 CEST 2002 Daniel Veillard <daniel@veillard.com>
8656
8657 * trio.c trio.h triodef.h trionan.c trionan.h triop.h
8658 triostr.c triostr.h: applied a trio update patch from
8659 Bjorn Reese which should work with MinGW
8660
Daniel Veillardbd9afb52002-09-25 22:25:35 +00008661Thu Sep 26 00:21:18 CEST 2002 Daniel Veillard <daniel@veillard.com>
8662
8663 * tree.c: improving some documentation comments
8664 * xmlregexp.c: found and fixed a mem leak with python regression tests
8665 * doc/*: rebuilt the doc and the API XML file including the
8666 xmlregexp.h xmlautomata.h and xmlunicode.h headers
8667 * python/generator.py python/libxml2class.txt python/libxml_wrap.h
8668 python/types.c: added access to the XML Schemas regexps from
8669 python
8670 * python/tests/Makefile.am python/tests/regexp.py: added a
8671 simple regexp bindings test
8672
MDT 2002 John Fleck30c70542002-09-24 14:24:54 +00008673Tue Sep 24 08:10:48 MDT 2002 John Fleck <jfleck@inkstain.net>
8674
Daniel Veillardbd9afb52002-09-25 22:25:35 +00008675 * doc/xml.html:
8676 fixing ftp links - thanks to Vitaly Ostanin
MDT 2002 John Fleck30c70542002-09-24 14:24:54 +00008677
Daniel Veillard118aed72002-09-24 14:13:13 +00008678Tue Sep 24 16:08:17 CEST 2002 Daniel Veillard <daniel@veillard.com>
8679
8680 * xmlregexp.c: fixed the data callback on transition functionality
8681 which was broken when using the compact form
8682 * result/schemas/*: updated the results, less verbose, all tests
8683 pass like before
8684 * DOCBparser.c testAutomata.c testC14N.c testSchemas.c testThreads.c
8685 testXPath.c valid.c xinclude.c xmllint.c xmlregexp.c xmlschemas.c
8686 xmlschemastypes.c xpath.c python/libxml.c: removed a bunch of
8687 annoying warnings
8688 * xpath.c: try to provide better error report when possible
8689
Daniel Veillard72336152002-09-21 13:08:14 +00008690Sat Sep 21 14:56:37 CEST 2002 Daniel Veillard <daniel@veillard.com>
8691
8692 * Makefile.am: fixed a breakage raised by Jacob
8693
Igor Zlatkovic3f1e94b2002-09-20 18:08:17 +00008694Fri Sep 20 20:08:18 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
8695
8696 * include/win32config.h: added HAVE_ERRNO_H definition for parts
8697 which don't use sockets
8698
Igor Zlatkovic01280582002-09-20 16:40:34 +00008699Fri Sep 20 18:40:50 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
8700
8701 * win32/Makefile.msvc: applied zlib patch from Daniel Gehriger
8702 * win32/configure.js: applied zlib patch from Daniel Gehriger
8703
Igor Zlatkovic9a4efcb2002-09-20 13:41:55 +00008704Fri Sep 20 15:40:14 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
8705
8706 * win32/configure.js: applied the patch from Mark Vakoc for
8707 regexp support
8708 * win32/libxml2.def.src: applied the patch from Mark Vakoc
8709 for regexp support
8710
Daniel Veillardb5c05732002-09-20 13:36:25 +00008711Fri Sep 20 15:35:33 CEST 2002 Daniel Veillard <daniel@veillard.com>
8712
8713 * xmlschemastypes.c: as pointed by Igor Float and Double
8714 parsing ain't finished yet
8715
Daniel Veillard40b11342002-09-20 12:01:39 +00008716Fri Sep 20 14:00:16 CEST 2002 Daniel Veillard <daniel@veillard.com>
8717
8718 * Makefile.am configure.in: trying to fix #88412 by bypassing
8719 all the python subdir if python ain't detected
8720
Daniel Veillard23e73572002-09-19 19:56:43 +00008721Thu Sep 19 21:46:53 CEST 2002 Daniel Veillard <daniel@veillard.com>
8722
8723 * Makefile.am configure.in include/libxml/xmlversion.h.in:
8724 made configuring with regexps/automata/unicode the default
8725 but without schemas ATM
8726 * testRegexp.c valid.c xmlregexp.c include/libxml/xmlregexp.h:
8727 fixed the regexp based DTD validation performance and memory
8728 problem by switching to a compact form for determinist regexps
8729 and detecting the determinism property in the process. Seems
8730 as fast as the old DTD validation specific engine :-) despite
8731 the regexp built and compaction process.
8732
Daniel Veillard5acfd6b2002-09-18 16:29:02 +00008733Wed Sep 18 18:27:26 CEST 2002 Daniel Veillard <daniel@veillard.com>
8734
8735 * valid.c: determinism is debugged, new DTD checking code now works
8736 but xmlFAComputesDeterminism takes far too much CPU and the whole
8737 set usues too much memory to be really usable as-is
8738
Daniel Veillard0f04f8e2002-09-17 23:04:40 +00008739Wed Sep 18 00:54:30 CEST 2002 Daniel Veillard <daniel@veillard.com>
8740
8741 * tree.c: fixed another stupid bug in xmlGetNodePath()
8742 * xmllint.c: --version now report the options compiled in
8743
Daniel Veillarda646cfd2002-09-17 21:50:03 +00008744Tue Sep 17 23:48:07 CEST 2002 Daniel Veillard <daniel@veillard.com>
8745
8746 * HTMLparser.c: small cleanup
8747 * valid.c xmlregexp.c: switched DTD validation to use only regexp
8748 when configured with them. A bit of debugging around the determinism
8749 checks is still needed
8750
Daniel Veillard63b01c22002-09-17 19:25:28 +00008751Tue Sep 17 21:22:25 CEST 2002 Daniel Veillard <daniel@veillard.com>
8752
8753 * python/libxml_wrap.h: stupid bug found by mattam@netcourrier.com
8754
Daniel Veillard92727042002-09-17 17:59:20 +00008755Tue Sep 17 19:58:26 CEST 2002 Daniel Veillard <daniel@veillard.com>
8756
8757 * xmlIO.c: small portability glitch fixed.
8758
Daniel Veillard84d70a42002-09-16 10:51:38 +00008759Mon Sep 17 12:38:08 CEST 2002 Daniel Veillard <daniel@veillard.com>
8760
8761 * xmlschemastypes.c: incomplete steps for real/double support
8762 * testAutomata.c include/libxml/xmlautomata.h
8763 include/libxml/xmlregexp.h: avoiding a compilation problem
8764 * valid.c include/libxml/valid.h: starting the work toward using
8765 the regexps for actual DTD validation
8766
Daniel Veillardaeb258a2002-09-13 14:48:12 +00008767Fri Sep 13 16:46:14 CEST 2002 Daniel Veillard <daniel@veillard.com>
8768
8769 * hash.c: cosmetic cleanup
8770 * valid.c include/libxml/tree.h include/libxml/valid.h: started
8771 integrating a DTD validation layer based on the regexps
8772
Daniel Veillard4402ab42002-09-12 16:02:56 +00008773Thu Sep 12 18:01:29 CEST 2002 Daniel Veillard <daniel@veillard.com>
8774
8775 * xmlregexp.c xmlschemas.c: fixed a bug reported by Jeff Goff,
8776 the determinism was tested before eliminating the epsilon
8777 transitions :-(
8778
Daniel Veillardc6d4a932002-09-12 15:00:57 +00008779Thu Sep 12 16:57:45 CEST 2002 Daniel Veillard <daniel@veillard.com>
8780
8781 * python/generator.py python/libxml.c python/libxml.py
8782 python/libxml2-python-api.xml python/libxml2class.txt
8783 python/libxml_wrap.h python/types.c: updated the python
8784 bindings, added code for easier File I/O, and the ability to
8785 define a resolver from Python fixing bug #91635
8786 * python/tests/Makefile.am python/tests/inbuf.py
8787 python/tests/outbuf.py python/tests/pushSAXhtml.py
8788 python/tests/resolver.py python/tests/serialize.py: updated
8789 and augmented the set of Python tests.
8790
Igor Zlatkovic353bf582002-09-10 19:07:14 +00008791Tue Sep 10 21:05:28 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
8792
8793 * win32/configure.js: added more readme info for the binary
8794 package.
8795
Daniel Veillard607b35c2002-09-10 12:16:19 +00008796Tue Sep 10 14:15:18 CEST 2002 Daniel Veillard <daniel@veillard.com>
8797
8798 * xmlIO.c: fixed a stupid out of bound array error
8799
8800Tue Sep 10 13:09:14 CEST 2002 Daniel Veillard <daniel@veillard.com>
8801
8802 * include/libxml/xmlIO.h xmlIO.c parser.c HTMLparser.c DOCBparser.c:
8803 messing around with support for Windows path, cleanups,
8804 trying to identify and fix the various code path to the
8805 filename access. Added xmlNormalizeWindowsPath()
8806
Daniel Veillard76575762002-09-05 14:21:15 +00008807Thu Sep 5 16:19:18 CEST 2002 Daniel Veillard <daniel@veillard.com>
8808
8809 * error.c valid.c: working on better error reporting of validity
8810 errors, especially providing an accurate context.
8811 * result/valid/xlink.xml.err result/valid/rss.xml.err: better
8812 error reports in those cases.
8813
Daniel Veillard3487c8d2002-09-05 11:33:25 +00008814Thu Sep 5 13:29:47 CEST 2002 Daniel Veillard <daniel@veillard.com>
8815
8816 * DOCBparser.c HTMLparser.c c14n.c entities.c list.c
8817 parser.c parserInternals.c xmlIO.c: get rid of all the
8818 perror() calls made in the library execution paths. This
8819 should fix both #92059 and #92385
8820
Daniel Veillard19aa7022002-09-05 11:14:19 +00008821Thu Sep 5 13:13:17 CEST 2002 Daniel Veillard <daniel@veillard.com>
8822
8823 * xmllint.c: memory leak reporting was broken after a change
8824 of the preprocessor symbol used to activate it.
8825
Daniel Veillardec6725e2002-09-05 11:12:45 +00008826Thu Sep 5 13:10:57 CEST 2002 Daniel Veillard <daniel@veillard.com>
8827
8828 * tree.c: try to make the copy function work for node of
8829 type XML_DOCUMENT_FRAG_NODE, they are only created by the
8830 DOM layers though, not libxml2 itself.
8831
Daniel Veillardb9cd8b42002-09-05 10:58:49 +00008832Thu Sep 5 12:57:38 CEST 2002 Daniel Veillard <daniel@veillard.com>
8833
8834 * valid.c: try to provide file and line informations, not all
8835 messages are covered, but it's a (good) start
8836
Daniel Veillardbbc72c32002-09-05 10:52:10 +00008837Thu Sep 5 12:49:35 CEST 2002 Daniel Veillard <daniel@veillard.com>
8838
8839 * xinclude.c: reimplemented a large part of the XInclude
8840 processor, trying to minimize resources used, James Henstridge
8841 provided a huge test case which was exhibiting severe memory
8842 consumption problems.
8843
Daniel Veillard2206dbf2002-09-05 08:09:37 +00008844Thu Sep 5 10:07:13 CEST 2002 Daniel Veillard <daniel@veillard.com>
8845
8846 * python/Makefile.am: applied patch from Christophe Merlet to
8847 reestablish DESTDIR
8848
Daniel Veillard5643b5a2002-09-04 12:27:06 +00008849Wed Sep 4 14:13:34 CEST 2002 Daniel Veillard <daniel@veillard.com>
8850
8851 * libxml.spec.in: fixes libary path for x86_64 AMD
8852
John Fleckbe98b332002-09-04 03:16:23 +00008853Tue Sep 3 21:14:19 MDT 2002 John Fleck <jfleck@inkstain.net>
8854
8855 * doc/tutorial/includekeyword.c
Daniel Veillard5643b5a2002-09-04 12:27:06 +00008856 * doc/tutorial/xmltutorial.xml:
John Fleckbe98b332002-09-04 03:16:23 +00008857 (plus resulting generated html files)
8858 fixing one spot I missed in the tutorial where I hadn't freed
8859 memory properly
8860
MDT 2002 John Fleck77e4d352002-09-01 01:37:11 +00008861Sat Aug 31 19:31:17 MDT 2002 John Fleck <jfleck@inkstain.net>
8862
8863 * doc/tutorial/includeaddattribute.c
8864 * doc/tutorial/includeaddkeyword.c
8865 * doc/tutorial/includegetattribute.c
8866 * doc/tutorial/includekeyword.c
8867 * doc/tutorial/xmltutorial.xml
Daniel Veillard5643b5a2002-09-04 12:27:06 +00008868 * doc/tutorial/*.html:
MDT 2002 John Fleck77e4d352002-09-01 01:37:11 +00008869 update tutorial to properly free memory (thanks to Christopher
8870 R. Harris for pointing out that this needs to be done)
Daniel Veillard5643b5a2002-09-04 12:27:06 +00008871 * doc/tutorial/images/callouts/*.png:
MDT 2002 John Fleck77e4d352002-09-01 01:37:11 +00008872 added image files so the callouts are graphical, making it
8873 easier to read ( use "--param callout.graphics 1" to generate
8874 html with graphical callouts)
8875
Daniel Veillarde1662542002-08-28 11:50:59 +00008876Wed Aug 28 13:44:54 CEST 2002 Daniel Veillard <daniel@veillard.com>
8877
8878 * doc/Libxml2-Logo-180x168.gif doc/Libxml2-Logo-90x34.gif:
8879 nice logos generated by Marc Liyanage
8880 * doc/site.xsl *.html: changed the stylesheet to show the new
8881 logo and regenerated the pages
8882
Daniel Veillardb212bbb2002-08-25 14:39:16 +00008883Sun Aug 25 16:38:05 CEST 2002 Daniel Veillard <daniel@veillard.com>
8884
8885 * xmlIO.c: handle Windows sepecific file://localhost/ semantic ...
8886
Daniel Veillard42766c02002-08-22 20:52:17 +00008887Thu Aug 22 22:03:19 CEST 2002 Daniel Veillard <daniel@veillard.com>
8888
8889 * xpath.c: possible mem leak patch from Jason Adams
8890
8891Thu Aug 22 17:27:30 CEST 2002 Daniel Veillard <daniel@veillard.com>
8892
8893 * xpath.c: integrated xf:escape-uri() from Wesley Terpstra
8894 in the XQuery namespace
8895 * configure.in: preparing 2.4.24
8896 * doc/*.html: updated the web pages
8897
8898Thu Aug 22 16:19:42 CEST 2002 Daniel Veillard <daniel@veillard.com>
8899
8900 * python/generator.py: closing bug #85258 by generating conditional
8901 compile check to avoid linking to routines not configured in.
8902
Havoc Pennington84ec40a2002-08-22 13:59:35 +000089032002-08-22 Havoc Pennington <hp@pobox.com>
8904
8905 * autogen.sh: update error message for missing automake
8906
Daniel Veillard08cccaa2002-08-22 09:47:29 +00008907Thu Aug 22 11:45:50 CEST 2002 Daniel Veillard <daniel@veillard.com>
8908
8909 * python/Makefile.am: typo in target name resulted in libxml2.py
8910 to not be rebuilt. fixed DESTDIR similary to the libxslt one.
8911
Daniel Veillard22669b22002-08-22 07:17:11 +00008912Thu Aug 22 09:15:00 CEST 2002 Daniel Veillard <daniel@veillard.com>
8913
8914 * win32/win32/Makefile.mingw: updated with version from
8915 Elizabeth Barham at http://soggytrousers.net/repository/
8916
Igor Zlatkovica40adbc2002-08-20 14:42:32 +00008917Tue Aug 20 16:40:48 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
8918
8919 * win32/Makefile.msvc: added the prefix location to the include
8920 and lib search path.
8921
Havoc Pennington830e8972002-08-18 22:22:13 +000089222002-08-18 Havoc Pennington <hp@pobox.com>
8923
8924 * autogen.sh: hardcode aclocal-1.4/automake-1.4 so that users with
8925 both automake 1.6 and 1.4 installed get the right automake. Means
8926 compilation from CVS will now require the latest automake 1.4
8927 release, or manually creating symlinks called "automake-1.4" and
8928 "aclocal-1.4"
8929
Daniel Veillardb6984ef2002-08-14 16:55:31 +00008930Wed Aug 14 18:54:19 CEST 2002 Daniel Veillard <daniel@veillard.com>
8931
8932 * configure.in python/Makefile.am: more AMD 64 induced changes from
8933 Frederic Crozat
8934
Daniel Veillardc4bad4a2002-08-14 14:45:25 +00008935Wed Aug 14 16:43:53 CEST 2002 Daniel Veillard <daniel@veillard.com>
8936
8937 * xinclude.c: oops I was missing the xml:base fixup too
8938 * result/XInclude/*.xml: this adds xml:base attributes to most
8939 results of the tests
8940
Daniel Veillarde3b7d9a2002-08-14 14:11:30 +00008941Wed Aug 14 16:05:37 CEST 2002 Daniel Veillard <daniel@veillard.com>
8942
8943 * xinclude.c: quick but apparently working implementation of
8944 xi:fallback, should close bug #89684
8945 * Makefile.am test/XInclude/docs/fallback.xml
8946 result/XInclude/fallback.xml: added a basic test for fallback,
8947 and run with --nowarning to avoid a spurious warning
8948 * configure.in: applied patch from Frederic Crozat for python
8949 bindings on AMD 64bits machines.
8950
Daniel Veillard9e923512002-08-14 08:48:52 +00008951Wed Aug 14 10:47:46 CEST 2002 Daniel Veillard <daniel@veillard.com>
8952
8953 * parser.c: xmlSAXUserParseMemory() really ought to fail if
8954 the caller don't pass a SAX callback block.
8955
Daniel Veillardc1a0da32002-08-14 08:32:18 +00008956Wed Aug 14 10:29:02 CEST 2002 Daniel Veillard <daniel@veillard.com>
8957
8958 * tree.c: applied the same fix for the XML-1.0 namespace to
8959 xmlSearchNsByHref() as was done for xmlSearchNs()
8960
Daniel Veillardad11b302002-08-12 14:53:41 +00008961Mon Aug 12 16:52:08 CEST 2002 Daniel Veillard <daniel@veillard.com>
8962
8963 * libxml.3: small cleanup of the man page
8964 * HTMLtree.c: fixed a potential problem raised by Petr Vandrovec
8965 when serializing HREF attributes generated by XSLT.
8966
Daniel Veillardc084e472002-08-12 13:27:28 +00008967Mon Aug 12 15:24:05 CEST 2002 Daniel Veillard <daniel@veillard.com>
8968
8969 * HTMLtree.c include/libxml/HTMLtree.h: integrated a cleaned up
8970 version of Marc Liyanage' patch for boolean attributes in HTML
8971 output
8972
Daniel Veillard5f91b372002-08-12 12:13:01 +00008973Mon Aug 12 14:11:59 CEST 2002 Daniel Veillard <daniel@veillard.com>
8974
8975 * python/tests/serialize.py: fixed the test results, indenting
8976 behaviour changed slightly
8977
Aleksey Sanin9e951762002-08-08 18:02:41 +00008978Thu Aug 8 11:00:26 2002 Aleksey Sanin <aleksey@aleksey.com>
8979
8980 * win32/dsp/libxml2.def.src win32/libxml2.def.src: added
8981 new c14n function to Windows def files
8982
Aleksey Saninea4272a2002-08-02 23:50:03 +00008983Fri Aug 2 16:46:46 2002 Aleksey Sanin <aleksey@aleksey.com>
8984
8985 * c14n.c: fixed a memory leak in c14n code
8986
Daniel Veillard58e44c92002-08-02 22:19:49 +00008987Sat Aug 3 00:15:06 CEST 2002 Daniel Veillard <daniel@veillard.com>
8988
8989 * parser.c include/libxml/parser.h: adding a new API for Christian
8990 Glahn: xmlParseBalancedChunkMemoryRecover
8991 * valid.c: patch from Rick Jones for some grammar cleanup in
8992 validation messages
8993 * result/VC/* result/valid/*: this slightly change some of the
8994 regression tests outputs
8995
Daniel Veillard0bf29002002-08-01 12:54:11 +00008996Thu Aug 1 14:50:28 CEST 2002 Daniel Veillard <daniel@veillard.com>
8997
8998 * tree.c: trying to fix a problem in namespaced attribute handling
8999 raised by Christian Glahn
9000
Daniel Veillard6f46f6c2002-08-01 12:22:24 +00009001Thu Aug 1 12:17:30 CEST 2002 Daniel Veillard <daniel@veillard.com>
9002
9003 * encoding.c include/libxml/encoding.h: Opening the interface
9004 xmlNewCharEncodingHandler as requested in #89415
9005 * python/generator.py python/setup.py.in: applied cleanup
9006 patches from Marc-Andre Lemburg
9007 * tree.c: fixing bug #89332 on a specific case of loosing
9008 the XML-1.0 namespace on xml:xxx attributes
9009
Aleksey Sanin2c135a12002-08-01 06:31:50 +00009010Wed Jul 31 23:27:42 2002 Aleksey Sanin <aleksey@aleksey.com>
9011
9012 * c14n.c include/libxml/c14n.h: fixed one more c14n + namespaces
9013 corner case from new Merlin's test suite and added a callback
9014 that will be used to improve xmlsec performance
9015
9016
Daniel Veillard0b22def2002-07-29 16:23:03 +00009017Mon Jul 29 18:22:00 CEST 2002 Daniel Veillard <daniel@veillard.com>
9018
9019 * HTMLtree.c: trying to fix the <style> escaping problem in
9020 HTML serialization bug #89342
9021
Daniel Veillard0b28e882002-07-24 23:47:05 +00009022Thu Jul 25 01:33:47 CEST 2002 Daniel Veillard <daniel@veillard.com>
9023
9024 * doc/xml.html doc/*.html: applied syntax patch from Rick Jones
9025 and rebuilt the web site.
9026
PDT 2002 Aleksey Sanin8e8a7032002-07-22 18:03:11 +00009027Mon Jul 22 11:04:48 PDT 2002 Aleksey Sanin <aleksey@aleksey.com>
Daniel Veillard0b28e882002-07-24 23:47:05 +00009028
PDT 2002 Aleksey Sanin8e8a7032002-07-22 18:03:11 +00009029 * include/libxml/tree.h: added _private member to xmlNs struct
9030
Daniel Veillard1d995272002-07-22 16:43:32 +00009031Sun Jul 21 17:48:47 CEST 2002 Daniel Veillard <daniel@veillard.com>
9032
9033 * HTMLparser.c: fixing bug #84876 based on the xml working
9034 code.
9035
William M. Brack61eaba52002-07-21 11:14:18 +00009036Sun Jul 21 19:15:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
9037
9038 * python/Makefile.am: enhanced to fix bug 72012 (errors
9039 when using '-jX' make parameter)
9040
William M. Brackef61d202002-07-19 08:32:00 +00009041Fri Jul 19 16:35:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
9042
9043 * xpath.c: small additional enhancement for booleans
9044 compared to nodesets
9045
Daniel Veillard3a42f3f2002-07-17 17:57:34 +00009046Wed Jul 17 19:48:14 CEST 2002 Daniel Veillard <daniel@veillard.com>
9047
9048 * HTMLtree.c: changed the order of the encoding declaration
9049 attributes in the meta tags due to a bug in IE/Mac
9050
William M. Brack0c022ad2002-07-12 00:56:01 +00009051Fri Jul 12 08:45:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
9052
9053 * xpath.c: enhanced handling of booleans (especially '='
9054 and '!=' for nodesets) - fixes bug 85256. Added new
9055 routine xmlXPathNotEqualValues for more proper handling
9056 of '!=' when nodesets are involved.
9057
Daniel Veillard06944e22002-07-11 19:55:18 +00009058Thu Jul 11 21:45:52 CEST 2002 Daniel Veillard <daniel@veillard.com>
9059
9060 * doc/Makefile.am: fixing Red Hat bug #68614 by adding the
9061 doc/xmlcatalog_man.xml to the source distribution
9062
Igor Zlatkovic6ac30172002-07-10 19:22:48 +00009063Wed Jul 10 21:26:13 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
9064
9065 * win32/Makefile.msvc: Added a copy *.pdb to install, few have
9066 asked for this.
9067
Daniel Veillard539638b2002-07-06 19:55:14 +00009068Sat Jul 6 21:55:59 CEST 2002 Daniel Veillard <daniel@veillard.com>
9069
9070 * configure.in: preparing 2.4.23
9071 * doc/*: rebuilt the docs
9072
Daniel Veillard176d99f2002-07-06 19:22:28 +00009073Sat Jul 6 21:11:20 CEST 2002 Daniel Veillard <daniel@veillard.com>
9074
9075 * parser.c: fixing bug #84169 by fixing the
9076 comment of xmlCreatePushParserCtxt to describe the
9077 encoding detection parameters better.
9078
Daniel Veillard37f961d2002-07-06 17:53:56 +00009079Sat Jul 6 19:44:56 CEST 2002 Daniel Veillard <daniel@veillard.com>
9080
9081 * valid.c: fixing bug #79331 in one path the lookup for
9082 ID attributes on a namespaced node wasn't handled correctly :-\
9083
Daniel Veillard8c9872c2002-07-05 18:17:10 +00009084Fri Jul 5 20:07:43 CEST 2002 Daniel Veillard <daniel@veillard.com>
9085
9086 * HTMLparser.c: trying to fix 87235 about discarded white
9087 spaces in the HTML parser.
9088 * result/HTML/*: this changes the output of a number of HTML
9089 regression tests
9090
Daniel Veillardfdc91562002-07-01 21:52:03 +00009091Mon Jul 1 23:23:41 CEST 2002 Daniel Veillard <daniel@veillard.com>
9092
9093 * xpath.c: applied patch from Richard Jinks for the namespace
9094 axis + fixed a memory error.
9095 * parser.c parserInternals.c: applied patches from Peter Jacobi
9096 removing ctxt->token for good.
9097 * xmlschemas.c xmlschemastypes.c: fixed a few memory leaks
9098 popped out by the regression tests.
9099 * Makefile.am: patch for threads makefile from Gary Pennington
9100
William M. Brack6000af52002-06-28 11:43:13 +00009101Fri Jun 28 19:38:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
9102
Daniel Veillardfdc91562002-07-01 21:52:03 +00009103 * xpath.c: enhanced behaviour of position() after usage of
William M. Brack6000af52002-06-28 11:43:13 +00009104 expressions involving preceding-sibling (et al).
9105
Daniel Veillard153120c2002-06-18 07:58:35 +00009106Tue Jun 18 09:58:48 CEST 2002 Daniel Veillard <daniel@veillard.com>
9107
9108 * hash.c: applied a patch from Peter Jacobi to solve a problem
9109 when compiling with the Watcom C on Win32
9110 * result/schemas/*.err: the change of hashing algo generated
9111 permutations in the output
9112
Daniel Veillard5f7f9912002-06-17 17:03:00 +00009113Mon Jun 17 19:02:49 CEST 2002 Daniel Veillard <daniel@veillard.com>
9114
9115 * hash.c: applied patch from Sander Vesik improving the quality of
9116 the hash function.
9117
Aleksey Sanina5808b92002-06-14 17:07:41 +000091182002-06-14 Aleksey Sanin <aleksey@aleksey.com>
Aleksey Sanin49cc9752002-06-14 17:07:10 +00009119
9120 * DOCBparser.c HTMLparser.c debugXML.c encoding.c
9121 nanoftp.c nanohttp.c parser.c tree.c uri.c xmlIO.c
9122 xmllint.c xpath.c: replaced sprintf() with snprintf()
9123 to prevent possible buffer overflow (the bug was pointed
9124 out by Anju Premachandran)
9125
Daniel Veillarde059b892002-06-13 15:32:10 +00009126Thu Jun 13 17:30:25 CEST 2002 Daniel Veillard <daniel@veillard.com>
9127
9128 * parser.c: removed an uninitialized data error popped by valgrind
9129 on PE references
9130
MDT 2002 John Fleckd7ca7f92002-06-13 03:41:03 +00009131Wed Jun 12 21:38:46 MDT 2002 John Fleck <jfleck@inkstain.net>
9132
9133 * doc/xml.html
9134 adding tutorial reference to the web page
9135
MDT 2002 John Fleck54520832002-06-13 03:30:26 +00009136Wed Jun 12 21:26:08 MDT 2002 John Fleck <jfleck@inkstain.net>
9137
9138 * doc/tutorial/xmltutorial.xml
9139 * doc/tutorial/ar01s07.html
9140 * doc/tutorial/ape.html
9141 * doc/tutorial/includegetattribute.c
9142 adding section to tutorial about retrieving an attribute
9143 value
9144
Daniel Veillardf5582f12002-06-11 10:08:16 +00009145Tue Jun 11 12:07:04 CEST 2002 Daniel Veillard <daniel@veillard.com>
9146
9147 * parser.c: applied a couple of patches from Peter Jacobi to start
9148 to get rid of ctxt->token, with a possible significant speed
9149 improvement to be gained once done. Better compliance with PE
9150 references constructs in DTDs too.
9151 * test/valid/t[0-9]* result/valid/t[0-9]*: added a set of tests
9152 from Peter too
9153
Daniel Veillard38d80e22002-06-11 07:24:56 +00009154Tue Jun 11 09:25:12 CEST 2002 Daniel Veillard <daniel@veillard.com>
9155
9156 * parser.c: Babak Vahedipour-Kunze reported that openTag in
9157 xmlParseElement was likely to have been deallocated at the
9158 time of the report, possibly leading to segfault. Just report
9159 the tag name now.
9160
Daniel Veillard9e412302002-06-10 15:59:44 +00009161Mon Jun 10 18:00:02 CEST 2002 Daniel Veillard <daniel@veillard.com>
9162
9163 * xpath.c: patch from Richard Jinks for XPath substring() function
9164 * result/XPath/expr/strings test/XPath/expr/strings: new set of tests
9165
Aleksey Sanina5808b92002-06-14 17:07:41 +000091662002-06-06 Aleksey Sanin <aleksey@aleksey.com>
Aleksey Sanin9c45ba82002-06-06 21:46:13 +00009167
9168 * xmlIO.c: patch from Rachel Hestilow to fix bug #84340
9169
MDT 2002 John Flecka63f3ff2002-06-06 02:14:01 +00009170Wed Jun 5 19:14:49 MDT 2002 John Fleck <jfleck@inkstain.net>
9171
9172 *doc/FAQ.html
9173 fixing typos in FAQ, thanks to Robert Funnell for the
9174 editing help
9175
Daniel Veillardd2fd1b62002-06-05 12:52:34 +00009176Wed Jun 5 14:50:24 CEST 2002 Daniel Veillard <daniel@veillard.com>
9177
9178 * NEWS: got complaints from rpmlint that it was empty
9179
MDT 2002 John Fleck598f6eb2002-06-04 15:10:36 +00009180Tue Jun 4 09:09:18 MDT 2002 John Fleck <jfleck@inkstain.net>
9181
9182 * added doc/tutorial, including:
9183 apa.html
9184 apb.html
9185 apc.html
9186 apd.html
9187 ar01s02.html
9188 ar01s03.html
9189 ar01s04.html
9190 ar01s05.html
9191 ar01s06.html
9192 includeaddattribute.c
9193 includeaddkeyword.c
9194 includekeyword.c
9195 includestory.xml
9196 index.html
9197 xmltutorial.xml
9198 libxml tutorial, including generated html
9199
Aleksey Saninf8cb6dd2002-06-04 04:27:06 +00009200Mon Jun 3 21:21:26 2002 Aleksey Sanin <aleksey@aleksey.com>
9201
9202 * result/c14n/exc-without-comments/merlin-c14n-two-*
9203 result/c14n/without-comments/merlin-c14n-two-*
9204 test/c14n/exc-without-comments/merlin-c14n-two-*
9205 test/c14n/without-comments/merlin-c14n-two-*
9206 testC14N.c Makefile.am: added merlin-c14n-two.tar.gz tests for
9207 c14n/exc-c14n and slightly modified test script to handle
9208 these test cases
9209 * c14n.c: fixed bugs for complicated nodes set (namespace
9210 without node and others from merlin-c14n-two.tar.gz)
9211 * include/libxml/xpathInternals.h win32/dsp/libxml2.def.src
9212 win32/libxml2.def.src: "opened" xmlXPathNodeSetFreeNs() function
9213 for xmlsec performance patch
9214 * xpath.c: fixed self::node() for namespaces and attributes
9215
Daniel Veillardd2fd1b62002-06-05 12:52:34 +00009216Mon Jun 03 00:04:21 2002 Chema Celorio <chema@ximian.com>
9217
9218 * tree.h: added xmlDocFormatDump which is just as xmlDocDump
9219 but with the format parameter
9220 * tree.c: made xmlDocDump a wrapper arround xmlDocFormatDump
9221
Aleksey Saninc57f9c12002-05-31 19:14:57 +00009222Fri May 31 12:16:48 2002 Aleksey Sanin <aleksey@aleksey.com>
9223
9224 * Makefile.am: updated c14n tests suite
9225 * c14n.c: performance improvement for previous c14n patch
9226
Daniel Veillarde72c7562002-05-31 09:47:30 +00009227Fri May 31 11:47:12 CEST 2002 Daniel Veillard <daniel@veillard.com>
9228
9229 * parser.c: another peroformance patch from Peter Jacobi, that
9230 time on parsing attribute values.
9231
Aleksey Sanin508a1012002-05-31 06:32:32 +00009232Thu May 30 23:34:27 2002 Aleksey Sanin <aleksey@aleksey.com>
9233
9234 * Makefile.am result/c14n/* test/c14n/*: C14N tests integrated
9235 into LibXML2 test suite
9236
Aleksey Sanindffd5c82002-05-31 04:24:13 +00009237Thu May 30 21:23:06 2002 Aleksey Sanin <aleksey@aleksey.com>
9238
9239 * c14n.c: propagating xpath ancesstors node fix to c14n
9240 plus small performance improvement to reduce number of
9241 mallocs
9242 * xpath.c: fixed ancestors axis processing for namespace nodes
9243
Daniel Veillard46de64e2002-05-29 08:21:33 +00009244Wed May 29 10:21:39 CEST 2002 Daniel Veillard <daniel@veillard.com>
9245
9246 * SAX.c parser.c tree.c include/libxml/tree.h: performance patch from
9247 Peter Jacobi
9248
Daniel Veillardd5e22ef2002-05-27 21:17:57 +00009249Mon May 27 23:18:33 CEST 2002 Daniel Veillard <daniel@veillard.com>
9250
9251 * configure.in: preparing 2.4.22
9252
Daniel Veillard1b31e4a2002-05-27 14:44:50 +00009253Mon May 27 16:44:04 CEST 2002 Daniel Veillard <daniel@veillard.com>
9254
9255 * HTMLparser.c win32/libxml2.def.src win32/dsp/libxml2.def.src
9256 include/libxml/HTMLparser.h: fixing #79334 making htmlParseDocument
9257 a public entry point.
9258 * doc/*: rebuilt the API and docs
9259
Daniel Veillarded23b7d2002-05-27 12:16:02 +00009260Mon May 27 14:16:28 CEST 2002 Daniel Veillard <daniel@veillard.com>
9261
9262 * xpath.c: patch from Richard Jinks to fix a problem introduced
9263 in the previous patch and pointed by Norm
9264
Daniel Veillardc6924812002-05-24 11:10:43 +00009265Fri May 24 13:10:22 CEST 2002 Daniel Veillard <daniel@veillard.com>
9266
9267 * libxml.spec.in: fixing bug #81112
9268
Daniel Veillard234bc4e2002-05-24 11:03:05 +00009269Fri May 24 13:03:24 CEST 2002 Daniel Veillard <daniel@veillard.com>
9270
9271 * uri.c: fixing bug #82848
9272
Daniel Veillarda2878972002-05-24 07:54:39 +00009273Fri May 24 09:54:49 CEST 2002 Daniel Veillard <daniel@veillard.com>
9274
9275 * result/catalogs/mycatalog.full: Aleksey's commit changed the
9276 output of one catalog test
9277
Aleksey Sanin114e4752002-05-24 07:20:27 +00009278Fri 24 May 2002 12:17:45 AM PDT Aleksey Sanin <aleksey@aleksey.com>
Daniel Veillarda2878972002-05-24 07:54:39 +00009279
Aleksey Sanin114e4752002-05-24 07:20:27 +00009280 * global.data globals.c tree.c include/libxml/globals.h
9281 win32/libxml2.def.src win32/dsp/libxml2.def.src: changed
9282 default value for global parameter xmlIndentTreeOutput to 1 and
9283 introduced new global parameter xmlTreeIndentString (the string
9284 used to do one-level indent) with default value " " (as it was
9285 in tree.c)
9286
Daniel Veillard49d5af82002-05-23 11:55:49 +00009287Thu May 23 13:55:57 CEST 2002 Daniel Veillard <daniel@veillard.com>
9288
9289 * Makefile.am: Merijn Broeren pointed out a problem when compiling
9290 with trio and schemas.
9291
Daniel Veillard7c13af42002-05-22 09:57:32 +00009292Wed May 22 11:57:49 CEST 2002 Daniel Veillard <daniel@veillard.com>
9293
9294 * xpath.c: patch from Richard Jinks to fix the problem raised in
9295 http://mail.gnome.org/archives/xml/2002-April/msg00246.htm
9296
Daniel Veillard5a872412002-05-22 06:40:27 +00009297Wed May 22 08:38:19 CEST 2002 Daniel Veillard <daniel@veillard.com>
9298
9299 * xmlschemas.c: a bit of work on import.
9300 * xmlschemastypes.c: Charles Bozeman provided a compare function
9301 for date/time types so min/max facet restrictions should work,
9302 indeterminate comparisons return an error instead of equal.
9303 * test/schemas/date_0* result/schemas/date_0_0: specific test
9304 from Charles Bozeman too
9305
Daniel Veillard10b6da42002-05-18 07:55:20 +00009306Sat May 18 09:54:12 CEST 2002 Daniel Veillard <daniel@veillard.com>
9307
9308 * libxml.3 doc/buildDocBookCatalog: apply a couple of patches
9309 from Christian Cornelssen fixing the man pages and the Catalog
9310 building script.
9311 * xmlschemas.c include/libxml/schemasInternals.h: nothing new yet
9312 next step is <xs:import> I now have a reasonable understanding
9313 of how it works.
9314
Daniel Veillarde5354492002-05-16 08:43:22 +00009315Thu May 16 10:43:26 CEST 2002 Daniel Veillard <daniel@veillard.com>
9316
9317 * xmlIO.c: applied a small buffer performance patch from Gary Pennington
9318
Igor Zlatkovic1396e182002-05-14 22:22:40 +00009319Wed May 15 00:25:34 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
9320
9321 * win32/libxml2.def.src: exported xmlXPathNodeSetAddNs()
9322
Daniel Veillard088bf112002-05-14 11:03:59 +00009323Tue May 14 13:00:48 CEST 2002 Daniel Veillard <daniel@veillard.com>
9324
9325 * xpath.c: fixing an XPath function evalutation bug pointed out
9326 by Alexey Efimov where the context was lost when evaluating
9327 the function arguments
9328
Aleksey Sanin79376ba2002-05-14 06:41:32 +00009329Mon 13 May 2002 11:37:39 PM PDT Aleksey Sanin <aleksey@aleksey.com>
Daniel Veillard088bf112002-05-14 11:03:59 +00009330
Aleksey Sanin79376ba2002-05-14 06:41:32 +00009331 * xpath.c include/libxml/xpathInternals.h: maked xmlXPathNodeSetAddNs()
9332 function public for XMLSec performance optimizations
9333
Daniel Veillard3cd72402002-05-13 10:33:30 +00009334Mon May 13 12:32:22 CEST 2002 Daniel Veillard <daniel@veillard.com>
9335
9336 * python/generator.py python/libxml2class.txt : fixed a problem
9337 with the HTML parser pointed by Gary Benson
9338 * python/tests/Makefile.am python/tests/pushSAXhtml.py: sdding the
9339 example
9340
Aleksey Sanine48a3182002-05-09 18:20:01 +00009341Thu 09 May 2002 11:19:00 AM PDT Aleksey Sanin <aleksey@aleksey.com>
9342 * parser.c: fixed bug #81159 (memory growth in SAX)
9343
Aleksey Sanin50fe8b12002-05-07 16:21:36 +00009344Tue 07 May 2002 09:20:21 AM PDT Aleksey Sanin <aleksey@aleksey.com>
9345 * xpath.c: fixed bug #78858 (the real fix)
9346
Aleksey Sanin29b6f762002-05-05 06:59:57 +00009347Sat 04 May 2002 11:56:31 PM PDT Aleksey Sanin <aleksey@aleksey.com>
Aleksey Sanin50fe8b12002-05-07 16:21:36 +00009348 * xpath.c: fixed bug #78858 (quick and durty fix to hide the problem)
Aleksey Sanin29b6f762002-05-05 06:59:57 +00009349
Daniel Veillard4cbe4702002-05-05 06:57:27 +00009350Sun May 5 08:57:08 CEST 2002 Daniel Veillard <daniel@veillard.com>
9351
9352 * tree.c: modified xmlNodeSetBase to allow changing the
9353 base of a document.
9354
Daniel Veillard070803b2002-05-03 07:29:38 +00009355Fri May 3 09:20:41 CEST 2002 Daniel Veillard <daniel@veillard.com>
9356
9357 * xmlschemastypes.c: patch Charles Bozeman for validation of
9358 all the date, time, and duration types
9359 * test/schemas/dur_0* result/schemas/dur_0*: associated tests
9360 * configure.in: fixed an error pointed by an user
9361 * xml2-config.in: fixed an error pointed by an user
9362
Aleksey Sanin5aac8b82002-05-01 18:32:28 +00009363Wed 01 May 2002 11:29:27 AM PDT Aleksey Sanin <aleksey@aleksey.com>
9364
9365 * include/libxml/xmlIO.h win32/dsp/libxml2.def.src
9366 win32/libxml2.def.src xmlIO.c: exported default
9367 'file:', 'http:' and 'ftp:' protocols input handlers
9368 and maked protocols comparisson case insensitive
9369
Daniel Veillard34de97f2002-04-30 14:29:22 +00009370Tue Apr 30 16:29:05 CEST 2002 Daniel Veillard <daniel@veillard.com>
9371
9372 * configure.in: Neven Has detected a typo
9373
Daniel Veillard28577c32002-04-30 06:48:41 +00009374Tue Apr 30 08:48:11 CEST 2002 Daniel Veillard <daniel@veillard.com>
9375
9376 * AUTHORS HACKING: added Aleksey Sanin <aleksey@aleksey.com>
9377 as one of the persons allowed to commit directly to the
9378 module.
9379
Daniel Veillardfc57b412002-04-29 15:50:14 +00009380Mon Apr 29 17:48:26 CEST 2002 Daniel Veillard <daniel@veillard.com>
9381
9382 * configure.in include/libxml/xmlwin32version.h: preparing 2.4.21
9383 * valid.c: raised a too low limit
9384 * doc/*: rebuilt the docs
9385
Daniel Veillardeca82812002-04-24 11:42:02 +00009386Wed Apr 24 13:41:03 CEST 2002 Daniel Veillard <daniel@veillard.com>
9387
9388 * test/XPath/expr/floats test/XPath/expr/functions
9389 result/XPath/expr/floats result/XPath/expr/functions
9390 xpath.c: another XPath conformance patch from Richard Jinks
9391
Daniel Veillard13e04c62002-04-23 17:51:29 +00009392Tue Apr 23 19:50:40 CEST 2002 Daniel Veillard <daniel@veillard.com>
9393
9394 * xmlschemas.c: fixed validation of attribute groups.
9395 * test/schemas result/schemas: added an example from the primer
9396
Daniel Veillard88c58912002-04-23 07:12:20 +00009397Tue Apr 23 09:11:37 CEST 2002 Daniel Veillard <daniel@veillard.com>
9398
9399 * Makefile.am xmlschemas.c xmlschemastypes.c: more work on Schemas
9400 * test/schemas result/schemas: updated the test list
9401
Daniel Veillarde19fc232002-04-22 16:01:24 +00009402Mon Apr 22 17:59:14 CEST 2002 Daniel Veillard <daniel@veillard.com>
9403
9404 * TODO: updated a bit
9405 * parser.c: made a comment more specific
9406 * xmlregexp.c xmlschemas.c xmlschemastypes.c: more work on the
9407 Schemas conformance.
9408 * test/schemas result/schemas: updated the test list
9409
Daniel Veillard441bc322002-04-20 17:38:48 +00009410Sat Apr 20 19:36:39 CEST 2002 Daniel Veillard <daniel@veillard.com>
9411
9412 * xmlregexp.c xmlschemas.c include/libxml/xmlautomata.h:
9413 implementing xs:all with minOccurs = 0
9414 * tes/schemas/* result/schemas/*: added more tests covering
9415 xs:all
9416
Daniel Veillard8a001f62002-04-20 07:24:11 +00009417Sat Apr 20 09:22:50 CEST 2002 Daniel Veillard <daniel@veillard.com>
9418
9419 * xmlregexp.c: first implementation of the all particle, this
9420 may need to be revisited for case where not all transitions
9421 must be crossed.
9422
Daniel Veillard7646b182002-04-20 06:41:40 +00009423Fri Apr 19 18:26:04 CEST 2002 Daniel Veillard <daniel@veillard.com>
9424
9425 * tree.c: another entity processing update from Markus Henke
9426
Bjorn Reese54d02fb2002-04-19 15:16:01 +00009427Fri Apr 19 17:14:24 CEST 2002 Bjorn Reese <breese@users.sourceforge.net>
9428
9429 * trionan.c: fixed crash on OSF/1
9430
Daniel Veillardb4398962002-04-19 07:01:55 +00009431Fri Apr 19 09:00:56 CEST 2002 Daniel Veillard <daniel@veillard.com>
9432
9433 * xmlschemas.c: more Schemas work
9434 * test/schemas/* result/schemas/*: added more tests coming
9435 from the spec.
9436
Daniel Veillard54761132002-04-18 21:00:44 +00009437Thu Apr 18 23:00:02 CEST 2002 Daniel Veillard <daniel@veillard.com>
9438
9439 * c14n.c: patch from Aleksey Sanin reflecting a change in the
9440 ExcC14N specification
9441
Daniel Veillardbf8dae82002-04-18 16:39:10 +00009442Thu Apr 18 18:38:30 CEST 2002 Daniel Veillard <daniel@veillard.com>
9443
9444 * tree.c: patch from Markus Henke, fix for recursive entities.
9445
Daniel Veillard23b1f372002-04-18 15:50:05 +00009446Thu Apr 18 17:49:24 CEST 2002 Daniel Veillard <daniel@veillard.com>
9447
9448 * xpath.c: fix a problem with string() on a document node.
9449
Daniel Veillarddecd64d2002-04-18 14:41:51 +00009450Thu Apr 18 16:40:42 CEST 2002 Daniel Veillard <daniel@veillard.com>
9451
9452 * Makefile.am xmlschemas.c: more Schemas work
9453 * test/schemas/* result/schemas/*: added more tests coming
9454 from the spec.
9455
Daniel Veillard6231e842002-04-18 11:54:04 +00009456Thu Apr 18 13:52:52 CEST 2002 Daniel Veillard <daniel@veillard.com>
9457
9458 * HTMLtree.c: fixed & serialization bug introduced in 2.4.20
9459 * result/HTML/*: this changes a few things in the results
9460
Igor Zlatkovic648b8e92002-04-17 18:35:57 +00009461Wed Apr 17 20:34:37 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
9462
9463 * include/libxml/tree.h: eliminated 'declaration different than
9464 prototype' warning
9465 * include/win32config.h: "resolved" conflicts with errno.h
9466
Daniel Veillardb509f152002-04-17 16:28:10 +00009467Wed Apr 17 18:26:07 CEST 2002 Daniel Veillard <daniel@veillard.com>
9468
9469 * xmlregexp.c xmlschemas.c include/libxml/xmlautomata.h: more work
9470 on the automata interfaces and debug of counted choices
9471 * test/schemas/* result/schemas/*: added a number of tests
9472
Daniel Veillard8651f532002-04-17 09:06:27 +00009473Wed Apr 17 11:03:03 CEST 2002 Daniel Veillard <daniel@veillard.com>
9474
9475 * xmlschemas.c xmlschemastypes.c include/libxml/xmlschemas.h:
9476 a bit of work on Schemas
9477 * testSchemas.c: try to make it more useful
9478 * test/schemas/* result/schemas/* Makefile.am: changed the
9479 Schemas regression test procedure, started adding a few samples
9480
Igor Zlatkovica6f2d902002-04-16 17:57:17 +00009481Tue Apr 16 19:52:01 CEST 2002 Igor Zlatkovic <izlatkovic@stud.fh-frankfurt.de>
9482
9483 * include/libxml/encoding.h: Patch for the Borland C++ builder
9484 * include/libxml/tree.h: Patch for the Borland C++ builder
9485 * threads.c: Patch for the Borland C++ builder
Igor Zlatkovice1eff382002-04-16 19:00:21 +00009486 * win32/bcb5: New directory for the Borland C++ builder
9487 project files
Igor Zlatkovica6f2d902002-04-16 17:57:17 +00009488
Igor Zlatkovicea5148d2002-04-16 17:46:25 +00009489Tue Apr 16 19:46:55 CEST 2002 Igor Zlatkovic <izlatkovic@stud.fh-frankfurt.de>
9490
9491 * win32/Makefile.msvc: Update for XML Schema support
9492 * win32/configure.js: Update for XML Schema support
9493 * win32/libxml2.def.src: Update for XML Schema support
9494
Daniel Veillard4255d502002-04-16 15:50:10 +00009495Tue Apr 16 17:46:43 CEST 2002 Daniel Veillard <daniel@veillard.com>
9496
9497 * Makefile.am TODO_SCHEMAS configure.in genUnicode.py testAutomata.c
9498 testRegexp.c testSchemas.c xmlregexp.c xmlschemas.c xmlschemastypes.c
9499 xmlunicode.c include/libxml/Makefile.am
9500 include/libxml/schemasInternals.h include/libxml/xmlautomata.h
9501 include/libxml/xmlregexp.h include/libxml/xmlschemas.h
9502 include/libxml/xmlschemastypes.h include/libxml/xmlunicode.h
9503 include/libxml/xmlversion.h.in : merged the current state of
9504 XML Schemas implementation, it is not configured in by default,
9505 a specific --schemas configure option has been added.
9506 * test/automata test/regexp test/schemas Makefile.am
9507 result/automata result/regexp result/schemas:
9508 merged automata/regexp/schemas regression tests
9509
Daniel Veillardbc6f7592002-04-16 07:49:59 +00009510Tue Apr 16 09:48:44 CEST 2002 Daniel Veillard <daniel@veillard.com>
9511
9512 * xpath.c: Gary found a compile time problem, fixes #78823
9513
Daniel Veillarda7084cd2002-04-15 17:12:47 +00009514Mon Apr 15 19:11:36 CEST 2002 Daniel Veillard <daniel@veillard.com>
9515
9516 * configure.in: release of 2.4.20
9517 * doc/*: updated and rebuilt the docs
9518
Daniel Veillardf544f192002-04-15 12:56:56 +00009519Mon Apr 15 14:55:53 CEST 2002 Daniel Veillard <daniel@veillard.com>
9520
9521 * python/Makefile.am: patch from Cristian Gafton to build on
9522 Red Hat 6.2, should also fix #75779
9523
Daniel Veillard940492d2002-04-15 10:15:25 +00009524Mon Apr 15 12:14:49 CEST 2002 Daniel Veillard <daniel@veillard.com>
9525
9526 * valid.c: first part of fixing #78729
9527
Daniel Veillardeb475a32002-04-14 22:00:22 +00009528Sun Apr 14 23:44:58 CEST 2002 Daniel Veillard <daniel@veillard.com>
9529
9530 * HTMLtree.c uri.c: fixing bug #78662 i.e. add proper
9531 escaping of URI when saving HTML files.
9532 * result/HTML/*: this impacted some tests
9533
Daniel Veillard9b731d72002-04-14 12:56:08 +00009534Sun Apr 14 14:55:15 CEST 2002 Daniel Veillard <daniel@veillard.com>
9535
9536 * configure.in: trying to fix #77441
9537
Daniel Veillarda8a89fe2002-04-12 21:03:34 +00009538Fri Apr 12 23:02:16 CEST 2002 Daniel Veillard <daniel@veillard.com>
9539
9540 * include/libxml/xmlIO.h: Hallski complained it could not be
9541 included by itself.
9542
Daniel Veillardcb5b4d62002-04-11 08:24:26 +00009543Thu Apr 11 10:23:36 CEST 2002 Daniel Veillard <daniel@veillard.com>
9544
9545 * configure.in: applied an IEEE flag patch for OSF/1 #77825
9546
Igor Zlatkovic9425ce22002-04-10 21:57:11 +00009547Wed Apr 10 23:31:34 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
9548
9549 * win32/configure.js: patch from Nilo for the c14n option
9550 * win32/Makefile.msvc: fixed libxml2.def generation with threads
9551
Daniel Veillardda423da2002-04-10 19:25:38 +00009552Wed Apr 10 21:24:16 CEST 2002 Daniel Veillard <daniel@veillard.com>
9553
9554 * xpath.c include/libxml/xmlwin32version.h.in: Silvan Minghetti
9555 pointed erroneous use of LIBXML_THREADS_ENABLED instead of
9556 LIBXML_THREAD_ENABLED
9557
Daniel Veillard0eafdef2002-04-10 16:14:34 +00009558Wed Apr 10 18:12:52 CEST 2002 Daniel Veillard <daniel@veillard.com>
9559
9560 * xpath.c: another patch from Richard Jinks for substring conformance
9561 * test/XPath/expr/floats test/XPath/expr/strings
9562 result/XPath/expr/floats result/XPath/expr/strings: update of the
9563 test suite to check those.
9564
Daniel Veillard01917aa2002-04-10 11:30:41 +00009565Wed Apr 10 13:29:49 CEST 2002 Daniel Veillard <daniel@veillard.com>
9566
9567 * xpath.c: patch from Richard Jinks for .x float parsing.
9568
Daniel Veillard46d6c442002-04-09 16:10:39 +00009569Tue Apr 9 18:09:31 CEST 2002 Daniel Veillard <daniel@veillard.com>
9570
9571 * parser.c: patch from Markus Henke when an encoding ain't recognized
9572
Daniel Veillard88e0ad42002-04-09 13:48:02 +00009573Tue Apr 9 15:47:14 CEST 2002 Daniel Veillard <daniel@veillard.com>
9574
9575 * libxml.m4: got a report that #include <string.h> was needed
9576
Daniel Veillard6e4f1c02002-04-09 09:55:20 +00009577Tue Apr 9 11:51:25 CEST 2002 Daniel Veillard <daniel@veillard.com>
9578
9579 * xmllint.c: applied a fix from Anthony Jones for -o /--output
9580
MST 2002 John Fleck823e5b22002-04-03 03:28:57 +00009581Tue Apr 2 20:27:11 MST 2002 John Fleck <jfleck@inkstain.net>
9582
Daniel Veillard6e4f1c02002-04-09 09:55:20 +00009583 * doc/example.html: fixing typo
MST 2002 John Fleck823e5b22002-04-03 03:28:57 +00009584
Daniel Veillardbd6e6312002-04-01 08:04:14 +00009585Mon Apr 1 10:02:57 CEST 2002 Daniel Veillard <daniel@veillard.com>
9586
9587 * xpath.c: fixed a bug in the nodeset to boolean comparison code
9588 pointed out by Melvyn Sopacua.
9589
Daniel Veillarde979e3b2002-03-29 22:43:00 +00009590Fri Mar 29 23:41:53 CET 2002 Daniel Veillard <daniel@veillard.com>
9591
9592 * libxml.m4: Frédéric Crozat gave a patch related to the change
9593 of Include paths breaking the libxml.m4
9594
Daniel Veillard7089d6b2002-03-29 17:28:10 +00009595Fri Mar 29 18:25:54 CET 2002 Daniel Veillard <daniel@veillard.com>
9596
9597 * xpath.c: Fix bug #76927 forgot to save some context
9598 when evaluating binary expressions
9599
Daniel Veillardd30be4a2002-03-28 18:25:31 +00009600Thu Mar 28 19:22:48 CET 2002 Daniel Veillard <daniel@veillard.com>
9601
9602 * configure.in: fixed configure for MPE/iX from Markus Henke
9603 * xmlmemory.c: fixed initialization problems
9604 * xpath.c: another set of patches from Richard Jinks this
9605 fixes "make XPathtests" on linux
9606
Daniel Veillard21458c82002-03-27 16:12:22 +00009607Wed Mar 27 17:09:43 CET 2002 Daniel Veillard <daniel@veillard.com>
9608
9609 * trionan.c trionan.h xpath.c: more patches from Richard Jinks
9610 * test/XPath/expr/compare test/XPath/expr/equality
9611 test/XPath/expr/floats test/XPath/expr/functions
9612 test/XPath/expr/strings result/XPath/expr/compare
9613 result/XPath/expr/equality result/XPath/expr/floats
9614 result/XPath/expr/functions result/XPath/expr/strings: Updated
9615 tests though they show a divergence on Linux
9616
Daniel Veillard28dfed12002-03-27 09:08:17 +00009617Wed Mar 27 10:06:53 CET 2002 Daniel Veillard <daniel@veillard.com>
9618
9619 * xpath.c trionan.c: previous commit also included patches
9620 from Richard Jinks on some IEEE support corner case
9621
Daniel Veillard5fc1f082002-03-27 09:05:40 +00009622Wed Mar 27 10:03:11 CET 2002 Daniel Veillard <daniel@veillard.com>
9623
9624 * AUTHORS HACKING: Added Igor Zlatkovic as official maintainer
9625 * python/Makefile.am python/tests/Makefile.am: Albert Chin pointed
9626 that $(datadir) should be used for docs
9627
Daniel Veillarddb1dc392002-03-26 12:44:39 +00009628Tue Mar 26 13:43:16 CET 2002 Daniel Veillard <daniel@veillard.com>
9629
9630 * xmlIO.c: Thomas Steinborn pointed out #76404 that libxml2
9631 could leak filedescriptors
9632
Daniel Veillarddd4b9122002-03-26 07:58:43 +00009633Tue Mar 26 08:55:53 CET 2002 Daniel Veillard <daniel@veillard.com>
9634
9635 * configure.in nanohttp.c: applied patch from Allan Clark for
9636 UnixWare/OpenServer
9637
Daniel Veillard19274092002-03-25 16:48:03 +00009638Mon Mar 25 17:45:44 CET 2002 Daniel Veillard <daniel@veillard.com>
9639
9640 * configure.in: preparing 2.4.19
9641 * doc/*: rebuilt the docs
9642
Daniel Veillard56b2db72002-03-25 16:35:28 +00009643Mon Mar 25 17:34:06 CET 2002 Daniel Veillard <daniel@veillard.com>
9644
9645 * nanohttp.c: fixing #76043, got fed up with non-portability
9646 of that piece of code.
9647
Daniel Veillard6f4561a2002-03-25 12:10:14 +00009648Mon Mar 25 13:08:21 CET 2002 Daniel Veillard <daniel@veillard.com>
9649
9650 * valid.c SAX.c: Never commit without running "make tests" :-(
9651 fix a couple of stupidities in the previous commit
9652 * result/*: a few changes in some attribute order result of previous
9653 commit.
9654
Daniel Veillardd85f4f42002-03-25 10:48:46 +00009655Mon Mar 25 11:46:05 CET 2002 Daniel Veillard <daniel@veillard.com>
9656
9657 * valid.c SAX.c: fixed bug #76168, attribute redeclared in
9658 the internal subset should not raise duplicate ID errors,
9659 also there was a small bug in conjunction to namespace
9660 declarations defaulted and xml:xxx attributes DTD definitions.
9661
Daniel Veillard56cd18b2002-03-22 14:14:43 +00009662Fri Mar 22 15:13:49 CET 2002 Daniel Veillard <daniel@veillard.com>
9663
9664 * xpath.c: Richard Jinks also raised some rounding problems
9665 this tries to fix them
9666
Daniel Veillard4e2df542002-03-22 12:23:14 +00009667Fri Mar 22 13:22:09 CET 2002 Daniel Veillard <daniel@veillard.com>
9668
9669 * xpath.c: Richard Jinks spotted an incoherent memory allocation
9670 behaviour in xmlXPathCastToString()
9671
Daniel Veillarddb552912002-03-21 13:27:59 +00009672Thu Mar 21 14:25:29 CET 2002 Daniel Veillard <daniel@veillard.com>
9673
9674 * encoding.c: fixed a bug in the ISO-Latin 1 to UTF8 encoder
9675 raised by Morus Walter
9676
Daniel Veillard9e537932002-03-21 13:08:08 +00009677Thu Mar 21 14:07:13 CET 2002 Daniel Veillard <daniel@veillard.com>
9678
9679 * xmlcatalog.c include/libxml/xmlversion.h.in: applied 2 fixups
9680 from Igor
9681
Daniel Veillard6fbcf422002-03-21 12:32:59 +00009682Thu Mar 21 13:30:06 CET 2002 Daniel Veillard <daniel@veillard.com>
9683
9684 * xpath.c: fixing #75619, related to a problem when trying
9685 to evaluate condition when the current node set resulting
9686 from that sub-step evaluation is empty. Also fixes 2 potential
9687 problem with previous-sibling and next-siblings axis.
9688
Daniel Veillard1840ef02002-03-21 08:05:23 +00009689Thu Mar 21 09:03:59 CET 2002 Daniel Veillard <daniel@veillard.com>
9690
9691 * c14n.c: patch from Mark Vakoc to build C14N if DocBook and
9692 HTML support is not configured in.
9693
Daniel Veillard561b7f82002-03-20 21:55:57 +00009694Wed Mar 20 22:42:42 CET 2002 Daniel Veillard <daniel@veillard.com>
9695
9696 * HTMLparser.c error.c parser.c parserInternals.c tree.c xmlIO.c
9697 include/libxml/tree.h: dohh I really didn't intended to commit
9698 this test version :-(
9699
Daniel Veillarde50f3b52002-03-20 19:24:21 +00009700Wed Mar 20 20:20:57 CET 2002 Daniel Veillard <daniel@veillard.com>
9701
9702 * testSAX.c: I wanted to see the real speed at the SAX interface
9703 after a little too many Ximianer started complaining about the
9704 parser speed.
9705 added a --quiet option:
9706 paphio:~/XML -> ls -l db100000.xml
9707 -rw-rw-r-- 1 veillard www 20182040 Mar 20 10:30 db100000.xml
9708 paphio:~/XML -> time ./testSAX --quiet db100000.xml
9709 3200006 callbacks generated
9710 real 0m1.270s
9711 Which means 16MBytes/s and 3Mcallback/s
9712
Daniel Veillardc62a1472002-03-19 18:35:12 +00009713Tue Mar 19 19:33:57 CET 2002 Daniel Veillard <daniel@veillard.com>
9714
9715 * xpath.c: valgrind spotted another error that time when running
9716 on libxslt regression tests
9717
Daniel Veillard4b3a84f2002-03-19 14:36:46 +00009718Tue Mar 19 15:24:49 CET 2002 Daniel Veillard <daniel@veillard.com>
9719
9720 * Makefile.am: adding "make valgrind" running the full regression
9721 tests (except python ones) under Valgrind (using valgrind -q
9722 which was kindly added by the author).
9723 * valid.c: stupid bug pinpointed by Valgrind, the regression tests
9724 passes cleanly now except an obcure floating point initialization
9725 raised in log10() in one XPath regression test ???
9726 * tree.c: edited some comments to close #75244
9727
Daniel Veillard28cac6b2002-03-19 11:25:30 +00009728Tue Mar 19 12:15:20 CET 2002 Daniel Veillard <daniel@veillard.com>
9729
9730 * xpath.c: pretty insane thing, the xmlXPathFormatNumber()
9731 was not serializing 1 as "1" if LC_ALL=sv_SE :-( and in the
9732 context of ScrollKeeper, made sure that if the number is
9733 an integer, the serialization follows the description at
9734 http://www.w3.org/TR/xpath#section-String-Functions
9735
Daniel Veillard5997aca2002-03-18 18:36:20 +00009736Mon Mar 18 19:18:13 CET 2002 Daniel Veillard <daniel@veillard.com>
9737
Daniel Veillard34ce8be2002-03-18 19:37:11 +00009738 * configure.in: preparing 2.4.18
9739 * doc/*: updated and rebuilt the web site
9740 * *.c libxml.h: implement the new IN_LIBXML scheme discussed with
9741 the Windows and Cygwin maintainers.
Daniel Veillard5997aca2002-03-18 18:36:20 +00009742 * parser.c: humm, changed the way the SAX parser work when
9743 xmlSubstituteEntitiesDefault(1) is set, it will then
9744 do the entity registration and loading by itself in case the
9745 user provided SAX getEntity() returns NULL.
9746 * testSAX.c: added --noent to test the behaviour.
9747
Daniel Veillardb5a60ec2002-03-18 11:45:56 +00009748Mon Mar 18 12:44:23 CET 2002 Daniel Veillard <daniel@veillard.com>
9749
9750 * parser.c: Wilfried Teiken provided a hackish but working
9751 way to get context reported back on entities when parsing
9752 with SAX and without breaking the DOM build.
9753
Daniel Veillard2d347fa2002-03-17 10:34:11 +00009754Sun Mar 17 11:31:55 CET 2002 Daniel Veillard <daniel@veillard.com>
9755
9756 * c14n.c: applied a new patch from Aleksey Sanin
9757 * doc/site.xsl doc/xml.html doc/*.html: updated the documentation
9758 to reference Aleksey implementation of XML digital Signatures
9759
Daniel Veillard38bf6f02002-03-16 22:03:31 +00009760Sat Mar 16 23:01:42 CET 2002 Daniel Veillard <daniel@veillard.com>
9761
9762 * xpath.c: small fix to avoid potential problem due to
9763 ordering of freeing data
9764 * python/Makefile.am: people were complaining about
9765 the generated file in python dir not being built
9766
Daniel Veillardd2379012002-03-15 22:24:56 +00009767Fri Mar 15 23:21:40 CET 2002 Daniel Veillard <daniel@veillard.com>
9768
9769 * libxml.spec.in python/Makefile.am python/tests/Makefile.am
9770 python/generator.py python/libxml.c python/types.c: Cleanup
9771 of the python Makefiles based on Jacob and James feedback,
9772 fixed the spec file accordingly, fixed the number of warning
9773 that passing my pedantic CFLAGS was generating. Conclusion
9774 is that Python includes are real crap.
9775
Daniel Veillarde7dd2b82002-03-15 18:44:02 +00009776Fri Mar 15 19:41:25 CET 2002 Daniel Veillard <daniel@veillard.com>
9777
9778 * configure,in: it was reported quite a few times that
9779 xml2-config --cflags should not output
9780 -I$includeprefix/libxml2/libxml because libxml2 header names
9781 clashes with existing names like list.h from C++ stl.
9782 Includes should be #include<libxml/xxx.h> so ...
9783
Daniel Veillard6f293b12002-03-15 09:42:33 +00009784Fri Mar 15 10:41:50 CET 2002 Daniel Veillard <daniel@veillard.com>
9785
9786 * c14n.c: another patch from Aleksey Sanin
9787
Daniel Veillard5c396542002-03-15 07:57:50 +00009788Fri Mar 15 08:55:55 CET 2002 Daniel Veillard <daniel@veillard.com>
9789
9790 * c14n.c: applied patch from Aleksey Sanin fixing a problem in the
9791 canonicalization algorithm
9792 * doc/xml.html doc/index.html: added the C14N references on the
9793 index page.
9794
jacob berkman9be65862002-03-14 02:15:56 +000097952002-03-13 jacob berkman <jacob@ximian.com>
9796
9797 * python/Makefile.am: remove LDADD and CFLAGS as this is broken
9798 usage, redundant, and gcc specific
9799
Daniel Veillard75be0132002-03-13 10:03:35 +00009800Wed Mar 13 11:00:59 CET 2002 Daniel Veillard <daniel@veillard.com>
9801
9802 * xpath.c: speedup some node selection operations, this can
9803 have a significant impact on DocBook Norm's stylesheets
9804 * nanohttp.c: someone reported that SOCKLEN_T may not be defined
9805 make sure it's always the case
9806 * debugXML.c: distinguish CDATA and comments in ls operations
9807
Daniel Veillard61f26172002-03-12 18:46:39 +00009808Tue Mar 12 19:45:24 CET 2002 Daniel Veillard <daniel@veillard.com>
9809
9810 * include/libxml/*.h: Heiko W. Rupp fixed a lot of comments
9811 to generate better API descriptions etc...
9812
Daniel Veillard9ff88172002-03-11 09:15:32 +00009813Mon Mar 11 10:10:30 CET 2002 Daniel Veillard <daniel@veillard.com>
9814
9815 * c14n.c: Fixing #74186, made sure all boolean expressions
9816 get fully parenthesized, ran indent on the output
9817 * configure.in HTMLtree.c SAX.c c14n.c debugXML.c tree.c xpointer.c
9818 include/libxml/tree.h: also #74186 related, removed the
9819 --with-buffers option, and all the preprocessor conditional
9820 sections that were resulting from it.
9821
Daniel Veillardbb4e46d2002-03-10 16:49:08 +00009822Sun Mar 10 17:47:58 CET 2002 Daniel Veillard <daniel@veillard.com>
9823
9824 * valid.c: applied patch from Dodji Seketeli fixing an
9825 uninitailized variable in xmlValidGetValidElements()
9826
Daniel Veillarddb1bdba2002-03-09 14:13:11 +00009827Sat Mar 9 15:10:49 CET 2002 Daniel Veillard <daniel@veillard.com>
9828
9829 * c14n.c: fixed a few comments
9830 * doc/*.html doc/*/*.html: regenerated the docs and added
9831 the C14N API
9832 * doc/api.xsl doc/gnome-xml.sgml: fixups and added IDs
9833
Daniel Veillardfa49d872002-03-09 10:20:00 +00009834Sat Mar 9 11:16:11 CET 2002 Daniel Veillard <daniel@veillard.com>
9835
9836 * check-xml-test-suite.py: fix to adapt varaiations in the
9837 bindings
9838 * configure.in python/setup.py python/setup.py.in: fixed to
9839 have the version of the python scripts automatically updated
9840
Daniel Veillarda3db2e32002-03-08 15:46:57 +00009841Fri Mar 8 16:45:55 CET 2002 Daniel Veillard <daniel@veillard.com>
9842
9843 * tree.c: fixed a bug newly introduced and pointed by Uwe Fechner
9844 in xmlCopyProp()
9845
Daniel Veillardaf43f632002-03-08 15:05:20 +00009846Fri Mar 8 15:49:10 CET 2002 Daniel Veillard <daniel@veillard.com>
9847
9848 * configure.in: preparing 2.4.17 release
9849 * doc/*: updated and rebuilt the docs
9850 * xpath.c: fixed a comment
9851 * python/libxml.c: fixed a possible reentrancy problem
9852
Daniel Veillardef6c46f2002-03-07 22:21:56 +00009853Thu Mar 7 23:19:28 CET 2002 Daniel Veillard <daniel@veillard.com>
9854
9855 * tree.c python/tests/Makefile.am python/tests/attribs.py:
9856 fixed xmlHasNsProp() bugs for defaulted from DTD attribs,
9857 added a specific regression test
9858 * python/generator.py: xmlHasNsProp() and xmlHasProp() shall
9859 not raise exceptions when failing to find the attribute.
9860
Daniel Veillard90bc3712002-03-07 15:12:58 +00009861Thu Mar 7 16:11:35 CET 2002 Daniel Veillard <daniel@veillard.com>
9862
9863 * configure.in xmllint.c: owen pointed out a problem with the
9864 ftme fix, gettimeofday() was not detected by configure and
9865 the ftime header wasn't included, dohhh
9866
Daniel Veillard8c1ae602002-03-07 11:21:00 +00009867Thu Mar 7 12:19:36 CET 2002 Daniel Veillard <daniel@veillard.com>
9868
9869 * configure.in xmllint.c: trying to fix #71457 for timing
9870 precision when gettimeofday() is not availble but ftime() is
9871
Daniel Veillardf5a457a2002-03-07 10:25:29 +00009872Thu Mar 7 11:24:02 CET 2002 Daniel Veillard <daniel@veillard.com>
9873
9874 * libxml.spec.in doc/Makefile.am: Fixed #73408 missing images
9875 are now copied on install and part of the -devel RPM
9876
Daniel Veillard7b416132002-03-07 08:36:03 +00009877Thu Mar 7 09:34:16 CET 2002 Daniel Veillard <daniel@veillard.com>
9878
9879 * xpath.c: trying to avoid bug #72150 which was apparently
9880 caused by a gcc bug (or a processor problem) as detailed
9881 at http://veillard.com/gcc.bug
9882
Daniel Veillardf742d342002-03-07 00:05:35 +00009883Thu Mar 7 01:02:37 CET 2002 Daniel Veillard <daniel@veillard.com>
9884
9885 * tree.c python/tests/Makefile.am python/tests/cutnpaste.py:
9886 fixed xmlReconciliateNs(), added a Python test/example for
9887 inter-document cut'n paste
9888 * python/libxml.py: fixed node.doc on document nodes and added
9889 xpathEval() onto node objects
9890
Daniel Veillard4e0e2972002-03-06 21:39:42 +00009891Wed Mar 6 22:38:03 CET 2002 Daniel Veillard <daniel@veillard.com>
9892
9893 * HTMLtree.c: fixed some htmlSetMetaEncoding() problems
9894 * python/libxml.c python/tests/Makefile.am python/tests/serialize.py:
9895 fixup and integrated tests for the serialization stuff
9896
Daniel Veillarde915b2d2002-03-06 18:42:40 +00009897Wed Mar 6 19:40:57 CET 2002 Daniel Veillard <daniel@veillard.com>
9898
9899 * Makefile.am libxml.3 libxml.4 libxml.spec.in: Fixed bug #72570
9900 moved the libxml man page to section 3
9901
Daniel Veillard1e774382002-03-06 17:35:40 +00009902Wed Mar 6 18:34:07 CET 2002 Daniel Veillard <daniel@veillard.com>
9903
9904 * tree.c: fix bug #72490
9905 * python/libxml.c python/libxml.py: added methods serialize()
9906 and saveTo() to all node elements.
9907
Daniel Veillardddffd2a2002-03-05 20:28:20 +00009908Tue Mar 5 21:27:03 CET 2002 Daniel Veillard <daniel@veillard.com>
9909
9910 * xmlIO.c: closed #73430, don't read from an input source
9911 which indicated an end-of-file or an error.
9912
Daniel Veillard8d24cc12002-03-05 15:41:29 +00009913Tue Mar 5 16:33:42 CET 2002 Daniel Veillard <daniel@veillard.com>
9914
9915 * parser.c: make sure SAX endDocument is always called as
9916 this could result in a Python memory leak otherwise (it's
9917 used to decrement ref-counting)
9918 * python/generator.py python/libxml.c python/libxml.py
9919 python/libxml2-python-api.xml python/libxml2class.txt
9920 python/tests/error.py python/tests/xpath.py: implemented
9921 the suggestions made by Gary Benson and extended the tests
9922 to match it.
9923
Daniel Veillardba5e18a2002-03-05 09:36:43 +00009924Tue Mar 5 10:35:24 CET 2002 Daniel Veillard <daniel@veillard.com>
9925
9926 * python/generator.py: applied patch fixing #73450
9927
Daniel Veillard044fc6b2002-03-04 17:09:44 +00009928Mon Mar 4 17:59:29 CET 2002 Daniel Veillard <daniel@veillard.com>
9929
9930 * xpath.c: fixing #61290 "namespace nodes have no parent"
9931 long standing divergence from the XPath REC. NodeSets
9932 simply hold a copy of namespace nodes and those node ->next
9933 points to the parent (which may not be the node carrying the
9934 definition).
9935 * include/libxml/xpath.h: flagged but didn't added a possible
9936 speedup
9937 * DOCBparser.c HTMLparser.c: removed some warnings from push
9938 parser due to new state being added.
9939 * tree.c: new fix from Boris Erdmann
9940 * configure.in c14n.c include/libxml/c14n.h testC14N.c: added
9941 the XML Canonalization support from Aleksey Sanin
9942
Daniel Veillardd4f41aa2002-03-03 14:13:46 +00009943Sun Mar 3 15:12:42 CET 2002 Daniel Veillard <daniel@veillard.com>
9944
9945 * tree.c: patch from Boris Erdmann fixing some namespace odities
9946 with xmlCopyNode()
9947
Daniel Veillardc6613042002-03-02 09:34:02 +00009948Sat Mar 2 10:33:04 CET 2002 Daniel Veillard <daniel@veillard.com>
9949
9950 * xmlIO.c: fix bug #72706 when loading a NULL entity
9951
Daniel Veillardc0fef772002-03-01 16:16:31 +00009952Fri Mar 1 17:14:42 CET 2002 Daniel Veillard <daniel@veillard.com>
9953
9954 * SAX.c: Fixed #72346, about handling of xmlns:foo="", this could
9955 actually change in a future XML Namespace revision.
9956
Daniel Veillard79426f22002-03-01 16:14:17 +00009957Fri Mar 1 17:12:15 CET 2002 Daniel Veillard <daniel@veillard.com>
9958
9959 * python/types.c python/tests/Makefile.am python/tests/xpathret.py:
9960 added the possibility of returning nodesets from XPath extension
9961 functions written in Python
9962
Daniel Veillarda94ec6f2002-03-01 13:00:53 +00009963Fri Mar 1 13:56:12 CET 2002 Daniel Veillard <daniel@veillard.com>
9964
9965 * python/*: commiting some Python bindings work done while travelling
9966
Daniel Veillard97300512002-03-01 09:13:41 +00009967Fri Mar 1 10:11:15 CET 2002 Daniel Veillard <daniel@veillard.com>
9968
9969 * xmllint.c: close #72663 and #72658, don't memdump unless compiled
9970 explicitely with memory debugging switched on
9971
Daniel Veillard6361da02002-02-23 10:10:33 +00009972Sat Feb 23 11:08:09 CET 2002 Daniel Veillard <daniel@veillard.com>
9973
9974 * python/generator.py python/libxml.c python/libxml2-python-api.xml
9975 python/libxml2class.txt python/libxml_wrap.h python/types.c:
9976 Added wrapper for the xmlURIPtr type, provided accessors, fixed
9977 the accessor generator for strings
9978 * python/tests/Makefile.am python/tests/tstURI.py: added a specific
9979 regression test.
9980
Daniel Veillard0fea6f42002-02-22 22:51:13 +00009981Fri Feb 22 23:44:57 CET 2002 Daniel Veillard <daniel@veillard.com>
9982
9983 * python/README python/generator.py python/libxml.c python/setup.py:
9984 added the 'usual' setup.py to allow building a libxml2-python
9985 module based on the same code. The initialization is however
9986 different the 2 .so files fo libxml2 and libxslt are identical and
9987 they entry point initialize both libraries. this is done to avoid
9988 some possible nasty problem since the Python don't merge the maps
9989 of all shared modules.
9990
Daniel Veillard158a4d22002-02-20 22:17:58 +00009991Wed Feb 20 23:16:08 CET 2002 Daniel Veillard <daniel@veillard.com>
9992
9993 * parser.c: fixed a push/encoding bug reported by Michael
9994 on librsvg
9995
Daniel Veillard7839e162002-02-20 18:54:48 +00009996Wed Feb 20 19:54:05 CET 2002 Daniel Veillard <daniel@veillard.com>
9997
9998 * include/libxml/parserInternals.h: fixes a misplaced #endif
9999
Daniel Veillardd54fa3e2002-02-20 16:48:52 +000010000Wed Feb 20 17:47:55 CET 2002 Daniel Veillard <daniel@veillard.com>
10001
10002 * parser.c valid.c: found and fixed a couple of allocation bugs
10003
Daniel Veillard6dbcaf82002-02-20 14:37:47 +000010004Wed Feb 20 15:36:03 CET 2002 Daniel Veillard <daniel@veillard.com>
10005
10006 * doc/xml.html doc/python.html doc/*: added a Python and binding
10007 page describing the current state of the Python bindings and
10008 giving pointers to the other languages wrappers.
10009
Daniel Veillard5f4b5992002-02-20 10:22:49 +000010010Wed Feb 20 11:16:15 CET 2002 Daniel Veillard <daniel@veillard.com>
10011
10012 * configure.in include/libxml/xmlwin32version.h: preparing 2.4.16
10013 * doc/* python/libxml2class.txt: updated and rebuilt the docs,
10014 rebuilt the API and web site
10015 * xpath.c: fixed #71978 portability bugs
10016
Daniel Veillard8aff2472002-02-19 21:50:43 +000010017Tue Feb 19 22:49:36 CET 2002 Daniel Veillard <daniel@veillard.com>
10018
10019 * SAX.c: oops broke automatic defaulting of namespaces attributes.
10020
Daniel Veillard8dc16a62002-02-19 21:08:48 +000010021Tue Feb 19 22:01:35 CET 2002 Daniel Veillard <daniel@veillard.com>
10022
10023 * include/libxml/parserInternals.h parser.c: had to change
10024 2 internal parsing API when processing document content
10025 to check the start and end of element content are defined
10026 in the same entity
10027 * valid.c include/libxml/valid.h: attribute normalization can
10028 generate a validity error added xmlValidCtxtNormalizeAttributeValue()
10029 with the context to report it.
10030 * SAX.c: fixed the last known bugs, crazy validation constraints
10031 when a document is standalone seems correctly handled. There
10032 is a couple of open issues left which need consideration especially
10033 PE93 on external unparsed entities and standalone status.
10034 Ran 1819 tests: 1817 suceeded, 2 failed and 0 generated an error in 8.26 s.
10035 The 2 tests left failing are actually in error. Cleanup done.
10036
Daniel Veillardd6dc4cb2002-02-19 14:18:08 +000010037Tue Feb 19 15:17:02 CET 2002 Daniel Veillard <daniel@veillard.com>
10038
10039 * valid.c: implemented E59 spaces in CDATA does not match the
10040 nonterminal S
10041
Daniel Veillard878eab02002-02-19 13:46:09 +000010042Tue Feb 19 14:44:53 CET 2002 Daniel Veillard <daniel@veillard.com>
10043
10044 * SAX.c parser.c valid.c: more validation test fixups
10045 * check-xml-test-suite.py: added duration info for the tests
10046
Daniel Veillardd01fd3e2002-02-18 22:27:47 +000010047Mon Feb 18 23:25:08 CET 2002 Daniel Veillard <daniel@veillard.com>
10048
10049 * parser.c valid.c: a couple of errors were reported but not
10050 saved back as such in the parsing context. Down to 1% failure rate
10051 Ran 1819 tests: 1801 suceeded, 18 failed and 0 generated an error
10052
Daniel Veillard4a7ae502002-02-18 19:18:17 +000010053Mon Feb 18 20:16:15 CET 2002 Daniel Veillard <daniel@veillard.com>
10054
10055 * xmlInternald.c: isExtender was missing a char
10056 * parser.c include/libxml/parser.h: % are acceptable in the
10057 internal subset if within a PUBLIC ID
10058
Daniel Veillard8ab0f582002-02-18 18:31:38 +000010059Mon Feb 18 19:27:32 CET 2002 Daniel Veillard <daniel@veillard.com>
10060
10061 * SAX.c parserInternals.c valid.c: more work on the conformance
10062 suite. Took the step to finally block documents with encoding
10063 errors. It's a fatal error per the spec, people should have fixed
10064 their documents by now.
10065
Daniel Veillard55253e22002-02-18 14:32:39 +000010066Mon Feb 18 15:30:14 CET 2002 Daniel Veillard <daniel@veillard.com>
10067
10068 * check-xml-test-suite.py: fixed the test script after some discussion
10069 on the semantic of TYPE="error"
10070 * Makefile.am: added the script to the distrib
10071
Daniel Veillard28757702002-02-18 11:19:30 +000010072Mon Feb 18 12:17:41 CET 2002 Daniel Veillard <daniel@veillard.com>
10073
10074 * SAX.c entities.c: fixed a couple of conformances issues deep
10075 into the validation code (standalone and undeclared Notations)
10076
Daniel Veillard82ac6b02002-02-17 23:18:55 +000010077Mon Feb 18 00:17:24 CET 2002 Daniel Veillard <daniel@veillard.com>
10078
10079 * parser.c: fixed #71741 supid typo an a bug about encoding parsing
10080 stayed there for years !
10081
Daniel Veillard7aea52d2002-02-17 23:07:47 +000010082Mon Feb 18 00:06:42 CET 2002 Daniel Veillard <daniel@veillard.com>
10083
10084 * valid.c SAX.c: fixed #71740 NotationDecl with a required field
10085 missing
10086
Daniel Veillardc7612992002-02-17 22:47:37 +000010087Sun Feb 17 23:45:40 CET 2002 Daniel Veillard <daniel@veillard.com>
10088
10089 * check-xml-test-suite.py: improved the behaviour a bit as
10090 well as the logs
10091 * parser.c valid.c SAX.c: fixed a few more bugs
10092 "Ran 1819 tests: 1778 suceeded, 41 failed, and 0 generated an error"
10093
Daniel Veillardbb7ddb32002-02-17 21:26:33 +000010094Sun Feb 17 20:41:37 CET 2002 Daniel Veillard <daniel@veillard.com>
10095
10096 * check-xml-test-suite.py: python script to run regression tests
10097 against the XML Test suite of W3C/OASis
10098 * SAX.c: fixed a validation bug
10099 * parser.c: fixed 3 errors pointed by the test suite
10100 * doc/buildDocBookCatalog: fixed a typo pointed by drake
10101 * python/Makefile.am: fixed a dependendy
10102
Daniel Veillard9f28f302002-02-15 20:48:08 +000010103Fri Feb 15 21:47:13 CET 2002 Daniel Veillard <daniel@veillard.com>
10104
10105 * xmlmemory.c: avoid a warning bug #71594
10106
Daniel Veillard144024e2002-02-13 21:14:46 +000010107Wed Feb 13 22:13:33 CET 2002 Daniel Veillard <daniel@veillard.com>
10108
10109 * xmlmemory.c: Jesse Perry provided a patch to remove a few
10110 warning on alpha/Tru64
10111
Daniel Veillarde4301c82002-02-13 13:32:35 +000010112Wed Feb 13 14:30:49 CET 2002 Daniel Veillard <daniel@veillard.com>
10113
10114 * include/libxml/entities.h: fixing a comment
10115 * valid.c: fixing some troubles with validity check on namespaces
10116 * result/VC/NS3 test/VC/NS3: added a specific regression test
10117
Daniel Veillarda6d05382002-02-13 13:07:41 +000010118Wed Feb 13 14:05:24 CET 2002 Daniel Veillard <daniel@veillard.com>
10119
10120 * tree.c: Fixing #71342 serializing '\n' in attribute values
10121 * result/noent/att3 result/att3 test/att3: added a specific
10122 test.
10123
Daniel Veillard797a5652002-02-12 13:46:21 +000010124Tue Feb 12 14:45:32 CET 2002 Daniel Veillard <daniel@veillard.com>
10125
10126 * python/libxml.c: couple of bug fixes
10127
Daniel Veillard01a6d412002-02-11 18:42:20 +000010128Mon Feb 11 19:41:29 CET 2002 Daniel Veillard <daniel@veillard.com>
10129
10130 * python/*.py: removed tabs and used spaces.
10131
Daniel Veillard397ff112002-02-11 18:27:20 +000010132Mon Feb 11 19:25:44 CET 2002 Daniel Veillard <daniel@veillard.com>
10133
10134 * configure.in include/libxml/xmlwin32version.h: preparing 2.4.15
10135 * doc/news.html doc/xml.html doc/xmlio.html: rebuilt some docs
10136
Daniel Veillard03517542002-02-11 13:54:40 +000010137Mon Feb 11 14:53:24 CET 2002 Daniel Veillard <daniel@veillard.com>
10138
10139 * doc/xmlcatalog_man.xml: trying to close Red Hat bug #58707
10140 https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=58707
10141
Daniel Veillard6c4ffaf2002-02-11 08:54:05 +000010142Mon Feb 11 09:53:02 CET 2002 Daniel Veillard <daniel@veillard.com>
10143
10144 * include/libxml/encoding.h include/libxml/entities.h
10145 include/libxml/globals.h include/libxml/parser.h
10146 include/libxml/threads.h include/libxml/tree.h
10147 include/libxml/xmlmemory.h: trying to fix the include mess
10148
Daniel Veillard1a612ed2002-02-11 07:54:45 +000010149Mon Feb 11 08:53:33 CET 2002 Daniel Veillard <daniel@veillard.com>
10150
10151 * include/libxml/xmlmemory.h: reverted part of the previous
10152 attempt to provide #69655, this was breaking the build.
10153
Daniel Veillard0ba59232002-02-10 13:20:39 +000010154Sun Feb 10 14:13:34 CET 2002 Daniel Veillard <daniel@veillard.com>
10155
10156 * HTMLtree.c Makefile.am build_glob.py configure.in debugXML.c
10157 globals.c parser.c threads.c tree.c valid.c xmlmemory.c
10158 xpath.c xpointer.c include/libxml/globals.h include/libxml/parser.h
10159 include/libxml/parserInternals.h include/libxml/tree.h
10160 include/libxml/xmlmemory.h include/libxml/xpathInternals.h:
10161 Tentatively fixed #69655 , make compiling with -Wredundant-decls
10162 clean.
10163 * python/libxml.c: fixed a warning.
10164
Daniel Veillardc5f05ad2002-02-10 11:57:22 +000010165Sun Feb 10 12:02:59 CET 2002 Daniel Veillard <daniel@veillard.com>
10166
10167 * tree.c valid.c xinclude.c: fix #68882, cleanup the XInclude
10168 copying of node, merge back IDs in the target document.
10169 * result/XInclude/docids.xml test/XInclude/docs/docids.xml
10170 test/XInclude/ents/ids.xml: test case
10171 * result/VC/ElementValid4: output changed due to a typo fix
10172
Daniel Veillard1c18e302002-02-09 22:16:40 +000010173Sat Feb 9 23:15:04 CET 2002 Daniel Veillard <daniel@veillard.com>
10174
10175 * python/Makefile.am: seems some version of automake didn't
10176 generate the dependancies right as Jacob found out. Add
10177 an extra dependancy rule.
10178
Daniel Veillard5e5c2d02002-02-09 18:03:01 +000010179Sat Feb 9 18:59:23 CET 2002 Daniel Veillard <daniel@veillard.com>
10180
10181 * parserInternals.c valid.c: Justin Fletcher found some parts
10182 of the code needing cleanup
10183 * libxml.spec.in python/Makefile.am python/generator.py
10184 python/libxml.c python/libxml.py: Fixed the python Makefiles
10185 corrected a bug showing up on ia64, changed the name of the
10186 python internal module too
10187
Daniel Veillard07be19b2002-02-08 14:20:35 +000010188Fri Feb 8 15:19:28 CET 2002 Daniel Veillard <daniel@veillard.com>
10189
10190 * Makefile.am: applied patch from Andris Pavenis for binary
10191 name suffixes
10192
Daniel Veillardf216d462002-02-08 13:44:24 +000010193Fri Feb 8 14:43:17 CET 2002 Daniel Veillard <daniel@veillard.com>
10194
10195 * xmllint.c win32/win32config.h: fixing #68748
10196
Daniel Veillardd455d792002-02-08 13:37:46 +000010197Fri Feb 8 14:37:05 CET 2002 Daniel Veillard <daniel@veillard.com>
10198
10199 * valid.c: fixing #70166
10200
10201Fri Feb 8 14:31:24 CET 2002 Daniel Veillard <daniel@veillard.com>
10202
10203 * valid.c: fixing #70077
10204
Daniel Veillardc575b992002-02-08 13:28:40 +000010205Fri Feb 8 14:24:02 CET 2002 Daniel Veillard <daniel@veillard.com>
10206
10207 * Copyright Makefile.am README configure.in libxml.spec.in:
10208 Changed to the MIT Licence
10209 * doc/FAQ.html doc/catalog.html doc/intro.html doc/xml.html
10210 doc/xmlio.html: updated the doc accordingly
10211 * include/libxml/xmlwin32version.h configure.in: preparing
10212 2.4.14 release
10213 * python/generator.py python/libxml.c python/libxml2-python-api.xml
10214 python/libxml2class.txt python/libxml_wrap.h python/types.c:
10215 fixed the const xmlChar * wrapper and generator, XPath extension
10216 functions now use the context as first argument
10217 * python/tests/tstxpath.py python/tests/xpath.py
10218 python/tests/xpathext.py: Updated the tests accordingly
10219 * tree.c: fixed bug #70067
10220
Daniel Veillard7db38712002-02-07 16:39:11 +000010221Thu Feb 7 17:33:58 CET 2002 Daniel Veillard <daniel@veillard.com>
10222
10223 * Makefile.am: cleanup
10224 * debugXML.c: always use stdout if output is NULL
10225 * xmlIO.c: don't close filedescriptors passed to outputBuffers
10226 * python/Makefile.am python/generator.py python/libxml2class.txt
10227 python/libxml_wrap.h python/types.c: augmented the number of bindings
10228 handling FILE * and XPath contexts
10229 * python/tests/Makefile.am: avoid a stupid problem due to the
10230 use of TEST.
10231
Daniel Veillard15a143b2002-02-06 22:40:50 +000010232Wed Feb 6 23:37:07 CET 2002 Daniel Veillard <daniel@veillard.com>
10233
10234 * configure.in: fixed stupid bug #70738 found by alfons hoogervorst
10235
Daniel Veillard70cab352002-02-06 16:06:58 +000010236Wed Feb 6 17:04:51 CET 2002 Daniel Veillard <daniel@veillard.com>
10237
10238 * python/TODO python/libxml.c: cleanup the extension function lookup
10239 * xmlmemory.c include/libxml/xmlmemory.h: always compile the list
10240
Daniel Veillard7a96efc2002-02-05 16:34:33 +000010241Tue Feb 5 17:33:30 CET 2002 Daniel Veillard <daniel@veillard.com>
10242
10243 * configure.in python/Makefile.am: do not install outside
10244 of prefix
10245
Daniel Veillard33caa0b2002-02-04 14:07:26 +000010246Mon Feb 4 15:05:55 CET 2002 Daniel Veillard <daniel@veillard.com>
10247
10248 * python/TODO python/libxml.c: started adding SAX interfaces
10249 * python/tests/Makefile.am python/tests/pushSAX.py: added a basic
10250 SAX test
10251
Daniel Veillard36eea2d2002-02-04 00:17:01 +000010252Mon Feb 4 01:12:42 CET 2002 Daniel Veillard <daniel@veillard.com>
10253
10254 * tree.c: hardened the addChild function
10255 * python/generator.py python/libxml.c python/libxml2-python-api.xml
10256 python/libxml2class.txt python/libxml_wrap.h python/TODO:
10257 added accessors needed for xmlNode, a bit more testing and
10258 extension of interfaces
10259 * python/tests/Makefile.am python/tests/build.py: added a test
10260 build from scratch/save/load/check
10261
Daniel Veillard4e1b26c2002-02-03 20:13:06 +000010262Sun Feb 3 21:10:39 CET 2002 Daniel Veillard <daniel@veillard.com>
10263
10264 * parserInternals.c: change a small bit in the way valididy
10265 error messages get initialized
10266 * python/TODO python/libxml.c python/libxml2-python-api.xml
10267 python/libxml2class.txt python/libxml_wrap.h python/types.c:
10268 added some memory debugging to track leaks at the libxml2 level
10269 * python/tests/*.py: changed all tests to check for leaks,
10270 there is just one left in XPath extension registrations.
10271
Daniel Veillard26f1dcc2002-02-03 16:53:19 +000010272Sun Feb 3 17:50:46 CET 2002 Daniel Veillard <daniel@veillard.com>
10273
10274 * python/TODO python/generator.py python/libxml2-python-api.xml
10275 python/libxml2class.txt: more accessor classes for the parser
10276 context, allow to switch on and check validity
10277 * python/tests/Makefile.am python/tests/error.py
10278 python/tests/invalid.xml python/tests/valid.xml
10279 python/tests/validate.py: attded more test and and added error.py
10280 which I forgot to commit in the last step
10281
Daniel Veillard3ce52572002-02-03 15:08:05 +000010282Sun Feb 3 16:03:55 CET 2002 Daniel Veillard <daniel@veillard.com>
10283
10284 * python/Makefile.am python/types.c: cleanup
10285 * python/libxml.c python/libxml.py python/libxml_wrap.h
10286 python/generator.py python/libxml2-python-api.xml
10287 python/libxml2class.txt: added class for parser context, added
10288 first cut for push mode support. Added a framework to generate
10289 accessors functions.
10290 * python/tests/Makefile.am python/tests/push.py: added a push
10291 test
10292
Daniel Veillardcfb05462002-02-02 23:18:22 +000010293Sun Feb 3 00:17:26 CET 2002 Daniel Veillard <daniel@veillard.com>
10294
10295 * python/Makefile.am python/TODO python/libxml.py: fixed a small
10296 bug a bit of cleanup.
10297
Daniel Veillard5d819032002-02-02 21:49:17 +000010298Sat Feb 2 22:47:10 CET 2002 Daniel Veillard <daniel@veillard.com>
10299
10300 * python/Makefile.am python/libxml.c python/libxml2-python-api.xml
10301 python/libxml2class.txt: adding error redirections and preformat
10302 to a python handler
10303 * python/tests/Makefile.am python/tests/*.py: cleanup made all
10304 tests self checking
10305
Daniel Veillard7fd7a942002-02-02 12:19:46 +000010306Sat Feb 2 13:18:54 CET 2002 Daniel Veillard <daniel@veillard.com>
10307
10308 * python/libxml.c python/libxml.py: fixed a stupid bug when renaming
10309 a function
10310
Daniel Veillard9589d452002-02-02 10:28:17 +000010311Sat Feb 2 11:25:51 CET 2002 Daniel Veillard <daniel@veillard.com>
10312
10313 * libxml.spec.in python/Makefile.am python/TODO python/generator.py
10314 python/libxml.c python/libxml2-python-api.xml
10315 python/libxml2class.txt: Progressing through the TODOs, class
10316 description output, extra XML API, RPM now builds the wrappers
10317 for all python installed versions
10318
Daniel Veillard253aa2c2002-02-02 09:17:16 +000010319Sat Feb 2 10:13:52 CET 2002 Daniel Veillard <daniel@veillard.com>
10320
10321 * configure.in libxml.spec.in python/Makefile.am python/TODO
10322 python/generator.py python/libxml2class.txt: added more informations
10323 in the libxml2-python package including docs. Slightly changed
10324 the class hierarchy
10325 * python/tests/*: added basic regression tests infrastructure too
10326
10327Fri Feb 1 23:11:58 CET 2002 Daniel Veillard <daniel@veillard.com>
10328
10329 * configure.in libxml.spec.in example/Makefile.am python/Makefile.am:
10330 added libxml2-python as part of the packages installed
10331
Daniel Veillarda7340c82002-02-01 17:56:45 +000010332Fri Feb 1 18:48:19 CET 2002 Daniel Veillard <daniel@veillard.com>
10333
10334 * python/Makefile.am python/generator.py python/libxml.c
10335 python/libxml.py: more work, now able to extend the
10336 XPath interpreter with functions written in python.
10337
Daniel Veillardc3e39442002-02-01 09:29:41 +000010338Fri Feb 1 10:28:51 CET 2002 Daniel Veillard <daniel@veillard.com>
10339
10340 * python/Makefile.am: Jacob sent a patch to allow building from
10341 tarfile.
10342
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +000010343Fri Feb 1 00:40:48 CET 2002 Daniel Veillard <daniel@veillard.com>
10344
10345 * python/Makefile.am python/libxml.c configure.in Makefile.am:
10346 inserted the python wrappers build, I hope this won't be too
10347 unportable
10348
Daniel Veillard1971ee22002-01-31 20:29:19 +000010349Thu Jan 31 21:27:37 CET 2002 Daniel Veillard <daniel@veillard.com>
10350
10351 * xpath.c: minor optimization
10352 * python/generator.py python/libxml.c python/libxml.py
10353 python/libxml_wrap.h: more work on the python bindings,
10354 they now support XPath and there is no evident leak
10355
Daniel Veillard36ed5292002-01-30 23:49:06 +000010356Thu Jan 31 00:48:06 CET 2002 Daniel Veillard <daniel@veillard.com>
10357
10358 * python/generator.py python/libxml.c python/libxml.py:
10359 more work on the python bindings generator.
10360
Daniel Veillard96fe0952002-01-30 20:52:23 +000010361Wed Jan 30 21:51:26 CET 2002 Daniel Veillard <daniel@veillard.com>
10362
10363 * python/generator.py python/libxml.c python/libxml_wrap.h:
10364 more work on the python bindings.
10365
Daniel Veillardd2897fd2002-01-30 16:37:32 +000010366Wed Jan 30 17:35:33 CET 2002 Daniel Veillard <daniel@veillard.com>
10367
10368 * python/generator.py python/libxml.c python/libxml.py
10369 python/libxml_wrap.h: commited early version of a python binding
10370 for private use only ATM
10371
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +000010372Sat Jan 26 22:41:13 CET 2002 Daniel Veillard <daniel@veillard.com>
10373
10374 * entities.c tree.c include/libxml/entities.h: applied patch
10375 from Anthony Jones to implement copy of DTD subtree too. Had
10376 just to keep 2 function private which really ought to become
10377 public ones.
10378
Daniel Veillarda42f25f2002-01-25 14:15:40 +000010379Fri Jan 25 15:14:55 CET 2002 Daniel Veillard <daniel@veillard.com>
10380
10381 * xmllint.c: added pointers to the web pages in the usage()
10382
Daniel Veillardbd227ae2002-01-24 16:05:41 +000010383Thu Jan 24 17:04:04 CET 2002 Daniel Veillard <daniel@veillard.com>
10384
10385 * tree.c: more fixes from Petr Kozelka for attribute handling
10386 in the tree API to align the semantic with DOM.
10387
Daniel Veillard36065812002-01-24 15:02:46 +000010388Thu Jan 24 16:00:53 CET 2002 Daniel Veillard <daniel@veillard.com>
10389
10390 * valid.c tree.c entities.c: another set of patches from
10391 Anthony Jones for copy operations cleanup and robustness
10392
Daniel Veillardf8592562002-01-23 17:58:17 +000010393Wed Jan 23 18:53:55 CET 2002 Daniel Veillard <daniel@veillard.com>
10394
10395 * doc/APIchunk*.html doc/parsedecl.py doc/api.xsl: generated
10396 an alphabetic index based on comments content
10397 * doc/*: rebuilt the web site with the new references
10398
Daniel Veillardc8c7be42002-01-23 17:53:44 +000010399Wed Jan 23 15:14:22 CET 2002 Daniel Veillard <daniel@veillard.com>
10400
10401 * parserInternals.h: Greg Sjaardema suggested to use an
10402 eponential buffer groth policy in xmlParserAddNodeInfo()
10403
Daniel Veillard3bf65be2002-01-23 12:36:34 +000010404Wed Jan 23 13:32:40 CET 2002 Daniel Veillard <daniel@veillard.com>
10405
10406 * doc/api.xsl doc/APIconstructors.html doc/APIfiles.html
10407 doc/APIfunctions.html doc/APIsymbols.html doc/libxml2-refs.xml
10408 doc/parsedecl.py doc/Makefile.am: updated the python extractor
10409 to generate cross-references, and added/updated the stylesheets
10410 to generate and link API indexes. The generic keyword index
10411 is not done yet.
10412 * doc/*.html: regenerated all the usual docs too
10413
Daniel Veillard2070c482002-01-22 22:12:19 +000010414Tue Jan 22 23:11:26 CET 2002 Daniel Veillard <daniel@veillard.com>
10415
10416 * debugXML.c: added an xpath function to the shell for T. V. Raman
10417
10418Tue Jan 22 22:42:23 CET 2002 Daniel Veillard <daniel@veillard.com>
Daniel Veillard5e926fa2002-01-22 21:44:25 +000010419
10420 * debugXML.c: patch from Anthony Jones to catch NULL nodes in
10421 debug routines.
10422
Daniel Veillardc169f8b2002-01-22 21:40:13 +000010423Tue Jan 22 22:38:42 CET 2002 Daniel Veillard <daniel@veillard.com>
10424
10425 * tree.c: apply an patch from Petr Kozelka for unlink and replace
10426 support of attribute nodes
10427
Daniel Veillard9d06d302002-01-22 18:15:52 +000010428Tue Jan 22 19:12:06 CET 2002 Daniel Veillard <daniel@veillard.com>
10429
10430 * doc/libxml2-api.xml doc/parsedecl.py: Build a new version
10431 hopefully near complete and fully documented of the API in XML
10432 * HTMLtree.c SAX.c debugXML.c error.c globals.c parser.c tree.c
10433 xmlIO.c xmlmemory.c include/libxml/catalog.h include/libxml/hash.h
10434 include/libxml/list.h include/libxml/parser.h include/libxml/tree.h
10435 include/libxml/parserInternals.h include/libxml/valid.hi
10436 include/libxml/xmlIO.h include/libxml/xmlerror.hi
10437 include/libxml/xmlmemory.h include/libxml/xmlversion.h.ini
10438 include/libxml/xpath.h include/libxml/xpathInternals.h:
10439 Cleaned up the doc comments a lot in the process, the interface
10440 coverage is now 100%
10441
Daniel Veillard2d1464f2002-01-21 23:16:56 +000010442Tue Jan 22 00:12:58 CET 2002 Daniel Veillard <daniel@veillard.com>
10443
10444 * doc/libxml2-api.xml doc/parsedecl.py: improved the script to
10445 extracts comments from the gtk-doc DocBook output (a bit
10446 convoluted but seems to work).
10447
Daniel Veillard61006472002-01-21 17:31:47 +000010448Mon Jan 21 18:29:19 CET 2002 Daniel Veillard <daniel@veillard.com>
10449
10450 * Makefile.am doc/Makefile.am doc/libxml2-api.xml doc/parsedecl.py:
10451 added an XML description of the API, moved the script generating
10452 it here. Added a "make api" target
10453
Daniel Veillardd2f23002002-01-21 13:36:00 +000010454Mon Jan 21 14:34:37 CET 2002 Daniel Veillard <daniel@veillard.com>
10455
10456 * tree.c: Adam Lounds pointed out a bug in xmlSearchNs()
10457
Daniel Veillard99e55eb2002-01-21 08:56:29 +000010458Mon Jan 21 09:55:21 CET 2002 Daniel Veillard <daniel@veillard.com>
10459
10460 * xpath.c include/libxml/xpathInternals.h: the change made to
10461 xmlXPathFuncLookupFunc was incompatible roll it back
10462
Daniel Veillard963d2ae2002-01-20 22:08:18 +000010463Sun Jan 20 23:03:41 CET 2002 Daniel Veillard <daniel@veillard.com>
10464
10465 * SAX.c: cleanup patch from Anthony Jones
10466 * doc/Makefile.am: fix the headers to avoid in make scan
10467 * parserInternals.c xpath.c include/libxml/*.h: cleanup of the
10468 includes, * vs Ptr and general cleanup
10469 * parsedecl.py: first version of a script to extract the
10470 module interfaces, the goal will be to provide .decl or XML
10471 specification of the interfaces to build wrappers.
10472
Daniel Veillard0f5f1622002-01-20 12:42:06 +000010473Sun Jan 20 13:38:22 CET 2002 Daniel Veillard <daniel@veillard.com>
10474
10475 * doc/xmlcatalog_man.xml xmlcatalog.c: Fixed bug #68830, xmlcatalog
10476 now provides return codes in case of errors
10477
Bjorn Reese026d29f2002-01-19 15:40:18 +000010478Sat Jan 19 16:36:21 CET 2002 Bjorn Reese <breese@users.sourceforge.net>
10479
10480 * trio.h trio.c triodef.h triop.h trionan.h trionan.c Makefile.am:
10481 Upgraded to trio baseline 1.6
10482 * strio.h strio.c: Replaced by triostr.h and triostr.c
10483
Daniel Veillard572577e2002-01-18 16:23:55 +000010484Fri Jan 18 17:22:50 CET 2002 Daniel Veillard <daniel@veillard.com>
10485
10486 * globals.c xmlIO.c xmlcatalog.c: removed the last occurences
10487 of strdup usage in the code
10488
Daniel Veillarddb5850a2002-01-18 11:49:26 +000010489Fri Jan 18 12:47:15 CET 2002 Daniel Veillard <daniel@veillard.com>
10490
10491 * parser.c error.c: Keith Isdale complained rightly that
10492 xmlInitParser() did not preserve value set by xmlSetGenericErrorFunc
10493
Daniel Veillardcfa0d812002-01-17 08:46:58 +000010494Thu Jan 17 09:44:44 CET 2002 Daniel Veillard <daniel@veillard.com>
10495
10496 * tree.c: fixed the funxtion to set the xml: attributes
10497 * debugXML.c: added "setbase" to test it.
10498
Daniel Veillard2c748c62002-01-16 15:37:50 +000010499Wed Jan 16 16:36:08 CET 2002 Daniel Veillard <daniel@veillard.com>
10500
10501 * tree.c: update xmlNodeSetContent() and xmlNodeSetContentLen()
10502 to allow updating an attribute content
10503
Daniel Veillard8de85c62002-01-15 17:10:15 +000010504Tue Jan 15 18:09:23 CET 2002 Daniel Veillard <daniel@veillard.com>
10505
10506 * libxml.h: try to avoid problems when compiling on Windows
10507
Daniel Veillard314cfa02002-01-14 17:58:01 +000010508Mon Jan 14 18:56:25 CET 2002 Daniel Veillard <daniel@veillard.com>
10509
10510 * hash.c: patch from Anthony Jones for hash.c allocation size
10511 * Makefile.am: trying to work around Yet Another Libtool Madness
10512 and build the 2.4.13 release finally ...
10513
Daniel Veillard744683d2002-01-14 17:30:20 +000010514Mon Jan 14 18:27:19 CET 2002 Daniel Veillard <daniel@veillard.com>
10515
10516 * configure.in include/libxml/xmlwin32version.h: updated to 2.4.13
10517 * doc/* : update of the documentation
10518
Daniel Veillarde6a55192002-01-14 17:11:53 +000010519Mon Jan 14 17:53:41 CET 2002 Daniel Veillard <daniel@veillard.com>
10520
10521 * debugXML.c tree.c: some cleanup after an unsuccessful attempt
10522 at fixing #61290 :-(
10523
Daniel Veillardfb25a512002-01-13 20:32:08 +000010524Sun Jan 13 21:30:54 CET 2002 Daniel Veillard <daniel@veillard.com>
10525
10526 * tree.c: fixed xmlSaveFormatFileEnc() when encoding == NULL
10527 Fixes bug #67229
10528
Daniel Veillardacb2bda2002-01-13 16:15:43 +000010529Sun Jan 13 17:14:06 CET 2002 Daniel Veillard <daniel@veillard.com>
10530
10531 * tree.c: trying to avoid troubles when a subtree is copied
10532 and coalesced in part with the target tree. Should fix
10533 bug #67407
10534
Daniel Veillardd8224e02002-01-13 15:43:22 +000010535Sun Jan 13 16:37:15 CET 2002 Daniel Veillard <daniel@veillard.com>
10536
10537 * valid.c: fixed validation of attributes content of type
10538 NAME NAMES NMTOKEN and NMTOKENS to accept internationalized
10539 values, very old bug. Fixes #67671
10540
Daniel Veillard8107a222002-01-13 14:10:10 +000010541Sun Jan 13 15:07:49 CET 2002 Daniel Veillard <daniel@veillard.com>
10542
10543 * parser.c include/libxml/parserInternals.h tree.c: integrated
10544 a couple of fixes and a new API function xmlSetEntityReferenceFunc()
10545 from Keith Isdale and dedicated to xsldbg the XSLT debugger.
10546
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +000010547Sun Jan 13 14:23:21 CET 2002 Daniel Veillard <daniel@veillard.com>
10548
10549 * threads.c: applied Serguei Narojnyi's patch to add native
10550 thread support on the Win32 platform
10551 * testThreadsWin32.c Makefile.am: added the test program also
10552 from Serguei, Win32 specific
10553 * include/win32config.h include/libxml/xmlwin32version.h.in:
10554 added patch from Igor for the Windows thread specific defines.
10555
Daniel Veillard845cce42002-01-09 11:51:37 +000010556Wed Jan 9 12:50:39 CET 2002 Daniel Veillard <daniel@veillard.com>
10557
10558 * entities.c: Anthony Jones pointed a bug in xmlCopyEntity()
10559
Daniel Veillard7b602b42002-01-08 13:26:00 +000010560Tue Jan 8 14:23:22 CET 2002 Daniel Veillard <daniel@veillard.com>
10561
10562 * doc/*.html doc/site.xsl doc/Makefile: renamed XML.html
10563 output page into XMLinfo.html. Close bug #66951 and
10564 raised by Robert Collins too.
10565
Daniel Veillard73c6e532002-01-08 13:15:33 +000010566Tue Jan 8 14:13:18 CET 2002 Daniel Veillard <daniel@veillard.com>
10567
10568 * encoding.c: Paul Keogh pointed out a possibility of segfault
10569 on repeted xmlAddEncodingAlias() / xmlCleanupEncodingAlias().
10570 Closes bug # 68238
10571
Daniel Veillard4a859202002-01-08 11:49:22 +000010572Tue Jan 8 12:48:27 CET 2002 Daniel Veillard <daniel@veillard.com>
10573
10574 * doc/*.html: updated the Gdome2 links
10575
Daniel Veillard3c5ed912002-01-08 10:36:16 +000010576Tue Jan 8 11:32:30 CET 2002 Daniel Veillard <daniel@veillard.com>
10577
10578 * libxml.h: Applied following patches from Robert Collins
10579 and make sure IN_LIBXML is defined when compiling it
10580 -------
10581 * include/libxml/xmlversion.h.in (LIBXML_DLL_IMPORT): Use on Cygwin
10582 as well as Visual C.
10583 * parser.c (XML_DIR_SEP): Don't use '\\' for Cygwin.
10584 * parserInternals.c (XML_DIR_SEP): Don't use '\\' for Cygwin.
10585 * strio.c (PLATFORM_UNIX): Define for Cygwin.
10586 * triodef.h (TRIO_PLATFORM_UNIX): Define for Cygwin.
10587 * xmlIO.c (xmlFileOpen): Use unix behaviour for Cygwin.
10588 Use binary mode opens for Cygwin (xmlFileOpenW xmlParserGetDirectory
10589 xmlSysIDExists xmlNoNetExists).
10590 * xmllint.c: Don't include winsock2.h for Cygwin.
10591
Daniel Veillard401c2112002-01-07 16:54:10 +000010592Mon Jan 7 17:52:48 CET 2002 Daniel Veillard <daniel@veillard.com>
10593
10594 * parser.c: Jirka Kosek pointer out a bug in xmlParseTextDecl()
10595 when the version info is not present.
10596
Daniel Veillard6f42c132002-01-06 23:05:13 +000010597Mon Jan 7 00:03:58 CET 2002 Daniel Veillard <daniel@veillard.com>
10598
10599 * tree.c: Anthony Jones pointed out a problem in
10600 xmlStringGetNodeList() and provided a fix for it
10601
Daniel Veillardaa39a0f2002-01-06 12:47:22 +000010602Sun Jan 6 13:45:49 CET 2002 Daniel Veillard <daniel@veillard.com>
10603
Daniel Veillarddb5850a2002-01-18 11:49:26 +000010604 * parser.c: patch from Frank J Franklin to remove a bug in
Daniel Veillardaa39a0f2002-01-06 12:47:22 +000010605 xmlCreatePushParserCtxt() when the initial buffer passed
10606 is large.
10607
Daniel Veillard0e47ee22002-01-05 18:25:52 +000010608Sat Jan 5 19:24:23 CET 2002 Daniel Veillard <daniel@veillard.com>
10609
10610 * win32/*: big cleanup of the Windows/MSVC project files
10611 from Igor Zlatkovic
10612
Daniel Veillardcebb1362002-01-02 13:13:30 +000010613Wed Jan 2 14:11:35 CET 2002 Daniel Veillard <daniel@veillard.com>
10614
10615 * doc/Makefile.am: should fix #67674 and avoid troubles if
10616 xsltproc is not available or fails in the prefix provided
10617
Daniel Veillard26908ab2002-01-01 16:50:03 +000010618Tue Jan 1 17:48:56 CET 2002 Daniel Veillard <daniel@veillard.com>
10619
10620 * xmlmemory.c: one more doc patch from Charlie Bozeman.
10621
Daniel Veillard5344c602001-12-31 16:37:34 +000010622Mon Dec 31 17:35:40 CET 2001 Daniel Veillard <daniel@veillard.com>
10623
10624 * DOCBparser.c parser.c valid.c include/libxml/parserInternals.h
10625 include/libxml/xmlerror.h include/libxml/xpathInternals.h:
10626 Fixed a few other problems raised by Charlie Bozeman.
10627 * result/VC/ElementValid[5-7]: fixed the output
10628
Daniel Veillardcbaf3992001-12-31 16:16:02 +000010629Mon Dec 31 17:13:34 CET 2001 Daniel Veillard <daniel@veillard.com>
10630
10631 * *.c include/libxml/*.h doc/html/*: applied 42 documentation
10632 patches from Charlie Bozeman. Regenerated the HTML docs.
10633
Daniel Veillard7f9a6802001-12-20 14:01:47 +000010634Thu Dec 20 14:59:52 CET 2001 Daniel Veillard <daniel@veillard.com>
10635
10636 * include/libxml/debugXML.h win32/dsp/libxml2.def.src: fixes
10637 for Windows from Igor
10638
Daniel Veillard1df3dfc2001-12-18 11:14:16 +000010639Tue Dec 18 12:13:33 CET 2001 Daniel Veillard <daniel@veillard.com>
10640
10641 * xmllint.c: applied Justin Fletcher patch for --output or -o
10642
Daniel Veillardd3b29d22001-12-18 07:53:16 +000010643Tue Dec 18 08:52:32 CET 2001 Daniel Veillard <daniel@veillard.com>
10644
10645 * win32/libxml2/libxml2.def.src: close #67019
10646
Daniel Veillard01db67c2001-12-18 07:09:59 +000010647Tue Dec 18 08:08:51 CET 2001 Daniel Veillard <daniel@veillard.com>
10648
10649 * xmllint.c: applied Justin Fletcher generic timing patch
10650 similar to the one already applied to xsltproc.
10651
Daniel Veillardd1640922001-12-17 15:30:10 +000010652Mon Dec 17 16:29:08 CET 2001 Daniel Veillard <daniel@veillard.com>
10653
10654 * include/libxml/tree.h tree.c: applied documentation patches
10655 from Charlie Bozeman
10656
MST 2001 John Fleck2323ac22001-12-14 04:24:50 +000010657Thu Dec 13 21:24:16 MST 2001 John Fleck <jfleck@inkstain.net>
10658
10659 *doc/xmllint.xml, xmllint.1 - document --dropdtd
10660
Daniel Veillard29e43992001-12-13 22:21:58 +000010661Thu Dec 13 23:19:50 CET 2001 Daniel Veillard <daniel@veillard.com>
10662
10663 * valid.c: fix the xmlStrdup() used in the previous patch.
10664 * valid.c: added --dropdtd
10665 * tree.c: fixed xmlUnlinkNode so it also removes the references
10666 from the document if the node is a DTD
10667
Daniel Veillard86fd5a72001-12-13 14:55:21 +000010668Thu Dec 13 15:54:35 CET 2001 Daniel Veillard <daniel@veillard.com>
10669
10670 * HTMLtree.c valid.c: cleanup some static declarations
10671
Daniel Veillard9ae4b7a2001-12-13 14:24:09 +000010672Thu Dec 13 15:23:04 CET 2001 Daniel Veillard <daniel@veillard.com>
10673
10674 * xmllint.c: removed another strdup()
10675 * doc/FAQ: removed the HP/UX entry
10676
Daniel Veillarded472f32001-12-13 08:48:14 +000010677Thu Dec 13 09:44:58 CET 2001 Daniel Veillard <daniel@veillard.com>
10678
10679 * valid.c: fix bug #66816 when validating.
10680 * xmllint.c: don't use sys/time.h if configure did not found it
10681
MST 2001 John Fleck3fc555e2001-12-11 04:41:24 +000010682Mon Dec 10 21:39:55 MST 2001 John Fleck <jfleck@inkstain.net>
10683
10684 * docs/xmllint.1, xmllint.xml, xmlcatalog.1, xmlcatalog_man.html,
10685 xmlcatalog_man.xml
10686
Daniel Veillard2d8a93b2001-12-10 21:07:19 +000010687Mon Dec 10 22:06:16 CET 2001 Daniel Veillard <daniel@veillard.com>
10688
10689 * include/libxml/xmlmemory.h: Hietaniemi Jarkko pointed out that
10690 xmlInitMemory() was declared twice
10691
Daniel Veillardb82c1662001-12-09 14:00:54 +000010692Sun Dec 9 14:59:23 CET 2001 Daniel Veillard <daniel@veillard.com>
10693
10694 * globals.c: do not reference strdup() !
10695 * configure.in libxml-2.0.pc.in: trying to fix the libs
10696 of the various config extraction modules
10697
Daniel Veillardef90ba72001-12-07 14:24:22 +000010698Fri Dec 7 15:21:33 CET 2001 Daniel Veillard <daniel@veillard.com>
10699
10700 * configure.in : preparing 2.4.12
10701 * doc/* : updated and rebuilt the docs
10702
Daniel Veillard220346d2001-12-07 11:33:54 +000010703Fri Dec 7 12:32:00 CET 2001 Daniel Veillard <daniel@veillard.com>
10704
10705 * uri.c: closed bug #66159
10706 * testURI.c: added --escape option
10707 * configure.in: some cleanup for xml2-config --cflags
10708
Daniel Veillard2a906822001-12-06 14:34:08 +000010709Thu Dec 6 15:31:30 CET 2001 Daniel Veillard <daniel@veillard.com>
10710
10711 * globals.c testThreads.c: removed some misplaced includes
10712 of xmlversion.h
10713
Daniel Veillarde28313b2001-12-06 14:08:31 +000010714Thu Dec 6 09:06:08 EST 2001 Daniel Veillard <daniel@veillard.com>
10715
10716 * threads.c: patch from Gary Pennington fixing a possible
10717 problem at initialization time.
10718
Daniel Veillardd3b08822001-12-05 12:03:33 +000010719Wed Dec 5 13:01:37 CET 2001 Daniel Veillard <daniel@veillard.com>
10720
10721 * configure.in libxml.h parser.c testThreads.c macos/: integrated
Daniel Veillarde28313b2001-12-06 14:08:31 +000010722 Eric Lavigne contribution to build libxml2 on MacOS using
Daniel Veillardd3b08822001-12-05 12:03:33 +000010723 CodeWarrior.
10724
Daniel Veillarda7866932001-12-04 13:14:44 +000010725Tue Dec 4 14:13:44 CET 2001 Daniel Veillard <daniel@veillard.com>
10726
10727 * xmllint.c: applied Geert Kloosterman's patch to fix
10728 --repeat --timing output
10729
Daniel Veillard19840942001-11-29 16:11:38 +000010730Thu Nov 29 17:10:22 CET 2001 Daniel Veillard <daniel@veillard.com>
10731
10732 * parser.c: Robin Berjon <robin@knowscape.com> found a case
10733 where non-wellformed XML declaractions were not detected.
10734
Daniel Veillarde85d9342001-11-28 14:43:12 +000010735Wed Nov 28 15:41:40 CET 2001 Daniel Veillard <daniel@veillard.com>
10736
10737 * xpointer.c: fixed a compilation bug pointed by Danny Jamshy
10738
Daniel Veillard22f25a82001-11-28 09:12:23 +000010739Wed Nov 28 10:09:51 CET 2001 Daniel Veillard <daniel@veillard.com>
10740
10741 * xmlIO.c: as robert pointed again, xmlInputCallbackInitialized
10742 gets reset by xmlCleanupInputCallbacks() and this makes the
10743 function useless. Same for output.
10744
Daniel Veillard107ccaa2001-11-27 16:23:50 +000010745Tue Nov 27 17:22:36 CET 2001 Daniel Veillard <daniel@veillard.com>
10746
10747 * xmlIO.c: robert pointed out a loop error in callback cleanups
10748
Daniel Veillard8faa7832001-11-26 15:58:08 +000010749Mon Nov 26 16:56:00 CET 2001 Daniel Veillard <daniel@veillard.com>
10750
10751 * tree.c debugXML.c include/libxml/tree.h include/libxml/debugXML.h:
10752 moved xmlGetLineNo() and xmlGetNodePath() into the main tree module,
10753 they are not really tied to debugging
10754
Daniel Veillardbd9b0e82001-11-26 10:32:08 +000010755Mon Nov 26 11:31:36 CET 2001 Daniel Veillard <daniel@veillard.com>
10756
10757 * configure.in include/libxml/xmlwin32version.h: preparing 2.4.11
10758 * xmllint.c: better --catalogs description
10759
Daniel Veillard4855c8c2001-11-25 10:35:25 +000010760Sun Nov 25 11:34:24 CET 2001 Daniel Veillard <daniel@veillard.com>
10761
10762 * tree.c: fixed a couple of problems in xmlSetProp()
10763
Daniel Veillardcd337f02001-11-22 18:20:37 +000010764Thu Nov 22 19:19:10 CET 2001 Daniel Veillard <daniel@veillard.com>
10765
10766 * debugXML.c tree.c xmlIO.c xmlmemory.c: some cleanups when chasing
10767 unappropriate stdout output.
10768
Daniel Veillard566d4df2001-11-22 13:00:53 +000010769Thu Nov 22 13:58:14 CET 2001 Daniel Veillard <daniel@veillard.com>
10770
10771 * include/libxml/tree.h: Fixed a couple of macro errors pointed out
10772 by Denis Beurive, closes #65111
10773
Daniel Veillardb4545fd2001-11-20 09:37:09 +000010774Tue Nov 20 10:34:01 CET 2001 Daniel Veillard <daniel@veillard.com>
10775
10776 * valid.c: in case of content model validity error, don't
10777 print it if validity warnings were not requested.
10778
Daniel Veillardc69e0b12001-11-20 08:35:07 +000010779Tue Nov 20 09:30:02 CET 2001 Daniel Veillard <daniel@veillard.com>
10780
10781 * nanoftp.c: applied a couple of patches from Brian D Ripley.
10782 * parserInternals.c: removed the last exit() call. Print an
10783 unmaskable error on stderr instead (library mismatch detection)
10784
MST 2001 John Fleck42304042001-11-18 00:18:06 +000010785Sat Nov 17 17:16:51 MST 2001 John Fleck <jfleck@inkstain.net>
10786
10787 * doc/xmllint.xml, doc/xmllint.1 - update xmllint man page with
10788 shell instructions from Heiko Rupp
10789
Daniel Veillardf7b094f2001-11-15 13:54:39 +000010790Thu Nov 15 14:53:42 CET 2001 Daniel Veillard <daniel@veillard.com>
10791
10792 * catalog.c: use the URL notation file:// for default catalog paths
10793
Daniel Veillard0ec98632001-11-14 15:04:32 +000010794Wed Nov 14 16:03:02 CET 2001 Daniel Veillard <daniel@veillard.com>
10795
10796 * include/libxml/tree.h: better comments for _private fields
10797 * tree.c: removed a problem when copying an entity reference.
10798
Daniel Veillardd33cfbf2001-11-13 15:24:36 +000010799Tue Nov 13 16:23:04 CET 2001 Daniel Veillard <daniel@veillard.com>
10800
10801 * vms/*: updated instructions and diffs from John A Fotheringham
10802
Daniel Veillarda11001b2001-11-12 22:45:36 +000010803Mon Nov 12 23:43:22 CET 2001 Daniel Veillard <daniel@veillard.com>
10804
10805 * include/libxml/xmlerror.h: avoid an include problem if
10806 #include <libxml/xmlerror.h> happens first in code
10807 seems to be the case in KDE libs
10808
Daniel Veillard8e3943c2001-11-12 21:35:44 +000010809Mon Nov 12 22:32:41 CET 2001 Daniel Veillard <daniel@veillard.com>
10810
10811 * win32/dsp/* include/libxml/xmlwin32version.h.in: update
10812 from Igor for Windows
10813
10814Mon Nov 12 10:19:41 CET 2001 Daniel Veillard <daniel@veillard.com>
10815
10816 * Makefile.am: Gary Pennington pointed out a missing prefix
10817
Daniel Veillard43d3f612001-11-10 11:57:23 +000010818Sat Nov 10 12:55:42 CET 2001 Daniel Veillard <daniel@veillard.com>
10819
10820 * configure.in include/libxml/xmlwin32version.h: preparing 2.4.10
10821 * doc/*: upgraded and rebuilt the docs
10822
Daniel Veillardc1f78342001-11-10 11:43:05 +000010823Sat Nov 10 12:33:38 CET 2001 Daniel Veillard <daniel@veillard.com>
10824
10825 * HTMLparser.c: fix comment in scripts element parsing.
10826 * result/HTML/doc3*: updated the results.
10827
10828Sat Nov 10 11:18:18 CET 2001 Daniel Veillard <daniel@veillard.com>
10829
10830 * uri.c: another URI bug fix #63336, using Joel Young patch.
10831
Daniel Veillardc6e013a2001-11-10 10:08:57 +000010832Sat Nov 10 11:07:26 CET 2001 Daniel Veillard <daniel@veillard.com>
10833
10834 * debugXML.c include/libxml/debugXML.h: add xmlGetNodePath()
10835 a cleaned up version of the Pwd shell string generation.
10836
Daniel Veillardbe480fb2001-11-08 23:36:42 +000010837Fri Nov 9 00:34:13 CET 2001 Daniel Veillard <daniel@veillard.com>
10838
10839 * valid.c include/libxml/tree.h: trying to fix namespaces +
10840 validation problems for good, closing #63619 in the process
10841 * result/valid/dia.xml test/valid/dia.xml: the Dia test was
10842 wrong in this respect, fixed it.
10843
Daniel Veillardd536f702001-11-08 17:32:47 +000010844Thu Nov 8 18:31:40 CET 2001 Daniel Veillard <daniel@veillard.com>
10845
10846 * xmllint.c: Morus Walter patch to allow --format and --encode
10847
Daniel Veillard5004f422001-11-08 13:53:05 +000010848Thu Nov 8 14:52:18 CET 2001 Daniel Veillard <daniel@veillard.com>
10849
10850 * debugXML.c: Stefan Kost provided an help command for the shell
10851
Daniel Veillarda6825e82001-11-07 13:33:59 +000010852Wed Nov 7 14:32:55 CET 2001 Daniel Veillard <daniel@veillard.com>
10853
10854 * debugXML.c: Heiko Rupp pointed that the shell would crash
10855 on empty nodesets returns.
10856
Daniel Veillard03f848d2001-11-07 12:53:46 +000010857Wed Nov 7 13:52:36 CET 2001 Daniel Veillard <daniel@veillard.com>
10858
10859 * Makefile.am: Weiqi Gao pointed out that xmlcatalog
10860 migh need the history libraries
10861
Daniel Veillard957fdcf2001-11-06 22:50:19 +000010862Tue Nov 6 23:49:09 CET 2001 Daniel Veillard <daniel@veillard.com>
10863
10864 * HTMLparser.c test/HTML/lt.html result/HTML/lt.html*:
10865 handle the case of < in quoted attributes, Bastian Kleineidam
10866
Daniel Veillardc853b322001-11-06 15:24:37 +000010867Tue Nov 6 16:21:33 CET 2001 Daniel Veillard <daniel@veillard.com>
10868
10869 * configure.in include/libxml/xmlwin32version.h: releasing 2.4.9
10870 fixing catalog breakages
10871 * Makefile.am catalog.c result/catalogs/catal
10872 result/catalogs/mycatalog.* test/catalogs/catal*:
10873 fixed more problems in catalog support, added more regression tests
10874 for both XML and SGML catalog handling
10875
Daniel Veillard66870c72001-11-05 19:27:49 +000010876Mon Nov 5 20:26:41 CET 2001 Daniel Veillard <daniel@veillard.com>
10877
10878 * debugXML.c: applied an improvement to xmlGetLineNo() from
10879 Keith Isdale
10880
Daniel Veillardffe09c92001-11-05 14:21:47 +000010881Mon Nov 5 15:20:16 CET 2001 Daniel Veillard <daniel@veillard.com>
10882
10883 * catalog.c: dohhhh XML catalog add and remove ops were broken too.
10884 Side effect of the progressive catalog loading
10885
Daniel Veillardad661b92001-11-05 11:43:15 +000010886Mon Nov 5 12:40:54 CET 2001 Daniel Veillard <daniel@veillard.com>
10887
10888 * Makefile.am: confexecdir and confexec_DATA were defined twice
10889 pointed out by Karl Eichwalder
10890
Daniel Veillard6eb17722001-11-04 22:19:27 +000010891Sun Nov 4 23:18:34 CET 2001 Daniel Veillard <daniel@veillard.com>
10892
10893 * xmlcatalog.c: avoid unlink() and use remove() instead.
10894
Daniel Veillardea898282001-11-04 22:13:45 +000010895Sun Nov 4 23:12:38 CET 2001 Daniel Veillard <daniel@veillard.com>
10896
10897 * libxml.spec.in: cleanup
10898 * include/libxml/xmlwin32version.h: updated with 2.4.8
10899
Daniel Veillarda4617b82001-11-04 20:19:12 +000010900Sun Nov 4 21:17:24 CET 2001 Daniel Veillard <daniel@veillard.com>
10901
10902 * encoding.c global.data globals.c testThreads.c: fix bug #63752
10903 of compiling libxml with a non standard set of options
10904
John Fleck027edfb2001-11-04 20:13:58 +000010905Sun Nov 4 13:11:41 MST 2001 John Fleck <jfleck@inkstain.net
10906
10907 * doc/xmllint.xml, xmllint.1 - updating xmllint man page to
10908 document --sgml option, fixing gnome bugzilla #63382
10909
Daniel Veillardcd21dc72001-11-04 20:03:38 +000010910Sun Nov 4 20:56:53 CET 2001 Daniel Veillard <daniel@veillard.com>
10911
10912 * include/libxml/catalog.h catalog.c: Fixed SGML catalogs
10913 breakage of 2.4.7, added a couple of really needed APIs
10914 like xmlCatalogIsEmpty() and xmlNewCatalog()
10915 * xmlcatalog.c: updated --sgml --noout to be a suitable replacement
10916 for install-catalog
10917 * configure.in: preparing 2.4.8
10918
CET 2001 Daniel Veillard5a37bde2001-11-01 14:31:22 +000010919Thu Nov 1 15:29:31 CET 2001 Daniel Veillard <daniel@veillard.com>
10920
10921 * HTMLtree.c tree.c include/libxml/HTMLtree.h
10922 include/libxml/tree.h include/libxml/xmlIO.h: more include
10923 cleanups, export cleanly one html output + format function.
10924
10925Thu Nov 1 14:12:12 CET 2001 Daniel Veillard <daniel@veillard.com>
10926
10927 * parser.c: removed initGenericErrorDefaultFunc call from
10928 xmlInitParser() since it could destroy previous calls to
10929 xsltSetGenericErrorFunc() effects
10930
Daniel Veillardebd38c52001-11-01 08:38:12 +000010931Thu Nov 1 09:37:13 CET 2001 Daniel Veillard <daniel@veillard.com>
10932
10933 * debugXML.c include/libxml/debugXML.h: bool can be a reserved
10934 keyword.
10935
Daniel Veillard8bdb91d2001-10-31 17:52:43 +000010936Wed Oct 31 18:50:08 CET 2001 Daniel Veillard <daniel@veillard.com>
10937
10938 * Makefile.am: cleanup
10939 * threads.c: cleanup too
10940 * xmlIO.c include/libxml/xmlIO.h: added xmlNoNetExternalEntityLoader()
10941 from xsltproc
10942 * include/libxml/tree.h include/libxml/parser.h: trying to break a
10943 dependancy loop.
10944
Daniel Veillard91c00402001-10-30 17:41:38 +000010945Tue Oct 30 18:38:53 CET 2001 Daniel Veillard <daniel@veillard.com>
10946
10947 * catalog.c: Justin Fletcher pointed out that xmlParseXMLCatalog
10948 was not used anymore !
10949
Daniel Veillard52dcab32001-10-30 12:51:17 +000010950Tue Oct 30 13:33:13 CET 2001 Daniel Veillard <daniel@veillard.com>
10951
10952 * configure.in: preparing 2.4.7
10953 * Makefile.am doc/Makefile.am: switched to the latest xmllint
10954 manual page from John
10955 * doc/*: updated the doc and rebuilt the generated pages
10956
Daniel Veillarda9e65e82001-10-30 10:32:36 +000010957Tue Oct 30 11:31:19 CET 2001 Daniel Veillard <daniel@veillard.com>
10958
10959 * xmlIO.c: closing bug #62711, the library should never
10960 close stdin or stdout.
10961
Daniel Veillard4def3bd2001-10-30 09:47:47 +000010962Tue Oct 30 10:46:12 CET 2001 Daniel Veillard <daniel@veillard.com>
10963
10964 * uri.c: second pass at fixing #63336, using Joel Young
10965 final patch. looks okay.
10966
Daniel Veillardbb6808e2001-10-29 23:59:27 +000010967Tue Oct 30 00:56:05 CET 2001 Daniel Veillard <daniel@veillard.com>
10968
10969 * uri.c include/libxml/uri.h: trying to clear #63336
10970 allowing the escaping routine to parse unconformant
10971 URI-References.
10972
Daniel Veillardacf7ff02001-10-29 20:21:47 +000010973Mon Oct 29 19:09:46 CET 2001 Daniel Veillard <daniel@veillard.com>
10974
10975 * vms/readme.vms vms/build_libxml.com nanoftp.c
10976 include/libxml/xmlversion.h.in: a few VMS updates from
10977 John A Fotheringham
10978 * include/libxml/xmlIO.h xmlIO.c: added xmlCleanupInputCallbacks()
10979 and xmlCleanupOutputCallbacks() for the Perl binding people.
10980
Daniel Veillard635ef722001-10-29 11:48:19 +000010981Mon Oct 29 12:44:17 CET 2001 Daniel Veillard <daniel@veillard.com>
10982
10983 * parser.c globals.c DOCBparser.c HTMLparser.c error.c:
10984 apply fixes to close #63271 and avoid segfaults when
10985 the error routine gets callbed before xmlInitParser()
10986 get called.
10987 * nanoftp.c error.c: Applied patches from Justin Fletcher
10988 correcting some xmlGenericError misuses.
10989
MDT 2001 John Fleckfd32de62001-10-27 20:14:01 +000010990Sat Oct 27 14:04:45 MDT 2001 John Fleck <jfleck@inkstain.net>
10991
10992 *doc/xmllint.xml, doc/xmllint.1
10993 New and improved man page for xmllint - .xml is the original, .1
10994 is the generated man page
10995
Daniel Veillardc9484202001-10-24 12:35:52 +000010996Wed Oct 24 14:34:25 CEST 2001 Daniel Veillard <daniel@veillard.com>
10997
10998 * doc/site.xsl doc/*.html doc/Makefile.am: now autogenerate
10999 the web site from the main HTML document.
11000
Daniel Veillard5151c062001-10-23 13:10:19 +000011001Tue Oct 23 14:32:04 CEST 2001 Daniel Veillard <daniel@veillard.com>
11002
11003 * parser.c: fixed an erroneous validation bug when PE refs
11004 occurs in external parsed entities referenced from the
11005 internals subset
11006 * test/valid/index.xml test/valid/dtds/nitf-2-5.dtd
11007 test/valid/dtds/NewsMLv1.0.dtd result/valid/index.xml*:
11008 added the associated testcase, it's a nice one.
11009 * HTMLparser.c: generate the DTD node as HTML still ...
11010 * HTMLtree.c: fixed errors in Set/GetMetaEncoding
11011
Daniel Veillardb6b0fd82001-10-22 12:31:11 +000011012Mon Oct 22 14:20:17 CEST 2001 Daniel Veillard <daniel@veillard.com>
11013
11014 * HTMLparser.c: fixed a bug in htmlNewDoc()
11015
Daniel Veillard89cad532001-10-22 09:46:13 +000011016Mon Oct 22 11:32:36 CEST 2001 Daniel Veillard <daniel@veillard.com>
11017
11018 * test/threads/*: added entities testing to the Thread test
11019 * testThreads.c: make the test reasonable
11020 * DOCBparser.c: fix the DTD public and system ID
11021 * xmllint.c: added --sgml for SGML DocBook importing
11022 * Makefile.am: added Docbtests target
11023
Daniel Veillard9ae1eba2001-10-19 09:48:35 +000011024Fri Oct 19 11:47:13 CEST 2001 Daniel Veillard <daniel@veillard.com>
11025
11026 * nanoftp.c: use only "anonymous@" string for anonymous passwds
11027 * testThreads.c: removed bogus include
11028
Daniel Veillardce2c2f02001-10-18 14:57:24 +000011029Thu Oct 18 16:56:23 CEST 2001 Daniel Veillard <daniel@veillard.com>
11030
11031 * parser.c valid.c result/valid/rss.xml result/valid/rss.xml.err:
11032 fixed a very serious (looping) validation bug
11033
Daniel Veillard3c01b1d2001-10-17 15:58:35 +000011034Wed Oct 17 11:56:25 EDT 2001 Daniel Veillard <daniel@veillard.com>
11035
11036 * include/libxml/globals.h include/libxml/threads.h threads.c
11037 testThreads.c: far more testing, cleaning up bugs
11038 * *.c : make sure globals.h is always included.
11039
Daniel Veillard7cc95c02001-10-17 15:45:12 +000011040Wed Oct 17 17:41:41 CEST 2001 Daniel Veillard <daniel@veillard.com>
11041
11042 * HTMLparser.c: try to get rid of parser loops for good.
11043
Daniel Veillardab7488e2001-10-17 11:30:37 +000011044Wed Oct 17 13:29:02 CEST 2001 Daniel Veillard <daniel@veillard.com>
11045
11046 * configure.in: fixed some bugs in CFLAGS passing.
11047 * test/threads Makefile.am testThreads.c: added a specific
11048 threaded test case (really nasty, guaranteed).
11049
Daniel Veillard85c11fa2001-10-16 21:03:08 +000011050Tue Oct 16 23:01:49 CEST 2001 Daniel Veillard <daniel@veillard.com>
11051
11052 * catalog.c: serious cleanup on the management of the
11053 XML catalog tree, more tests done, especially with
11054 the catalog PI.
11055
Daniel Veillard364789a2001-10-16 12:45:00 +000011056Tue Oct 16 08:43:43 EDT 2001 Daniel Veillard <daniel@veillard.com>
11057
11058 * catalog.c: avoid a problem in catalog cleanup on SMP if
11059 catalogs were not initialized.
11060
Daniel Veillard81463942001-10-16 12:34:39 +000011061Tue Oct 16 14:33:19 CEST 2001 Daniel Veillard <daniel@veillard.com>
11062
11063 * catalog.c xpath.c: trying to cleanup the not thread safe
11064 parts of the library.
11065
Daniel Veillard64a411c2001-10-15 12:32:07 +000011066Mon Oct 15 14:30:11 CEST 2001 Daniel Veillard <daniel@veillard.com>
11067
11068 * include/libxml/globals.h configure.in global.data: make
11069 the allocation be per-thread a configure option
11070 * encoding.c include/libxml/parser.h: fixed compilation
11071 errors
11072
Daniel Veillard5ee57fc2001-10-15 10:46:16 +000011073Mon Oct 15 12:45:03 CEST 2001 Daniel Veillard <daniel@veillard.com>
11074
11075 * include/libxml/parser.h: Norm reported that a few lines
11076 added were breaking libxslt compile, removed them for now
11077
Daniel Veillard6f350292001-10-14 09:56:15 +000011078Sun Oct 14 05:55:01 EDT 2001 Daniel Veillard <daniel@veillard.com>
11079
11080 * parser.c parserInternals.c threads.c: debugged and fixed
11081 initialization problems which were giving troubles on SMP
11082 boxes.
11083
Daniel Veillard6661ffa2001-10-13 14:18:17 +000011084Sat Oct 13 16:17:13 CEST 2001 Daniel Veillard <daniel@veillard.com>
11085
11086 * include/libxml/Makefile.am: missing globals.h
11087
Daniel Veillarde7090612001-10-13 12:18:28 +000011088Sat Oct 13 14:15:00 CEST 2001 Daniel Veillard <daniel@veillard.com>
Jaka Mocnik77d19ae2001-10-13 12:06:09 +000011089
Daniel Veillarde7090612001-10-13 12:18:28 +000011090 * globals.c: added a couple of standard includes.
Jaka Mocnik77d19ae2001-10-13 12:06:09 +000011091
Daniel Veillardd0463562001-10-13 09:15:48 +000011092Sat Oct 13 11:08:20 CEST 2001 Daniel Veillard <daniel@veillard.com>
11093
11094 * include/libxml/SAX.h include/libxml/globals.h include/libxml/parser.h
11095 include/libxml/parserInternals.h include/libxml/tree.h
11096 include/libxml/xmlerror.h HTMLparser.c SAX.c error.c globals.c
11097 nanoftp.c nanohttp.c parser.c parserInternals.c testDocbook.c
11098 testHTML.c testSAX.c tree.c uri.c xlink.c xmlmemory.c:
11099 Applied the last patches from Gary, cleanup, activated threading
11100 all user accessible global variables are now handled in globals.[ch]
11101 Still a bit rought but make tests passes with either
11102 --with-threads defined at configure time or not.
11103 * Makefile.am example/Makefile.am: added globals.[ch] and threads
11104 linking options
11105
Daniel Veillardb8478642001-10-12 17:29:10 +000011106Fri Oct 12 19:25:55 CEST 2001 Daniel Veillard <daniel@veillard.com>
11107
11108 * Makefile.am include/libxml/Makefile.am
11109 include/libxml/globals.h globals.c include/libxml/threads.h
11110 threads.c build_glob.py global.data xmlcatalog.c acconfig.h
11111 configure.in: started integrating the core of the thread support
11112 not activated yet but half integrated. The code should still
11113 compile and work anyway.
11114
Daniel Veillardb44025c2001-10-11 22:55:55 +000011115Fri Oct 12 00:53:03 CEST 2001 Daniel Veillard <daniel@veillard.com>
11116
11117 * HTMLtree.c catalog.c debugXML.c entities.c nanoftp.c
11118 parser.c valid.c xmlmemory.c xpath.c xpointer.c: started
11119 integrating the non-controversial parts of Gary Pennington
11120 multithread patches
11121 * catalog.c: corrected a small bug introduced
11122
Daniel Veillard75b96822001-10-11 18:59:45 +000011123Thu Oct 11 20:58:15 CEST 2001 Daniel Veillard <daniel@veillard.com>
11124
11125 * catalog.c include/libxml/catalog.h: very serious cleanup,
11126 isolating unportable code and as much as possible the accesses
11127 to the global shared catalog. May need more testing !
11128
Daniel Veillard78d12092001-10-11 09:12:24 +000011129Thu Oct 11 11:10:31 CEST 2001 Daniel Veillard <daniel@veillard.com>
11130
11131 * include/libxml/debugXML.h debugXML.c tree.c: integrating
11132 Keith Isdale patches for the XSLT debugger interfaces. Some
11133 cleanup
11134
Daniel Veillardff0b7312001-10-11 06:46:09 +000011135Thu Oct 11 08:44:01 CEST 2001 Daniel Veillard <daniel@veillard.com>
11136
11137 * win32/Makefile.mingw: update from Tobias Peters for 2.4.5
11138 * DOCBparser.c: generate line nubers in elements
11139
Daniel Veillard60087f32001-10-10 09:45:09 +000011140Wed Oct 10 11:35:45 CEST 2001 Daniel Veillard <daniel@veillard.com>
11141
11142 * configure.in: preparing 2.4.6 release
11143 * doc/xml.html doc/html/*: updated and rebuilt the docs
11144 * include/libxml/*.h *.c: fixed a number of teh/the widht/width typos
11145
MDT 2001 John Fleck60416fa2001-10-09 02:41:50 +000011146Mon Oct 8 20:38:27 MDT 2001 John Fleck <jfleck@inkstain.net>
11147
11148 * doc/xmlcatalog_man.xml, xmlcatalog.1, xmlcatalog_man.html
11149 adding documentation for DV's supercatalog support
11150
Daniel Veillard82d75332001-10-08 15:01:59 +000011151Mon Oct 8 17:00:16 CEST 2001 Daniel Veillard <daniel@veillard.com>
11152
11153 * include/libxml/catalog.h catalog.c xmlcatalog.c: adding SGML
11154 super catalog support adding one API and one flag --sgml to
11155 xmlcatalog
11156
MDT 2001 John Fleck0e229932001-10-07 22:46:00 +000011157Sun Oct 7 16:43:57 MDT 2001 John Fleck <jfleck@inkstain.net>
11158
11159 * doc/xmlcatalog_man.xml, xmlcatalog.1
11160 One more crack at
11161 https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=54392
11162
11163
Thomas Broyer47334c02001-10-07 16:41:52 +000011164Sun Oct 7 18:47:02 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
11165
11166 * xpath.c: implemented xmlXPathObjectCopy for external objects
11167 * include/libxml/xpathInternals.h: added xmlXPathStackIsExternal
11168
MDT 2001 John Fleckac941e32001-10-06 22:30:16 +000011169Sat Oct 6 16:25:52 MDT 2001 John Fleck <jfleck@inkstain.net>
11170
11171 *doc/xmlcatalog_man.xml, xmlcatalog_man.html, xmlcatalog.1
11172 finishing up fix to
11173 https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=54392, making
11174 the xmlcatalog man page display more elegantly
11175
Daniel Veillard3fbe8e32001-10-06 13:30:33 +000011176Sat Oct 6 15:27:12 CEST 2001 Daniel Veillard <daniel@veillard.com>
11177
11178 * configure.in: closing bug #61832
11179 * HTMLparser.c: removed a warning
11180
Daniel Veillard6ab38382001-10-06 13:08:27 +000011181Sat Oct 6 15:07:14 CEST 2001 Daniel Veillard <daniel@veillard.com>
11182
11183 * xpath.c: fixing #61673 part I, do not loose doc information
11184 when copying result value trees.
11185
Daniel Veillard556c6682001-10-06 09:59:51 +000011186Sat Oct 6 11:58:58 CEST 2001 Daniel Veillard <daniel@veillard.com>
11187
11188 * xpath.c: trying to harden the XPath interpreter
11189
MDT 2001 John Fleck9f82dc62001-10-06 02:40:10 +000011190Fri Oct 5 20:37:51 MDT 2001 John Fleck <jfleck@inkstain.net>
11191
11192 * doc/xmlcatalog.1 updated using a new stylesheet to address, in
11193 part, https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=54392
11194
William M. Brack1633d182001-10-05 15:41:19 +000011195Fri Oct 5 23:35:00 HKT 2001 William Brack <wbrack@mmm.com.hk>
11196
11197 * HTMLparser: repaired another loop problem
11198
Daniel Veillard20ee8c02001-10-05 09:18:14 +000011199Fri Oct 5 11:16:21 CEST 2001 Daniel Veillard <daniel@veillard.com>
11200
11201 * uri.c: applied fix from Mathias Hasselmann about a bug in URI
11202 parsing.
11203 * xpath.c: fix bug #61291 the default XML namespace node is
11204 missing from the namespace axis.
11205 * tree.c: refuse to create namespaces nodes with prefix "xml"
11206
Daniel Veillard651f9472001-10-04 14:51:06 +000011207Thu Oct 4 16:47:44 CEST 2001 Daniel Veillard <daniel@veillard.com>
11208
11209 * SAX.c: ouch a non-defined namespace could lead to a crash,
11210 fixed #61215
11211
Daniel Veillard7dd05702001-10-04 14:25:12 +000011212Thu Oct 4 16:24:26 CEST 2001 Daniel Veillard <daniel@veillard.com>
11213
11214 * parserInternals.c: closed bug #61054
11215
Daniel Veillard5e6d10a2001-10-03 13:21:13 +000011216Wed Oct 3 15:19:04 CEST 2001 Daniel Veillard <daniel@veillard.com>
11217
11218 * include/libxml/Makefile.am: closing #60708
11219
Daniel Veillarda293c322001-10-02 13:54:14 +000011220Tue Oct 2 15:52:05 CEST 2001 Daniel Veillard <daniel@veillard.com>
11221
11222 * win32/dsp/libxml2.def.src include/libxml/parser.h parser.c:
11223 adding xmlSAXParseFileWithData following Marco Stipek suggestion
11224
Daniel Veillardf4309d72001-10-02 09:28:58 +000011225Tue Oct 2 11:27:58 CEST 2001 Daniel Veillard <daniel@veillard.com>
11226
11227 * valid.c: close bug #61550 when xml: wasn't considered a namespace
11228
Daniel Veillardf6ed8bc2001-10-02 09:22:47 +000011229Tue Oct 2 11:18:32 CEST 2001 Daniel Veillard <daniel@veillard.com>
11230
11231 * win32/dsp/libxml2.def.src: Igor Zlatkovic patches
11232 * DOCBparser.c HTMLparser.c parser.c: fixed typos
11233
Daniel Veillard16756b62001-10-01 07:36:25 +000011234Mon Oct 1 09:34:51 CEST 2001 Daniel Veillard <daniel@veillard.com>
11235
11236 * catalog.c: Justin Fletcher provided cleaup code in case
11237 HAVE_STAT is not defined
11238 * include/win32config.h: Igor Zlatkovic suggested to have
11239 HAVE_STAT defined there
11240
William M. Brack5e1cac12001-09-28 16:19:18 +000011241Sat Sep 29 00:15:00 HKT 2001 William Brack <wbrack@mmm.com.hk>
11242
11243 * catalog.c - fixed typing error reported by M. Barros
11244
MDT 2001 John Fleckbbb9e432001-09-24 03:08:43 +000011245Sun Sep 23 21:02:39 MDT 2001 John Fleck <jfleck@inkstain.net>
11246
11247 * xmllint.c - fixing typo
11248
William M. Brackd28e48a2001-09-23 01:55:08 +000011249Sat Sep 22 10:00:00 HKT 2001 William Brack <wbrack@mmm.com.hk>
11250
11251 * HTMLparser.c: small enhancement to prevent loop on
11252 unrecognizable data
11253
Daniel Veillardb1d62872001-09-21 09:47:08 +000011254Fri Sep 21 11:45:53 CEST 2001 Daniel Veillard <daniel@veillard.com>
11255
11256 * parserInternals.c: applying patch from bug #60757 this
11257 should close it
11258
Daniel Veillardc0631a62001-09-20 13:56:06 +000011259Thu Sep 20 15:54:29 CEST 2001 Daniel Veillard <daniel@veillard.com>
11260
11261 * catalog.c xmlcatalog.c: removed a couple of warning
11262 * xpath.c: try to solve the linking problem on platforms
11263 needing trio to compile
11264
Daniel Veillard1a123612001-09-19 08:06:23 +000011265Wed Sep 19 10:01:37 CEST 2001 Daniel Veillard <daniel@veillard.com>
CEST 2001 Jens Finkede8c8af2001-09-19 07:20:40 +000011266
Daniel Veillard1a123612001-09-19 08:06:23 +000011267 * Makefile.am libxml.spec.in: backing up non-documented changes
11268 commited without review or aproval by Jens Finke <jens@gnome.org>
11269 * HACKING: made 100% clear that no commit should be done directly
CEST 2001 Jens Finkede8c8af2001-09-19 07:20:40 +000011270
Daniel Veillardf5b44e42001-09-17 17:19:54 +000011271Mon Sep 17 18:52:37 CEST 2001 Daniel Veillard <daniel@veillard.com>
11272
11273 * configure.in: Joe Orton provided a patch fixing a problem
11274 when iconv is specified to be in a non-standard directory
11275 but wasn't exported in xml2-config --cflags
11276
Daniel Veillard2fc2db72001-09-14 17:33:51 +000011277Fri Sep 14 19:32:43 CEST 2001 Daniel Veillard <daniel@veillard.com>
11278
Daniel Veillardf5b44e42001-09-17 17:19:54 +000011279 * configure.in: let's ship 2.4.5 before getting too much
Daniel Veillard2fc2db72001-09-14 17:33:51 +000011280 troubles with 2.4.4 errors.
11281
Daniel Veillard16698282001-09-14 10:29:27 +000011282Fri Sep 14 12:26:58 CEST 2001 Daniel Veillard <daniel@veillard.com>
11283
11284 * encoding.c entities.c: do not output hexadecimal charrefs
11285 when serializing HTML since some version of Netscape can't
11286 grok it, generate decimal ones.
11287 * result/HTML/doc3.htm: output changed due to previous test
11288 * parserInternals.c: repair xmlKeepBlanksDefault() broken in 2.4.4
11289
Daniel Veillard98fed372001-09-13 11:34:58 +000011290Thu Sep 13 13:34:27 CEST 2001 Daniel Veillard <daniel@veillard.com>
11291
11292 * libxml-2.0.pc.in: dohh generated the wrong include path :-(
11293 * doc/Makefile.am libxml.spec.in: re-dohh forgot the new manpage :-(
11294
Daniel Veillard07cdb2a2001-09-12 20:19:58 +000011295Wed Sep 12 22:14:55 CEST 2001 Daniel Veillard <daniel@veillard.com>
Daniel Veillard98fed372001-09-13 11:34:58 +000011296 Released 2.4.4
Daniel Veillard07cdb2a2001-09-12 20:19:58 +000011297
11298 * config.h.in configure.in libxml.spec.in include/libxml/Makefile.am
11299 libxml-2.0.pc.in: moved includes to includedir/libxml2/libxml,
11300 updated the configuration scripts systems accordingly
11301
Daniel Veillard04382ae2001-09-12 18:51:30 +000011302Wed Sep 12 20:49:32 CEST 2001 Daniel Veillard <daniel@veillard.com>
11303
11304 * configure.in: preparing for 2.4.4
11305 * doc/xml.html doc/html/*: updated and rebuilt the docs
11306
Daniel Veillardd63437e2001-09-12 15:00:27 +000011307Wed Sep 12 16:58:16 CEST 2001 Daniel Veillard <daniel@veillard.com>
11308
11309 * win32/dsp/libxml2.def.src: tried to incorporate comments
11310 from bug #59220
11311
Daniel Veillard319a7422001-09-11 09:27:09 +000011312Tue Sep 11 11:25:36 CEST 2001 Daniel Veillard <daniel@veillard.com>
11313
11314 * parser.c result/noent/wml.xml: fixed bug #59981 related
11315 to handling of '&' in attributes when entities are substitued
11316
Daniel Veillard7cf5e442001-09-10 20:16:32 +000011317Mon Sep 10 22:14:42 CEST 2001 Daniel Veillard <daniel@veillard.com>
11318
11319 * libxml.h include/libxml/xmlversion.h.in
11320 include/libxml/xmlwin32version.h include/libxml/xmlwin32version.h.in:
11321 Tried to close bug #60131
11322
Daniel Veillardbce62332001-09-10 18:46:55 +000011323Mon Sep 10 20:46:03 CEST 2001 Daniel Veillard <daniel@veillard.com>
11324
11325 * SAX.c: fixed a bug in the HTML parser introduced Sep 9
11326
Daniel Veillard143b04f2001-09-10 18:14:14 +000011327Mon Sep 10 20:13:09 CEST 2001 Daniel Veillard <daniel@veillard.com>
11328
11329 * SAX.c: fixing bug #59946 on xmlns=""
11330
Daniel Veillard7a51d6d2001-09-10 14:40:43 +000011331Mon Sep 10 16:39:42 CEST 2001 Daniel Veillard <daniel@veillard.com>
11332
11333 * include/libxml/xmlerror.h SAX.c: fixing bug 59732, simple
11334 but allocates a new error code.
11335
Daniel Veillard05c13a22001-09-09 08:38:09 +000011336Sun Sep 9 10:33:15 CEST 2001 Daniel Veillard <daniel@veillard.com>
11337
11338 * xmllint.c: John Fleck fixed typos in the options output
11339 * parser.c SAX.c: fix ignorable white space SAX selection
11340
11341Sat Sep 8 11:43:53 CEST 2001 Daniel Veillard <daniel@veillard.com>
11342
11343 * entities.c: Steve Underwood found the possibility of an
11344 ininite loop in case of error.
11345
Daniel Veillard5eb9dea2001-09-07 09:38:02 +000011346Fri Sep 7 11:35:00 CEST 2001 Daniel Veillard <daniel@veillard.com>
11347
11348 * Makefile.am: Need $(ICONV_LIBS) in libxml2_la_LIBADD
11349
Daniel Veillarda050d232001-09-05 15:51:05 +000011350Wed Sep 5 17:47:43 CEST 2001 Daniel Veillard <daniel@veillard.com>
11351
11352 * parser.c: warn if version is not 1.0 but it's not
11353 strictly speaking an error after analyzing the spec
11354
MDT 2001 John Fleck04685002001-09-03 16:11:47 +000011355Mon Sep 3 10:07:03 MDT 2001 John Fleck <jfleck@inkstain.net>
11356
11357 *doc/catalog.html - add link to the html version of the
11358 man page, other linguistic cleanups
11359
MDT 2001 John Fleck5bd39dc2001-09-03 15:14:19 +000011360Mon Sep 3 09:10:08 MDT 2001 John Fleck <jfleck@inkstain.net>
11361
11362 * doc/xmlcatalog_man.xml, xmlcatalog_man.html, xmlcatalog.1
11363 adding documentation for xmlcatalog. Note: xmlcatalog.1, the man
11364 file, has not yet been included in the build.
11365
Daniel Veillard99784ff2001-09-01 16:20:28 +000011366Sat Sep 1 18:17:47 CEST 2001 Daniel Veillard <daniel@veillard.com>
11367
11368 * catalog.c: removed a duplicate affectation Justin Fletcher
11369
Daniel Veillard9e1c72d2001-08-31 20:03:19 +000011370Fri Aug 31 22:02:10 CEST 2001 Daniel Veillard <daniel@veillard.com>
11371
11372 * tree.c: Armin Sander pointed a possible text coalescing
11373 problem, completed his patch.
11374
Bjorn Reese0b2ae432001-08-31 16:31:57 +000011375Fri Aug 31 18:30:28 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
11376
11377 * trionan.c: Fixed const and volatile re-definition problem
11378
Daniel Veillard5d96fff2001-08-31 14:55:30 +000011379Fri Aug 31 16:51:28 CEST 2001 Daniel Veillard <daniel@veillard.com>
11380
11381 * libxml.4 parser.c: doc updates from Heiko Rupp
11382 * parserInternals.c: 2 sanity checks from Heiko Rupp
11383
Daniel Veillard3ec4c612001-08-28 20:39:49 +000011384Tue Aug 28 22:38:45 CEST 2001 Daniel Veillard <daniel@veillard.com>
11385
11386 * tree.c: applied patch from Armin Sander to make some pointers
11387 const in xmlCopyNode()
Daniel Veillard2ebd7a72001-08-28 21:07:03 +000011388 * include/libxml/tree.h: added fix to the header
Daniel Veillard3ec4c612001-08-28 20:39:49 +000011389
Daniel Veillardb06c6142001-08-27 14:26:30 +000011390Mon Aug 27 16:24:47 CEST 2001 Daniel Veillard <daniel@veillard.com>
11391
11392 * xpath.c: hum, restrict the integer usage gcc bug workaround
11393 to only gcc compilers so that other architecture don't get
11394 penalized by this limitation.
11395 * include/libxml/xpath.h: small typo fix from Heiko W. Rupp
11396
Daniel Veillard268fd1b2001-08-26 18:46:36 +000011397Sun Aug 26 20:45:04 CEST 2001 Daniel Veillard <daniel@veillard.com>
11398
11399 * valid.c: fixed a Windows compiler warning (Chris Poblete)
11400 * xpath.c: fix for mod when dividend is 0 (Chris Poblete)
11401
Daniel Veillard6c5f9d12001-08-25 13:33:14 +000011402Sat Aug 25 15:30:17 CEST 2001 Daniel Veillard <daniel@veillard.com>
11403
11404 * include/libxml/catalog.h catalog.c xmlcatalog.c: added a
11405 --convert option to xmlcatalog to convert SGML ones to
11406 the XML syntax.
11407 * xmllint.c: small cleanup for $SGML_CATALOG_FILES support.
11408
11409 2.4.3 got released at that point
Daniel Veillard6990bf32001-08-23 21:17:48 +000011410Thu Aug 23 23:16:32 CEST 2001 Daniel Veillard <daniel@veillard.com>
11411
11412 * catalog.c xmlIO.c: started some serious testing and fixed
11413 a few bug and optmization needs.
11414
Daniel Veillard9f7b84b2001-08-23 15:31:19 +000011415Thu Aug 23 17:26:58 CEST 2001 Daniel Veillard <daniel@veillard.com>
11416
11417 * Makefile.am configure.in include/libxml/xmlwin32version.h:
11418 preparing for a 2.4.3 release even if it may not be ready yet
11419 * catalog.c parser.c xmlIO.c include/libxml/catalog.h: redirected
11420 all file parsing lookup to go through the entity resolver, add
11421 to add an API to bypass it (needed to load catalogs themselves),
11422 some cleanup on the catalog code too.
11423 * nanoftp.c: small cleanup
11424 * doc/catalog.html: small update
11425
Daniel Veillardbc2ddbe2001-08-23 10:24:27 +000011426Thu Aug 23 12:22:26 CEST 2001 Daniel Veillard <daniel@veillard.com>
11427
11428 * catalog.c: fixed bugi #59406 in SGML catalog parsing reported by
11429 Jun Kuriyama
11430
Daniel Veillardffb120d2001-08-23 00:52:23 +000011431Thu Aug 23 02:51:29 CEST 2001 Daniel Veillard <daniel@veillard.com>
11432
11433 * doc/catalog.html: finished the catalog documentation
11434
Daniel Veillarde7ead2d2001-08-22 23:44:09 +000011435Thu Aug 23 01:38:42 CEST 2001 Daniel Veillard <daniel@veillard.com>
11436
11437 * doc/catalog.html doc/xml.html: added documentation about
11438 Catalog support, misses an API description
11439 * doc/html/*: reextracted the API pages
11440
Daniel Veillarddc2cee22001-08-22 16:30:37 +000011441Wed Aug 22 18:27:47 CEST 2001 Daniel Veillard <daniel@veillard.com>
11442
11443 * include/libxml/catalog.h catalog.c xmlIO.c HTMLparser.c:
11444 Added the part about section 7.2 on URI resolution,
11445 fixed a side effect in the HTML parser, look complete
11446 and ready to rock except the URI/SystemID part!
11447
Daniel Veillard5d90b6c2001-08-22 14:29:45 +000011448Wed Aug 22 16:27:03 CEST 2001 Daniel Veillard <daniel@veillard.com>
11449
11450 * include/libxml/catalog.h include/libxml/parser.h
11451 include/libxml/xmlerror.h catalog.c parser.c parserInternals.c
11452 xmlIO.c: added support and APIs needed for the catalog PI
11453 * include/libxml/xmlIO.h: cleanup
11454
Daniel Veillarde2940dd2001-08-22 00:06:49 +000011455Wed Aug 22 02:03:31 CEST 2001 Daniel Veillard <daniel@veillard.com>
11456
11457 * catalog.c parser.c xmlIO.c xmlcatalog.c xmllint.c
11458 include/libxml/catalog.h: starts to look okay, really
11459 plugged the new framework, cleaned a lot of stuff,
11460 added some APIs, except the PI's support missing this
11461 should be mostly complete
11462 * result/catalogs/* test/catalogs/*: added new test, enriched
11463 the existing one with URN ID tests
11464
Daniel Veillard64339542001-08-21 12:57:59 +000011465Tue Aug 21 14:56:18 CEST 2001 Daniel Veillard <daniel@veillard.com>
11466
11467 * catalog.c: fixed nextCatalog
11468 * result/catalogs/docbook test/catalogs/*: started adding
11469 a small regression test
11470
Daniel Veillardcda96922001-08-21 10:56:31 +000011471Tue Aug 21 12:52:38 CEST 2001 Daniel Veillard <daniel@veillard.com>
11472
11473 * Makefile.am catalog.c xmlcatalog.c include/libxml/catalog.h:
11474 more work on the XML catalog support.
11475 * parser.c include/libxml/parser.h: small cleanup seems using
11476 list as a public parameter name can give portability troubles
11477 * trionan.c trionan.h xpath.c include/libxml/trionan.h
11478 include/libxml/xpath.h include/libxml/Makefile.am: removed
11479 trionan from the libxml API, added xmlXPathIsInf and xmlXPathIsNaN
11480 wrappers
11481
Bjorn Reese45029602001-08-21 09:23:53 +000011482Tue Aug 21 11:18:45 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
11483
11484 * Makefile.am trio.c triodef.h trionan.c xpath.c
11485 include/libxml/Makefile.am include/libxml/trionan.h:
11486 Re-worked Not-A-Number and Infinity support.
11487 * xmlcatalog.c: added readline include files
11488
Daniel Veillard344cee72001-08-20 00:08:40 +000011489Mon Aug 20 02:04:13 CEST 2001 Daniel Veillard <daniel@veillard.com>
11490
11491 * Makefile.am xmlcatalog.c libxml.spec.in: renaming
11492 testCatalog as xmlcatalog, making it an installed app
11493 adding a shell, and preparing it to be a /etc/xml/catalog
11494 management tool, though not ready yet
11495 * catalog.c include/libxml/catalog.h: adding support for
11496 XML Catalogs http://www.oasis-open.org/committees/entity/
11497 not finished, there is some interesting tradeoffs and a
11498 few open questions left.
11499
Daniel Veillardb7664f42001-08-19 13:00:43 +000011500Sun Aug 19 14:59:56 CEST 2001 Daniel Veillard <daniel@veillard.com>
11501
11502 * xmllint.c: fixed a line formatting problem
11503
Daniel Veillard5015b712001-08-17 09:37:52 +000011504Fri Aug 17 11:35:31 CEST 2001 Daniel Veillard <daniel@veillard.com>
11505
11506 * SAX.c: removed a couple of unused variable (Albert Chin)
11507
Daniel Veillardbb371292001-08-16 23:26:59 +000011508Fri Aug 17 01:25:21 CEST 2001 Daniel Veillard <daniel@veillard.com>
11509
11510 * HTMLparser.c HTMLtree.c include/libxml/HTMLparser.h:
11511 trying to fix some troubles w.r.t. function returning
11512 const xxxPtr.
11513
Daniel Veillardb60c54e2001-08-16 19:34:27 +000011514Thu Aug 16 21:33:20 CEST 2001 Daniel Veillard <daniel@veillard.com>
11515
11516 * win32/dsp/libxml2.def.src: another set of symbols conditionally
11517 defined
11518
Daniel Veillardae6db172001-08-16 19:32:00 +000011519Thu Aug 16 21:31:14 CEST 2001 Daniel Veillard <daniel@veillard.com>
11520
11521 * xpointer.c: removed unused var
11522
Daniel Veillard09190202001-08-16 16:27:41 +000011523Thu Aug 16 18:26:40 CEST 2001 Daniel Veillard <daniel@veillard.com>
11524
11525 * testXPath.c: another small cleanup closing bug #59110
11526
Daniel Veillard796f4b62001-08-16 16:00:13 +000011527Thu Aug 16 17:59:18 CEST 2001 Daniel Veillard <daniel@veillard.com>
11528
11529 * win32/dsp/libxml2.def.src: small cleanup closing bug
11530 #59108
11531
Daniel Veillard5aac4e42001-08-15 20:46:57 +000011532Wed Aug 15 22:46:01 CEST 2001 Daniel Veillard <daniel@veillard.com>
11533
11534 * example/gjobread.c: add xmlCleanupParser() before leaving
11535
Daniel Veillard9a0b3d62001-08-15 12:58:03 +000011536Wed Aug 15 14:57:08 CEST 2001 Daniel Veillard <daniel@veillard.com>
11537
11538 * config.h.in configure.in include/libxml/xmlwin32version.h:
11539 released 2.4.2
11540
Daniel Veillardd3d06722001-08-15 12:06:36 +000011541Wed Aug 15 13:56:22 CEST 2001 Daniel Veillard <daniel@veillard.com>
11542
11543 * include/libxml/valid.h debugXML.c valid.c: deprecate
11544 the non-boundchecking Sprintf functions, add Snprintf
11545 this should close bug #57984
11546
Daniel Veillardecb6f5b2001-08-15 08:47:42 +000011547Wed Aug 15 10:46:07 CEST 2001 Daniel Veillard <daniel@veillard.com>
11548
11549 * xmlIO.c: xmlOutputBufferCreateFilename() didn't unescaped
11550 URIs before doing the lookups (pointed by Mark Vakoc)
11551
Daniel Veillard0ab5cab2001-08-14 16:43:10 +000011552Tue Aug 14 18:37:23 CEST 2001 Daniel Veillard <daniel@veillard.com>
11553
11554 * xpath.c: serious changes on Result Value Trees and NodeSets
11555 w.r.t. deallocation and collect operations. Probably not
11556 100% clean (merge of allocated trees smells like a problem).
11557 Seems sufficient to close #58943
11558
Daniel Veillard90493a92001-08-14 14:12:47 +000011559Tue Aug 14 16:12:00 CEST 2001 Daniel Veillard <daniel@veillard.com>
11560
11561 * xmllint.c: adding a --format option
11562
Daniel Veillardfe703322001-08-14 12:18:09 +000011563Tue Aug 14 14:16:24 CEST 2001 Daniel Veillard <daniel@veillard.com>
11564
11565 * xpath.c: count() was broken on Result Value Tree
11566 * xmlIO.c: fixed file:/// accesses on _WIN32
11567
Daniel Veillard70ac0e32001-08-13 11:24:16 +000011568Mon Aug 13 13:22:53 CEST 2001 Daniel Veillard <daniel@veillard.com>
11569
11570 * libxml.m4: s/LIBXML_VERSION_NUMBER/LIBXML_VERSION/ seems the
11571 macro was renamed, this should close bug #58683
11572
Daniel Veillardf300b7e2001-08-13 10:43:15 +000011573Mon Aug 13 12:33:40 CEST 2001 Daniel Veillard <daniel@veillard.com>
11574
11575 * SAX.c: small fix fixing bug #58539 reported by coolo, in
11576 entity substitution mode text at the end of the entity might
11577 be added due to text coalescing.
11578 * nanoftp.c parser.c: small cleanup
11579
Daniel Veillard0c720972001-08-08 20:59:00 +000011580Wed Aug 8 22:57:05 CEST 2001 Daniel Veillard <daniel@veillard.com>
11581
11582 * HACKING: added John Fleck right to commit in the doc subdir
11583
Daniel Veillard48da9102001-08-07 01:10:10 +000011584Tue Aug 7 03:05:58 CEST 2001 Daniel Veillard <daniel@veillard.com>
11585
11586 * SAX.c testXPath.c valid.c xmllint.c include/libxml/valid.h:
11587 allow to inherit attributes from the DTD directly in the
11588 tree, this is needed for XPath and can be a useful feature.
11589 Inherited namespaces are always provided at the tree level now
11590 * test/defattr* result/defattr* result/noent/defattr*: added a couple
11591 of tests for this feature (XSLT being the prime user).
11592
Daniel Veillard50f34372001-08-03 12:06:36 +000011593Fri Aug 3 14:02:20 CEST 2001 Daniel Veillard <daniel@veillard.com>
11594
11595 * DOCBparser.c Makefile.am nanohttp.c parser.c testHTML.c
11596 testSAX.c xmlIO.c xmllint.c include/win32config.h
11597 include/libxml/xmlversion.h.in include/libxml/xmlwin32version.h
11598 include/libxml/xmlwin32version.h.in win32/README.MSDev
11599 win32/dsp/*: applied Win32 Facelift No.2 patches from
11600 Igor Zlatkovic for Windows/MSC
11601
Daniel Veillard9f4eb912001-08-01 21:22:27 +000011602Wed Aug 1 23:21:06 CEST 2001 Daniel Veillard <daniel@veillard.com>
11603
11604 * SAX.c: unparsedEntityDecl() the URI computation of the
11605 entity wasn't done breaking XSLT unparsed-entity-uri()
11606
Daniel Veillard567e1b42001-08-01 15:53:47 +000011607Wed Aug 1 17:44:57 CEST 2001 Daniel Veillard <daniel@veillard.com>
11608
11609 * xpath.c: fixed a bug when walking the descendants and
11610 the current node has no children
11611 * debugXML.c: show up when a text node is supposed to not be escaped
11612
Thomas Broyerf186c822001-07-31 23:30:37 +000011613Wed Aug 1 01:33:35 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
11614
11615 * xpath.c: fixed a bug in xmlXPathNodeTrailingSorted (for now it
11616 worked like the set:leading() function)
11617 * include/libxml/xpathInternals.h: added xmlXPathNodeSetContains
11618
Daniel Veillardba6db032001-07-31 16:25:45 +000011619Tue Jul 31 18:24:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11620
11621 * nanohttp.c: protected an use of EAGAIN, Brian Stafford
11622
Daniel Veillard57905372001-07-31 15:52:17 +000011623Tue Jul 31 17:48:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11624
11625 * include/libxml/xmlIO.h: apply change to close #58141
11626 * win32/libxml2/*: update of the MSC projects from Igor Zlatkovic
11627
Daniel Veillard5e3eecb2001-07-31 15:10:53 +000011628Tue Jul 31 17:09:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11629
11630 * parser.c: when the internal subset uses a PE, then the
11631 included entity can use conditional sections.
11632
Daniel Veillard7d7e3792001-07-30 13:42:13 +000011633Mon Jul 30 12:58:39 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11634
11635 * xpath.c include/libxml/xpath.h: fixed a serious memory problen
11636 when walking the namespace axis showing up in
11637 libxst/tests/general/bug-12
11638 * xmlmemory.c: added the possibility to trace a given block
11639 defined by its address
11640
Daniel Veillard4aafa792001-07-28 17:21:12 +000011641Sun Jul 29 07:18:53 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11642
11643 * parser.c: don't override existing encoding specified before
11644 starting xmlParseDocument()
11645
Daniel Veillardfdb1f242001-07-27 23:32:44 +000011646Sat Jul 28 13:33:10 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11647
11648 * include/libxml/xmlwin32version.h: reinserted, needed for
11649 Windows users of CVS
11650
Darin Adlera77cac02001-07-27 17:41:51 +0000116512001-07-27 Darin Adler <darin@bentspoon.com>
11652
Darin Adler699613b2001-07-27 22:47:14 +000011653 * encoding.c: (xmlIconvWrapper): Add cast to fix warning.
11654 * testCatalog.c: Add include of <libxml/parser.h>.
11655
116562001-07-27 Darin Adler <darin@bentspoon.com>
11657
Darin Adlera77cac02001-07-27 17:41:51 +000011658 * include/libxml/.cvsignore:
11659 * include/libxml/xmlwin32version.h:
11660 Remove this file from CVS because it's generated.
11661
Daniel Veillard50822cb2001-07-26 20:05:51 +000011662Fri Jul 27 10:03:56 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11663
11664 * parser.c include/libxml/parser.h: applied const patches from
11665 Tom Moog #58002
11666
Thomas Broyerba4ad322001-07-26 16:55:21 +000011667Thu Jul 26 18:55:52 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
11668
11669 * xpath.c include/libxml/xpath{,Internals}.h: added a function
11670 lookup framework
11671
Daniel Veillard1d0bfab2001-07-26 11:49:41 +000011672Fri Jul 27 01:50:20 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11673
11674 * tree.c: fixed xmlCopyNode() for documents
11675
Daniel Veillard6dd398f2001-07-25 22:41:03 +000011676Thu Jul 26 12:40:35 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11677
11678 * parser.c: fixed bugs #58073 reported by Greg Shtilman
11679
11680Thu Jul 26 11:38:37 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
Daniel Veillard2454ab92001-07-25 21:39:46 +000011681
11682 * parser.c: fixes bug #57652 reported by Morus Walter
11683
Daniel Veillarde3924972001-07-25 20:25:21 +000011684Thu Jul 26 10:24:34 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11685
11686 * nanohttp.c: John Kroll provided a small fix to xmlNanoHTTPSave
11687
Daniel Veillarda53c6882001-07-25 17:18:57 +000011688Thu Jul 26 07:16:04 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11689
11690 * parser.c parserInternals.c: fixed the xmlLineNumbersDefault()
11691 errors, lesson don't add new functions at 1am before a release
11692 * xpath.c: integrated fix from Bjorn to avoid divide by zero
11693 from XPath initialization when possible.
11694
Daniel Veillardd9bad132001-07-23 19:39:43 +000011695Tue Jul 24 15:39:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11696
11697 * result/scripts/base*: removing history/readline changed
11698 this slightly
11699 * include/libxml/parser.h SAX.c parser.c parserInternals.c
11700 xmllint.c: make element content line number generation
11701 optionnal to avoid breaking old apps added interface to switch
11702
Daniel Veillardf012a642001-07-23 19:10:52 +000011703Tue Jul 24 15:06:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11704
11705 * configure.in: get rid of the readline and libhistory
11706 dependancies by default, release 2.4.1 with IA64 fix
11707 * nanohttp.c tree.c xmlIO.c include/libxml/nanohttp.h
11708 include/libxml/tree.h include/libxml/xmlIO.h: incorporated
11709 John Kroll fixes to allow saving to HTTP via PUT (or
11710 POST of needed).
11711 * doc/html/*.html: regenerated the docs
11712
Thomas Broyere8126242001-07-22 03:54:15 +000011713Sun Jul 22 05:56:16 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
11714
11715 * hash.c include/libxml/hash.h: added xmlHashScannerFull,
11716 xmlHashScanFull and xmlHashScannFull3 to get passed the
11717 three keys as arguments to the callback function
11718
Daniel Veillard5e2dace2001-07-18 19:30:27 +000011719Thu Jul 19 15:29:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11720
11721 * configure.in Makefile.am: removed libxml softlink for good
11722 * include/libxml/*.h *.c doc/Makefile.am: cleanup to get
11723 100% coverage by gtk-doc
11724
Daniel Veillard8599e702001-07-17 21:38:51 +000011725Tue Jul 17 17:36:46 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11726
11727 * xmlmemory.c include/libxml/xmlmemory.h: debugging on IA64,
11728 fixed serious troubles due to size_t vs. int mismatch
11729
Daniel Veillard8fcc4942001-07-17 20:07:33 +000011730Tue Jul 17 16:04:36 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11731
11732 * SAX.c xmlIO.c: cleaned up some warning on the Alpha
11733
Thomas Broyerf06a3d82001-07-16 04:52:57 +000011734Mon Jul 16 06:32:44 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
11735
11736 * include/libxml/xpath{,Internals}.h xpath.c: added a more
11737 convenient extension API for value and context managing
11738 Now handles external objects through xmlXPathPopExternal,
11739 xmlXPathWrapExternal and xmlXPathReturnExternal.
11740 Added functions for sets operations (intersection, etc.)
11741
Daniel Veillard22090732001-07-16 00:06:07 +000011742Mon Jul 16 20:05:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11743
11744 * include/libxml/parserInternals.h include/libxml/HTMLparser.h
11745 xmlIO.c tree.c parserInternals.c entities.c encoding.c
11746 HTMLparser.c: cleanup of global variables, marking some
11747 const or private.
11748
Thomas Broyerf06a3d82001-07-16 04:52:57 +000011749Mon Jul 16 00:17:15 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
Thomas Broyer496be682001-07-15 22:59:18 +000011750
11751 * include/libxml/xpath.h: exported xmlXPath{NAN,PINF,NINF}
11752 fixed xmlXPathNodeSetItem when passing index=0
11753
Daniel Veillard05dec342001-07-14 21:57:39 +000011754Sun Jul 15 17:58:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11755
11756 * include/libxml/xmlwin32version.h.in: added xmlCheckVersion()
11757
Daniel Veillard28ae6362001-07-14 16:44:32 +000011758Sat Jul 14 19:31:21 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11759
11760 * xmllint.c: fixed compilation under Cygwin #57503
11761 * TODO: update
11762
Peter Williamsed156f52001-07-13 18:35:13 +0000117632001-07-13 Peter Williams <peterw@ximian.com>
11764
11765 * config.h.in: add #undef HAVE_DLFCN_H
11766
11767 * example/Makefile.am (INCLUDES): Compile fix when srcdir !=
11768 builddir.
11769
Daniel Veillard73b36e32001-07-12 15:09:52 +000011770Fri Jul 13 11:09:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11771
11772 * win32/libxml2/libxml2.def.src: added a couple of exported entries
11773 raised by #57348 and #57381
11774
Daniel Veillard7db37732001-07-12 01:20:08 +000011775Thu Jul 12 21:20:17 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11776
11777 * DOCBparser.c HTMLparser.c HTMLtree.c SAX.c debugXML.c parser.c
11778 tree.c xpointer.c: store the line numbder in element->content,
11779 may break some software, need a configuration mechanism
11780
Darin Adler96037892001-07-11 00:03:16 +0000117812001-07-10 Darin Adler <darin@bentspoon.com>
11782
11783 * .cvsignore:
11784 * example/.cvsignore:
11785 * include/.cvsignore:
11786 * include/libxml/.cvsignore:
11787 Various things that are generated and should be ignored.
11788
Daniel Veillard09ab7e12001-07-10 15:49:44 +000011789Tue Jul 10 17:47:09 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11790
11791 * configure.in include/libxml/xmlwin32version.h: release of 2.4.0
11792 * doc/xml.html doc/html/*: updated the docs
11793
Daniel Veillard04e2dae2001-07-09 20:07:25 +000011794Mon Jul 9 22:06:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11795
11796 * valid.c: fixed "Internal: MIXED struct bad" when #CDATA elements
11797 validation occured on content with element child
11798
Daniel Veillardb8c9be92001-07-09 16:01:19 +000011799Mon Jul 9 17:59:08 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11800
11801 * tree.c: fixed XML Base computation which was broken
11802 * debugXML.c: added a base function to the shell
11803 * Makefile.am result/scripts/* test/scripts/*: added scripts
11804 based regression tests, and adding 2 XML Base tests
11805
Daniel Veillard19e96c32001-07-09 10:32:59 +000011806Mon Jul 9 12:31:05 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11807
11808 * tree.c: set properties doc and call xmlSetListDoc for properties
11809 content when grafting them in a different tree.
11810 * aclocal.m4: remove from CVS
11811
Daniel Veillarde086f5c2001-07-08 21:10:40 +000011812Sun Jul 8 23:09:07 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11813
11814 * win32/libxml2/libxml2.def.src: added some missing entry point
11815 for XPath (Mark Vakoc)
11816
Daniel Veillard388236f2001-07-08 18:35:48 +000011817Sun Jul 8 20:34:35 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11818
11819 * xmlIO.c: fixed an old bug raised by Bernhard Zwisch, the I/O
11820 layer should URI-Unescape before trying to open resources.
11821
Daniel Veillard04383752001-07-08 14:27:15 +000011822Sun Jul 8 16:26:00 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11823
11824 * xpath.c: fix the name() bug for elements in the default
11825 namespace reported by Charlie Bozeman
11826
Daniel Veillard7583a592001-07-08 13:15:55 +000011827Sun Jul 8 15:11:05 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11828
11829 * SAX.c parser.c testXPath.c xpath.c: trying to fix #56948, this
11830 led to an XPath fix, improvements of SAX initialization, and
11831 an added option --nocdata to testXPath
11832
Daniel Veillard449d7392001-07-07 19:11:06 +000011833Sat Jul 7 21:09:55 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11834
11835 * doc/libxml-doc.el: Felix Natter provided anew version working
11836 with XEmacs too
11837
Daniel Veillard5168dbf2001-07-07 00:18:23 +000011838Sat Jul 7 02:16:00 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11839
11840 * include/libxml/xpath.h: small cleanup
11841 * doc/xml.html: update
11842
Daniel Veillardf524d6e2001-07-05 23:41:40 +000011843Fri Jul 6 01:40:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11844
11845 * Makefile.am configure.in include/libxml/xmlwin32version.h:
11846 released 2.3.14
11847
Daniel Veillard4b8328d2001-07-05 22:48:42 +000011848Fri Jul 6 00:47:41 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11849
11850 * doc/html/*: rebuilt the docs for the release
Daniel Veillard5b43fde2001-07-05 23:31:40 +000011851 * doc/xml.html: added 2.3.14 release.
Daniel Veillard4b8328d2001-07-05 22:48:42 +000011852
Daniel Veillard73c9c042001-07-05 20:02:54 +000011853Thu Jul 5 22:01:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11854
11855 * xpath.c: a bug reported by Stephan Kulow empty nodesets
11856 were not equal to empty strings
11857
Daniel Veillard1fd36d22001-07-04 22:54:28 +000011858Thu Jul 5 00:52:25 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11859
11860 * SAX.c: fixed a URI-Reference computation problem when validating
11861 * xmlIO.c: small cleanup
11862
Daniel Veillard4d65a1c2001-07-04 22:06:23 +000011863Thu Jul 5 00:04:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11864
11865 * parser.c: improved the description of a couple of interfaces
11866 upon Larry Stamper suggestion
11867
Daniel Veillard62f313b2001-07-04 19:49:14 +000011868Wed Jul 4 21:42:24 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11869
11870 * SAX.c entities.c parser.c: changed completely the way entities
11871 are handled when running the parser in entity substitution mode.
11872 This fixes a bug reported by Stephan Kulow and nearly divides
11873 by 3 the amount of memory required by libxslt to load and process
11874 DocBook TDG.
11875
Daniel Veillardf420ac52001-07-04 16:04:09 +000011876Wed Jul 4 18:02:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11877
11878 * HTMLparser.c: fixing a too early root closing problem raised
11879 byt Prashanth Naidu
11880
Daniel Veillard8c357d52001-07-03 23:43:33 +000011881Wed Jul 4 01:42:01 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11882
11883 * xpath.c: fixed a missing copy in xmlXPathVariableLookupNS()
11884 raised by Mark Vakoc.
11885
Daniel Veillard6e90d192001-07-03 16:37:49 +000011886Tue Jul 3 18:35:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11887
11888 * example/Makefile.am: fixed the include path to add srcdir/include
11889 * Makefile.am configure.in: fix from Albert Chin for iconv detection
11890 and some cleanup
11891
Daniel Veillardf06307e2001-07-03 10:35:50 +000011892Tue Jul 3 10:12:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11893
11894 * xpath.c include/libxml/xpath.h include/libxml/xpathInternals.h:
11895 lot of optimization work, results in significant improvements
11896 when handling really complex XPath queries. Add a small optimizer
11897 for unions, improve [n] and [last()], avoid some costly ops.
11898
Daniel Veillard77044732001-06-29 21:31:07 +000011899Fri Jun 29 23:26:54 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11900
11901 * include/libxml/parser.h parser.c: xmlStrstr args are both const
11902 * xpath.c: small cleanup
11903 * xmlGetNsList: reformated, fixed problems if used on Entities
11904
Daniel Veillard2adbb512001-06-28 16:20:36 +000011905Thu Jun 28 18:19:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11906
11907 * doc/xml.html: added 1.8.14 and 2.3.13 releases
11908
Daniel Veillardb37ecd02001-06-28 16:18:11 +000011909Thu Jun 28 18:16:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11910
11911 * configure.in include/libxml/xmlwin32version.h: released 2.3.13
11912 * Makefile.am example/Makefile.am: workaround automake generating
11913 erroneous deps
11914
Daniel Veillard12f7d292001-06-28 13:12:11 +000011915Thu Jun 28 15:08:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11916
11917 * include/win32config.h: bug #56801 Yon Derek provided a patch
11918 to the windows config file.
11919
Daniel Veillard87ee9142001-06-28 12:54:16 +000011920Thu Jun 28 14:51:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11921
11922 * xpointer.c include/win32config.h win32/libxml2/libxml2.def.src
11923 libxml.h : Yon Derek provided a set of changes to compile from
11924 CVS on Windows/MSC
11925
Daniel Veillard0e4cd172001-06-28 12:13:56 +000011926Thu Jun 28 14:11:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11927
11928 * parser.c: fixed UTF8 BOM support in push mode
11929 * test/utf8bom.xml result/utf8bom.xml result/noent/utf8bom.xml:
11930 added a specific testcase
11931
Daniel Veillard3e5bb8e2001-06-27 16:34:34 +000011932Wed Jun 27 18:33:13 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11933
11934 * Makefile.am: added --push regression tests
11935 * parserInternals.c: the XML parser segfaulted in --push mode
11936
Daniel Veillard9a89a8a2001-06-27 11:13:35 +000011937Wed Jun 27 13:09:51 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11938
11939 * configure.in: moved the symlinks detection within a CVS
11940 check, this is not portable and will be removed soon.
11941 * xpath.c: small cleanup/speedup
11942
Daniel Veillard11648102001-06-26 16:08:24 +000011943Tue Jun 26 18:05:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11944
11945 * configure.in doc/xml.html include/libxml/xmlwin32version.h:
11946 release of 2.3.12
11947 * parser.c: make an error message if unknow entities in all cases
11948
Daniel Veillardfcbd74a2001-06-26 07:47:23 +000011949Tue Jun 26 09:46:29 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11950
11951 * uri.c: fixed 2 uri normalization bugs on '//' reduction
11952
Daniel Veillard23793842001-06-25 16:07:45 +000011953Mon Jun 25 18:06:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11954
11955 * include/libxml/Makefile.am: Laszlo Peter pointed out that
11956 includes were installed in the wrong dir
11957
Daniel Veillardf5498f32001-06-25 15:08:36 +000011958Mon Jun 25 17:07:37 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11959
11960 * doc/html.xml: warn against sending code to exhibit bugs.
11961
Daniel Veillard56f06462001-06-24 21:34:03 +000011962Sun Jun 24 23:31:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11963
11964 * xpath.c: patch to xmlXPathFormatNumber for the optimizer on
11965 Tru64 from Thomas Leitner
11966
Daniel Veillardc5d64342001-06-24 12:13:24 +000011967Sun Jun 24 14:05:54 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11968
11969 * AUTHORS: added William and Bjorn
11970 * include/libxml/*.h *.c README doc/*.html etc.: changed old email to
11971 daniel@veillard.com hopefully I won't have to do this again
11972 * doc/Makefile.am doc/html/*.html: cleanup makefile, checked that
11973 docs can be rebuilt cleanly now
11974 * include/libxml/xml*version.h*: removed include/libxml/xmlversion.h
11975 from CVs it's generated, added include/libxml/xmlwin32version.h
11976 also generated but which should change far less frequently.
11977 * catalog.c nanoftp.c: made sure to include libxml.h not
11978 libxml/xmlversion.h directly
11979 * include/libxml/*.h: include xmlwin32version.h instead of xmlversion.h
11980 when compiling on WIN32 and MSC
11981
Daniel Veillard07385fd2001-06-23 21:55:48 +000011982Sat Jun 23 23:54:12 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11983
11984 * include/Makefile.am include/libxml/Makefile.am configure.in:
11985 fixed make distcheck and rebuilding the rpms
11986
Daniel Veillardcd1d9442001-06-23 18:53:44 +000011987Sat Jun 23 20:50:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11988
11989 * configure.in: should finish the migration of exported includes
11990 into a real include/libxml in CVS, at least for CVS users.
11991 * removed the exported headers, added in include/libxml (as well
11992 as xmlversion.h.in).
11993
Daniel Veillard6dd8e052001-06-23 18:38:06 +000011994Sat Jun 23 20:37:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11995
11996 * configure.in: fixed the way to detect symlink
11997
Daniel Veillard66541772001-06-23 18:31:04 +000011998Sat Jun 23 20:30:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
11999
12000 * configure.in: updated, include/libxml is now a real CVS dir
12001
Daniel Veillardca989762001-06-23 17:39:29 +000012002Sat Jun 23 19:36:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12003
12004 * doc/libxml-doc.el: a new version of libxml-doc.el. This new
12005 version works with both libxml1 and libxml2 (it autodetects
12006 the prefix of the html-files) from Felix Natter.
12007 * doc/xml.html: updated doc accordingly
12008
Daniel Veillard8cf14d52001-06-23 16:32:46 +000012009Sat Jun 23 18:30:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12010
12011 * xpath.c: fixed the bug generating a template loop in libxslt
12012 when using docbook-xsl-1.4, * should filter out document nodes
12013 * HACKING: added William
12014 * TODO: updated
12015
Daniel Veillard7b06bcb2001-06-22 16:03:51 +000012016Fri Jun 22 18:02:37 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12017
12018 * doc/FAQ.html: added a warning about gcc-3.0
12019 * doc/xml.html: added reference to gdome2 and removed a confusing
12020 sentence
12021
Daniel Veillardf7f41852001-06-22 15:18:01 +000012022Fri Jun 22 17:02:16 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12023
12024 * xmlversion.h: okay this is a generated file, but Windows
12025 users need it and they can't generate it, and I want CVS
12026 Windows users ...
12027 * win32/libxml2/libxml2_so.dsp: Windows project file for
12028 the shared lib version of libxml2
12029 * win32/libxml2/libxml2.def.src: bug #56527 set of exported
12030 resources needed for libxslt/xsltproc by Yon Derek
12031
Bjorn Reese3157b342001-06-22 14:41:45 +000012032Fri Jun 22 16:39:36 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
12033
12034 * trio.c: MSVC fix (provided by Igor Zlatkovic)
12035
Daniel Veillard4151acb2001-06-22 10:48:57 +000012036Fri Jun 22 12:42:16 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12037
Daniel Veillardcc146db2001-06-22 11:10:52 +000012038 * include/win32config.h: another small fix for ATTRIBUTE_UNUSED
12039
12040Fri Jun 22 12:42:16 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12041
Daniel Veillard4151acb2001-06-22 10:48:57 +000012042 * include/win32config.h: Yon Derek provided a first fix
12043 to be able to compile libxslt/xsltproc on Windows
12044
Daniel Veillardd79bcd12001-06-21 22:07:42 +000012045Fri Jun 22 00:04:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12046
12047 * xpath.c: attempt to work around what seemed a gcc optimizer
12048 bug when handling floats on i386 http://veillard.com/gcc.bug
12049 * tree.c entities.c encoding.c: doing some cleanups while
12050 chasing it
12051
Daniel Veillard017b1082001-06-21 11:20:21 +000012052Thu Jun 21 13:13:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12053
12054 * Makefile.am: cleanup when --without-debug is specified
12055 * xinclude.c xpath.c xpathInternals.h xpointer.c: cleanup
12056 w.r.t. --without-debug and other include points
12057 * catalog.h testCatalog.c: a bit of cleanup and prepare for XML
12058 Catalogs
12059 * configure.in entities.h tree.h HTMLparser.c: removed
12060 --without-corba, made the _private field mandatory
12061
Daniel Veillard87a764e2001-06-20 17:41:10 +000012062Wed Jun 20 19:37:25 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12063
12064 * parser.c parserInternals.c encoding.c: Since Notepad on Win2k
12065 outputs a BOM in UTF8, an errata has been issued to avoid the
12066 problem, that was the most reasonable solution... Add support
12067 for a leading UTF8 BOM in entities.
12068
Daniel Veillard10ea86c2001-06-20 13:55:33 +000012069Wed Jun 20 15:38:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12070
12071 * valid.c: fixed a bug found when post validating an entity ref
12072 * xmllint.c: added --loaddtd and sligly changed --postvalid to
12073 activate it too
12074
Daniel Veillard39196eb2001-06-19 18:09:42 +000012075Tue Jun 19 20:03:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12076
12077 * tree.c xinclude.c xpointer.c: bug #56402 exposed a number of
12078 weakness in the node copy the XPointer and the XInclude
12079 implementations. Serious cleanup.
12080
Daniel Veillard3739b982001-06-19 12:51:30 +000012081Tue Jun 19 14:50:18 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12082
12083 * Makefile.am: Kjartan Maraas provided a small patch to
12084 add xml2-config.in to EXTRA_DIST
12085
Daniel Veillarda9142e72001-06-19 11:07:54 +000012086Tue Jun 19 13:04:10 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12087
12088 * valid.c tree.c parserInternals.c parser.c: Stephan Kulow
12089 provided another failing case found in KDE, the way the
12090 ctxt->vctxt.nodeTab was allocated and freed changed over
12091 time but it wasn't completely cleaned up. This should fix it.
12092
Daniel Veillard3ed27bd2001-06-17 17:58:17 +000012093Sun Jun 17 19:56:33 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12094
12095 * parser.c: Stephan Kulow also raised the fact that line number
12096 could get miscounted making debug harder, fixed the problem
12097 in xmlParseCharData()
12098
Daniel Veillard64b98c02001-06-17 17:20:21 +000012099Sun Jun 17 19:17:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12100
12101 * valid.c: Stephan Kulow pointed out a problem when validating
12102 and using an empty entity, forgot a 'break' in a case.
12103
Daniel Veillarde3c81b52001-06-17 14:50:34 +000012104Sun Jun 17 16:47:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12105
12106 * tree.c: fixed xmlHasNsProp() accordingly to bug #55683
12107 * doc/xml.html: updated with 2.3.11
12108
Daniel Veillard4ec885a2001-06-17 10:31:07 +000012109Sun Jun 17 12:24:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12110
12111 * TODO: updated adding cleanup of generated doc
12112 * configure.in: prepared to release 2.3.11
12113 * xmllint.c: added --version for bug reporting
12114 * doc/html/*.html: rebuilt the doc
12115
Daniel Veillard8b8d2252001-06-16 21:24:56 +000012116Sat Jun 16 23:23:33 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12117
12118 * xpath.c: first part of the work on selecting namespace to
12119 fix bug #56115
12120
Daniel Veillard96ed5832001-06-15 22:22:04 +000012121Sat Jun 16 00:20:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12122
12123 * Makefile.am example/Makefile.am: Laszlo PETER provided a fix
12124 when using -liconv
12125 * TODO: updated
12126
Daniel Veillardc4f631d2001-06-14 11:11:59 +000012127Fri Jun 15 07:08:57 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12128
12129 * HTMLtree.[ch]: more work on the HTML serialization routnes,
12130 cleanup, encoding support.
12131
Daniel Veillard608ad072001-06-14 08:32:28 +000012132Thu Jun 14 10:31:17 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12133
12134 * xpath.c: Thomas Broyer suggested a better patch for the / arg
12135
Daniel Veillard239d0522001-06-13 23:02:48 +000012136Thu Jun 14 01:01:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12137
12138 * xpath.c: bug detected by Ankh when / is used as a function arg
12139
Daniel Veillard02bb1702001-06-13 21:11:59 +000012140Wed Jun 13 23:08:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12141
12142 * HTMLparser.[ch] HTMLtree.c: stored the inline/block property
12143 of element and use it to avoid outputting formatting spaces at
12144 the wrong place. Implemented the format parameter for HTML save.
12145 * result/HTML/doc2.htm result/HTML/doc3.htm result/HTML/fp40.htm
12146 result/HTML/script.html result/HTML/test2.html result/HTML/test3.html
12147 result/HTML/wired.html: of course this impact the result of a
12148 number of HTML tests
12149
Daniel Veillard95d845f2001-06-13 13:48:46 +000012150Thu Jun 14 09:49:09 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12151
12152 * HTMLtree.[ch]: started augmenting the HTML save API with
12153 encoding and formatting parameters
12154
Daniel Veillardeca60d02001-06-13 07:45:41 +000012155Wed Jun 13 09:44:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12156
12157 * HTMLtree.h: cleanup and started evaluating the work needed on
12158 revamping the HTML output code
12159
Daniel Veillard84666b32001-06-11 17:31:08 +000012160Mon Jun 11 19:29:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12161
12162 * DOCBparser.c: handling of PIs and <?sgml-declaration in entities.
12163
Daniel Veillard8bdd2202001-06-11 12:47:59 +000012164Tue Jun 12 08:46:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12165
12166 * valid.c: fixed bug #56049, forgot one check in the
12167 validation routine
12168
Daniel Veillardca2366a2001-06-11 12:09:01 +000012169Tue Jun 12 08:09:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12170
12171 * tree.[ch]: grrr ... namespace is a C++ reserved keyword
12172
Daniel Veillard6761eee2001-06-11 10:29:38 +000012173Tue Jun 12 06:29:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12174
12175 * libxml.h: fixed an error in last commit
12176 * doc/FAQ.html: added an entry for compilation from CVS
12177
Daniel Veillard9cc6dc62001-06-11 08:09:20 +000012178Mon Jun 11 10:07:29 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12179
12180 * xmlversion.h.in libxml.h: Cygwin patches
12181 * tree.c: xmlFreeNodeList patch similar to xmlFreeNode one
12182 * tree.h: cleanup
12183
Daniel Veillardacd370f2001-06-09 17:17:51 +000012184Sat Jun 9 19:16:00 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12185
12186 * tree.c: patched xmlFreeNode() to avoid freeing() a static
12187 memory block in a strange case where libxml is linked twice
12188 in the binary.
12189
Daniel Veillard1d047672001-06-09 16:41:01 +000012190Sat Jun 9 18:39:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12191
12192 * valid.c: (a? , b? , c? , ... , z?) was storing/restauring
12193 state far too often, simple fix used to avoid it.
12194
Daniel Veillard4497e692001-06-09 14:19:02 +000012195Sat Jun 9 16:10:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12196
12197 * xinclude.c: Raphael Hertzog had a trouble with DTD nodes
12198 being processed, applied his patch
12199 * tree.c: fixed a bug raised in xmlStaticCopyNodeList()
12200
Daniel Veillardf3afa7d2001-06-09 13:52:58 +000012201Sat Jun 9 15:50:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12202
12203 * nanoftp.c nanohttp.c uri.c include/win32config.h: Igor Zlatkovic
12204 provided fixes to compile on MSCC again
12205 * win32/libxml2/libxml2.def.src win32/libxml2/libxml2*.dsp: he
12206 also provided an update for the project files.
12207
Daniel Veillarda682b212001-06-07 19:59:42 +000012208Thu Jun 7 21:52:10 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12209
12210 * tree.c: applied Steve Tinney patch to xmlNewNsProp to fix
12211 bug #55810
12212
Daniel Veillarde8fc08e2001-06-07 19:35:47 +000012213Thu Jun 7 21:29:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12214
12215 * tree.c: fixed xmlGetNsProp() to close bug #55683
12216 Note this requires libxslt to use it's own function instead.
12217
Daniel Veillardf0c53762001-06-07 16:07:07 +000012218Thu Jun 7 18:06:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12219
12220 * HTMLtree.c: when in a pre element no formatting space should
12221 be added.
12222 * test/HTML/pre.html result/HTML/pre.html*: added a regression test
12223
Daniel Veillard068a9652001-06-07 15:30:26 +000012224Thu Jun 7 17:29:38 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12225
12226 * configure.in: added tests for signal() and signal.h
12227
Daniel Veillard541d6552001-06-07 14:20:01 +000012228Fri Jun 8 10:17:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12229
12230 * xpath.c: robert pointed out xmlXPathNINF was not initialized
12231
Daniel Veillard8a367d42001-06-07 14:01:34 +000012232Fri Jun 8 10:01:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12233
12234 * doc/libxml-doc.el: Felix Natter provided a new version for
12235 libxml2
12236
Daniel Veillard8a926292001-06-07 11:20:20 +000012237Fri Jun 8 07:20:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12238
12239 * HTMLtree.c: when in a pre element no formatting space should
12240 be added.
12241
Daniel Veillard14839d52001-06-06 16:11:56 +000012242Wed Jun 6 18:07:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12243
12244 * configure.in: add -mieee to CFLAGS when compiling on Linux/alpha
12245
Daniel Veillarde95e2392001-06-06 10:46:28 +000012246Thu Jun 7 06:44:01 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12247
12248 * DOCBparser.c: implemented the <?sgml-declaration encoding="xxx"?>
12249 hack
12250 * tree.[ch]: added xmlHasNsProp as suggested in bug report #55653
12251 * uri.c: fixed a warning
12252
Daniel Veillard6e93c4a2001-06-05 20:57:42 +000012253Tue Jun 5 22:54:21 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12254
12255 * HTMLtree.c: trying to close bug #55772 escaping in script
12256 elements
12257 * doc/xml.html: suggest to send mail to the list
12258
12259Tue Jun 5 19:11:02 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
Daniel Veillard1c43dbf2001-06-05 17:12:52 +000012260
12261 * error.c: attempt to fix the xmlGetVarStr breakage once and for
12262 good. Use a macro and based on the solution provided in
12263 vsnprintf manual page from GNU.
12264
Bjorn Reese99748722001-06-05 12:49:15 +000012265Tue Jun 5 14:46:10 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
12266
12267 * error.c: Workaround for non-preserving variadic list.
12268 * trio.c trio.h triop.h strio.c strio.h: Upgraded to trio baseline 1.4
12269
Daniel Veillard2e4f1882001-06-01 10:11:57 +000012270Sat Jun 2 06:12:33 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12271
12272 * doc/xml.html: added 2.3.10 release
12273
Daniel Veillardb3a182e2001-06-01 09:28:09 +000012274Fri Jun 1 11:27:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12275
12276 * configure.in: releasing 2.3.10
12277
Daniel Veillard3c2758d2001-05-31 18:43:43 +000012278Thu May 31 20:42:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12279
12280 * xmlIO.c: Gary Pennington spotted a few troubles with file:///
12281
Daniel Veillard20042422001-05-31 18:22:04 +000012282Thu May 31 20:18:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12283
12284 * encoding.c: Robert Collins provided a patch to add the
12285 "US-ASCII" encoding alias
12286
Daniel Veillard97ac1312001-05-30 19:14:17 +000012287Wed May 30 21:12:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12288
12289 * xpath.c encoding.[ch]: William M. Brack provided a set of UTF8
12290 string oriented functions and started cleaning the related areas
12291 in xpath.c which needed fixing in this respect
12292
Daniel Veillard2d703722001-05-30 18:32:34 +000012293Wed May 30 20:30:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12294
12295 * HTMLtree.c: applied patch from Jaroslaw Kolakowski to close bug
12296 #55380
12297 * tree.c: patch to xmlNodeGetContent() to get CDATA section content
12298
Daniel Veillard9403a042001-05-28 11:00:53 +000012299Mon May 28 12:56:29 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12300
12301 * TODO: updated
12302 * nanohttp.[ch] : started adding APIs to get the redirected URL
12303 when this occurs (needed for further base computation
12304 * tree.h: cleanup
12305 * encoding.c: cleanup
12306 * SAX.c: minor change around ctxt->loadsubset
12307
Daniel Veillard6278fb52001-05-25 07:38:41 +000012308Fri May 25 09:36:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12309
12310 * Makefile.am include/Makefile.am: small change to have
12311 include/libxml rebuilt if working from CVS.
12312 * uri.c: applied another patch from Carl Douglas for URI escaping,
12313 this should close bug #51876
12314
Daniel Veillardd16df9f2001-05-23 13:44:21 +000012315Wed May 23 15:40:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12316
12317 * xinclude.c: fixed XInclude recursive behaviour bug #54678
12318 * result/XInclude/recursive.xml test/XInclude/docs/recursive.xml
12319 test/XInclude/ents/inc.txt test/XInclude/ents/sub-inc.ent:
12320 added specific regression test
12321 * parser.h: preparing for the XSLT mode where DTD inherited
12322 attributes are added to the tree.
12323
Daniel Veillardbbd22452001-05-23 12:02:27 +000012324Wed May 23 13:59:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12325
12326 * xinclude.[ch]: Updated the namespace for the Last Call version
12327 * result/XInclude/include test/XInclude/include: updated the
12328 testsuite accordingly
12329
Daniel Veillard8514c672001-05-23 10:29:12 +000012330Wed May 23 12:27:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12331
12332 * uri.[ch]: applied a patch from Carl Douglas for URI escaping,
12333 related to bug #51876
12334
Daniel Veillard42596ad2001-05-22 16:57:14 +000012335Tue May 22 18:46:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12336
12337 * tree.c: fixed a gross mistake in base computation, xml:base is
12338 not completely correct yet (need cascade).
12339 * xpath.[ch]: added the few things needed to find a function name
12340 and URI from the XPath context when it is called.
12341
Daniel Veillard81418e32001-05-22 15:08:55 +000012342Tue May 22 17:00:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12343
12344 * catalog.[ch]: fixes and add xmlLoadCatalogs()
12345 * DOCBparser.c: small cleanup
12346 * xmllint.c: added a --catalogs option to load catalogs from
12347 $SGML_CATALOG_FILES
12348 * tree.c: cleanup
12349 * configure.in: iconv library fixup, ICONV_LIBS
12350
Daniel Veillardaf86c7f2001-05-21 14:11:26 +000012351Mon May 21 16:05:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12352
12353 * catalog.c: handling of CATALOG entries. detection of recursion,
12354 and a few bugfixes
12355 * xpath.c: fixing bug #54951 QNAME with no prefix should not match
12356 against the default namespace
12357
Daniel Veillard04b93292001-05-21 08:15:31 +000012358Mon May 21 10:14:07 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12359
12360 * xpath.c: Joe Orton reported a bug found with IRIx compiler.
12361
Daniel Veillarda97a19b2001-05-20 13:19:52 +000012362Sun May 20 15:15:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12363
12364 * parser.c: fixed propagation context info when parsing an
12365 external entity.
12366 * doc/html/*.html: regenerated a couple of docs
12367
Daniel Veillard4623acd2001-05-19 15:13:15 +000012368Sat May 19 17:11:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12369
12370 * doc/xml.html: update with 2.3.9 informations
12371
Daniel Veillardbed7b052001-05-19 14:59:49 +000012372Sat May 19 16:50:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12373
12374 * HTMLtree.h debugXML.h parserInternals.h tree.h valid.c
12375 xmlversion.h.in xpathInternals.h xpath.h: some cleanup for gtk-doc
12376 * doc/html/* : rebuilt the docs
12377 * valid.c: small patch which may improve some case when
12378 validating.
12379
Daniel Veillardf69bb4b2001-05-19 13:24:56 +000012380Sat May 19 15:20:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12381
12382 * HTMLparser.c: Closed bug #54891
12383 * result/HTML/cf_128.html* test/HTML/cf_128.html: added the test
12384 to the suite
12385
12386Thu May 17 14:15:07 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12387
12388 * encoding.h hash.c nanoftp.h parser.h tree.h uri.h xlink.h xpointer.c:
12389 applied a documentation patch from LotR and filled in a few missing
12390 descriptions
12391
Daniel Veillard76d66f42001-05-16 21:05:17 +000012392Wed May 16 23:02:41 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12393
12394 * xpath.c tree.c parser.c: speed optimizations at the parser level
12395 document tree freeing and xpath evaluation
12396
Daniel Veillardfd7ddca2001-05-16 10:57:35 +000012397Wed May 16 12:55:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12398
12399 * parser.c parser.h parserInternals.h: fixed a couple of
12400 interfaces for handling memory buffer input to const char *
12401 upon suggestion of JamesH.
12402
Daniel Veillardc3739e72001-05-15 15:23:27 +000012403Tue May 15 17:22:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12404
12405 * configure.in: LoTR sent a patch fixing the previous commit
12406
Daniel Veillarda4f27e02001-05-15 12:41:29 +000012407Tue May 15 14:40:04 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12408
12409 * configure.in: trying to deal again with the stoopid -R linking
12410 flag of Solaris
12411
Daniel Veillard790142b2001-05-15 10:51:53 +000012412Tue May 15 12:49:50 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12413
12414 * xpath.h: two nodeset access macros from Thomas Broyer
12415
Daniel Veillardba0b8c92001-05-15 09:43:47 +000012416Tue May 15 11:42:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12417
12418 * xpath.c xpath.h xpathInternals.h: apply an XPath API cleanup
12419 patch from Thomas Broyer
12420
Daniel Veillarde62d36c2001-05-15 08:53:16 +000012421Tue May 15 10:52:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12422
12423 * valid.c test/VCM/v2[34].xml: Fixed bug #54631 added specific test
12424 case
12425 * INSTALL: was empty added stuff from the FAQ
12426
Daniel Veillard75bea542001-05-11 17:41:21 +000012427Fri May 11 19:37:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12428
12429 * tree.[ch]: fixing bug #54446, by cleaning some bugs in the
12430 attributes handling and #54433 by adding xmlUnsetProp()
12431 and xmlUnsetNsProp()
12432
Daniel Veillard0a2a1632001-05-11 14:18:03 +000012433Fri May 11 16:07:13 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12434
12435 * HTMLparser.c: Patch from Jonas Borgström
12436 (htmlGetEndPriority): New function, returns
12437 the priority of a certain element.
12438 (htmlAutoCloseOnClose): Only close inline elements if they
12439 all have lower or equal priority.
12440 * result/HTML: this of course changed a number of tests results.
12441
Daniel Veillard7d6fd212001-05-10 15:34:11 +000012442Thu May 10 17:30:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12443
12444 * xmlIO.c catalog.c: plugged in the default catalog resolution
12445 * doc/gnome-xml.sgml: linked in the Docbook parser and catalog
12446 documentations
12447 * doc/html/libxml-*.html: rebuild added the missing ones to CVS
12448
Daniel Veillarda7374592001-05-10 14:17:55 +000012449Thu May 10 16:14:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12450
12451 * Makefile.am xmlversion.h.in configure.in include/Makefile.am:
12452 integrating catalogs
12453 * catalog.[ch] testCatalog.c: adding a small catalo API
12454 (only SGML catalog support).
12455 * parser.c: restaured xmlKeepBlanksDefault(0) API
12456
Daniel Veillardc17337c2001-05-09 10:51:31 +000012457Wed May 9 12:50:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12458
12459 * tree.c: zb@bisp.com reported an error in xmlNodeGetLang()
12460
Daniel Veillard257d9102001-05-08 10:41:44 +000012461Tue May 8 12:31:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12462
12463 * parser.c: added xmlParseExternalEntityPrivate() to allow
12464 propagation of ctxt->_private when parsing external entities
12465
Daniel Veillard083c2662001-05-08 08:27:14 +000012466Tue May 8 10:26:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12467
12468 * HTMLtree.c: fixed the bug reported by Bjorn in htmlNodeDump
12469
Daniel Veillard01ef7382001-05-08 07:31:43 +000012470Tue May 8 09:30:12 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12471
12472 * configure.in: fixed a small portability problem with AM_CONDITIONAL
12473
Daniel Veillard4de4d3b2001-05-07 20:50:47 +000012474Mon May 7 22:44:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12475
12476 * valid.c: warn when indeterminist content model is detected
12477 * result/VC/ElementValid8: this adds a message
12478 * Makefile.am: add --novalid for VCM tests
12479 * parserInternals.c: added a call to Init memory
12480
Daniel Veillard64269352001-05-04 17:52:34 +000012481Fri May 4 19:51:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12482
12483 * HTMLparser.c: fixed htmlNewDoc SYSTEM and PUBLIC ID inversion
12484 when both parameters are NULL.
12485
Daniel Veillard37721922001-05-04 15:21:12 +000012486Fri May 4 17:19:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12487
12488 * valid.c: applied small patch from Gary Pennington, reindented
12489 some part of the code.
12490
Daniel Veillard3bbbe6f2001-05-03 11:15:37 +000012491Thu May 3 13:10:43 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12492
12493 * configure.in doc/xml.html doc/html/*: preparing for 2.3.8
12494 release, updated and regenerated the docs
12495
Daniel Veillard357c9602001-05-03 10:49:20 +000012496Thu May 3 12:47:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12497
12498 * xpath.c result/XPath/expr/floats : clarified and cleanup
12499 printing of abnormal floats in tests.
12500
Daniel Veillarda2bc3682001-05-03 08:27:20 +000012501Thu May 3 10:25:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12502
12503 * HTMLparser.c: trying to fix the problem reported by Jonas Borgström
12504 * results/HTML/ : a few changes in the output of the HTML tests as
12505 a result.
12506 * configure.in: tying to fix -liconv where needed
12507
Daniel Veillard2a0d2e62001-05-02 17:11:36 +000012508Wed May 2 19:10:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12509
12510 * Makefile.am: fixed a stupid error
12511
Daniel Veillard7150a032001-05-02 16:41:11 +000012512Wed May 2 18:39:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12513
12514 * configure.in Makefile.am: make the inclusion of the trio
12515 modules in the library conditional
12516
Daniel Veillardc057c5d2001-05-02 12:41:24 +000012517Wed May 2 14:39:57 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12518
12519 * DOCBparser.c: patche from László Kovács, fixed entities refs
12520 in attributes handling
12521
Daniel Veillardedddff92001-05-02 10:58:52 +000012522Wed May 2 12:56:04 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12523
12524 * xmlIO.c: Bjorn Reese provided a fix for a problem on buffer
12525 flushing
12526
Daniel Veillardc8f620b2001-04-30 20:31:33 +000012527Mon Apr 30 22:29:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12528
12529 * xpath.c: fix of an XSLT namespace bug reported on the list
12530 general/bug-8-
12531
Daniel Veillard5792e162001-04-30 17:44:45 +000012532Mon Apr 30 19:42:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12533
12534 * strio.h trio.c: Dan McNichol suggested a couple of small
12535 fixes for AIX 4.3.3 using Visual Age 5.0.2 compiler
12536
Daniel Veillard02141ea2001-04-30 11:46:40 +000012537Mon Apr 30 13:44:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12538
12539 * tree.c parser.c encoding.c: spent a bit more time looking
12540 at the parsing speed and DOM handling. Added a few more
12541 speedups.
12542
Daniel Veillard3ed155f2001-04-29 19:56:59 +000012543Sun Apr 29 21:53:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12544
12545 * parser.c: small but effective parsing speed improvement
12546
Daniel Veillardb59076b2001-04-29 17:04:07 +000012547Sun Apr 29 19:02:13 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12548
12549 * configure.in: default on the DocBook parser inclusion (for Gnome)
12550 * DOCBparser.h: fixed a header reference
12551
Daniel Veillardb45c43b2001-04-28 17:02:11 +000012552Sat Apr 28 19:00:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12553
12554 * configure.in xpath.c: applied Bjorn patches for FPE on the
12555 alpha
12556
Daniel Veillardeefd4492001-04-28 16:55:50 +000012557Sat Apr 28 18:54:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12558
12559 * tree.[ch] xmlIO.h: applied patch from Joe McAlerney to add
12560 xmlSaveFormatFileTo()
12561
Daniel Veillarde39a93d2001-04-28 14:35:02 +000012562Sat Apr 28 16:33:05 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12563
12564 * xpath.c: simple and efficient optimization, XPath functions
12565 aways bind to the same code, cache this
12566 * TODO: updated (by saying some is obsolete)
12567
Daniel Veillard2156a562001-04-28 12:24:34 +000012568Sat Apr 28 14:23:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12569
12570 * xpath.c: more cleanup work on XPath name parsing routines
12571
Daniel Veillard61d80a22001-04-27 17:13:01 +000012572Fri Apr 27 19:06:13 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12573
12574 * parserInternals.c xpath.[ch]: some UTF8 cleanup on
12575 xmlXPathParseName
12576 * xpath.c: Igor Zlatkovic suggested a change for NAN and MSC
12577 * debugXML.c: avoid compilation problems if compiling without
12578 HTML support, Igor Zlatkovic
12579 * win32/libxml2/libxml2.def.src: being able to compile without
12580 XPath on Windows
12581
Daniel Veillarddbb14a72001-04-26 20:54:01 +000012582Thu Apr 26 22:53:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12583
12584 * libxml.m4: yet another patch from Toshio Kuratomi
12585
Daniel Veillard2913e4c2001-04-26 19:29:02 +000012586Thu Apr 26 21:27:43 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12587
12588 * libxml.m4 libxml2-spec.in: new patches from Toshio Kuratomi
12589
Daniel Veillard67fee942001-04-26 18:59:03 +000012590Thu Apr 26 20:53:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12591
12592 * tree.[ch]: added xmlSaveFormatFile interface for saving
12593 and indenting a file.
12594
Daniel Veillard82e49712001-04-26 14:38:03 +000012595Thu Apr 26 16:35:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12596
12597 * xpath.c: fixed bug #53689 related to processing-instruction()
12598
Daniel Veillard02f077a2001-04-26 10:59:11 +000012599Thu Apr 26 12:57:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12600
12601 * DOCBparser.c: patche from László Kovács
12602
Daniel Veillard30211a02001-04-26 09:33:18 +000012603Thu Apr 26 11:31:54 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12604
12605 * parser.c: applied fixes from Christian Glahn bug report #53391
12606
Daniel Veillard5a7c3452001-04-26 09:16:13 +000012607Thu Apr 26 11:14:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12608
12609 * error.c: Jean François Lecomte provided a complete description
12610 and a fix to bug #53537
12611
Daniel Veillard5c4ec4c2001-04-26 07:43:59 +000012612Thu Apr 26 09:42:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12613
12614 * libxml.m4: added AM_PATH_XML2 provided by Toshio Kuratomi
12615
Daniel Veillard1034da22001-04-25 19:06:28 +000012616Wed Apr 25 21:05:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12617
12618 * DOCBparser.c SAX.c: a bit more work on entities processing.
12619 Still Need to cleanup XML output and references in attributes
12620
Daniel Veillard4ec0b0f2001-04-25 15:53:40 +000012621Wed Apr 25 17:52:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12622
12623 * DOCBparser.c include/Makefile.am: two patches from László Kovács
12624
Daniel Veillardb33c2012001-04-25 12:59:04 +000012625Wed Apr 25 14:56:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12626
12627 * tree.c: trying to fix #53574, not completely complete,
12628 I would like xmllint --copy --debug test/ent1 and
12629 xmllint --debug test/ent1 to show the same result.
12630 * xpath.c: fix a bug when trying to sort namespace nodes
12631
Daniel Veillard5146f202001-04-25 10:29:44 +000012632Wed Apr 25 12:28:57 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12633
12634 * HTMLtree.c: real fix for #53402
12635
Daniel Veillard7533cc82001-04-24 15:52:00 +000012636Tue Apr 24 17:36:35 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12637
12638 * HTMLtree.c HTMLtree.h : closing #53402 i.e. output of
12639 PIs when using xsl:output
12640 * valid.c: closing #53537 some case generate segfaults if there
12641 is validity errors
12642
Daniel Veillard61b33d52001-04-24 13:55:12 +000012643Tue Apr 24 15:19:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12644
12645 * SAX.c testDocbook.c DOCBparser.c: more work on the support
12646 of external parsed entities, added --noent to testDocbook
12647 * valid.c: Garry Pennington found an uninitialized variable
12648 access in xmlValidateElementContent()
12649
Daniel Veillard56098d42001-04-24 12:51:09 +000012650Tue Apr 24 14:41:25 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12651
12652 * HTMLparser.c : HTML parsing still sucks ... trying to deal
12653 with madness
12654 * result/HTML/ : this modified the result of the regression tests
12655 a lot.
12656
Daniel Veillard122376b2001-04-24 12:12:30 +000012657Tue Apr 24 14:10:38 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12658
12659 * entities.c: xmlEncodeEntitiesReentrant fixed a few accesses
12660 to doc where it wasn't checked against NULL reported by
12661 Jens Laas
12662
Daniel Veillard43dadeb2001-04-24 11:23:35 +000012663Tue Apr 24 13:21:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12664
12665 * HTMLparser.c: Jonas Borgström patch, the <td>, and <th> elements
12666 now means the end of any open <span>,<font>,<a>,<b>,<i>,<u>.
12667
Daniel Veillardeae522a2001-04-23 13:41:34 +000012668Mon Apr 23 15:40:04 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12669
12670 * DOCBparser.c DOCBparser.h testDocbook.c configure.in Makefile.am
12671 xmlversion.h.in: started (re)integrating the DocBook SGML parser.
12672 * SAX.[ch]: cleanup and updates for DocBook
12673 * debugXML.c parser.h tree.[ch] valid.c xpath.c: small macro or
12674 ex SGML identifier changes
12675 * valid.c: removed a static unused function.
12676
Daniel Veillardde57c612001-04-23 09:13:36 +000012677Mon Apr 23 11:05:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12678
12679 * HTMLtree.c: applied change for Paul Sponagl on script saving
12680 * Makefile.am: the warning about entity title.xml are normal.
12681
Daniel Veillard393df012001-04-22 20:11:18 +000012682Sun Apr 22 22:09:35 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12683
12684 * configure.in: release of 2.3.7
12685 * Makefile.am: fixing make distcheck
12686
Daniel Veillarda41123c2001-04-22 19:31:20 +000012687Sun Apr 22 21:29:52 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12688
12689 * doc/html/* doc/xml.html: updated and regenerated the docs
12690
Daniel Veillardfd0c3eb2001-04-22 19:13:10 +000012691Sun Apr 22 21:11:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12692
12693 * xpath.c: fixed the XPointer problem introduced in 2.3.6
12694
Daniel Veillarde82a9922001-04-22 12:12:58 +000012695Sun Apr 22 14:11:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12696
12697 * tree.c: fixed #53388 with the provided patch
12698
Daniel Veillard06803992001-04-22 10:35:56 +000012699Sun Apr 22 12:34:41 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12700
12701 * valid.c: Bjorn detected an invalid memory access. Fixed
12702 vstateVPush()
12703
Daniel Veillard40af6492001-04-22 08:50:55 +000012704Sun Apr 22 10:49:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12705
12706 * xpath.c: fixed xmlXPathCompile to detected unproperly ended expr
12707
Bjorn Reese70a9da52001-04-21 16:57:29 +000012708Sat Apr 21 18:27:51 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
12709
12710 * libxml.h: new header used only for the compilation of libxml
12711 * HTMLparser.c HTMLtree.c SAX.c debugXML.c encoding.c entities.c
12712 error.c hash.c list.c nanoftp.c nanohttp.c parser.c
12713 parserInternals.c testHTML.c testSAX.c testURI.c testXPath.c
12714 tree.c uri.c valid.c xinclude.c xlink.c xmlIO.c xmllint.c
12715 xmlmemory.c xpath.c xpointer.c: libxml.h integration
12716 * trio.[ch] triop.h strio.[ch]: upgraded to the latest trio
12717 baseline (version 1.2 plus a single patch).
12718 * xpath.c result/XPath/expr/floats test/XPath/expr/floats: parses
12719 scientific notation for numbers. Tests added.
12720 * xpath.c: formatting of numbers changed to use sprintf
12721 (contribution from William Brack)
12722
Daniel Veillard34b1b3a2001-04-21 14:16:10 +000012723Sat Apr 21 16:12:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12724
12725 * valid.c: cleanup, more useful debugging
12726 * parserInternals.c: cleanup vctxt.nodeTab (de)allocation
12727 * xmlIO.c: entity loading is printed as an error when validating
12728
Daniel Veillard1c14b8d2001-04-21 10:28:59 +000012729Sat Apr 21 12:25:49 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12730
12731 * valid.c: fixed to validate within entities
12732 * test/VCM/v22.xml: added a specific testcase
12733
Daniel Veillardca1f1722001-04-20 15:47:35 +000012734Fri Apr 20 17:45:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12735
12736 * valid.c: forgot an epsilon transition in for ()+
12737 * test/VCM/v21.xml : added a specific test case
12738
Daniel Veillard85349052001-04-20 13:48:21 +000012739Fri Apr 20 15:46:04 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12740
12741 * valid.c: removed a state explosion exhibited by RSS
12742 * test/valid/rss.xml result/valid/rss.xml*: added the testcase
12743 from bug #51872
12744
Daniel Veillarddab4cb32001-04-20 13:03:48 +000012745Fri Apr 20 14:52:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12746
12747 * valid.[ch] tree.h: worked *hard* to get non-determinist content
12748 validation without using an ugly NFA -> DFA algo in the source.
12749 Made a specific algorithm easier to maintain, using a single
12750 stack and without recursion.
12751 * Makefile.am test/VCM/*.xml: added more tests to "make Validtests"
12752 * hash.c: made the growing routine static
12753 * tree.h parser.c: added the parent information to an
12754 xmlElementContent node.
12755
Daniel Veillarde470df72001-04-18 21:41:07 +000012756Wed Apr 18 23:33:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12757
12758 * SAX.c parser.c xpath.c: generating IDs when not validating
12759 from an external parsed entity was poisoning the ID has table
12760 with removed values. This was killing XSLT on the KDE help
12761 browser.
12762
Daniel Veillardceacdd92001-04-18 15:10:35 +000012763Wed Apr 18 17:09:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12764
12765 * entities.h: andrew@ugh.net.au detected a double declaration
12766
Daniel Veillarda10efa82001-04-18 13:09:01 +000012767Wed Apr 18 15:06:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12768
12769 * debugXML.c hash.c tree.h valid.c : some changes related to
12770 the validation suport to improve speed with DocBook
12771 * result/VC/OneID2 result/VC/OneID3 : this slightly changes
12772 the way validation errors get reported
12773
Daniel Veillard1ed3f882001-04-18 09:45:35 +000012774Wed Apr 18 11:42:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12775
12776 * HTMLparser.c HTMLtree.c: applied part of the patches provided
12777 by P C Chow and William M. Brack for XSLT HTML output
12778
Daniel Veillard2d90de42001-04-16 17:46:18 +000012779Mon Apr 16 19:44:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12780
12781 * xmlversion.h.in win32config.h win32/libxml2/*: applied
12782 Igor Zlatkovic patches for MSC compilation and added his
12783 updates
12784
Daniel Veillarde043ee12001-04-16 14:08:07 +000012785Tue Apr 17 10:08:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12786
12787 * xpath.c: fixed xmlXPathNodeCollectAndTest() to do proper
12788 prefix lookup.
12789 * parserInternals.c: fixed the bug reported by Morus Walter
12790 due to an off by one typo in xmlStringCurrentChar()
12791
Daniel Veillarda3bfca52001-04-12 15:42:58 +000012792Thu Apr 12 17:41:09 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12793
12794 * HTMLparser.c result/HTML/*: revamped the way the HTML
12795 parser handles end of tags or end of input
12796
Daniel Veillard82daa812001-04-12 08:55:36 +000012797Thu Apr 12 10:50:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12798
12799 * tree.[ch] : added xmlDocCopyNode for gdome2 support
12800
Daniel Veillard67a21302001-04-11 14:39:16 +000012801Wed Apr 11 16:37:50 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12802
12803 * tree.h: include xmlmemory.h this seems to havoid a nasty glibc
12804 bug where the linktime verions of free() won't work ...
12805
Daniel Veillard27b55282001-04-11 12:22:25 +000012806Wed Apr 11 14:21:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12807
12808 * config.h.in configure.in xmlversion.h.in: added ansidecl.h test
12809
Daniel Veillardafc73112001-04-11 11:51:41 +000012810Wed Apr 11 13:50:42 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12811
12812 * doc/xml.html: added 2.3.6 release
12813
Daniel Veillardbdb9ba72001-04-11 11:28:06 +000012814Wed Apr 11 13:26:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12815
12816 * tree.c: fixed xmlStringGetNodeList() to handle charrefs
12817 * result/wml.xml: resulted in a small output change
12818
Daniel Veillardd2f3ec72001-04-11 07:50:02 +000012819Wed Apr 11 09:47:55 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12820
12821 * tree.c: xmlNewDoc was missing the charset initialization
12822 * xmllint.c: added --auto to autogenerate a doc, allow to
12823 reproduce the problem fixed on xmlNewDoc
12824
Daniel Veillard1731d6a2001-04-10 16:38:06 +000012825Tue Apr 10 18:13:10 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12826
12827 * xpath.c: trying to get 52979 solved
12828 * tree.c result/ result/noent/: trying to get 52712 solved, this
12829 also made me clean up the fact that XML output in general should
12830 not add formating blanks by default, this changed the output of
12831 a few tests
12832
Daniel Veillard73639a72001-04-10 14:31:39 +000012833Tue Apr 10 16:30:20 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12834
12835 * xpath.c: Bill Brack pointer an error in detecting a null nodeset
12836
Daniel Veillardfac26a12001-04-08 13:08:14 +000012837Sun Apr 8 15:07:16 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12838
12839 * configure.in: finally released 2.3.6
12840
Daniel Veillard911f49a2001-04-07 15:39:35 +000012841Sun Apr 8 11:39:21 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12842
12843 * xpath.c: checking for null pointer generated by new code
12844
Daniel Veillardd8df6c02001-04-05 16:54:14 +000012845Fri Apr 6 12:53:05 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12846
12847 * xpath.c: fixed a [] evaluation problem reported
12848 * test/XPath/tests/simpleaddr: extended test
12849 * result/XPath/simpleaddr: updated result
12850
Daniel Veillard3b2c2612001-04-04 00:09:00 +000012851Wed Apr 4 02:07:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12852
12853 * xmllint.c: Dan Timis reported a portability problem
12854 on Macs without mmap, fixed it.
12855
Daniel Veillardb38bd552001-04-03 18:22:00 +000012856Tue Apr 3 20:20:51 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12857
12858 * testXPath.c : added a --tree option allowing to display the
12859 tree dump of the XPath expression
12860
Daniel Veillard4dd93462001-04-02 15:16:19 +000012861Mon Apr 2 17:13:51 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12862
12863 * xpath.c: fixed a memleak when comparing nodesets
12864 * HTMLtree.c: don't invent the HTML doctype if not available (XSLT)
12865 * tree.c: added a TODO
12866
Daniel Veillard92ad2102001-03-27 12:47:33 +000012867Tue Mar 27 14:32:06 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12868
12869 * configure.in Makefile.am config.h.in xmlversion.h.in: detect if
12870 we need string functions
12871 * trio.[ch] strio.[ch]: embedded the Trio-0.23 string functions
12872 to be able to use them where needed. Applied some changes
12873 to reduce name linking pollution and compile in only what's
12874 needed.
12875 * HTMLtree.c debugXML.c entities.c error.c nanoftp.c valid.c
12876 xlink.c xmlversion.h.in xpath.c: got rid of the #ifdef
12877 for the string manipulation functions
12878 * xmlmemory.[ch]: removed DEBUG_MEMORY_FREED and added it automatically
12879 to the free() function of xmlmemory.c
12880 * entities.c HTMLtree.c parserInternals.c tree.c uri.c valid.c
12881 xinclude.c xmlIO.c xpath.c xpointer.c: removed the MEM_CLEANUP
12882 usage.
12883
12884
Daniel Veillard2be30642001-03-27 00:32:28 +000012885Tue Mar 27 02:30:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12886
12887 * error.c: applied the context output patch of the error
12888 handling submitted by Chuck Griffith
12889 * error/VC/*: this slightly change some error logs
12890
Daniel Veillard50582112001-03-26 22:52:16 +000012891Tue Mar 27 00:51:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12892
12893 * parser.c: fixed line number reporting on error
12894
Daniel Veillard04be4f52001-03-26 21:23:53 +000012895Mon Mar 26 23:21:41 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12896
12897 * parser.c: Sullivan and Darin found a parser bug,
12898 applied the patch.
12899
Daniel Veillardc86a4fa2001-03-26 16:28:29 +000012900Mon Mar 26 18:24:52 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12901
12902 * HTMLparser.c HTMLtree.c SAX.c debugXML.c error.c parserInternals.c
12903 testHTML.c testSAX.c tree.c valid.c xmlIO.c xmlmemory.c
12904 xmlversion.h.in xpointer.c: of course the way I defined
12905 UNUSED breaks on old gcc version. Try to be smart and
12906 also define it directly in xmlversion.h
12907 * configure.in: removed -ansi flag from the pedantic set
12908
12909Sat Mar 24 17:45:36 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
Daniel Veillard56a4cb82001-03-24 17:00:36 +000012910 Huge cleanup, I switched to compile with
12911 -Wall -g -O -ansi -pedantic -W -Wunused -Wimplicit
12912 -Wreturn-type -Wswitch -Wcomment -Wtrigraphs -Wformat
12913 -Wchar-subscripts -Wuninitialized -Wparentheses -Wshadow
12914 -Wpointer-arith -Wcast-align -Wwrite-strings -Waggregate-return
12915 -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Winline
12916 * HTMLparser.[ch] HTMLtree.c SAX.c debugXML.c encoding.[ch]
12917 encoding.h entities.c error.c list.[ch] nanoftp.c
12918 nanohttp.c parser.[ch] parserInternals.[ch] testHTML.c
12919 testSAX.c testURI.c testXPath.c tree.[ch] uri.c
12920 valid.[ch] xinclude.c xmlIO.[ch] xmllint.c xmlmemory.c
12921 xpath.c xpathInternals.h xpointer.[ch] example/gjobread.c:
12922 Cleanup, staticfied a number of non-exported functions,
12923 detected and cleaned up a dozen of problem found this way,
12924 avoided a lot of public function name/typedef/system names clashes
12925 * doc/xml.html: updated
12926 * configure.in: switched private flags to the really pedantic ones.
12927
Daniel Veillardc7ad7ce2001-03-22 21:45:29 +000012928Thu Mar 22 22:44:15 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12929
12930 * configure.in: 2.3.5
12931 * doc/html/*: rebuilt the docs
12932
Daniel Veillard146c9122001-03-22 15:22:27 +000012933Thu Mar 22 15:36:45 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12934
12935 * parser.c: fixed a reported bug in NOTATION parsing
12936 * uri.c: accepted but not fixed bug 51876, added TODO
12937 * Makefile.am: fixed bug 51876
12938
Daniel Veillarda5f013b2001-03-22 12:44:45 +000012939Thu Mar 22 13:41:22 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12940
12941 * config.h.in configure.in error.c: fix a compilation problem
12942 on platforms without vsnprintf (xml@thewrittenword.com)
12943
Daniel Veillarde020c3a2001-03-21 18:06:15 +000012944Wed Mar 21 19:04:34 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12945
12946 * parser.c: fixed a function name header typo
12947 * SAX.c: notations can also occur in external subset.
12948
Daniel Veillard7d42b542001-03-20 13:22:46 +000012949Tue Mar 20 14:21:28 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12950
12951 * error.c: removed a C++ like comment
12952
Daniel Veillard0b6b55b2001-03-20 11:27:34 +000012953Tue Mar 20 12:22:36 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12954
12955 * parser.c: fixing bug 52299 strange condition leading
12956 to a parser crash due to a buffer overflow
12957 * result/noent/attrib.xml result/attrib.xml test/attrib.xml:
12958 added the specific test case
12959
Daniel Veillardfbf8a2d2001-03-19 15:58:54 +000012960Mon Mar 19 16:50:52 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12961
12962 * xpath.[ch]: still a lot of cleanup based on XSLT, added
12963 xmlXPathConvert{String,Number,Boolean} to be able to make
12964 type casts without a context stack, fixed some implementation
12965 problems related to the absence of context at parse-time,
12966 added xmlXPathEvalPredicate() and xmlXPathFreeCompExpr()
12967 in the public API too
12968 * xpointer.c xpathInternals.h: we need to know at parse time
12969 whether we are compiling an XPointer
12970
Daniel Veillardafcbe1c2001-03-19 10:57:13 +000012971Mon Mar 19 11:54:31 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12972
12973 * xpath.[ch] xpointer.c: restaured the Binary and API compatibility
12974 cleaned up the parser internals, refactored XPath code, added
12975 new compilation based APIs and cleanly separated public and
12976 private APIs.
12977
Daniel Veillardd007d6c2001-03-19 00:01:07 +000012978Mon Mar 19 00:59:25 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12979
12980 * xpath.h: the comp field must be added at the end to avoid
12981 killing binary compat.
12982
Daniel Veillard9e7160d2001-03-18 23:17:47 +000012983Mon Mar 19 00:11:18 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12984
12985 * Makefile.am: detect XPath memleaks in regreson tests
12986 * error.c: fixed and error w.r.t. error reporting still using
12987 stderr
12988 * hash.c: added new line at end of file
12989 * tree.h: minor cleanup
12990 * xpath.[ch] xpointer.[ch]: Major changes ! Separated XPath
12991 expression parsing from evaluation, resulted in a number of
12992 changes internally, and in XPointer. Likely to break stuff
12993 using xpathInternals.h but should remain binary compatible,
12994 new interfaces will be added.
12995
Daniel Veillardd574f782001-03-14 19:40:17 +000012996Wed Mar 14 20:34:02 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
12997
12998 * configure.in: fixed a couple of problems reported by
12999 okiddle@yahoo.co.uk and allanc@chickenandporn.com when compiling
13000 without gcc on non linux platforms.
13001
Daniel Veillard0a6c3582001-03-14 19:15:37 +000013002Wed Mar 14 20:13:54 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13003
13004 * doc/Makefile.am configure.in: yearke@eng.buffalo.edu suggested
13005 a fix for --with-html-dir= configure support. I hope it won't
13006 break rpm generation
13007
Daniel Veillarda022fe02001-03-14 16:30:00 +000013008Wed Mar 14 17:28:49 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13009
13010 * xmlIO.c: one function comment cleanup.
13011
Daniel Veillard25239c12001-03-14 13:56:48 +000013012Wed Mar 14 14:55:46 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13013
13014 * SAX.c: external subset notations were improperly registered
13015 in the internal subset.
13016
Daniel Veillard2c4754f2001-03-13 09:31:12 +000013017Tue Mar 13 10:28:49 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13018
13019 * README.cvs-commits: added, pointing to HACKING
13020 * HACKING: updated
13021
Daniel Veillard82ab81e2001-03-12 21:11:21 +000013022Mon Mar 12 22:09:40 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13023
13024 * parser.c: and Matt Sergeant found one in the XML push
13025 parser (erroneous check I forgot to remove when I fixed the
13026 main parser).
13027
Daniel Veillard68d7b672001-03-12 18:22:04 +000013028Mon Mar 12 19:19:04 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13029
13030 * xpath.c: ptittom found a small bug in UnaryExpr
13031
Daniel Veillarde356c282001-03-10 12:32:04 +000013032Sat Mar 10 13:09:53 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13033
13034 * configure.in: bumped to 2.3.4
13035 * error.c: fixed bug #51860
13036 * tree.c: fixed bug #51861
13037 * valid.c: cleanup, more debug, failed to fix one bug crap ...
13038 * tree.[ch] : added xmlDefaultBufferSize
13039 * nanoftp.c: typo in function name header block
13040 * doc/xml.html : updated, added link to XML::LibXSLT
13041 * doc/html/* : rebuilt the docs
13042
Daniel Veillard80f32572001-03-07 19:45:40 +000013043Wed Mar 7 20:43:47 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13044
13045 * parser.c SAX.c: the new content parsing code raised an
13046 ugly bug in the characters() SAX callback. Found it
13047 just because of strangeness in XSLT XML Rec ouptut :-(
13048
Daniel Veillard6c831202001-03-07 15:57:53 +000013049Wed Mar 7 16:50:22 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13050
13051 * Makefile.am: Martin Baulig suggested to add -lm
13052 * tree.c: found another bug in xmlNodeGetContent()
13053
Daniel Veillard4af6b6e2001-03-06 08:33:38 +000013054Tue Mar 6 09:21:30 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13055
13056 * xpath.c: Bjorn found the error related to strictness of comparison.
13057
Daniel Veillard29631a82001-03-05 09:49:20 +000013058Mon Mar 5 21:47:31 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13059
13060 * parser.c: trying to fix the Dtd parsing problem reported
13061 by Gary, side effect of last week speed optimizations.
13062
Daniel Veillard14be0a12001-03-03 18:50:55 +000013063Sat Mar 3 19:45:59 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13064
13065 * xml2Conf.sh.in: fixes pointed out by Fredrik Hallenberg
13066 * parserInternals.c: removed unneeded test raised by Stric
13067
Bjorn Reesee1dc0112001-03-03 12:09:03 +000013068Sat Mar 3 13:04:37 CET 2001 Bjorn Reese <breese@users.sourceforge.net>
13069
13070 * xpath.c: Fixed xmlXPathNodeCollectAndTest (problem reported
13071 and fixed by William Brack). Added xmlXPathFormatNumber.
13072 Changed the sorting slightly.
13073 * configure.in Makefile.am example/Makefile.am: Added -lm.
13074 Please note that applications linking with libxml2, must
13075 also like with the math library from now on.
13076
Daniel Veillardf9533d12001-03-03 10:04:57 +000013077Sat Mar 3 07:38:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13078
13079 * HTMLparser.c: fixed loop reported by Marc Sanfacon
13080
Daniel Veillard2f362242001-03-02 17:36:21 +000013081Sat Mar 3 02:10:24 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13082
13083 * parser.c: one must report spaces even if the Dtd element
13084 content proves that this is not part of the element content.
13085 * result/valid/*.xml: this changed the ouptu slightly
13086
Daniel Veillardb402c072001-03-01 17:28:58 +000013087Thu Mar 1 17:53:39 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13088
13089 * configure.in: bumped to 2.3.3
13090 * doc/xml.html: updated
13091
Daniel Veillard77851712001-02-27 21:54:07 +000013092Wed Feb 28 00:43:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13093
13094 * tree.c: minor doc fix
13095 * xpath.c: deallocation issues when a result tree has been
13096 converted to a node-set
13097
Daniel Veillardec70e912001-02-26 20:10:45 +000013098Mon Feb 26 22:09:45 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13099
13100 * doc/xml.html: oops corrected dates s/2000/2001
13101
Daniel Veillard8730c562001-02-26 10:49:57 +000013102Mon Feb 26 12:48:35 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13103
13104 * valid.c: new patch from Gary Pennington
13105
Daniel Veillard91e9d582001-02-26 07:31:12 +000013106Mon Feb 26 09:30:23 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13107
13108 * doc/xml.html: applied patch from Ankh
13109
Daniel Veillardedac3c92001-02-26 01:36:19 +000013110Mon Feb 26 03:34:43 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13111
13112 * xinclude.c: fixed a problem building on Mac
13113
Daniel Veillard21a0f912001-02-25 19:54:14 +000013114Sun Feb 25 21:52:30 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13115
13116 * parser.c: more work on increasing parsing ferformances
13117
Daniel Veillard48b2f892001-02-25 16:11:03 +000013118Sun Feb 25 18:03:42 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13119
13120 * xmlmemory.h HTMLparser.c HTMLtree.c entities.c parser.c
13121 xpath.c xpointer.c tree.c uri.c valid.c xinclude.c xmlIO.c:
13122 avoiding memcpy in production builds MEM_CLEANUP macro use
13123 * parser.[ch] parserInternals.c: optimizations of the tightest
13124 internal loops inside the parser. Better checking of I/O
13125 flushing/loading conditions
13126 * xmllint.c : added --timing
13127
Daniel Veillard71681102001-02-24 17:48:53 +000013128Sun Feb 25 05:48:51 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13129
13130 * configure.in: bumped to 2.3.2
13131 * doc/xml.html: updated for release
13132
Daniel Veillardbbd51d52001-02-24 03:07:03 +000013133Sat Feb 24 14:07:52 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13134
13135 * xpath.c: found a memleak and fixed a nasty bug
13136
Daniel Veillardf7cd4812001-02-23 18:44:52 +000013137Sat Feb 24 03:35:48 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13138
13139 * xmllint.[c1] : added return code errors for xmllint
13140 * xpath.c: specific debug dump function for result value trees
13141
Daniel Veillard4b637072001-02-21 21:52:55 +000013142Thu Feb 22 07:52:27 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13143
13144 * xpath.c: finally implemented xmlXPathCompareNodeSets
13145 * test/XPath/expr/floats results/XPath/expr/floats: added
13146 a test for float expressions
13147
Daniel Veillardf714aa32001-02-21 03:07:44 +000013148Tue Feb 20 18:57:54 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13149
13150 * tree.c: fixed xmlNodeGetContent, it was not recursing on child
13151 * parserInternals.[ch]: trying to speed up parsing
13152 * xpath.c : speeded up node set equality op
13153
Daniel Veillarde0c3a622001-02-19 18:05:20 +000013154Mon Feb 19 19:01:57 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13155
13156 * Makefile.am valid.c list.[ch]: Gary Pennington provided a
13157 better handling of ID/IDREF and the list modules associated
13158 * configure.in: small CFLAGS cleanup
13159
Daniel Veillarda8abee62001-02-19 15:14:59 +000013160Mon Feb 19 16:13:22 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13161
13162 * configure.in: fixed iconv detection on AIX (stric)
13163
Daniel Veillardbca64ef2001-02-19 22:20:01 +000013164Mon Feb 19 10:59:41 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
Daniel Veillard88f8f6f2001-02-19 10:00:53 +000013165
13166 * xpath.c: fixed "*" (unbelievable !) and a couple of warnings
13167
Bjorn Reesefd9b09b2001-02-18 16:51:25 +000013168Sun Feb 18 17:52:37 MET 2001 Bjorn Reese <breese@users.sourceforge.net>
13169
13170 * xpath.c: fixed whitespace handling in xmlXPathStringEvalNumber,
13171 and optimized xmlXPathNodeSetSort
13172
Daniel Veillard142adbf2001-02-17 13:21:05 +000013173Sat Feb 17 14:18:42 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13174
13175 * xpath.c: bug fix when context size is 0
13176 * parser.c: I like Norm's Dtd because they still manage to break
13177 the parser occasionally
13178
Daniel Veillardf23e0092001-02-16 13:21:29 +000013179Fri Feb 16 14:20:35 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13180
13181 * xpath.c: xmlXPathEqualNodeSetFloat the arg is really a double now
13182
Daniel Veillarde0e26512001-02-16 00:11:46 +000013183Fri Feb 16 01:10:06 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13184
13185 * tree.[ch] parser.c xpath.c: fixed the problem of addressing
13186 attributes within the XML-1.0 namespace
13187
Daniel Veillard6e6a6cc2001-02-15 15:55:44 +000013188Thu Feb 15 16:53:20 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13189
13190 * xpathInternals.h: exported a few axis functions
13191 * doc/xml.html: updated the doc
13192
Daniel Veillard760f4422001-02-15 14:59:48 +000013193Thu Feb 15 15:57:14 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13194
13195 * configure.in: applied patch from Daniel van Balen for OpenBSD
13196 and bumped version to 2.3.1
13197 * HTMLtree.c result/HTML/doc3.htm result/HTML/wired.html: the
13198 attempt to find autoclosing was simply broken, removed it,
13199 updated the examples, this is better
13200
Daniel Veillardd194dd22001-02-14 10:37:43 +000013201Wed Feb 14 11:35:39 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13202
13203 * hash.[ch]: added Paolo Casarini patch to provide Delete from
13204 hash functionnalities.
13205 * doc/html/* : rebuild the doc
13206
Daniel Veillardf41fbbf2001-02-13 17:05:35 +000013207Tue Feb 13 18:01:48 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13208
13209 * xpath.c result/XPath/tests/chaptersprefol: bugfixes on order and
13210 on predicate
13211 * HTMLparser.[ch] HTMLtree.c result/HTML/doc3.htm.err
13212 result/HTML/doc3.htm.sax result/HTML/wired.html: sometimes one
13213 really want to have tags closed on output even if we accept
13214 unclosed ones on input
13215
Daniel Veillard5dd2f0a2001-02-12 17:36:05 +000013216Mon Feb 12 18:33:20 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13217
13218 * xpath.c: ouch don't free NULL, rare case fixed
13219 * tree.c: don't coalesce text nodes if they don't have the
13220 same behaviour wrt escaping on output
13221
Daniel Veillardd12b69d2001-02-11 20:17:31 +000013222Sun Feb 11 21:15:41 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13223
13224 * xpath.c: small fixup
13225 * SAX.c: don't warn on empty namespaces.
13226
Daniel Veillard6a2e4062001-02-08 10:31:33 +000013227Thu Feb 8 11:28:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13228
13229 * README: a bit of cleanup
13230 * configure.in: preparing for 2.3.0 release
13231
Daniel Veillard1f83d392001-02-08 09:37:42 +000013232Thu Feb 8 10:37:00 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13233
13234 * hash.[ch]: added a first version of xmlHashSize()
13235 * valid.c: another bug fix from Gary Pennington
13236
Daniel Veillard5eef6222001-02-07 18:24:48 +000013237Wed Feb 7 19:22:37 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13238
13239 * valid.c: couple of bug fixes pointed by Gary Pennington
13240 * HTMLtree.c: #if 0 cleanup
13241
Daniel Veillard2c257ec2001-02-06 13:29:07 +000013242Tue Feb 6 14:02:56 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13243
13244 * xpath.c: started profiling XSLT, added xmlXPathNodeSetAddUnique()
13245 which removes a time consuming check of xmlXPathNodeSetAdd()
13246 and use it in places where we are sure to not break unicity
13247
Daniel Veillard0f2a53c2001-02-05 17:57:33 +000013248Mon Feb 5 18:51:36 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13249
13250 * xpath.c: bug fixes found from XSLT
13251 * tree.c: preserve node->name special values when copying nodes.
13252 * parserInternals.[ch] parser.[ch] SAX.c : added a mode where
13253 external subset are fetched when available but without full
13254 validation. Added xmlLoadExtDtdDefaultValue, need a function.
13255 * HTMLtree.c: add support for xmlStringTextNoenc for XSLt HTML
13256 output with encoding disabled.
13257
Daniel Veillard2c833b62001-02-03 08:52:06 +000013258Sat Feb 3 09:50:29 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13259
13260 * xmliO.c: Harry Blundell pointed out that xmlCheckFilename
13261 xmlCheckFilename should not be called from xmlFileOpenW
13262 and xmlGzfileOpenW
13263
Daniel Veillardb6e7fdb2001-02-02 17:07:32 +000013264Fri Feb 2 18:04:35 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13265
13266 * uri.c: rewrite of xmlNormalizeURIPath from Paul D. Smith
13267 * test/URI/smith.uri result/URI/smith.uri Makefile.am:
13268 added the new tests for URI normalization
13269 * testURI.c: fixed stoopid bugs
13270 * result/VC/OneID3 result/VC/UniqueElementTypeDeclaration:
13271 the URI in the error messages are now properly normalized
13272
Daniel Veillardea28ce62001-02-02 08:20:19 +000013273Fri Feb 2 09:18:53 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13274
13275 * uri.c: applied Marc Sanfacon's patch for xmlNormalizeURIPath
13276
Daniel Veillarde99a4762001-02-01 04:34:35 +000013277Thu Feb 1 05:28:55 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13278
13279 * xpath.c: fixed a number of problems in XPATH_XSLT_TREE processing
13280
Daniel Veillard2b325a02001-01-31 20:46:31 +000013281Wed Jan 31 21:45:37 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13282
13283 * xpath.c: fixed mod operator
13284
Daniel Veillardde55cf62001-01-31 15:53:13 +000013285Wed Jan 31 16:50:42 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13286
13287 * parser.c: fixed xmlStrcat doc
13288 * tree.c: 2 fixes form Anders Carlson for copying nodes and
13289 trees.
13290
Daniel Veillard2f913b72001-01-31 13:23:49 +000013291Wed Jan 31 14:19:16 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13292
13293 * xpath.c result/XPath/tests/chaptersbase
13294 result/XPath/tests/simplebase: fixed XPath node()
13295 * tree.c: small fix in xmlNewNs()
13296 * Makefile.am: removed extraneous xml2Conf.sh rule
13297
Daniel Veillardb42042b2001-01-28 07:40:36 +000013298Sun Jan 28 08:37:03 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13299
13300 * Makefile.am configure.in libxml.spec.in example/Makefile.am:
13301 Changed the library name, in order to get libxml-devel and
13302 libxml2-devel to coexist on a single system
13303 * xml-config.1 xml-config.in xmlConf.sh.in: renamed
13304 * xml2-config.1 xml2-config.in xml2Conf.sh.in: new files
13305
Daniel Veillardee0a4662001-01-27 18:59:33 +000013306Sat Jan 27 19:58:22 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13307
13308 * Makefile.am configure.in libxml-2.0.pc.in: started working on getting
13309 libxml2-devel installable in // as libxml-devel.
13310
Daniel Veillard5eb05942001-01-27 17:50:22 +000013311Sat Jan 27 18:49:02 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13312
13313 * doc/Makefile.am: fixed make rebuild in doc
13314 * doc/html/*.html: rebuilt the docs
13315
Daniel Veillard65c295d2001-01-26 09:32:39 +000013316Fri Jan 26 10:30:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13317
13318 * tree.c: patch from Bjorn Reese on xmlBufferCCat
13319
Daniel Veillard8e199902001-01-25 18:54:39 +000013320Thu Jan 25 19:22:25 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13321
13322 * Makefile.am doc/Makefile.am libxml.spec.in: painful work to get
13323 the HTML doc to go into the -devel RPM ...
13324 * aclocal.m4 config.h.in: some updates due to auto* magic
13325
Daniel Veillard93086662001-01-25 18:13:04 +000013326Thu Jan 25 19:11:49 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13327
13328 * xpath.h: added a hook in the context structure allowing to
13329 link to extra support, needed for XSLT
13330
Daniel Veillardf17e09b2001-01-25 13:55:35 +000013331Thu Jan 25 13:34:11 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13332
13333 * xpath.[ch] xpointer.c: added xmlXPathCmpNodes, changed
13334 xmlXPtrCmpPoints to use it.
13335 * propagated the following patch from Alejandro Forero
13336 * include/win32config.h xmlIO.c: applied further suggestions
13337 from Igor Zlatkovic <igorz@dialup.nacamar.de> and cleanup
13338 * example/gjobread.c: fixed warnings, now that it builds
13339
13340Wed Jan 24 20:27:28 COT 2001 Alejandro Forero <bachue@bachue.com>
13341
13342 * xmlIO.c (xmlFileOpen, xmlFileOpenW): Removed unnecesary checks.
13343
13344 * xmlIO.c (xmlCheckFilename): Function added to know whether a given
13345 filename points to a valid file (not a directory).
13346 * xmlIO.c (xmlFileOpen, xmlFileOpenW, xmlGzfileOpen, xmlGzfileOpenW):
13347 Added calls to xmlCheckFilenameDir.
13348
13349 * xmlIO.c (xmlGzfileOpen, xmlGzfileOpenW, xmlFdOpen, xmlFdOpenW): Pass
13350 `path' (rather than `filename') as the parameter to gzopen and open.
13351
Daniel Veillard48177c22001-01-23 15:27:41 +000013352Tue Jan 23 16:26:30 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13353
13354 * Makefile.am: fixed a problem with EXTRA_DIST
13355
Daniel Veillardb83ba402001-01-22 22:45:10 +000013356Mon Jan 22 23:42:17 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13357
13358 * Makefile.am example/Makefile.am: finally found the trick
13359 to build the example, i.e. add "." in SUBDIRS before example
13360 in the list <grin/>
13361
Daniel Veillard82687162001-01-22 15:32:01 +000013362Mon Jan 22 16:30:37 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13363
13364 * doc/xml.html: updated with an XSLT section, removed pointer to
13365 W3C CVS base.
13366
Daniel Veillard8a7642f2001-01-22 10:45:16 +000013367Mon Jan 22 11:43:21 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13368
13369 * xpath.c: when copying a XSLT tree object teh tree need to be copied
13370 too, and deallocation need to occur the same way.
13371
Daniel Veillarde4566462001-01-22 09:58:39 +000013372Mon Jan 22 10:35:40 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13373
13374 * xpathInternals.h xpath.[ch] debugXML.c: added the XPATH_XSLT_TREE
13375 type correponding to an XSLT result tree fragment. Share most
13376 of the data format with node set, as well as operators.
13377 * HTMLtree.c: added a newline at the end of the doctype output
13378 whe this one is not present initially.
13379 * tree.c: make sure taht the parent and doc pointers are properly
13380 set when copying attributes (lists).
13381
Daniel Veillard701c7362001-01-21 09:48:59 +000013382Sun Jan 21 10:47:38 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13383
13384 * htmlTree.[ch] xmlIO.h: exported htmlDocContentDumpOutput
13385
Daniel Veillard5a2b6972001-01-20 21:15:50 +000013386Fri Jan 19 18:15:50 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13387
13388 * xpath.c: seems I finally killed that ugly path evaluation
13389 context bug (tagged 9999 in case is is wrong)
13390
Daniel Veillard8f4d9752001-01-19 05:32:34 +000013391Fri Jan 19 06:30:38 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13392
13393 * xpath.[ch] xpathInternals.h: added xmlXPathRegisterVariableLookup()
13394 for XSLT
13395
Daniel Veillardd8aa7cb2001-01-18 15:21:36 +000013396Thu Jan 18 16:19:47 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13397
13398 * xmlIO.c: Gary Pennington <Gary.Pennington@uk.sun.com> fix
13399 for xmlGzfileOpen() bug
13400
Daniel Veillardf6eea272001-01-18 12:17:12 +000013401Thu Jan 18 13:11:50 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13402
13403 * xpath.c: removed an error found by XSLT usage
13404 * tree.c parserInternals.h: use a predefined static string
13405 for text and comment nodes, avoid freeing them in xmlFreeNode,
13406 exported the string name in parserInternals.h and added
13407 another value to disable encoding at output (for XSLT),
13408 gain memory, time.
13409
Daniel Veillard8f2cc572001-01-17 08:19:35 +000013410Wed Jan 17 09:15:16 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13411
13412 * win32/README.MSDev win32/libxml2/libxml2_a.dsp
13413 win32/libxml2/libxml2_so.dsp: new makefiles and update
13414 provided by Igor Zlatkovic <igor@stud.fh-frankfurt.de>
13415
Daniel Veillardf831bfb2001-01-16 17:26:04 +000013416Tue Jan 16 18:24:46 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13417
13418 * tree.c : xmlSaveFile, xmlSaveFileEnc, applied patch from
13419 Gary Pennington
13420
Daniel Veillard389e6b72001-01-15 19:41:13 +000013421Mon Jan 15 20:24:18 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13422
13423 * xpath.c: fixed the comaprision of values and nodelists,
13424 need to compare nodelist still ...
13425 * debugXML.c: avoided a possible core dump
13426 * HTMLparser.c: cleanup
13427 * nanohttp.c: contributed fix.
13428 * tree.c: fixes in properties handling added xmlSetNsProp
13429 needed by libxslt
13430 * xpathInternals.h: exported xmlXPathBooleanFunction, added a
13431 comment
13432 * TODO: updated
13433
Daniel Veillard167bd532001-01-06 21:09:34 +000013434Sat Jan 6 22:05:09 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13435
13436 * parser.c parserInternals.c: applied Bjorn Reese optimization
13437 patch
13438
13439Sat Jan 6 19:13:27 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13440
13441 * Makefile.am: applied patch fro make check from Martin Vidner
13442
Daniel Veillard503b8932001-01-05 06:36:31 +000013443Thu Jan 4 19:07:49 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13444
13445 * configure.in: preparing 2.2.11
13446 * doc/html/*: rebuild the HTML files
13447 * doc/xml.html : updated
13448
Daniel Veillardc2f4df22001-01-04 14:06:39 +000013449Thu Jan 4 14:09:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13450
13451 * tree.c: fixed a stupid bug
13452 * valid.c: applied "Paul D. Smith" <pausmith@nortelnetworks.com>
13453 patches related to validation of an XInclude processing result
13454 * TODO: updated
13455
Daniel Veillarde2488192001-01-04 10:54:22 +000013456Thu Jan 4 11:46:40 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13457
13458 * encoding.c xmlIO.c: Fixing the problem reported by Marc Sanfacon
13459 on large files
13460
Daniel Veillardf060a412001-01-03 20:52:44 +000013461Wed Jan 3 21:51:13 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13462
13463 * xmlIO.c: fixed xmlParserInputBufferCreateMem doc
13464
Daniel Veillard45cff692001-01-03 18:02:04 +000013465Wed Jan 3 18:56:00 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13466
13467 * HTMLparser.c: htmlCheckParagraph to check htmlOmittedDefaultValue,
13468 reported by Jonas Borgström
13469 * nanohttp.c: Applied Bjorn Reese' IPV6 first patch
13470
Daniel Veillard08108982001-01-03 15:24:58 +000013471Wed Jan 3 16:19:39 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13472
13473 * testXPath.c xpath.c: fixing the XPath union expressions problem
13474 reported by Martin Vidner <martin@artax.karlin.mff.cuni.cz>
13475
Daniel Veillard4a6845d2001-01-03 13:32:39 +000013476Wed Jan 3 14:22:33 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
13477
13478 * xmllint.c: Made is so if the file name is "-" is will read form
13479 standard input. Sven Heinicke <sven@zen.org>
13480 * tree.c: fixed a problem when growing buffer
13481 * tree.h: fixed the comment of the node types following andersca
13482 comment
13483 * TODO: updated
13484
Daniel Veillarda6d8eb62000-12-27 10:46:47 +000013485Wed Dec 27 12:35:49 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13486
13487 * HTMLparser.[ch]: added a way to avoid adding automatically
13488 omitted tags. htmlHandleOmittedElem() allows to change the
13489 default handling.
13490 * tree.[ch] xmllint.c: added xmlDocDumpFormatMemory() and
13491 xmlDocDumpFormatMemoryEnc(), uses memory functions for output
13492 of xmllint too when using --memory flag, added a memory test
13493 suite at the Makefile level.
13494 * xpathInternals.h xpath.[ch] xpointer.c: fixed problems
13495 with namespace use when encountering QNames in XPath evalation,
13496 added xmlns() scheme in XPointer.
13497 * nanoftp.c : incorporated a fix
13498 * parser.c xmlIO.c: fixed problems raised with encoding when using
13499 the memory I/O
13500 * parserInternals.c: closed bug 25934 reported by
13501 torsten.landschoff@innominate.de
13502 * TODO: updated
13503
Daniel Veillarda1fe9102000-11-25 10:49:25 +000013504Sat Nov 25 11:46:27 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13505
13506 * configure.in doc/html/* doc/xml.html: made a 2.2.9 release
13507 on a non-updated tree :-(, made a 2.2.10 release to correct the
13508 situation
13509
Daniel Veillardce6e98d2000-11-25 09:54:49 +000013510Sat Nov 25 10:41:37 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13511
13512 * nanohttp.c parser.[ch] tree.[ch] xmlIO.[ch] xmllint.c xpath.c
13513 parserInternals.h vms/build_libxml.com vms/config.vms Makefile.am:
13514 integrated a set of OpenVMS changes from Howard Taylor
13515 <Howard.Taylor@pacoast.com>
13516
Daniel Veillard58770e72000-11-25 00:48:47 +000013517Sat Nov 25 01:21:01 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13518
13519 * tree.[ch] xmlIO.c: added xmlDocDumpMemoryEnc() from John Kroll
13520 * error.c: applied fix suggested by "Leo Davidson" <leo@ox.compsoc.net>
13521
Daniel Veillardf62ceff2000-11-24 23:36:01 +000013522Sat Nov 25 00:24:49 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13523
13524 * HTMLparser.c: some fixes on auto-open of html/head/body
13525 * encoding.c: fixed a compilation error on some gcc env
13526 * xpath.c xpointer.[ch] xpathInternals.h: improved the
13527 XPointer implementation
13528 * test/XPath/xptr/strpoint test/XPath/xptr/strrange3: added
13529 related XPointer tests and associated results
13530
Daniel Veillard300f7d62000-11-24 13:04:04 +000013531Fri Nov 24 14:01:44 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13532
13533 * doc/xmldtd.html doc/xml.html: following a short step by step
13534 guidance on IRC to help maciej with DTDs I started a small
13535 page on the subject.
13536
Daniel Veillard748e45d2000-11-17 16:36:08 +000013537Fri Nov 17 17:28:06 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13538
13539 * HTMLparser.c: fixed handling of broken charrefs
13540 * xmlmemory.h libxml2.dsp include/win32config.h: reporting Windows
13541 patches
13542
Daniel Veillard28929b22000-11-13 18:22:49 +000013543Mon Nov 13 19:17:20 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13544
13545 * doc/xml.html doc/html/* : rebuilt the docs after adding
13546 xinclude and updated page for 2.2.7 and 2.2.8
13547 * configure.in: releasing 2.2.8
13548
Daniel Veillard41e06512000-11-13 11:47:47 +000013549Mon Nov 13 12:39:38 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13550
13551 * parser.[ch] parserInternals.c: applied the conditional
13552 section processing fix from Jonathan P Springer
13553 <jonathan.springer2@gte.net>
13554 * xmlversion.h.in win32/libxml2/libxml2.dsp : Updated MS
13555 project file, fixed iconv default non support
13556 * xpath.c: fixed the problem of evaluating relative expressions
13557 when a node context is provided.
13558
Daniel Veillardbf432752000-11-12 15:56:56 +000013559Sun Nov 12 16:31:19 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13560
13561 * nanoftp.c: fixed gcc 2.95 new warnings
13562 * SAX.c: fixed a stupid bug
13563 * tree.c: fixed a formatting problem when round-tripping
13564 from/to memory
13565 * xinclude.c: chased memleak, fixed a base problem
13566 * xpointer.c: added xmlXPtrBuildRangeNodeList(), finished ?
13567 xmlXPtrBuildNodeList()
13568 * TODO: updated
13569 * Makefile.am test/XInclude/docs test/XInclude/ents result/XInclude:
13570 adding a first small set of regression tests for XInclude
13571
Daniel Veillardc2def842000-11-07 14:21:01 +000013572Tue Nov 7 15:11:34 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13573
13574 * nanohttp.[ch]: applied Wayne Davison patches to access
13575 the WWW-Authorization header.
13576 * parser.c: Closed Bug#30847: Problems when switching encoding
13577 in short files by applying Simon Berg's patch.
13578 * valid.c: fixed a validation problem
13579 * hash.c parser.h parserInternals.h testHTML.c testSAX.c tree.h
13580 xmlerror.h xmlmemory.h xmlversion.h.in: applied a DLL patch from
13581 Wayne Davison
13582 * xpointer.[ch]: added first version of xmlXPtrBuildNodeList()
13583 need to be extended to non full nodes selections.
13584 * xinclude.c: starts to work decently
13585
Daniel Veillard9e8bfae2000-11-06 16:43:11 +000013586Mon Nov 6 17:22:46 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13587
13588 * tree.[ch] xinclude.[ch] xmllint.c configure.in valid.c
13589 debugXML.c xmlversion.h.in: Started adding XInclude support,
13590 this is a new xmllint option
13591 * tree.c xpath.c: applied TOM patches for XPath
13592 * xpointer.c: fixed a couple of errors.
13593 * uri.c: added an escaping function needed for xinclude
13594 * testXPath.c hash.c HTMLtree.c: minor cleanups raised by
13595 new warning from RH70 gcc's version
13596
Daniel Veillarda4964b72000-10-31 18:23:44 +000013597Tue Oct 31 14:14:13 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13598
13599 * HTMLparser.c: fixed loop on invalid char in scripts
13600 * parser.c: update to description of xmlIOParseDTD()
13601 * libxml.m4 xmlversion.h.in: changes contributed by
13602 Michael Schmeing <m.schmeing@internet-factory.de>
13603 * configure.in: preparing for 2.2.7
13604 * Makefile.am: trying to avoid config.h and acconfig.h
13605 being included in the distrib
13606 * configure.in: released 2.2.7
13607
13608Mon Oct 30 17:08:10 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13609
13610 * tree.[ch] debugXML.c parserInternals.c xpath.c: Deprecated Pi's
13611 like namespaces for good. Unified xmlNs and xmlNode somewhat.
13612
Daniel Veillard01411222000-10-30 15:33:22 +000013613Mon Oct 30 16:26:49 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13614
13615 * parser.[ch]: added xmlIOParseDTD()
13616 * xpointer.c: added support for the 2 extra parameters of
13617 string-range, fixed a stoopid error when '0' was present
13618 in XPointer expressions
13619 * test/XPath/xptr/strrange2 result/XPath/xptr/strrange2: added
13620 testsuite for the above
13621
Daniel Veillard6db58192000-10-30 09:27:53 +000013622Mon Oct 30 10:26:43 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13623
13624 * libxml.spec.in: improved package descriptions
13625
Daniel Veillarda5db68a2000-10-29 18:06:06 +000013626Sun Oct 29 19:03:11 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13627
13628 * xpath.c xpathInternals.h: applied a large cleaning patch
13629 from TOM <ptittom@free.fr>, it also add namespace support
13630 for function and variables registration.
13631
Daniel Veillardbd20df72000-10-29 17:53:40 +000013632Sun Oct 29 18:51:46 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13633
13634 * uri.c: Wayne Davison's patch fixing xmlBuildURI()
13635 * Makefile.mingw: Wayne Davison's update adding hash.c
13636
Daniel Veillardc4f4f0b2000-10-29 17:46:30 +000013637Sun Oct 29 18:38:12 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13638
13639 * xpath.c: fixed the root evaluation problems
13640 * HTMLparser.c result/HTML/doc3.htm: fixed the problem of non
13641 ignorable spaces with <b> <bold> <em>
13642 * tree.c: fixed a loop in xmlSearchNsByHref()
13643
Daniel Veillard767662d2000-10-27 17:04:52 +000013644Fri Oct 27 18:57:32 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13645
13646 * xpath.c: applied another XPath patch from TOM
13647 * xpath.c include/makefile.am: applied another patch from
13648 china@thewrittenword.com (cleanup on IRIX).
13649
Daniel Veillard211cc0a2000-10-27 11:49:33 +000013650Fri Oct 27 13:45:28 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13651
13652 * xml-config.1: received a fixed version from Fredrik Hallenberg
13653 <hallon@lysator.liu.se>
13654
Daniel Veillardf6bf9212000-10-26 14:07:44 +000013655Thu Oct 26 16:05:25 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13656
13657 * xpath.c textXPath.c xpathInternals.h: applied TOM <ptittom@free.fr>
13658 cleanup patch for XPath
13659
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +000013660Wed Oct 25 21:31:10 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13661
13662 * patched to redirrect all "out of context" error messages to
13663 a reconfigurable routine. The changes are:
13664 * xmlerror.h : added the export of an error context type (void *)
13665 an error handler type xmlGenericErrorFunc there is an interface
13666 xmlSetGenericErrorFunc(void *ctx, xmlGenericErrorFunc handler);
13667 to reset the error handling routine and its argument
13668 (by default it's equivalent to respectively fprintf and stderr.
13669 * all the c files: all wild accesses to stderr or stdout within
13670 the library have been replaced to calls to the handler.
13671
Daniel Veillard29a11cc2000-10-25 13:32:39 +000013672Wed Oct 25 15:27:19 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13673
13674 * configure.in: release 2.2.6
13675 * xpath.[ch] xpointer.c xpathInternals.h: added xpathInternals.h
13676 exporting the inner functions of xpath for extension modules
13677 * doc/*: updated and rebuilt the doc
13678
Daniel Veillardbe9ec4b2000-10-25 11:01:53 +000013679Wed Oct 25 12:48:55 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13680
13681 * nanohttp.c : applied Wayne HTTP cleanup patch
13682 * tree.[ch]: applied TOM <ptittom@free.fr> for xmlNodeSetBase()
13683 and xmlNodeSetSpacePreserve()
13684
Daniel Veillarddf7ef2a2000-10-25 10:11:55 +000013685Wed Oct 25 12:11:03 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13686
13687 * xpath.c: closing bug #29260
13688
Daniel Veillard126f2792000-10-24 17:10:12 +000013689Tue Oct 24 18:49:34 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13690
13691 * hash.[ch] debugXML.c: expanded/enhanced the API, added
13692 multikey tuples, made hash structure opaque
13693 * valid.[ch]: moved elements, attributes, notations decalarations
13694 as well as ID and refs to hash tables.
13695 * entities.c: hash cleanup
13696 * xmlmemory.c: fixed a dump problem in debug mode
13697 * include/Makefile.am: problem passing in DESTDIR= values patch
13698 from Marc Christensen <marc@calderasystems.com>
13699 * nanohttp.c: removed debugging remains
13700 * HTMLparser.c: the bogus tag should be ignored (Wayne)
13701 * HTMLparser.c parser.c: fixing a number of problems with the
13702 macros in the *parser.c files (Wayne).
13703 * HTMLparser.c: close the previous option when opening a new one
13704 (Marc Sanfacon).
13705 * result/HTML/*: updated the HTML results accordingly
13706
Daniel Veillard52afe802000-10-22 16:56:02 +000013707Sun Oct 22 18:39:19 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13708
13709 * entities.[ch] xpath.[ch] hash.[ch] debugXML.c tree.h: added/hacked
13710 hash tables from Bjorn Reese <breese@mail1.stofanet.dk>. Switched
13711 XPath functions and XML entities table to them. More to come...
13712 * xmlIO.c: fixed libxml closing FILEs it didn't open.
13713
Daniel Veillard683cb022000-10-22 12:04:13 +000013714Sun Oct 22 13:59:50 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13715
13716 * tree.c: coalesce adjacent text nodes
13717 * valid.c: handling of blank nodes in DTd validation (raised
13718 by problems with a posteriori validation).
13719 * nanohttp.c: changing behaviour on HTTP write stuff.
13720 * HTMLtree.c: forced body and html to be explicitely closed.
13721 * xpath.h: exported more XPath functions.
13722
Daniel Veillard1baf4122000-10-15 20:38:39 +000013723Sun Oct 15 22:28:32 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13724
13725 * Release of 2.2.5
13726 * xpointer.c: range() range-inside and other helper functions
13727 * parserInternals.c: fixed perf problem raised by rolf@pointsman.de
13728
Daniel Veillard47e12f22000-10-15 14:24:25 +000013729Sun Oct 15 16:21:27 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13730
13731 * SAX.c: HTML attributes need normalization too (Bjorn Reese)
13732 * HTMLparser.[ch]: addded htmlIsScriptAttribute()
13733
Daniel Veillardb732a0e2000-10-15 11:27:01 +000013734Sun Oct 15 13:18:36 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13735
13736 * doc/*: rebuilt docs preparing for 2.2.5 release, added URI
13737 and XPointer modules
13738
Daniel Veillard134c9f32000-10-15 10:27:08 +000013739Sun Oct 15 12:13:30 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13740
13741 * SAX.h: closed #25107
13742
Daniel Veillard39915622000-10-15 10:06:55 +000013743Sun Oct 15 12:06:16 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13744
13745 * testSAX.c: fixed problem with cdata reporting
13746 * SAXresult/* : updated
13747
Daniel Veillard1e851392000-10-15 10:02:56 +000013748Sun Oct 15 12:00:24 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13749
13750 * parser.c test/wap.xml result/noent/wap.xml result/wap.xml:
13751 Closed bug #27499, added to regression tests
13752 * TODO: updated
13753
Daniel Veillard7eda8452000-10-14 23:38:43 +000013754Sun Oct 15 01:34:37 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13755
13756 * HTMLparser.c HTMLtree.[ch] SAX.c testHTML.c tree.c: fixed HTML
13757 support for SCRIPT and STYLE with help from Bjorn Reese
13758 * test/HTML/* result/HTML/*: added simple testcase and updated
13759 the existing ones.
13760
Daniel Veillardff9c3302000-10-13 16:38:25 +000013761Fri Oct 13 18:24:31 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13762
13763 * xpath.c xpointer.c: XPointer reorder of ranges start/end and
13764 string-range for empty strings
13765 * test/XPath/docs/str test/XPath/xptr/chaptersrange
13766 test/XPath/xptr/strrange: augmented the XPointer testsuite
13767
Daniel Veillard189446d2000-10-13 10:23:06 +000013768Fri Oct 13 12:21:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13769
13770 * doc/xml.html doc/xmlmem.html: added a module describing memory
13771 interfaces and use, updated the main page.
13772
Daniel Veillard2f971a22000-10-12 23:26:32 +000013773Fri Oct 13 01:23:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13774
13775 * nanoftp.c nanohttp.c xmlIO.c: Wayne Davison Win32 patch
13776 nanoftp code work on Windows too now
13777
13778Fri Oct 13 00:54:37 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillardc2df4cd2000-10-12 23:15:24 +000013779
13780 * testXPath.c xpath.[ch]: moved some debug functions to xpath core
13781 * xpointer.c: implemented string-range() at least a good first version
13782 * test/XPath/docs/str test/XPath/xptr/strrange
13783 result/XPath/xptr/strrange: the string-range() tests
13784
Daniel Veillardd3c68c42000-10-12 08:06:28 +000013785Thu Oct 12 10:02:59 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13786
13787 * Makefile.am include/Makefile.am include/win32config.h
13788 win32/Makefile.mingw: fixed problems reported by Wayne Davison
13789 and make distcheck
13790
Daniel Veillard19d61112000-10-11 23:50:35 +000013791Thu Oct 12 01:44:08 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13792
13793 * nanohttp.c: added xmlNanoHTTPTimeout(int delay), removed a bug
13794 xmlNanoHTTPMethod on input MimeType Tony Lam <Tony.Lam@eng.sun.com>
13795 * xpointer.c: slight extension of xmlXPtrLocationSetMerge
13796
Daniel Veillardb0426ca2000-10-11 23:39:43 +000013797Thu Oct 12 01:37:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13798
13799 * config.h.in configure.in nanoftp.c nanohttp.c xmlversion.h.in :
13800 patch for socklen_t detection by
13801 Albert Chin-A-Young <china@thewrittenword.com>
13802
Daniel Veillardcd429612000-10-11 15:57:05 +000013803Wed Oct 11 17:53:57 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13804
13805 * tree.c valid.c xmllint.c: Fixed a few postvalidation bugs
13806 and added a --dtdvalid option to xmllint used to test it
13807
Daniel Veillard47c02452000-10-11 13:04:36 +000013808Wed Oct 11 15:01:29 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13809
13810 * xml-config.1 Makefile.am libxml.spec.in: adding a man page for
13811 xml-config by Fredrik Hallenberg <hallon@lysator.liu.se>
13812
Daniel Veillard2d38f042000-10-11 10:54:10 +000013813Wed Oct 11 12:41:30 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13814
13815 * xpath.[ch] xpointer.[ch]: worked on XPath functions and variable
13816 handlings (registration, lookup, cleanup)
13817
Daniel Veillardc8df0aa2000-10-10 23:50:30 +000013818Wed Oct 11 01:46:44 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13819
13820 * configure.in Makefile.am include/makefile.am: adding XPointer
13821 and XPtrtests target
13822 * xpointer.[ch] : new files for XPointer support
13823 * test/XPath/xptr result/XPath/xptr: added XPointer testsuite and
13824 more XPath tests
13825
Daniel Veillard57fda592000-10-10 23:24:14 +000013826Wed Oct 11 01:23:25 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13827
13828 * configure.in: fixed, very broken, make distcheck works again
13829
Daniel Veillarde8282ed2000-10-10 23:01:31 +000013830Wed Oct 11 02:53:10 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13831
13832 * More work toward 2.2.5, integrated a number of patches
13833 * configure.in Makefile.am win32config.h.in: trying to cleanup
13834 make distcheck .... huh ...
13835 * include/Makefile.am include/win32config.h: new directory
13836 for includes
13837 * win32/Makefile.mingw win32/README.MSDev win32/libxml2/libxml2.dsp
13838 updated teh makefiles and instructions for WIN32
13839 * xpath.c: small fixes
13840 * test/XPath/ results/XPath: updated the testcases and results
13841 * HTMLparser.c nanohttp.c testXPath.c: incorporated provided or
13842 suggested patches
13843 * valid.c: fixed an ID bug
13844
Daniel Veillardb71379b2000-10-09 12:30:39 +000013845Mon Oct 9 14:28:56 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13846
13847 * moved xml-error.h to xmlerror.h: seems this allowed to bypass
13848 the automake bug where wrong dependancies were generated.
13849 * xpath.[ch]: worked on XPointer
13850
Daniel Veillard7e99c632000-10-06 12:59:53 +000013851Fri Oct 6 12:58:04 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13852
13853 * configure.in Makefile.am: 2.2.5, ship the include in an
13854 include/libxml subdirectory, use symlinks when using CVS
13855 * testSAX.c: fixed small bug
13856 * testXPath.c: changed the way testfiles are parsed
13857 * debugXML.c: same kind of cleanup when parsing an argument expression
13858 XPath/XPointers can have blanks embedded
13859 * xpath.[ch]: more cleanup, reorgs for XPointer work
13860 * parserInternals.c parser.c HTMLparser.c: fixed wrong include
13861 * win32/README.MSDev win32/libxml2/libxml2.dsp: Windows stuff
13862
Daniel Veillard55b91f22000-10-05 16:30:11 +000013863Thu Oct 5 18:13:15 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13864
13865 * debugXML.c testXPath.c xpath.[ch]: got pissed by some nastyness
13866 in the XPath engine, rewrote large parts of it, now it's far
13867 cleaner and in sync with the REC not an old WD. Fixed a parsing
13868 problem in the interactive XML shell found when testing XPath.
13869
Daniel Veillardac260302000-10-04 13:33:43 +000013870Wed Oct 4 15:25:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13871
13872 * debugXML.c testXPath.c xpath.[ch]: More work on XPath/Xpointer,
13873 incorporated "(TOM)" <ptittom@free.fr> patches rebuilt the XPath
13874 examples with the extra test
13875
Daniel Veillard7cfce322000-10-04 12:40:27 +000013876Wed Oct 4 14:39:01 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13877
13878 * parser.c xmlIO.c xmlIO.h: fixed bug 26650, and improved
13879 the global init function.
13880
Daniel Veillard970112a2000-10-03 09:33:21 +000013881Tue Oct 3 11:28:52 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13882
13883 * HTMLparser.c: Doohhh, attribute name parsing was still case
13884 sensitive ! Fixed this ...
13885 * result/HTML/* : updated the tests results accordingly
13886
Daniel Veillard740abf52000-10-02 23:04:54 +000013887Mon Oct 2 23:47:32 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13888
13889 * xpath.[ch] debugXML.c testXPath.c: fixed the XPath evaluation
13890 engine, should be far more stable, incorporated a new version of
13891 preceding/following axis, need testing
13892 * uri.c: fixed file:///c:/a/b/c problem
13893 * test/XPath/tests/idsimple: augmented the XPath tests
13894
Daniel Veillard3bff2b02000-10-01 20:33:47 +000013895Sun Oct 1 22:33:00 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13896
13897 * doc/* rebuilding docs for 2.2.4 release
13898
Daniel Veillard8b5dd832000-10-01 20:28:44 +000013899Sun Oct 1 22:16:33 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13900
13901 * configure.in: releasing 2.2.4
13902 * parser.[ch]: added xmlStrEqual()
13903 * HTMLparser.c HTMLtree.c SAX.c debugXML.c entities.c parser.c
13904 tree.c valid.c xlink.c xpath.c: converted all !xmlStrcmp to
13905 use xmlStrEqual instead
13906 * TODO: updated
13907 * added an XPath test
13908
Daniel Veillardbc765302000-10-01 18:23:35 +000013909Sun Oct 1 20:19:39 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13910
13911 * HTMLparser.c: fixed htmlStartCloseIndexinitialized init
13912 * entities.h: exported xmlInitializePredefinedEntities
13913 * parser.[ch] : added xmlInitParser()
13914 * parserInternals.h : had to export htmlInitAutoClose()
13915
Daniel Veillardf09e7e32000-10-01 15:53:30 +000013916Sun Oct 1 16:28:22 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13917
13918 * xpath.[ch] : fixed some serious XPath Predicate evaluation
13919 problems
13920 * Makefile.am : added XPath regression tests to normal tests
13921 * uri.c: fixed a problem with local paths, cleanup
13922 * parser.c: fixed a problem with large CData sections
13923
Daniel Veillardd2ade932000-09-30 14:39:55 +000013924Sat Sep 30 16:35:54 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13925
13926 * configure.in xml-config.in: patch from "Ben Taylor"
13927 <sol7x86@hotmail.com> for solaris shared libs lookup
13928
Martin Bauligdd7d1f62000-09-29 23:17:57 +0000139292000-09-30 Martin Baulig <baulig@suse.de>
13930
13931 * libxml-2.0.pc.in: Provide pkg-config script.
13932
13933 * configure.in: Create the libxml-2.0.pc script from the
13934 libxml-2.0.pc.in templates.
13935 * Makefile.am (pkgconfig_DATA): Install the libxml-2.0.pc
Martin Baulig1b478d12000-09-30 02:27:55 +000013936 script in `$(libdir)/pkgconfig'.
Martin Bauligdd7d1f62000-09-29 23:17:57 +000013937
Daniel Veillard4b0755c2000-09-25 14:26:28 +000013938Mon Sep 25 16:23:41 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13939
13940 * HTMLparser.c parser.c tree.c tree.h: Avoiding a few warning
13941 when compiling with MSC
13942
Daniel Veillard46057e12000-09-24 18:49:59 +000013943Sun Sep 24 20:32:52 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13944
13945 * xpath.c: patch for normalize-string() substring-before(),
13946 substring-after() and translate() functions from Bjorn Reese
13947 <breese@mail1.stofanet.dk>
13948 * libxml.m4 Makefile.am: added libxml.m4 from Debian ?
13949 Fredrik Hallenberg <hallon@lysator.liu.se>
13950 * TODO: updated
13951
Daniel Veillard281f8ff2000-09-24 08:12:14 +000013952Sun Sep 24 10:00:49 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13953
13954 * xmlversion.h.in nanoftp.c nanohttp.c: traying to work out the
13955 problem of socklen_t being undefined on a number of platforms
13956 * debugXML.c: fixed a compilation problem when without snprintf
13957
Daniel Veillard8ddb5a72000-09-23 10:28:52 +000013958Sat Sep 23 12:19:45 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13959
13960 * HTMLparser.c uri.c: Another patch from Wayne Davison, correcting
13961 an URI bug and a fix for the control-character-induced infinite loop
13962 * nanohttp.c: preventive fix for compiling on WIN32
13963
Daniel Veillard64c20ed2000-09-22 16:07:02 +000013964Fri Sep 22 18:06:08 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13965
13966 * xmlint.c: closing bug #25000
13967
Daniel Veillardb656ebe2000-09-22 13:51:48 +000013968Fri Sep 22 14:17:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13969
13970 * xmlIO.h tree.h: made xmlNodeDump() and xmlNodeDumpOutput() public
13971 * parser.[ch] nanohttp.c HTMLtree.c HTMLparser.c tree.c: applied and
13972 modified slightly Wayne Davison patch adding xmlStrcasecmp and
13973 related function, fixing xmlStrncmp(), and associated cleanup
13974 * result/HTML/entities.html.sax: updating result
13975
Daniel Veillard4fb87ee2000-09-19 12:25:59 +000013976Tue Sep 19 14:20:10 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13977
13978 * uri.c: applied patch for URI escaping from Wayne Davison
13979 <wayned@blorf.net>
13980 * tree.c parserInternals.c HTMLparser.c: memset checks patches
13981 from Denis Barbier <barbier@imacs.polytechnique.fr>
13982 * HTMLparser.c: UTF8 characters in HTML tag-attribute values
13983 patch from Wayne Davison
13984
Daniel Veillardd5f97f82000-09-17 16:38:14 +000013985Sun Sep 17 18:37:03 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13986
13987 * doc/xml.html : updated with new releases, adding "how to help"
13988
Daniel Veillard04698d92000-09-17 16:00:22 +000013989Sun Sep 17 17:58:37 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13990
13991 * SAX.c debugXML.c parser.c parserInternals.c tree.c valid.c xpath.c:
13992 removed a few warnings in pedantic mode ...
13993 * parserInternals.c parser.c: moved encoding switching function
13994 to parserInternals.c
13995 * configure.in, doc/Makefile.am libxml.spec.in: released 2.2.3
13996
Daniel Veillarda2c6da92000-09-16 18:15:00 +000013997Sat Sep 16 20:12:41 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
13998
13999 * HTMLparser.c parser.c: set ctxt->errNo before calling the
14000 error or warning handlers
14001
Daniel Veillardb1059e22000-09-16 14:02:43 +000014002Wed Sep 13 22:03:18 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14003
14004 * parserInternals.c parserInternals.h parser.c Makefile.am:
14005 created a new module parserInternals.c, moved most of the
14006 code shared by the various parsers there, as well as
14007 deprecated code from parser.c. More cleanup of parser.c
14008 * uri.c: fixed a problem when URI is NULL
14009 * valid.c: speedup when looking for an attribute declaration
14010
Daniel Veillard39c7d712000-09-10 16:14:55 +000014011Sun Sep 10 17:53:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14012
14013 * uri.c tree.c SAX.c parser.c entities.c debugXML.c: finished
14014 the cleanup of the computation of URI references when seeking
14015 external entities. The URI reference string and the resulting
14016 URI are both stored now.
14017 * parser.c HTMLparser.c valid.c nanoftp.c nanohttp.c xpath.c:
14018 large s(n)printf checks and cleanup from Denis Barbier
14019 <barbier@imacs.polytechnique.fr>
14020 * xmlversion.h.in tree.h: couple of SGML declarations for a
14021 possible docbook module.
14022 * result/VC/ : a couple of test output changed due to the change
14023 of the entities URI
14024
Daniel Veillardb513f5a2000-09-10 14:01:12 +000014025Sun Sep 10 15:59:58 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14026
14027 * parser.h: added a _private field for linking user's data
14028
Daniel Veillarddd477ce2000-09-10 13:23:08 +000014029Sun Sep 10 15:14:43 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14030
14031 * parser.c parserInternals.h: demacroified most of the IS_XXX
14032 the gain in size is significant so ...
14033
Daniel Veillard4b5b80c2000-09-08 18:54:41 +000014034Fri Sep 8 20:48:29 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14035
14036 * entities.c: cases where looking up entities with doc==NULL
14037 covered
14038
Daniel Veillard90e11312000-09-05 10:42:32 +000014039Tue Sep 5 12:41:15 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14040
Daniel Veillard1de50802000-09-07 08:54:32 +000014041 * uri.c: applied Wayne Davison patch
Daniel Veillard90e11312000-09-05 10:42:32 +000014042 * Makefile.in test/URI/uri.data result/URI/uri.data: updated URI tests
14043
Daniel Veillard98a79162000-09-04 11:15:39 +000014044Mon Sep 4 13:01:45 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14045
Daniel Veillard1de50802000-09-07 08:54:32 +000014046 * uri.c testUri.c: applied Wayne Davison patches
Daniel Veillard98a79162000-09-04 11:15:39 +000014047 * test/URI/uri.data result/URI/uri.data: first set of tests/results
14048 * Makefile.in: added URItest and included thenin "make tests"
14049
14050Sun Sep 3 19:19:29 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard960aa532000-09-03 17:20:17 +000014051
14052 * xmlversion.h.in: closed bug 22941
14053
Daniel Veillard2bb89092000-08-31 14:57:50 +000014054Thu Aug 31 16:55:55 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14055
14056 * doc/xmlio.html: added doc and example for entity loader
14057 redefinition.
14058
Daniel Veillard96984452000-08-31 13:50:12 +000014059Thu Aug 31 14:59:28 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14060
14061 * doc/xmlio.html doc/xml.html: added a doc on the I/O mechanism
14062 used by libxml
14063
Daniel Veillarde715dd22000-08-29 18:29:38 +000014064Tue Aug 29 20:22:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14065
14066 * parser.c: Fixed bug on invalid ontent characters and when using
14067 push.
14068 * xmllint.c: fixed xmllint endling of errors in push mode
14069
Daniel Veillard4948eb42000-08-29 09:41:15 +000014070Tue Aug 29 11:24:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14071
14072 * HTMLparser.c testHTML.c: applied two new patches from
Daniel Veillardbbe11b02000-09-23 07:07:40 +000014073 Wayne Davison <wayned@users.sourceforge.net>
Daniel Veillard4948eb42000-08-29 09:41:15 +000014074 * result/HTML/*.sax: regenerated HTML SAX output
14075 * parser.c: more cleanup.
14076
Daniel Veillarde010c172000-08-28 10:04:51 +000014077Mon Aug 28 11:58:12 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14078
14079 * HTMLparser.[ch] testHTML.c: applied the second set of
Daniel Veillardbbe11b02000-09-23 07:07:40 +000014080 patches from Wayne Davison <wayned@users.sourceforge.net>,
14081 adding htmlEncodeEntities()
Daniel Veillarde010c172000-08-28 10:04:51 +000014082 * HTMLparser.c: fixed an ignorable white space detection bug
14083 occuring when parsing with SAX only
14084 * result/HTML/*.sax: updated since the output is now HTML
14085 encoded...
14086
Daniel Veillard47f3f312000-08-27 22:40:15 +000014087Mon Aug 28 00:38:31 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14088
Daniel Veillardbbe11b02000-09-23 07:07:40 +000014089 * HTMLparser.[ch]: applied some of Wayne Davison
14090 <wayned@users.sourceforge.net> patches
Daniel Veillard47f3f312000-08-27 22:40:15 +000014091
Daniel Veillarde0854c32000-08-27 21:12:29 +000014092Sun Aug 27 22:14:01 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14093
14094 * SAX.c tree.c debugXML.c: fixed bogus behaviour when an
14095 undeclared namespace prefix was used, added a warning.
14096 Cleaned up support w.r.t. entities, spilling out a warning
14097 and being pedantic on lookups.
14098 * test/warning/ent9 : added testcase for previous example.
14099 * TODO: updated
14100 * parserInternals.h parser.c: changed the way names are parsed
14101 now allow infinite size and decrease penalty for normal use
14102 * parser.c: Started a big cleanup/check of the parser code,
14103 fixed some of the most tortuous entity code, spotted code
14104 unused anymore
14105 * test/*: added tests for very long names and related nasty
14106 things.
14107
Daniel Veillardf0cc7cc2000-08-26 21:40:43 +000014108Sat Aug 26 23:31:04 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14109
14110 * doc/encoding.html: added encoding aliases doc
14111 * doc/xml.html: updates
14112 * encoding.[ch]: added EncodingAliases functions
14113 * entities.[ch] valid.[ch] debugXML.c: removed two serious
14114 bottleneck affecting large DTDs like Docbook
14115 * parser.[ch] xmllint.c: added a pedantic option, will be
14116 useful
14117 * SAX.c: redefinition of entities is reported in pedantic mode
14118 * testHTML.c: uninitialized warning from gcc
14119 * uri.c: fixed a couple of bugs
14120 * TODO: added issue raised by Michael
14121
Daniel Veillard0d6b1702000-08-22 23:52:16 +000014122Wed Aug 23 01:50:51 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14123
14124 * doc/encoding.html: propagated Martin Duerst suggestions
14125
Daniel Veillard52402ce2000-08-22 23:36:12 +000014126Wed Aug 23 00:23:41 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14127
14128 * parser.c: Fixed Bug#21552: libxml fails to decode &amp;
14129 * uri.c testUri.c patches, by Marc Sanfacon (1 left)
14130 * parser.c HTMLparser.c: HTML/encoding push problems reportedi
14131 by Wayne Davison
14132
Daniel Veillard2f2bf412000-08-20 15:11:02 +000014133Sun Aug 20 17:03:38 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14134
14135 * nanoftp.c nanohttp.c: small cleanup
14136 * TODO: updated
14137
Daniel Veillard244ece92000-08-19 20:58:02 +000014138Sat Aug 19 22:57:02 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14139
14140 * added an old VC testcase and updated title.xml entity
14141
Daniel Veillardb8f25c92000-08-19 19:52:36 +000014142Sat Aug 19 21:02:08 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14143
14144 * HTMLparser.c SAX.c tree.c HTMLtree.h result/HTML/*: work
14145 done on auto-opening of <p> tags and cleanup of SAX output
14146
Daniel Veillard979e55e2000-08-19 16:48:54 +000014147Sat Aug 19 18:45:40 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14148
14149 * libxml.4 xmllint.1 Makefile.am libxml.spec.in: added man pages
14150
Daniel Veillard4540be42000-08-19 16:40:28 +000014151Sat Aug 19 18:38:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14152
14153 * doc/xml.html libxml.* structure.*: updated the doc a bit
14154
Daniel Veillard808a3f12000-08-17 13:50:51 +000014155Thu Aug 17 15:50:00 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14156
14157 * testSAX.c testHTML.c result/HTML/: cleanup of the output
14158 of SAX tests
14159
Daniel Veillard29579362000-08-14 17:57:48 +000014160Mon Aug 14 13:56:33 EDT 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14161
14162 * Patch from Albert Chin-A-Young <china@thewrittenword.com>:
14163 * xmllint.c: workaround a MAP_FAILEd definition bug in DU-4.0
14164
Daniel Veillard1255ab72000-08-14 15:13:33 +000014165Mon Aug 14 11:10:20 EDT 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14166
14167 * Patch from Dave Yearke <yearke@eng.buffalo.edu>:
14168 * testHTML.c: fix core dump on Solaris 2.x systems
14169 * HTMLparser.c: fix segfault if ctxt->sax->characters() is NULL
14170 * result/HTML/*.sax: previous bug fix lead to new results
14171
Daniel Veillard03109292000-08-14 14:58:22 +000014172Mon Aug 14 10:26:09 EDT 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14173
14174 * Patch from Albert Chin-A-Young <china@thewrittenword.com>:
14175 * configure.in: added --with-readline=DIR to accept alternate
14176 path for readline include/library
14177 * configure.in: added AM_C_PROTOTYPES to add -Aa -D_HPUX_SOURCE
14178 for ANSI under HP-UX
14179 * config.in: Removed @LIBS@ from xml-config because @XML_LIBS@
14180 includes @LIBS@
14181
Daniel Veillard7c29ce22000-08-12 21:20:53 +000014182Sat Aug 12 23:19:42 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14183
14184 * doc/* : rebuilt the docs
14185 * getting ready for 2.2.2 release
14186
Daniel Veillard87b95392000-08-12 21:12:04 +000014187Sat Aug 12 16:42:37 EDT 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14188
14189 * parser.[ch]: added xmlGetFeaturesList() xmlGetFeature()
14190 and xmlAddFeature()
14191 * tree.[ch]: added xmlAddChildList()
14192 * xmllint.c: MAP_FAILED macro test
14193 * parser.h: added xmlParseCtxtExternalEntity()
14194 * valid.c: applied bug fixes removed warning
14195 * tree.c: added CDATA block to elements content
14196 * testSAX.c: cleanup of output
14197 * testHTML.c: added SAX testing
14198 * encoding.c: better error recovery
14199 * SAX.c, parser.c: fixed one of the external entity processing
14200 of the OASis testsuite
14201 * Makefile.am: added HTML SAX regression tests
14202 * configure.in: bumped to 2.2.2
14203 * test/HTML/ result/HTML: added a few of HTML tests, and added the
14204 SAX results
14205
Daniel Veillard88a172f2000-08-04 18:23:10 +000014206Fri Aug 4 11:21:50 PDT 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14207
14208 * configure.in: patch for HP compiler
14209
142102000-08-04 Sven Heinicke <sven@zen.org>
14211
14212 * xmllint.c: Was coredumping sometimes when the file given didn't
14213 exist.
14214
Daniel Veillard46e370e2000-07-21 20:32:03 +000014215Sat Jul 22 05:59:05 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14216
14217 * parser.c xmlIO.[ch]: fixed the problem of encoding support
Daniel Veillard2f2bf412000-08-20 15:11:02 +000014218
Daniel Veillard46e370e2000-07-21 20:32:03 +000014219 when using in memory parsing. Need some cleanup.
14220 * xmllint.c configure.in: added a --memory flag to test memory
14221 parsing
14222
Daniel Veillard36650692000-07-21 15:16:39 +000014223Fri Jul 21 17:09:57 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14224
14225 * nanohttp.c: fixed socklen_t replacement to unsigned int
14226 * parser.c: fixed a space handdling missing at the end of
14227 production 28 DOCTYPE.
14228 * xmlmemory.c: fixed a stupid bug on the routine to override
14229 allocation functions
14230 * TODO: updated
14231
Daniel Veillarde46e20d2000-07-14 15:02:46 +000014232Fri Jul 14 17:01:14 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14233
14234 * doc/ regenerated the docs
14235
Daniel Veillard32bc74e2000-07-14 14:49:25 +000014236Fri Jul 14 16:12:20 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14237
14238 * doc/encoding.html doc/xml.html: added I18N doc
14239 * encoding.[ch] HTMLtree.[ch] parser.c HTMLparser.c: I18N encoding
14240 improvements, both parser and filters, added ASCII & HTML,
14241 fixed the ISO-Latin-1 one
14242 * xmllint.c testHTML.c: added/made visible --encode
14243 * debugXML.c : cleanup
14244 * most .c files: applied patches due to warning on Windows and
14245 when using Sun Pro cc compiler
14246 * xpath.c : cleanup memleaks
14247 * nanoftp.c : added a TESTING preprocessor flag for standalong
14248 compile so that people can report bugs more easilly
14249 * nanohttp.c : ditched socklen_t which was a portability mess
14250 and replaced it with unsigned int.
14251 * tree.[ch]: added xmlHasProp()
14252 * TODO: updated
14253 * test/ : added more test for entities, NS, encoding, HTML, wap
14254 * configure.in: preparing for 2.2.0 release
14255
Daniel Veillard49703262000-07-10 10:27:46 +000014256Mon Jul 10 16:17:18 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14257
14258 * nanoftp.c: fixed the way the control connection is handled
14259 * libxml.spec.in: fixed the dependancies and cleanup
14260
Daniel Veillard306be992000-07-03 12:38:45 +000014261Mon Jul 3 14:37:07 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14262
14263 * doc/xml.html: changed the xmlsoft.org structure, updated the
14264 examples w.r.t. root and childs
14265
Daniel Veillard7d853352000-07-02 18:53:09 +000014266Sun Jul 2 20:51:43 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14267
14268 * libxml.spec.in: fixed bug #7419, dependancies fouled for libxml-devel
14269
Daniel Veillard365e13b2000-07-02 07:56:37 +000014270Sun Jul 2 09:52:45 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14271
14272 * HTMLparser.c: Work on character encoding support for the HTML parser
14273 * HTMLparser.c: Fixed some autoopen/autoclose probs for the HTML parser
14274 * encoding.c: Fixed a potential memleak in the encoding stuff
14275
Daniel Veillardaf743792000-07-01 11:49:28 +000014276Sat Jul 1 13:44:22 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14277
14278 * doc/FAQ.html doc/Makefile.am : added a FAQ
14279
14280Fri Jun 30 20:29:08 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillardd83eb822000-06-30 18:39:56 +000014281
14282 * HTMLparser.c HTMLtree.c SAX.c valid.c tree.h : more cleanup
14283 of the HTML parser to force it to not bypass SAX
14284
Daniel Veillard3f6f7f62000-06-30 17:58:25 +000014285Fri Jun 30 11:19:59 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14286
14287 * win32config.h.in: updated
14288 * xmlversion.h.in: crap forgot to update this, this mean 2.1.0
14289 lacks iconv support :-( need to release 2.1.1
14290 * configure.in: release 2.1.1
14291 * HTMLparser: fixed bug #14784
14292 * xpath.c HTMLparser.c encoding.c parser.c: fix warning raised
14293 by Windows compiler
14294 * HTMLparser.c SAX.c HTMLtree.h tree.h: create HTML document in
14295 the SAX startDocument() callback.
14296 * TODO: updated
14297
14298Thu Jun 29 12:06:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14299
14300 * added xmlStopParser()
14301
Daniel Veillardbe803962000-06-28 23:40:59 +000014302Wed Jun 28 23:10:26 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14303
14304 * configure.in: 2.1.0 prerelease
14305 * Large resync between W3C and Gnome tree
14306 * nanoftp, nanohttp.c: fixed stalled connections probs
14307 * HTMLtree.c SAX.c : support for attribute without values in
14308 HTML for andersca
14309 * valid.c: Fixed most validation + namespace problems
14310 * HTMLparser.c: start document callback for andersca
14311 * debugXML.c xpath.c: lots of XPath fixups from Picdar Technology
14312 * parser.h, SAX.c: serious speed improvement for large
14313 CDATA blocks
14314 * encoding.[ch] xmlIO.[ch]: Improved seriously saving to
14315 different encoding
14316 * example/Makefile.am example/gjobread.c tree.h: work on
14317 libxml1 libxml2 convergence.
14318 * config.h.in parser.c xmllint.c: added xmlCheckVersion()
14319 and the LIBXML_TEST_VERSION macro
14320
Daniel Veillardc310d562000-06-23 18:32:15 +000014321Fri Jun 23 22:26:07 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14322
14323 * doc/xml.html: various patches and improvements typo fixed by
14324 Felix Natter
14325 * doc/libxml-doc.el: Emacs module to lookup the libxml documentation
14326 from Felix Natter <fnatter@gmx.net>
14327
Daniel Veillardf3029822000-05-06 08:11:19 +000014328Sat May 6 10:09:45 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14329
14330 * doc/upgrade.html: updated with instructions for support of both
14331 libxml-1.x and libxml-2.x
14332 * doc/gjobread.c : applied Todd Dukes <tdukes@ibmoto.com> patch
14333 for 2.x support and also fixed includes
14334
14335
Daniel Veillard496a1cf2000-05-03 14:20:55 +000014336Wed May 3 14:21:25 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14337
14338 * encoding.[ch], xmlIO.[ch], parser.c, configure.in : revamped
14339 the encoding support, added iconv support, so now libxml if
14340 compiled with iconv automatically support japanese encodings
14341 among others. Work based on initial patch from Yuan-Chen Cheng
14342 I may have broken binary compat in the encoding handler
14343 registration scheme, but that was so utterly broken I don't
14344 expect anybody to have used this feature until now.
14345 * parserInternals.h: fixup on the CHAR range macro
14346 * xml-error.h, parser.c: catch URL/URI errors using the uri.c
14347 code.
14348 * tree.[ch]: added xmlBufferGrow(), was needed for iconv
14349 * uri.c: added xmlParseURI() I can't believe I forgot to
14350 implement this one in 2.0 !!!
14351 * SAX.c: moved doc->encoding update in the endDocument() call.
14352 * TODO: updated.
14353
Daniel Veillard06047432000-04-24 11:33:38 +000014354Mon Apr 24 13:30:13 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14355
14356 * tree.h: removed extraneous xmlRemoveProp definition
14357 * TODO: added item about --disable-corba configure switch
14358 * tree.c parser.c: fixed problems for xmlCopyDoc and postvalidation
14359 * nanoftp.c: fixed include problems giving troubles on AIX and
14360 slowlaris
14361 * xmlIO.[ch] valid.h tree.[ch] xlink.c xmlmemory.c uri.c
14362 parser.c nanoftp.c nanohttp.c SAX.c testSAX.c :
14363 comment and headers changes to lower gtk-doc number of warnings
14364 * doc/html/*: rebuilt docs
14365
Daniel Veillarde0aed302000-04-16 08:52:20 +000014366Sun Apr 16 11:23:29 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14367
14368 * HACKING: documented the tag for 1.x and instructions
14369
Daniel Veillard5e873c42000-04-12 13:27:38 +000014370Wed Apr 12 15:47:22 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14371
14372 * xmlIO.[ch] parser.[ch]: More interfaces for new I/O functions
14373 xmlNewIOInputStream, xmlParserInputBufferCreateIO,
14374 xmlCreateIOParserCtxt
14375 * parser.c parserInternals.h: speedup of IS_CHAR like macros,
14376 significant overall improvement
14377 * xmllint.c: added I/O test to xmllint
14378 * testSAX.c: added a speed test
14379 * doc/* : updated/regenerated
14380
Daniel Veillardfc708e22000-04-08 13:17:27 +000014381Sat Apr 8 14:54:54 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14382
14383 * xpath.c uri.h parserInternals.h: cosmetic changes from
14384 "Timur I. Bakeyev" <timur@bat.ru>, including making
14385 xmlCreateURI() public
14386
Daniel Veillard5d211f42000-04-07 17:00:24 +000014387Fri Apr 7 18:35:02 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14388
14389 * xmlIO.[ch] parser.c: cleane up the xmlParserInputBuffer mess
14390 and the code at the same time. Added a clean mechanism for
14391 overload or added input methods: xmlRegisterInputCallbacks()
14392 * tree.c: fixed xmlPrevSibling and xmlNextSibling per
14393 Christophe Le Gal (Christophe.Le-Gal@imag.fr) input
14394 * TODO: updated
14395 * doc/* : updated/regenerated
14396 * doc/Makefile.am: tweaks to avoid problem with libxml link in the
14397 source dir
14398
Daniel Veillarde77a9182000-04-05 19:12:29 +000014399Wed Apr 5 21:11:35 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14400
14401 * testURI.c: yet another forgotten commit, I should get some sleep !
14402
Daniel Veillardce8b83b2000-04-05 18:38:42 +000014403Wed Apr 5 20:36:46 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14404
14405 * xmllint.c: forgot to commit this too ?
14406
Daniel Veillardb9df4042000-04-05 14:23:16 +000014407Wed Apr 5 16:22:44 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14408
14409 * xmlversion.h.in : forgot to commit this previously
14410
Daniel Veillard361d8452000-04-03 19:48:13 +000014411Mon Apr 3 21:47:10 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14412
14413 * configure.in: preparing libxml-2.0.0 version looks Ok so far
14414 * README TODO: updated for release
14415 * uri.c uri.h: added authority parsing/saving
14416 * uri.c testURI.c Makefile.am: moved the testing code to testURI.c
14417 * xmlversion.h.in configure.in nanoftp.[ch] nanohttp.[ch] encoding.h
14418 debugXML.[ch] xpath.[ch] xmlIO.c tester.c testXPath.c testHTML.c
14419 tree.c HTMLtree.c HTMLparser.c tree.c tree.h parser.c
14420 Makefile.am : added compile-time customization of libxml
14421 --with-ftp --with-http --with-html --with-xpath --with-debug
14422 --with-mem-debug
14423 * *.[ch] autoconf.sh : moved to an absolute adressing of includes :
14424 #include <libxml/xxx.h> I hope it won't break too much stuff
14425 and will be manageable in the future...
14426 * xmllint.c Makefile.am libxml.spec.in : renamed tester.c to xmllint.c
14427 and added xmllint to the installed programs
14428 * uri.h: added xmlFreeURI()
14429
Daniel Veillardec303412000-03-24 13:41:54 +000014430Fri Mar 24 14:35:21 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14431
14432 * uri.c uri.h: finished the escaping handling, the base support
14433 and the URI path normalization. Looks good just lacks the
14434 authority content parsing code.
14435 * Makefile.am: added instructions to generate testURI
14436 * TODO: updated
14437 * doc/xml.html, doc/smallfootonly.gif doc/w3c.png: updated,
14438 added links and icons for W3C and Gnome
14439
Daniel Veillard8f621982000-03-20 13:07:15 +000014440Mon Mar 20 14:05:26 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14441
14442 * xmlmemory.[ch] : seems I forgot to actually update the files in
14443 the last commit :-)
14444 * doc/xml.html doc/html/* : updated and uploaded the docs
14445
Daniel Veillard3dd82e72000-03-20 11:48:04 +000014446Mon Mar 20 12:33:51 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14447
14448 * test/valid/dtds/xhtml*: removed RCS infos (pain with CVS)
14449 * TODO: updated
14450 * xmlmemory.[ch] : added xmlMemSetup() and xmlMemGet() to override
Daniel Veillard8f621982000-03-20 13:07:15 +000014451 libxml default allocation function with another set (like gmalloc/
Daniel Veillard3dd82e72000-03-20 11:48:04 +000014452 gfree).
14453 * Makefile.am, uri.c, uri.h: added a set of functions to do
14454 exact (litteraly copied from the RFC 2396 productions) parsing
14455 and handling of URI. Will be needed for XLink, one XML WFC,
14456 XML Base and reused in the nano[ftp/http] modules. Still work
14457 to be done.
14458
Daniel Veillardedfb29b2000-03-14 19:59:05 +000014459Tue Mar 14 20:52:35 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14460
14461 * configure.in, libxml.spec.in : libxml2
14462 * doc/* : updated the doc page, rebuilt the docs
14463
Daniel Veillardcf461992000-03-14 18:30:20 +000014464Tue Mar 14 19:11:29 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14465
14466 * all: tagged LIB_XML_1_X
14467 * *.c *.h : updated from W3C CVS tree
14468 * configure.in : 2.0.0-beta
14469 * libxml.spec.in : libxml2 package nam
14470 * result/* : new version of the tests output
14471
Daniel Veillardf13e1ed2000-03-06 07:41:49 +000014472Mon Mar 6 09:34:52 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14473
14474 * doc/xml.html, doc/update.html: updated docs, 1.8.7
14475
Daniel Veillardb566ce12000-03-04 11:39:42 +000014476Sat Mar 4 16:14:42 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14477
14478 * doc/* : rebuilt the docs
14479 * parser.c: final patch on #6766
14480 * valid.c: small patch on validity checks.
14481
Daniel Veillardfb76c402000-03-04 11:39:42 +000014482Sat Mar 4 12:38:41 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14483
14484 * doc/upgrade.html: instruction on how to upgrade from 1.x to 2.x
14485 added
14486 * parser.c: adding xmlKeepBlanksDefault() as a way to manage
14487 compatibility w.r.t. XML spec and existing code.
14488
Daniel Veillard90fb02c2000-03-02 03:46:43 +000014489Thu Mar 2 04:45:15 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14490
14491 * parser.c: seems a better solution to <a> </a> exists,
14492 will try it for a while
14493
Daniel Veillard83a30e72000-03-02 03:33:32 +000014494Thu Mar 2 02:26:13 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14495
14496 * parser.c: tried to remove the <a> </a> generating <a/>
14497 this is hard. Left a flag for that purpose. Fixed bug #6766
14498 * configure.in: prepared 1.8.7 not released, due to previous
14499 problem
14500
Daniel Veillard88f00ae2000-03-02 00:15:55 +000014501Thu Mar 2 03:03:50 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14502
14503 * doc/xml.html : applied second patch from Paul DuBois
14504
Daniel Veillard402e8c82000-02-29 22:57:47 +000014505Tue Feb 29 23:55:13 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14506
14507 * doc/xml.html : applied patch from Paul DuBois
14508
Daniel Veillardd0f7f742000-02-02 17:42:48 +000014509Thu Feb 3 16:36:39 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14510
14511 * parser.c HTMLparser.c: do a bit of bufferization in push mode.
14512
Daniel Veillard5feb8492000-02-02 17:15:36 +000014513Thu Feb 3 15:59:37 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14514
14515 * nanoftp.c nanohttp.c tree.c HTMLtree.[ch] debugXML.c xpath.c: Fixed
14516 compilation warnings on various platforms.
14517 * parser.c: Fixed #5281 validity error callbacks are now desactived
14518 by default if not validating.
14519
Daniel Veillardf341f932000-02-02 14:52:08 +000014520Thu Feb 3 13:46:14 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14521
14522 * nanoftp.c, win32config.h.in: patches to compile on WIN32
14523
Daniel Veillard13c757e2000-02-01 23:59:15 +000014524Wed Feb 2 22:51:16 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14525
14526 * nanoftp.c: snprintf/sprintf patch courtesy George Katsirelos
14527 <gkatsi@cs.toronto.edu>
14528
Daniel Veillard726e8792000-01-30 20:04:29 +000014529Mon Jan 31 18:58:21 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14530
14531 * nanoftp.c nanohttp.c: Fixed '#' and '?' stripping when
14532 processing URLs
14533
Daniel Veillarde41f2b72000-01-30 20:00:07 +000014534Mon Jan 31 14:25:57 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14535
14536 * nanoftp.[ch]: cleanup, bug fixes, integration in rpmfind, added
14537 xmlNanoFTPUpdateURL for persistent control connections.
14538 * configure.in: 1.8.6
14539
14540Thu Jan 27 17:52:29 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14541
14542 * nanohttp.[ch], nanoftp.[ch]: cleanup, added proxy support
14543 * tree.[ch] : added xmlSaveNoEmptyTags
14544
James Henstridgef3be9312000-01-28 13:59:21 +0000145452000-01-29 James Henstridge <james@daa.com.au>
14546
14547 * nanoftp.c: include <netinet/in.h> for IPPROTO_TCP.
14548
14549 * Makefile.am: added nanoftp.[ch] to the build.
14550
Daniel Veillardaeea04f2000-01-25 19:27:27 +000014551Wed Jan 26 18:14:55 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14552
14553 * nanoftp.[ch]: cleanup, comments, API
14554 * debugXML.c : fixed a bug in the cat command
14555 * doc/*: regenerated the docs
14556
Daniel Veillardda07c342000-01-25 18:31:22 +000014557Wed Jan 26 16:52:50 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14558
14559 * nanoftp.[ch] parser.c xmlIO.[ch]: added a Nano FTP implementation
14560 * debugXML.c : fixed a bug in the cat command
14561 * valid.c: fixing some small probs
14562 * libxml.spec.in: get rid of the SNAP suffix
14563 * doc/xml.html: updated the status
14564
Daniel Veillarde3d88ef2000-01-24 13:55:06 +000014565Mon Jan 24 14:31:09 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14566
14567 * xml-config.in: xml-config --version to just return the
14568 version number
14569 * xpath.c: some cleanup w.r.t. axis when the current node is
14570 an attribute.
14571 * TODO: updated
14572
Daniel Veillard461a66c2000-01-18 18:01:01 +000014573Tue Jan 18 18:46:06 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14574
14575 * configure.in: prepared for libxml-1.8.5
14576 * doc/* recompiled the documentation
14577
145782000-01-17 Jody Goldberg <jgoldberg@home.com>
14579
14580 * configure.in : WARNING autoconf subtlety alert :
14581 Use AC_CHECK_HEADERS rather than AC_CHECK_HEADER
14582 when looking for zlib.h so that HAVE_ZLIB_H is defined.
14583 * config.h.in : Have a #undef for HAVE_ZLIB_H so that it will
14584 get defined by AC_CHECK_HEADERS.
14585
Daniel Veillardf967b902000-01-17 16:06:10 +000014586Mon Jan 17 17:04:12 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14587
14588 * tree.c: fixed a hideous bug in xmlGetProp() thanks to
14589 Rune.Djurhuus@fast.no
14590
Daniel Veillardad8f99d2000-01-15 14:20:03 +000014591Sat Jan 15 15:09:06 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14592
14593 * TODO: updated
14594 * tree.c, parser.c: made sure that only memory alloc problems
14595 and internal parser errors are allowed to write to stdout or
14596 stderr.
14597
Daniel Veillard0142b842000-01-14 14:45:24 +000014598Thu Jan 13 11:49:11 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14599
14600 * tree.c : restored xmlNewGlobalNs since this seems used by
14601 a lot of existing code :-(, fixed a bug in xmlNewNs
14602 * nanohttp.c: fixed a problem with INCLUDE_WINSOCK
14603 * HTMLparser.c, parser.c, entities.c, valid.c : removed all calls
14604 to exit() from the library code.
14605 * xpath.c, parser.c: removed bugs or unused code detected by
14606 Windows compilers
14607 * parser.c: started adding interfaces for parsing well balanced
14608 XML fragments
14609 * configure.in: releasing 1.8.4
14610 * doc/* : rebuilt the docs
14611
Daniel Veillard2eac5032000-01-09 21:08:56 +000014612Sun Jan 9 23:03:20 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14613
14614 * tree.[ch] : added xmlNewDocFragment() for DOM
14615 * testHTML.c: uninitialized variable.
14616
Daniel Veillardf3a73582000-01-05 14:58:39 +000014617Wed Jan 5 17:29:17 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14618
14619 * doc/* : rebuild the docs
14620
Daniel Veillard71b656e2000-01-05 14:46:17 +000014621Wed Jan 5 17:08:43 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14622
14623 * acconfig.h: readline and history patch
14624 * valid.[ch]: added xmlRemoveID() and xmlRemoveRef()
14625 * tree.c: added check and handling when possibly removing an ID
14626 * tree.c, HTMLparser.h, HTMLtree.h: fixed entities parsing
14627 and saving.
14628 * test/HTML/entities.html result/HTML/entities.html* : test for
14629 various entities reference cases
14630 * result/HTML/* : as a result output of some testcase have
14631 changed
14632 * HTMLparser.c, parser.c: fixed a bug in the push mode triggered
14633 by previous example. added xmlParseTryOrFinish().
14634 * xpath.h tree.h parser.h valid.h xmlIO.h xlink.h encoding.h
14635 entities.h debugXML.h HTMLparser.h: changed the way struct are
14636 declared to allow gtk-doc to expose those
14637 * parser.c: closed bug #4960
14638 * Makefile.am configure.in: Applied patch from
14639 Albert Chin-A-Young <china@thewrittenword.com> for better zlib
14640 and math/socket libs detection
14641
Daniel Veillard437b87b2000-01-03 17:30:46 +000014642Mon Jan 3 18:29:43 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14643
14644 * configure.in, Makefile.am: link tester against readline
14645 * doc/xml.html doc/*/*: updated and rebuilt the documentation pages
14646
Daniel Veillard686d6b62000-01-03 11:08:02 +000014647Mon Jan 3 11:58:05 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
14648
14649 * tree.[ch]: added xmlRemoveProp
14650 * win32config.h.in nanohttp.c: avoid including the Windows
14651 socket stuff in every C files
14652 * parser.c: removed an indetermination xmLDecl/PI(xml...) in
14653 the XmL parser(s)
14654 * test/ns4 result/ns4 etc...: added test case for previous prob
14655 * tree.c: xmlNewNs wasn't checking for double definition
14656 * Makefile.in: fixed a problem with dist-hook duplicates
14657 * parser.[hc], xmlIO.c: fixed the loading of external entities
14658 APIs, now xmlLoadExternalEntity() is used everywhere and
14659 setting up an app specific front-end using the
14660 * SAX.c parser.c: some fixes, now the xhtml spec validates
14661 with the xhtml DTD.
14662 * error.c: fixed crashes in case of no input stream
14663 * test/valid/[dtds/]/xhtml* : added the xhtml spec and dtds
14664 to the validation tests and results
14665
Daniel Veillard5e5c6231999-12-29 12:49:06 +000014666Wed Dec 29 15:29:52 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14667
14668 * HTMLparser.[ch] testHTML.c: added push mode for the HTML parser
14669 too htmlCreatePushParserCtxt() and htmlParseChunk()
14670 * parser.c: a bit of cleanup.
14671 * SAX.c, HTMLparser.c: some attributes may not have values (contrary
14672 to XML) removed the last mem leak known
14673 * HTMLtree.c: output message cleanup
14674 * xmlmemory.c: display content info about memory blocks
14675 * result/HTML/wired.* : missing att value warning change
14676
Daniel Veillardbe849cf1999-12-28 16:43:59 +000014677Tue Dec 28 17:42:41 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14678
14679 * doc/* : rebuilt the documentation
14680
Daniel Veillarddbfd6411999-12-28 16:35:14 +000014681Tue Dec 28 18:44:22 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14682
14683 * parser.[ch] parserInternals.h: Push parser for XML,
14684 seems to work fine now
14685 * tester.c debugXML.[ch]: Added an XML shell debug facility and
14686 --push for push testing
14687 * xpath.[ch] : cleaned up for Shell usage, added missing APIs
14688 * testSAX.c: added --push
14689 * HTMLtree.[ch] tree.[ch]: new functions for dumping parts of the
14690 subtree
14691 * xmlIO.[ch] : enriched API + fixes for push mode
14692 * entities.[ch]: added the entity content length to the struct.
14693 * xmlmemory.[ch]: new API to show the last entries for the shell
14694 * valid.c: added required attribute testing
14695 * SAX.c: the cdata callback now merge contiguous fragments
14696 * HTMLparser.c: cleanup of some macros
14697
Daniel Veillard3c558c31999-12-22 11:30:41 +000014698Wed Dec 22 12:20:53 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14699
14700 * parser.c: fix for PIs name starting with xml
14701 * tree.c: fixed a potential problem with || and && ops
Daniel Veillardfef854d1999-12-22 11:31:10 +000014702 * *.c, configure.in win32config.h.in : generate win32config.h for
14703 those on the Other Side !
Daniel Veillard3c558c31999-12-22 11:30:41 +000014704
Daniel Veillard0caf07a1999-12-21 16:25:49 +000014705Tue Dec 21 17:22:17 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14706
14707 * parser.c: fixed a stupid = vs. == bug :-(
14708 * doc/gnome-xml.sgml: s/glade/xml/
14709
Daniel Veillard5cb5ab81999-12-21 15:35:29 +000014710Tue Dec 21 14:29:34 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14711
14712 * configure.in, doc/xml.html : bug fix release 1.8.2
14713 * debugXML.h nanohttp.h xml-error.h xmlmemory.h xpath.h :
14714 Hopefully the end of that silly C++ include problem
14715 * tree.[ch]: Added a few functions: xmlReplaceNode, xmlAddPrevSibling,
14716 xmlAddNextSibling, xmlNodeSetName and xmlDocSetRootElement
14717 * HTMLparser.c HTMLparser.h HTMLtree.c: When saving HTML try to avoid
14718 troubles with autoclosed elements when the stree shape doesn't
14719 follow the DtD specs. Added htmlIsAutoClosed() and
14720 htmlAutoCloseTag()
14721 * result/HTML/*.htm*: Updated the HTML examples regression tests output
14722 * SAX.c tree.c: fixed bug on defaulting namespaces on attributes
14723 * debugXML.c: fixed a bug on printing default namespaces.
14724 * HTMLtree.c: fixed a problem when outputing XML parsed docs as HTML
14725
Daniel Veillardb24054a1999-12-18 15:32:46 +000014726Mon Dec 20 16:20:55 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14727
14728 * result/HTML/*.htm[l] : updated the HTML regression tests according
14729 to the new output
14730 * xpath.h xml-error.h valid.h tree.h parser.h entities.h SAX.h
14731 HTMLtree.h tree.c entities.c: headers tweakings to avoid a nasty
14732 problem due to intermix of extern "C" { ... } declarations for C++
14733 and recursive includes in the headers
14734
Chris Lahey323c48c1999-12-18 15:32:45 +0000147351999-12-20 Chris Lahey <clahey@umich.edu>
14736
14737 * HTMLtree.c: Made it so that html nodes with a single child do
14738 not insert a carriage return before or after the child node.
14739
Daniel Veillardb24054a1999-12-18 15:32:46 +000014740Sat Dec 18 16:07:03 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard262f9cb1999-12-18 15:32:45 +000014741
14742 * configure.in, doc/xml.html : bug fix release 1.8.1
14743 * parser.c: fixed bug #4344
14744 * xpath.h xml-error.h xlink.h nanohttp.h debugXML.h SAX.h HTMLparser.h
14745 added the glue to avoid C++ problems
14746 * doc/* : regenerated the documentation
14747
Daniel Veillard6d3bf1f1999-12-16 17:52:19 +000014748Thu Dec 16 16:19:29 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14749
14750 * tree.c: fixed a bug introduced in 1.8.0 and breaking default
14751 namespace recognition, and Dia as a resul :-(
14752 * encoding.c: closed bug #3950
14753
Daniel Veillard944b5ff1999-12-15 19:08:24 +000014754Wed Dec 15 19:22:23 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14755
14756 * valid.c: debugging a posteriori validation, except URI expansion
14757 stuff this should be fixed now
14758 * parserInternals.h: fixed a bug in IS_BASECHAR reported by
14759 Carl Nygard <cnygard@bellatlantic.net>
14760 * tester.c: added --postvalid, cleaning of the code
14761 * tree.[ch]: added xmlDocGetRootElement()
14762
Ramiro Estrugobfce3771999-12-15 04:32:07 +000014763Tue Dec 14 20:30:34 PST 1999 Ramiro Estrugo <ramiro@eazel.com>
14764
14765 * SAX.h, tree.h : changed 'namespace' to 'nameSpace' to workaround
14766 c++ losage.
14767
Daniel Veillard10a2c651999-12-12 13:03:50 +000014768Sun Dec 12 13:08:15 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14769
14770 * configure.in, doc/xml.html : bumped to 1.8.0
14771 * xlink.[ch], Makefile.am : added framework for link detection
14772 * parser.h: added nbChars to parser context, needed for cleanup.
14773 * xmlmemory.c: removed a nasty bug when out of mem
14774 * valid.[ch]: adding namespace support for attribute decl
14775 * tester.c: added --debugent option
14776 * debugXML.[ch]: added xmlDebugDumpEntities()
14777 * parser.c: cleanup, avoiding use of CUR_PTR like plague, using
14778 buffers instead, this was really needed, validation was breaking
14779 in strange ways due to that. Added xmlParseStringPEReference()
14780 and other parsing from strings functions. Entities processing
14781 modified again, but PERef are still not handled correcly but
14782 unless you're Eve Maller you won't notice :-)
14783 * HTMLparser.c: large changes toward reliability, and switched to
14784 lowercase internal tags, XHTML is lowercase, so it will help
14785 that output is closer to next version.
14786 * doc/* : regenerated the documentation, it is now hosted at
14787 http://xmlsoft.org/ (same bits I just bought the domain :-)
14788
14789
Daniel Veillard294cbca1999-12-03 13:19:09 +000014790Fri Dec 3 13:46:32 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14791
14792 * SAX.h, SAX.c, makefile.am: added SAX.h mostly useful for the
14793 doc generation
14794 * parser.c: fixed bugs #3908 and #3937 and a memory leak
14795 in the SAX API
14796 * doc/*: rebuilt the doc making sure everything appears in the
14797 HTML files
14798
Daniel Veillardf5c2c871999-12-01 09:51:45 +000014799Wed Dec 1 10:27:47 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14800
14801 * tree.[ch] HTMLtree.c, debugXML.c, configure.in, xml-config.in:
14802 added the patch from Carl Nygard <cnygard@bellatlantic.net>
14803 which allow impressive speed improvement on dataset with
14804 large text pieces, but at the cost of broken binary
14805 compatibility and slightly bigger memory usage.
14806 Configure with --with-buffers to activate them, they
14807 are protected with XML_USE_BUFFER_CONTENT define.
14808 * entities.[ch], parser.c: added xmlCleanupPredefinedEntities(),
14809 goal is 0 memory left allocated once parser is no more used
14810 * testDAV.c, testHTML.c, testSAX.c, testXPath.c: make sure we
14811 call xmlCleanupParser() and xmlMemoryDump()
14812
Daniel Veillarda819dac1999-11-24 18:04:22 +000014813Wed Nov 24 19:00:06 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14814
14815 * tree.[ch] xmlIO.[ch] parser.c valid.c: code cleanup with -pedantic
14816 * parser.[ch] encoding.[ch]: added memory cleanup routines
14817 * parser.c: closing bug #3788
14818 * doc/*: rebuilt the doc
14819
Daniel Veillard11a48ec1999-11-23 10:40:46 +000014820Tue Nov 23 11:23:55 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14821
14822 * tree.[ch]: closing bug 3748, added xmlNewDocRawNode(),
14823 xmlNewTextChild() and xmlSetCompressMode() behaviour.
14824 * tester.c: added --compress option
14825 * doc/*: rebuilt the documentation
14826
Daniel Veillard4c3a2031999-11-19 17:46:26 +000014827Fri Nov 19 18:41:28 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14828
14829 * HTMLparser.c: bugfixing, the damn thing MUST not crash even
14830 if given /proc/kcore as input !
14831 * doc/xml.html doc/*: updated and rebuilt the documentation
14832
14833Thu Nov 18 14:57:18 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard07136651999-11-18 14:02:05 +000014834
14835 * parser.c: Fixed some wrongly space collapsing code due to
14836 a misreading of the spec.
14837 * result/*: fixed the output accordingly
14838
14839Wed Nov 17 18:28:06 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard7f858501999-11-17 17:32:38 +000014840
14841 * encoding.c: bug fix and typos
14842 * xmlIO.[ch] parser.c: first bits toward real progressive parsing
14843 * parser.c: added attribute normalization closing bug #3597
14844 * test/att* result/att* SAXresult/att*: testcase for attribute
14845 normalization
14846
Daniel Veillardd7e200c1999-11-15 17:53:11 +000014847Mon Nov 15 18:50:56 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14848
14849 * configure.in: closing bug #3163 by adding extra flags for the
14850 cc compiler on HP-UX
14851
Daniel Veillard51e3b151999-11-12 17:02:31 +000014852Fri Nov 12 17:41:20 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14853
14854 * valid.[ch] : removed a typo and an enumerated type bug in the
14855 xmlAddElementDecl() function
14856 * tree.c : I changed xmlSetProp() and xmlNewProp() to do the
14857 call to xmlEncodeEntitiesReentrant() so that the functions
14858 New, Set and Get are at the same level.
14859 * parser.c HTMLparser.c: extra memory allocation bug for
14860 attributes detected by someone using libxml in embedded systems :-)
14861
Daniel Veillard962195f1999-10-28 15:51:53 +000014862Thu Oct 28 17:49:26 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14863
14864 * xmlmemory.h: turned off mem debug :-\
14865
Daniel Veillard35008381999-10-25 13:15:52 +000014866Mon Oct 25 12:13:25 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14867
14868 * parser.c: closed bug #2784 a one line fix, but worth pushing
14869 a new release out
14870 * HTMLparser.c: fixed auto-close bugs on list items, zeroing
14871 some structures, comments before and after the
14872 main element, and other nastyness
14873 * HTMLtree.c tree.c: accomodate the extended HTML supported
14874 * configure.in: pushing 1.7.4
14875 * test/ent8 and related outputs : added a new test for bug #2784
14876 * test/HTML/wired.html and related output: a nasty HTML example
14877 * Makefile.am: improved the test scripts
14878 * docs/* : reran the documentation extractor, updated xml.html
14879
Daniel Veillard7c1206f1999-10-14 09:10:25 +000014880Thu Oct 14 10:29:56 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14881
14882 * HTMLparser.c, HTMLtree.c, tree.h: completely revamped the
14883 HTMLparser and debugged the HTML related code. HTML documents
14884 now have their own type
14885 * entities.c: do not dump &apos; for HTML output
14886 * xmlmemory.c: improvement, breakpoint mechanism
14887 * testHTML.c: added --sax --repeat ...
14888 * Makefile.am: improved the HTML tests
14889 * valid.[ch]: added xmlValidGetValidElements and
14890 xmlValidGetPotentialChildren
14891 * tester.c: added --insert to test the 2 new functions
14892 * test//* result//* SAXresult//* : regression test cleanup
14893 and extension.
14894 * doc/html : added doc for new modules gnome-xml-xmlmemory.html and
14895 gnome-xml-nanohttp.html
14896
Daniel Veillard7d2c2761999-10-11 15:09:51 +000014897Mon Oct 11 14:31:58 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14898
14899 * HTMLparser.c: fixed problems with some autoclose tags
14900 * tree.c: fixed XML output problems.
14901 * result/* SAXresult/*: update of the tests output
14902
Daniel Veillard6077d031999-10-09 09:11:45 +000014903Sat Oct 9 11:02:57 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14904
14905 * Makefile.am: Arturo patch for xmlConf.sh version info
14906 * parser.c: Tim Josling patch for single quoted items
14907 * tester.c: Tim Josling patch for tester options usage
14908 * tree.h: indent cleanup
14909
Daniel Veillard2673d3c1999-10-08 14:37:09 +000014910Fri Oct 8 16:35:37 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14911
14912 * HTMLparser.c parser.h : Fixed problems with HTML parsing
14913 reported by Kristian Hogsberg Kristensen <hogsberg@daimi.au.dk>
14914
Daniel Veillard00fdf371999-10-08 09:40:39 +000014915Fri Oct 8 11:37:11 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14916
14917 * tree.c : Raph patch for initialization of CORBA fields
14918 * parser.c, xpath.c, ...: modification of doc comments
14919 * xpath.c : allow spaces in xpath expressions
14920
Daniel Veillardad219441999-09-27 08:17:49 +000014921Mon Sep 27 10:16:43 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14922
14923 * xmlmemory.h: turning off memory debug :-(
14924
Daniel Veillard7a66ee61999-09-26 11:31:02 +000014925Sun Sep 26 13:16:54 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14926
14927 * parser.[ch] : added xmlSAXUserParseFile() and xmlSAXUserParseMemory()
14928 better SAX interfaces.
14929 * testSAX.c: uses the new SAX routine, avoid fetching any remote
14930 entity.
14931 * configure.in: 1.7.2
14932
14933Fri Sep 24 16:01:01 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard2f4dfc41999-09-24 14:03:48 +000014934
14935 * libxml.spec.in: fixed the URL
14936 * doc/xml.html: improved the documentation front-end
14937
Daniel Veillard7a66ee61999-09-26 11:31:02 +000014938Fri Sep 24 01:06:36 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard335849b1999-09-23 23:08:42 +000014939
14940 * nanohttp.c: conditionned references to snprintf with HAVE_SNPRINTF
14941
Daniel Veillard7a66ee61999-09-26 11:31:02 +000014942Fri Sep 24 00:15:58 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillarddd6b3671999-09-23 22:19:22 +000014943
14944 * libxml.spec.in: fixed the alpha compile problem
14945 * parser.[ch]: changed errno to errNo in the parser context :-(
14946 * *.[ch]: changed CHAR to xmlChar to avoid problem on WIN32
14947 * doc/xml.html: changed CHAR to xmlChar
14948 * doc/html/*: recompiled the documentation
14949 * configure.in: 1.7.1
14950
Daniel Veillard7f7d1111999-09-22 09:46:25 +000014951Wed Sep 22 11:40:31 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14952
14953 * parser.h: modified the parser context struct to regain 1.4.0
14954 binary compatibility
14955 * parser.c, xml-error.h: added errno ot teh context and defined
14956 a set of errors values with update of errno
14957 * nanohttp.[ch]: minimalist HTTP front-end for fetching remote
14958 DTDs and entities
14959 * *.h, *.c: complete cleanup of the use of config.h and include
14960 protection depending on the current setup.
14961 * overalll debugging, maintenance and bug-fixing on all modules
14962 * updated the documentation
14963 * ready for 1.7.0
14964
Daniel Veillardc08a2c61999-09-08 21:35:25 +000014965Wed Sep 8 22:46:14 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14966
14967 * HTMLparser.c : cleanup
14968 * SAX.c valid.c valid.h: added ID/IDREF checking
14969 * tree.c tree.h: extended doc structure for refs
14970 * configure.in: 1.6.2
14971 * parser.c: patched bug in SAX user arg call
14972 * parserInternals.h: patched missing close in C++ wrapping
14973 * testXPath.c xpath.c xpath.h: prepared for extensibility,
14974 especially upcoming XPointer implementation.
14975 * doc/xml.html: augmented, typo
14976
CEST 1999 Timur Bakeyev72bd1001999-09-04 20:50:25 +000014977Sat Sep 4 22:48:05 CEST 1999 Timur Bakeyev <mc@bat.ru>
14978
14979 * doc/Makefile.am: replaced "install -d " with "mkinstalldirs" -
14980 not all invocations of install understand -d.
14981
CEST 1999 Timur Bakeyev6db3cb01999-09-04 20:25:14 +000014982Sat Sep 4 22:20:07 CEST 1999 Timur Bakeyev <mc@bat.ru>
14983
14984 * Makefile.am: prepend all the test* calls with $(top_builddir) -
14985 to make 'check' works, when builddir != srcdir.
14986
Daniel Veillardc8eab3a1999-09-04 18:27:23 +000014987Sat Sep 4 20:25:46 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14988
14989 * doc/xml.html : updated the documentation
14990
Daniel Veillard6454aec1999-09-02 22:04:43 +000014991Fri Sep 3 00:01:08 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
14992
14993 * xmlmemory.[ch] Makefile.am :added a memory wrapper to chase
14994 not deallocated memory blocks
14995 * *.c : replaces all calls to malloc() free() and realloc() to
14996 the wrapper functions/macros
14997 * tree.c : removed memory leaks dues to calling xmlFreeNode()
14998 instead of xmlFreeNodeList()
14999
Daniel Veillard1ff7ae31999-09-01 12:19:13 +000015000Wed Sep 1 14:15:09 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15001
15002 * HTMLparser.c: corrected a stupid bug leading to core dump at
15003 tree deallocation. Removed warnings indicated by
15004 Stephane.Conversy@lri.fr
15005 * entities.c: Fixes Yet Another Stupid Bug, entities were not
15006 looked for in the external subset
15007
15008Mon Aug 30 13:22:26 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillardc26087b1999-08-30 11:23:51 +000015009
15010 * parser.c valid.[ch] xpath.c: patched compilation warnings reported
15011 on SGI by Stephane.Conversy@lri.fr
15012
Daniel Veillardb96e6431999-08-29 21:02:19 +000015013Sun Aug 29 22:27:29 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15014
15015 * all .h : changed the prototype declaration indent as in gtk
15016 * most .c : working on reducing the TODOs in the code
15017 * most .c : cleanup though -pedantic and Insure++
15018 * improvements on validation ID checkings.
15019 * tree.[ch] SAX.c: added support for namespace on attributes #2022
15020 * xml-config.in: closed #1810
15021
15022Mon Aug 16 03:27:38 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard991e63d1999-08-15 23:32:28 +000015023
15024 * tree.h, valid.c, valid.h: more work on validity, IDs
15025 * xpath.c: added/fixed comparidon and equlity, added a new isinf
15026 definition for AIX
15027
Daniel Veillardb556eb51999-08-15 17:19:50 +000015028Sun Aug 15 21:15:17 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15029
15030 * Makefile.am libxml.spec.in: corrected missing xmlConf.sh in
15031 the distribution due to a cut'n paste error at last commit
15032
Daniel Veillardb05deb71999-08-10 19:04:08 +000015033Tue Aug 10 20:28:09 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15034
15035 * configure.in: upgraded to version 1.4.0
15036 * valid.[ch], SAX.c, parser.[ch] parserInternals.h ...
15037 Big update, added a large part of the validation process,
15038 it should be usable, but some parts are missing
15039 * xpath.c: improved the implementation w.r.t. root.
15040 * Makefile.am: added more tests
15041 * test and result trees: added a lot of tests
15042 * libxml.spec.in: export libxml.so.0 and libxml.so.1
15043
Daniel Veillard6a6ccc11999-08-10 09:34:35 +000015044Tue Aug 10 11:33:41 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15045
15046 * Added an HACKING file
15047
Daniel Veillarde2d034d1999-07-27 19:52:06 +000015048Tue Jul 27 21:43:00 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15049
15050 * xpath.[ch] : improvements and debug of the XPath implementation
15051 * parser.c, HTMLparser.c : modified the parsers to be progressive
15052 * tree.[ch] : extended the Buffer promitives
15053 * xmlIO.[ch] : added basic I/O routines providing progressive
15054 parsing and ready for I18N conversion plugins
15055 * SAXresult/* : the SAX callback sequence maybe slightly different
15056 now
15057 * test*.c : improved/updated the tests programs
15058 * doc/* : recompiled the docs.
15059
Daniel Veillard15b75af1999-07-26 16:42:37 +0000150601999-07-26 Michael Meeks <michael@edenproject.org>
15061
15062 * tree.h: Add const to 'content' in xmlNewDocNode, xmlNewChild
15063
15064 * tree.c: Ditto.
15065
Daniel Veillard1566d3a1999-07-15 14:24:29 +000015066Thu Jul 15 16:17:16 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15067
15068 * configure.in: upgraded to version 1.4.0
15069 * xpath.c, xpath.h, testXPath.c, makefile.am: added code for the XPath
15070 draft from W3C. Will be used by XPointer, Xlink, XSL, and possibly
15071 XML query language, see http://www.w3.org/TR/xpath for more details.
15072 * parser.c, parser.h: added CHAR* related string functions for XPath
15073 * HTMLparser.[ch], HTMLtree.c: a bit of cleanup on entities.
15074 * doc/gnome-xml.sgml, doc/html/* : added XPath and HTML documentation,
15075 rebuild the docs.
15076 * Makefile.am, test/XPath/*, result/XPath/*: added an XPathtests target
15077 and regression testing capabilities for XPath.
15078
Daniel Veillardd79d7871999-07-12 10:38:12 +000015079Mon Jul 12 12:36:39 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15080
15081 * parser.c, HTMLparser.c: applied patch from John Ellson <ellson@lucent.com>
15082 closing bug #1646
15083
Daniel Veillardbe9e5951999-07-12 09:16:45 +000015084Mon Jul 12 11:04:44 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15085
15086 * Makefile.am, example/Makefile.am: closed bug #1683
15087
Daniel Veillard3166ab11999-07-11 16:14:19 +000015088Sun Jul 11 18:16:34 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15089
15090 * example/Makefile.am, configure.in: added the makefile for the
15091 gjobread example
15092
Tomasz Kłoczkoa75b6b31999-07-10 12:21:13 +000015093Sat Jul 10 14:19:11 CEST 1999 Tomasz K³oczko <kloczek@pld.org.pl>
15094
15095 * doc/Makefile.am:
15096 - fix which allow "make install DESTDIR=</install/prefix>".
15097
Daniel Veillard7cc3c041999-07-09 10:11:57 +000015098Fri Jul 9 12:10:24 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15099
15100 * HTMLparser.c parser.c: applied patch from John Ellson <ellson@lucent.com>
15101 which fixed a problem on the file reading-code.
15102
Daniel Veillard82150d81999-07-07 07:32:15 +000015103Wed Jul 7 09:28:43 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15104
15105 * HTMLparser.[ch], HTMLtree.[ch]: more work for HTML parsing and
15106 output.
15107 * Makefile.am, test/HTML/*, result/HTML/*: added HTMLtests targetestHTMLt
15108
Daniel Veillard5233ffc1999-07-06 22:25:25 +000015109Wed Jul 7 00:25:42 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15110
15111 * parser.h : Oops removed the binary compatibility problem
15112 * HTMLparser.[ch], HTMLtree.h : More work on the HTML parse/dump
15113 * parser.c, HTMLparser.c: applied patches for reading from stdin
15114
Daniel Veillardbe70ff71999-07-05 16:50:46 +000015115Mon Jul 5 18:45:31 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15116
15117 * parser.c, entities.c, valid.c: cleanup bug #1591
15118 * configure.in: cleanup bug #1592
15119 * HTMLparser.[ch], testHTML.c: started adding an HTML parser using
15120 the same tree back-end. Hence gdome will be available for it.
15121 * doc/Makefile.am: close bug #617
15122
Daniel Veillard97fea181999-06-26 23:07:37 +000015123Sat Jun 26 23:36:38 EDT 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15124
15125 * parser.c: alloctate a per parser context SAX interface block
15126
Daniel Veillard14fff061999-06-22 21:49:07 +000015127Tue Jun 22 23:46:32 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15128
15129 * released 1.3.0 with xmlEncodeEntities restoring old behaviour
15130 and xmlEncodeEntitiesReentrant with the correct one :-\
15131
15132Mon Jun 21 14:07:53 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15133
15134 * commit of my internal XML base changes, quite a lot of
15135 changes, cleanups, better entities support, framework for
15136 new I/O and charset detection and handling
15137 * Fixed the configure/Makefile stuff to generate shared libs
15138 with the proper version info, so we jumped on rev from
15139 0.0.0 to 1.2.0 ! The binary interfaces have been broken,
15140 xmlEncodeEntities() result need to be freed now, and a string
15141 xmlParserVersion provide the current library version.
15142
Raph Levien05240da1999-06-15 21:27:11 +000015143Tue Jun 15 14:24:19 1999 Raph Levien <raph@acm.org>
15144
15145 * parser.c: fixed a buffer overrun for when you have a very long
15146 attribute with no entities in it.
15147
Daniel Veillardbb2da581999-06-13 14:37:07 +000015148Mon Jun 14 00:17:50 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15149
15150 * added example directory
15151 * added example/gjobs.xml gjobread.c, still need a Makefile.in
15152
Daniel Veillard011b63c1999-06-02 17:44:04 +000015153Wed Jun 2 19:40:58 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15154
15155 * Release of libxml-1.1, nearly everything has been touched for
15156 this.
15157 * Added more regression tests
15158 * Updated the documentation
15159
Daniel Veillard27d88741999-05-29 11:51:49 +000015160Sat May 29 13:34:42 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15161
15162 * tree.[ch]: unified the XML_NO_CORBA defines.
15163 * parser.c encoding.[ch]: started plugging in char encoding detection
15164
Manish Vachharajani5e60f5a1999-05-29 03:04:30 +000015165Fri May 28 22:58:42 EDT 1999 Manish Vachharajani <mvachhar@vger.rutgers.edu>
15166
15167 * tree.c: (xmlSaveFile) - removed double call of xmlContentDump.
15168 Also freed allocated buffer.
15169
Daniel Veillard27d88741999-05-29 11:51:49 +000015170Wed Apr 21 22:07:35 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard5099ae81999-04-21 20:12:07 +000015171 * parser.[ch] tree.[ch] entities.[ch] valid.[ch] : removed the main
15172 reentrancy problem at printing. One is left in entities.c, to
15173 remove ASAP
15174 * testSAX.c : added a test example showing the use of the SAX
15175 interface if one doesn't want to build the DOM tree.
15176 * html/gnome-xml-*.html html/index.sgml: regenerated the documentation
15177
Daniel Veillard517752b1999-04-05 12:20:10 +000015178Mon Apr 5 14:14:40 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15179
15180 * parser.[ch] tree.[ch] SAX.c, parserInternals.h valid.[ch]:
15181 large revamping of the parser to use SAX callbacks
15182 http://www.megginson.com/SAX/ (or at least a C like interface
15183 a la Expat). It's now possible to set up your own callbacks
15184 and the parser will not build a DOM tree.
15185 * test/* result/*: updated the test suite, I finally removed
15186 the old Namespace draft support (PI based).
15187
Daniel Veillard87c83bd1999-04-02 16:04:43 +000015188Fri Apr 2 17:57:32 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15189
15190 * Makefile.am: added test result to EXTRA_DIST for make tests
15191
Daniel Veillard64068b31999-03-24 20:42:16 +000015192Wed Mar 24 21:37:02 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15193
15194 * parser.c, parserInternals.h: moved the chars macro definitions
15195 to parserInternals.h
15196 * parser.c, error.c: applied patches from "Knut Åkesson"
15197 <ka@s2.chalmers.se> for clean compilation under MSVC 6 :-o
15198
Daniel Veillard012ccc11999-03-23 10:11:11 +000015199Tue Mar 23 11:10:15 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15200
15201 * xml-config.in : applied patch to make --version work
15202
Raja R Harinatha86c23e1999-03-05 22:14:01 +0000152031999-03-05 Raja R Harinath <harinath@cs.umn.edu>
15204
15205 * Makefile.am (check-local): Alias for `tests' target. This will
15206 cause `make check' to do the right thing.
15207 (tests): Don't run tests in srcdir. Also, replaced calls to
15208 basename with a `sed' "equivalent".
15209
Daniel Veillardd109e371999-03-05 06:26:45 +000015210Fri Mar 5 07:23:53 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15211
15212 * Renamed error.h to xml-error.h, corrected Makefile.am to list
15213 it in the header and not the sources, updated the doc.
15214 Thanks to Tim Mooney <mooney@dogbert.cc.ndsu.nodak.edu> for
15215 pointing this out.
15216
Daniel Veillardbc50b591999-03-01 12:28:53 +000015217Mon Mar 1 13:27:17 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15218
15219 * parser.c, parser.h, parserInternals.h: memory leak hunting,
15220 exported the inputStream routines.
15221 * doc/html/* : updated accordingly
15222
Daniel Veillardd692aa41999-02-28 21:54:31 +000015223Sun Feb 28 22:51:33 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15224
15225 * parser.c, parser.h, parserInternals.h: added a few extra
15226 internal calls to allocate and free parser contexts ...
15227 * doc/html/* : updated accordingly
15228
Daniel Veillard55a99271999-02-25 11:01:29 +000015229Thu Feb 25 11:52:24 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15230
15231 * configure.in, Makefile.am, doc/makefile.am : General changes for
15232 1.0.0 release and including the generated HTML documentation.
15233
Daniel Veillard35925471999-02-25 08:46:07 +000015234Thu Feb 25 09:44:52 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15235
15236 * makefile.am : added parserInternals.h, oops.
15237
Daniel Veillard1e346af1999-02-22 10:33:01 +000015238Mon Feb 22 11:24:56 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15239
15240 * parserInternals.h: added this header giving access to the parser
15241 internal functions.
15242 * doc/Makefile.am : added a rebuild target which rebuilds the full
15243 set of documentations
15244 * parser.[ch] tree.[ch] valid.[ch]: serious updates w.r.t. parsing
15245 the internal subset.
15246 * *.c *.h: modifications needed to generate the documentation using
15247 gtk-doc, cleanup of functions blocks, reorganisation of struct
15248 declarations.
15249
Daniel Veillard1164e751999-02-16 16:29:17 +000015250Tue Feb 16 17:27:29 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15251
15252 * Makefile.am, spec, doc/Makefile.am : upgrading to 0.99.8, fixing
15253 the tar and spec file to include the beginning of the doc.
15254
Nuno Ferreira03d04781999-02-13 00:07:17 +0000152551999-02-13 Nuno Ferreira <nmrf@rnl.ist.utl.pt>
15256
15257 * doc/.cvsignore: Added this file.
15258
Daniel Veillard6800ef31999-02-08 18:33:22 +000015259Mon Feb 8 19:27:56 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15260
15261 * tree.c: fixed xmlGetProp to return "" when the attribute
15262 exists, even if the node-list is NULL.
15263
Daniel Veillard726c7e31999-02-08 15:13:10 +000015264Mon Feb 8 16:10:15 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15265
15266 * tree.c: patched an error outputting empty attribute values.
15267 * Makefile.am and doc/makefile.am: have been updated during the
15268 week-end. Sorry for an empty CVS log, I got a shell problem.
15269
Daniel Veillard1899e851999-02-01 12:18:54 +000015270Mon Feb 1 12:10:13 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15271
15272 * tree.h: cleaned up using enums instead of defines
15273 * parser.c, valid.[ch]: more work on parsing/output of element
15274 declarations
15275
Daniel Veillard3b9def11999-01-31 22:15:06 +000015276Sun Jan 31 22:06:48 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15277
15278 * valid.[ch], tree.c, parser.c : more work toward full parsing
15279 of XML DTDs.
15280 * README: added informations about mailing-list and on-line
15281 documentation
15282
Raja R Harinath7eb5c4f1999-01-27 23:01:51 +0000152831999-01-27 Raja R Harinath <harinath@cs.umn.edu>
15284
15285 * configure.in (XML_INCLUDEDIR): Use -I not -L for includes.
15286
Daniel Veillard39a1f9a1999-01-17 19:11:59 +000015287Sun Jan 17 20:06:36 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15288
15289 * parser.c, tree.[ch] : more work toward conformance testing,
15290 added a last element to accelerate parsing of very flat structures
15291 started working on internal subset Element content declaration.
15292 * valid.[ch] : first cut at adding code toward validation.
15293 * previous changes had also small impact on most files, especially
15294 the conformance testing using James Clark test suite.
15295
Daniel Veillard3c2c2ce1999-01-17 13:48:01 +000015296Sun Jan 17 14:45:06 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
15297
15298 * test/* : updated the examples, most of them were not well
15299 formed (humm), and added rdf2.
15300 * result/* : resulting changes in the output.
15301
Daniel Veillard7c92c0a1998-12-06 18:08:28 +000015302Sun Dec 6 13:06:58 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
15303
15304 * tree.c: changed the behaviour of xmlGetProp on NULL values.
15305
Daniel Veillard44b3a061998-12-05 17:27:22 +000015306Sat Dec 5 12:25:09 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
15307
15308 * tree.c: patched a bug in the generation of empty attributes
15309
Daniel Veillardbe36afe1998-11-27 06:39:50 +000015310Fri Nov 27 01:36:54 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
15311
15312 * entities.[ch], tree.[ch], tester.c: added copy interfaces
15313 for node/trees/documents/... Biggest problem is namespace
15314 support when copying subtrees.
15315
Daniel Veillard8cc0d1f1998-11-16 01:04:26 +000015316Sun Nov 15 19:59:47 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
15317
15318 * parser.c, entities.c: improve entities and char ref encoding,
15319 and cleanups of error messages.
15320
Daniel Veillard242590e1998-11-13 18:04:35 +000015321Fri Nov 13 13:03:10 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
15322
15323 * parser.c, entities.c: simple bug hunting done during rpm2html and
15324 rpmfind integration.
15325
Daniel Veillard42dc9b31998-11-09 01:17:21 +000015326Sun Nov 8 13:11:07 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
15327
15328 * parser.[ch]: Added interfaces allowing to specify a SAX
15329 handler before parsing.
15330
Daniel Veillarde3bffb91998-11-08 14:40:56 +000015331Sun Nov 8 09:39:17 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
15332
15333 * parser.c: redirrect all errors reporting through the SAX
15334 error function
15335
Daniel Veillardda4d3c41998-11-04 20:07:05 +000015336Wed Nov 4 14:21:54 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
15337
15338 * entities.c: rather use HAVE_SNPRINTF and not depend on glib
15339 * libtool, tlmain ...: update of the libtool files
15340
Miguel de Icaza442321c1998-11-04 18:13:38 +0000153411998-11-04 Miguel de Icaza <miguel@nuclecu.unam.mx>
15342
15343 * entities.c: Use g_snprintf insteda of snprintf.
15344
Daniel Veillard0ba4d531998-11-01 19:34:31 +000015345Sun Nov 1 14:31:06 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
15346
15347 * entities.c, parser.c: debug and cleanup of CharRef handling/saving.
15348 added ent5 test for this purpose.
15349 * parser.c, parser.h: formatting, comments and UTF-8 planning.
15350
Daniel Veillard27271681998-10-30 06:39:40 +000015351Fri Oct 30 01:36:52 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
15352
15353 * parser.c: fixed? a strange error due to compression on a GWP
15354 document.
15355
Daniel Veillard25940b71998-10-29 05:51:30 +000015356Thu Oct 29 00:48:45 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
15357
15358 * tree.[ch]: bug fixing
15359 * entities.[ch]: defined a specific type for predefined entities
15360 * doc/xml.html: more documentation on the library, how to use it,
15361 overview of the interfaces.
15362
Daniel Veillard16253641998-10-28 22:58:05 +000015363Wed Oct 28 17:56:35 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
15364
15365 * tree.[ch]: more cleanup on the API, made the tree mor conformant.
15366
Daniel Veillardbaf4cd51998-10-27 22:56:57 +000015367Tue Oct 27 17:54:00 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
15368
Daniel Veillard10c6a8f1998-10-28 01:00:12 +000015369 * tree.c: corrected a small bug
15370 * doc/xml.html: continuing writing documentation.
15371
15372Tue Oct 27 17:54:00 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
15373
Daniel Veillardbaf4cd51998-10-27 22:56:57 +000015374 * debugXML.h debugXML.c: added debugging utilities.
15375 * tester.c: added --debug switch.
15376 * tree.c: patched an incorrect node->type assignment.
15377 * parser.c: formatting, ensure that node->doc != NULL in attributes
15378
Daniel Veillardccb09631998-10-27 06:21:04 +000015379Tue Oct 27 01:15:39 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
15380
15381 * parser.[ch] SAX.c tree.[ch]: large amount of changes to improve
15382 entity support and provide an internal representation close to
15383 DOM one (entity ref nodes, and attribute value as tree). I tried
15384 to preserve the interface but this will surely break some apps
15385 (I have to change rpm2html/rpmfind for example). I had to change
15386 two interfaces, and the generated tree is somewhat different.
15387 * doc/* : started documenting the XML library, the tree and
15388 DOM/Corba. This is a first step.
15389
Daniel Veillard11e00581998-10-24 18:27:49 +000015390Sat Oct 24 14:23:51 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
15391
15392 * parser.c: Set up the fonctions comment block, boring but useful.
15393 * parser.h, SAX.c, parser.c: now attributes are processed through
15394 the SAX interface. The problem is that my SAX interface diverged
15395 quite a bit from the original one, well this is not an official
15396 spec, and translating it from Java to C is hairy anyway...
15397
Daniel Veillard97b58771998-10-20 06:14:16 +000015398Tue Oct 20 02:11:21 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
15399
15400 * SAX.c, entities.c, tree.c, encoding.c, error.c: Set up the
15401 fonctions comment block, boring but useful.
15402
15403Sun Oct 18 20:40:58 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard891e4041998-10-19 00:43:02 +000015404
15405 * encoding.[ch], Makefile.am: Added the UTF-8, UTF-16 and ISO Latin 1
15406 conversion routines. However they are not yet used to convert the
15407 inputs. The core will run with UTF-8.
15408
Daniel Veillard33942841998-10-18 19:12:41 +000015409Sun Oct 18 15:08:19 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
15410
15411 * tree.c : make sure that the type id is properly set-up when
15412 a new object is allocated, needed for DOM.
15413
Daniel Veillard27fb0751998-10-17 06:47:46 +000015414Sat Oct 17 02:43:21 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
15415
15416 * tree.h, tree.c: Ok, the main objects in the tree will be native
15417 corba objects, it costs 8 bytes per Node, Attribute and Document
15418 but it simplifies the Corba integration a lot (no extra interface
15419 objects to allocate/free).
15420
Daniel Veillard0bef1311998-10-14 02:36:47 +000015421Tue Oct 13 21:46:57 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
15422
15423 * tree.h, tree.c, parser.c: added prev and doc pointers to Node,
15424 and changed NODEs contants for conformity with DOM Level 1
15425
Daniel Veillard27864701998-10-08 03:47:24 +000015426Wed Oct 7 23:42:46 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
15427
15428 * added hooks to keep track of servants when creating objects
15429 xmlDoc and xmlNode (for Corba export).
15430
Daniel Veillarda6e1d121998-10-04 14:41:05 +000015431Sun Oct 4 03:18:09 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
15432
15433 * added xml-config script.
15434
Daniel Veillard7066a791998-10-01 20:28:28 +000015435Thu Oct 1 16:22:37 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
15436
15437 * autogen.sh : applied patch from Frederic Devernay <devernay@istar.fr>
15438 to autoupdate libtool and automake conf files.
15439
Miguel de Icaza60681bd1998-09-30 19:28:59 +0000154401998-09-30 Miguel de Icaza <miguel@nuclecu.unam.mx>
15441
15442 * Makefile.am: Use '?' to separate the sed
15443 commands as ',' is used when people pass -Wl,something.
15444
15445
Daniel Veillard15a8df41998-09-24 19:15:06 +000015446Thu Sep 24 15:13:29 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
15447
15448 * tree.c, tree.h: added a per-document compression interface.
15449
Daniel Veillard151b1b01998-09-23 00:49:46 +000015450Tue Sep 22 20:47:38 EDT 1998
15451
15452 * tree.c, tree.h: added saving with compression and added interfaces
15453 to control the compression level (xmlGetCompressMode,
15454 xmlSetCompressMode) and a new save to filename function (xmlSaveFile).
15455
Daniel Veillard70120ff1998-09-22 00:24:21 +000015456Mon Sep 21 20:11:13 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
15457
15458 * parser.c: corrected a loop for files of size 0
15459
Raja R Harinathd2e3abd1998-08-20 21:52:38 +0000154601998-08-20 Raja R Harinath <harinath@cs.umn.edu>
15461
15462 * error.h: New file. Contains prototyes from `error.c'.
15463
Tom Tromeyc19653d1998-08-14 01:22:43 +000015464Thu Aug 13 19:02:34 1998 Tom Tromey <tromey@cygnus.com>
15465
15466 * Makefile.am (xmlincdir): New macro.
15467 (xmlinc_HEADERS): Renamed from include_HEADERS.
15468
Daniel Veillard845664d1998-08-13 04:43:19 +000015469Thu Aug 13 00:40:14 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
15470
15471 * applied small patch on numeric entities from
15472 Christopher Blizzard <blizzard@appliedtheory.com>
15473
Daniel Veillard260a68f1998-08-13 03:39:55 +000015474Wed Aug 12 23:12:58 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
15475
15476 * New release 0.2, removed the old xml_* files so that it's
15477 coherent with the other CVS base (W3C), far better conformance
15478 to standard, new namespaces, decent entities support, beginning
15479 of a SAX-like interface. Nearly nothing left intact, even the
15480 test examples ...
15481
Christopher Blizzarda36749e1998-07-30 21:47:18 +0000154821998-07-30 Christopher Blizzard <blizzard@appliedtheory.com>
15483
15484 * .cvsignore: Add .deps dir
15485
Daniel Veillardf8015fa1998-07-26 21:31:38 +000015486Sun Jul 26 17:29:52 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
15487
15488 * xml_tree: changed the memory allocation scheme for name in xmlNewNode
15489
Daniel Veillardfe926001998-07-26 04:28:20 +000015490Sun Jul 26 00:17:51 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard01791d51998-07-24 19:24:09 +000015491
Daniel Veillardfe926001998-07-26 04:28:20 +000015492 * configure.in: added test for CPP
15493 * AUTHORS, Changelog: the original ones didn't get commited but the
15494 glib ones instead, fixed.
15495 * Makefile.am: corrected an error in library naming
Daniel Veillard01791d51998-07-24 19:24:09 +000015496
Daniel Veillardfe926001998-07-26 04:28:20 +000015497Fri Jul 24 16:47:14 1998 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard01791d51998-07-24 19:24:09 +000015498
Daniel Veillardfe926001998-07-26 04:28:20 +000015499 * integrated code developped at W3C
15500 * changed the original Copyright
15501 * migrated to automake
15502 * prefixed the filenames by xml_ to avoid filename clashes
Daniel Veillard01791d51998-07-24 19:24:09 +000015503