blob: a54cb3d76f8755dbf2423b5571f216470cec8bd5 [file] [log] [blame]
Daniel Veillard6f4561a2002-03-25 12:10:14 +00001Mon Mar 25 13:08:21 CET 2002 Daniel Veillard <daniel@veillard.com>
2
3 * valid.c SAX.c: Never commit without running "make tests" :-(
4 fix a couple of stupidities in the previous commit
5 * result/*: a few changes in some attribute order result of previous
6 commit.
7
Daniel Veillardd85f4f42002-03-25 10:48:46 +00008Mon Mar 25 11:46:05 CET 2002 Daniel Veillard <daniel@veillard.com>
9
10 * valid.c SAX.c: fixed bug #76168, attribute redeclared in
11 the internal subset should not raise duplicate ID errors,
12 also there was a small bug in conjunction to namespace
13 declarations defaulted and xml:xxx attributes DTD definitions.
14
Daniel Veillard56cd18b2002-03-22 14:14:43 +000015Fri Mar 22 15:13:49 CET 2002 Daniel Veillard <daniel@veillard.com>
16
17 * xpath.c: Richard Jinks also raised some rounding problems
18 this tries to fix them
19
Daniel Veillard4e2df542002-03-22 12:23:14 +000020Fri Mar 22 13:22:09 CET 2002 Daniel Veillard <daniel@veillard.com>
21
22 * xpath.c: Richard Jinks spotted an incoherent memory allocation
23 behaviour in xmlXPathCastToString()
24
Daniel Veillarddb552912002-03-21 13:27:59 +000025Thu Mar 21 14:25:29 CET 2002 Daniel Veillard <daniel@veillard.com>
26
27 * encoding.c: fixed a bug in the ISO-Latin 1 to UTF8 encoder
28 raised by Morus Walter
29
Daniel Veillard9e537932002-03-21 13:08:08 +000030Thu Mar 21 14:07:13 CET 2002 Daniel Veillard <daniel@veillard.com>
31
32 * xmlcatalog.c include/libxml/xmlversion.h.in: applied 2 fixups
33 from Igor
34
Daniel Veillard6fbcf422002-03-21 12:32:59 +000035Thu Mar 21 13:30:06 CET 2002 Daniel Veillard <daniel@veillard.com>
36
37 * xpath.c: fixing #75619, related to a problem when trying
38 to evaluate condition when the current node set resulting
39 from that sub-step evaluation is empty. Also fixes 2 potential
40 problem with previous-sibling and next-siblings axis.
41
Daniel Veillard1840ef02002-03-21 08:05:23 +000042Thu Mar 21 09:03:59 CET 2002 Daniel Veillard <daniel@veillard.com>
43
44 * c14n.c: patch from Mark Vakoc to build C14N if DocBook and
45 HTML support is not configured in.
46
Daniel Veillard561b7f82002-03-20 21:55:57 +000047Wed Mar 20 22:42:42 CET 2002 Daniel Veillard <daniel@veillard.com>
48
49 * HTMLparser.c error.c parser.c parserInternals.c tree.c xmlIO.c
50 include/libxml/tree.h: dohh I really didn't intended to commit
51 this test version :-(
52
Daniel Veillarde50f3b52002-03-20 19:24:21 +000053Wed Mar 20 20:20:57 CET 2002 Daniel Veillard <daniel@veillard.com>
54
55 * testSAX.c: I wanted to see the real speed at the SAX interface
56 after a little too many Ximianer started complaining about the
57 parser speed.
58 added a --quiet option:
59 paphio:~/XML -> ls -l db100000.xml
60 -rw-rw-r-- 1 veillard www 20182040 Mar 20 10:30 db100000.xml
61 paphio:~/XML -> time ./testSAX --quiet db100000.xml
62 3200006 callbacks generated
63 real 0m1.270s
64 Which means 16MBytes/s and 3Mcallback/s
65
Daniel Veillardc62a1472002-03-19 18:35:12 +000066Tue Mar 19 19:33:57 CET 2002 Daniel Veillard <daniel@veillard.com>
67
68 * xpath.c: valgrind spotted another error that time when running
69 on libxslt regression tests
70
Daniel Veillard4b3a84f2002-03-19 14:36:46 +000071Tue Mar 19 15:24:49 CET 2002 Daniel Veillard <daniel@veillard.com>
72
73 * Makefile.am: adding "make valgrind" running the full regression
74 tests (except python ones) under Valgrind (using valgrind -q
75 which was kindly added by the author).
76 * valid.c: stupid bug pinpointed by Valgrind, the regression tests
77 passes cleanly now except an obcure floating point initialization
78 raised in log10() in one XPath regression test ???
79 * tree.c: edited some comments to close #75244
80
Daniel Veillard28cac6b2002-03-19 11:25:30 +000081Tue Mar 19 12:15:20 CET 2002 Daniel Veillard <daniel@veillard.com>
82
83 * xpath.c: pretty insane thing, the xmlXPathFormatNumber()
84 was not serializing 1 as "1" if LC_ALL=sv_SE :-( and in the
85 context of ScrollKeeper, made sure that if the number is
86 an integer, the serialization follows the description at
87 http://www.w3.org/TR/xpath#section-String-Functions
88
Daniel Veillard5997aca2002-03-18 18:36:20 +000089Mon Mar 18 19:18:13 CET 2002 Daniel Veillard <daniel@veillard.com>
90
Daniel Veillard34ce8be2002-03-18 19:37:11 +000091 * configure.in: preparing 2.4.18
92 * doc/*: updated and rebuilt the web site
93 * *.c libxml.h: implement the new IN_LIBXML scheme discussed with
94 the Windows and Cygwin maintainers.
Daniel Veillard5997aca2002-03-18 18:36:20 +000095 * parser.c: humm, changed the way the SAX parser work when
96 xmlSubstituteEntitiesDefault(1) is set, it will then
97 do the entity registration and loading by itself in case the
98 user provided SAX getEntity() returns NULL.
99 * testSAX.c: added --noent to test the behaviour.
100
Daniel Veillardb5a60ec2002-03-18 11:45:56 +0000101Mon Mar 18 12:44:23 CET 2002 Daniel Veillard <daniel@veillard.com>
102
103 * parser.c: Wilfried Teiken provided a hackish but working
104 way to get context reported back on entities when parsing
105 with SAX and without breaking the DOM build.
106
Daniel Veillard2d347fa2002-03-17 10:34:11 +0000107Sun Mar 17 11:31:55 CET 2002 Daniel Veillard <daniel@veillard.com>
108
109 * c14n.c: applied a new patch from Aleksey Sanin
110 * doc/site.xsl doc/xml.html doc/*.html: updated the documentation
111 to reference Aleksey implementation of XML digital Signatures
112
Daniel Veillard38bf6f02002-03-16 22:03:31 +0000113Sat Mar 16 23:01:42 CET 2002 Daniel Veillard <daniel@veillard.com>
114
115 * xpath.c: small fix to avoid potential problem due to
116 ordering of freeing data
117 * python/Makefile.am: people were complaining about
118 the generated file in python dir not being built
119
Daniel Veillardd2379012002-03-15 22:24:56 +0000120Fri Mar 15 23:21:40 CET 2002 Daniel Veillard <daniel@veillard.com>
121
122 * libxml.spec.in python/Makefile.am python/tests/Makefile.am
123 python/generator.py python/libxml.c python/types.c: Cleanup
124 of the python Makefiles based on Jacob and James feedback,
125 fixed the spec file accordingly, fixed the number of warning
126 that passing my pedantic CFLAGS was generating. Conclusion
127 is that Python includes are real crap.
128
Daniel Veillarde7dd2b82002-03-15 18:44:02 +0000129Fri Mar 15 19:41:25 CET 2002 Daniel Veillard <daniel@veillard.com>
130
131 * configure,in: it was reported quite a few times that
132 xml2-config --cflags should not output
133 -I$includeprefix/libxml2/libxml because libxml2 header names
134 clashes with existing names like list.h from C++ stl.
135 Includes should be #include<libxml/xxx.h> so ...
136
Daniel Veillard6f293b12002-03-15 09:42:33 +0000137Fri Mar 15 10:41:50 CET 2002 Daniel Veillard <daniel@veillard.com>
138
139 * c14n.c: another patch from Aleksey Sanin
140
Daniel Veillard5c396542002-03-15 07:57:50 +0000141Fri Mar 15 08:55:55 CET 2002 Daniel Veillard <daniel@veillard.com>
142
143 * c14n.c: applied patch from Aleksey Sanin fixing a problem in the
144 canonicalization algorithm
145 * doc/xml.html doc/index.html: added the C14N references on the
146 index page.
147
jacob berkman9be65862002-03-14 02:15:56 +00001482002-03-13 jacob berkman <jacob@ximian.com>
149
150 * python/Makefile.am: remove LDADD and CFLAGS as this is broken
151 usage, redundant, and gcc specific
152
Daniel Veillard75be0132002-03-13 10:03:35 +0000153Wed Mar 13 11:00:59 CET 2002 Daniel Veillard <daniel@veillard.com>
154
155 * xpath.c: speedup some node selection operations, this can
156 have a significant impact on DocBook Norm's stylesheets
157 * nanohttp.c: someone reported that SOCKLEN_T may not be defined
158 make sure it's always the case
159 * debugXML.c: distinguish CDATA and comments in ls operations
160
Daniel Veillard61f26172002-03-12 18:46:39 +0000161Tue Mar 12 19:45:24 CET 2002 Daniel Veillard <daniel@veillard.com>
162
163 * include/libxml/*.h: Heiko W. Rupp fixed a lot of comments
164 to generate better API descriptions etc...
165
Daniel Veillard9ff88172002-03-11 09:15:32 +0000166Mon Mar 11 10:10:30 CET 2002 Daniel Veillard <daniel@veillard.com>
167
168 * c14n.c: Fixing #74186, made sure all boolean expressions
169 get fully parenthesized, ran indent on the output
170 * configure.in HTMLtree.c SAX.c c14n.c debugXML.c tree.c xpointer.c
171 include/libxml/tree.h: also #74186 related, removed the
172 --with-buffers option, and all the preprocessor conditional
173 sections that were resulting from it.
174
Daniel Veillardbb4e46d2002-03-10 16:49:08 +0000175Sun Mar 10 17:47:58 CET 2002 Daniel Veillard <daniel@veillard.com>
176
177 * valid.c: applied patch from Dodji Seketeli fixing an
178 uninitailized variable in xmlValidGetValidElements()
179
Daniel Veillarddb1bdba2002-03-09 14:13:11 +0000180Sat Mar 9 15:10:49 CET 2002 Daniel Veillard <daniel@veillard.com>
181
182 * c14n.c: fixed a few comments
183 * doc/*.html doc/*/*.html: regenerated the docs and added
184 the C14N API
185 * doc/api.xsl doc/gnome-xml.sgml: fixups and added IDs
186
Daniel Veillardfa49d872002-03-09 10:20:00 +0000187Sat Mar 9 11:16:11 CET 2002 Daniel Veillard <daniel@veillard.com>
188
189 * check-xml-test-suite.py: fix to adapt varaiations in the
190 bindings
191 * configure.in python/setup.py python/setup.py.in: fixed to
192 have the version of the python scripts automatically updated
193
Daniel Veillarda3db2e32002-03-08 15:46:57 +0000194Fri Mar 8 16:45:55 CET 2002 Daniel Veillard <daniel@veillard.com>
195
196 * tree.c: fixed a bug newly introduced and pointed by Uwe Fechner
197 in xmlCopyProp()
198
Daniel Veillardaf43f632002-03-08 15:05:20 +0000199Fri Mar 8 15:49:10 CET 2002 Daniel Veillard <daniel@veillard.com>
200
201 * configure.in: preparing 2.4.17 release
202 * doc/*: updated and rebuilt the docs
203 * xpath.c: fixed a comment
204 * python/libxml.c: fixed a possible reentrancy problem
205
Daniel Veillardef6c46f2002-03-07 22:21:56 +0000206Thu Mar 7 23:19:28 CET 2002 Daniel Veillard <daniel@veillard.com>
207
208 * tree.c python/tests/Makefile.am python/tests/attribs.py:
209 fixed xmlHasNsProp() bugs for defaulted from DTD attribs,
210 added a specific regression test
211 * python/generator.py: xmlHasNsProp() and xmlHasProp() shall
212 not raise exceptions when failing to find the attribute.
213
Daniel Veillard90bc3712002-03-07 15:12:58 +0000214Thu Mar 7 16:11:35 CET 2002 Daniel Veillard <daniel@veillard.com>
215
216 * configure.in xmllint.c: owen pointed out a problem with the
217 ftme fix, gettimeofday() was not detected by configure and
218 the ftime header wasn't included, dohhh
219
Daniel Veillard8c1ae602002-03-07 11:21:00 +0000220Thu Mar 7 12:19:36 CET 2002 Daniel Veillard <daniel@veillard.com>
221
222 * configure.in xmllint.c: trying to fix #71457 for timing
223 precision when gettimeofday() is not availble but ftime() is
224
Daniel Veillardf5a457a2002-03-07 10:25:29 +0000225Thu Mar 7 11:24:02 CET 2002 Daniel Veillard <daniel@veillard.com>
226
227 * libxml.spec.in doc/Makefile.am: Fixed #73408 missing images
228 are now copied on install and part of the -devel RPM
229
Daniel Veillard7b416132002-03-07 08:36:03 +0000230Thu Mar 7 09:34:16 CET 2002 Daniel Veillard <daniel@veillard.com>
231
232 * xpath.c: trying to avoid bug #72150 which was apparently
233 caused by a gcc bug (or a processor problem) as detailed
234 at http://veillard.com/gcc.bug
235
Daniel Veillardf742d342002-03-07 00:05:35 +0000236Thu Mar 7 01:02:37 CET 2002 Daniel Veillard <daniel@veillard.com>
237
238 * tree.c python/tests/Makefile.am python/tests/cutnpaste.py:
239 fixed xmlReconciliateNs(), added a Python test/example for
240 inter-document cut'n paste
241 * python/libxml.py: fixed node.doc on document nodes and added
242 xpathEval() onto node objects
243
Daniel Veillard4e0e2972002-03-06 21:39:42 +0000244Wed Mar 6 22:38:03 CET 2002 Daniel Veillard <daniel@veillard.com>
245
246 * HTMLtree.c: fixed some htmlSetMetaEncoding() problems
247 * python/libxml.c python/tests/Makefile.am python/tests/serialize.py:
248 fixup and integrated tests for the serialization stuff
249
Daniel Veillarde915b2d2002-03-06 18:42:40 +0000250Wed Mar 6 19:40:57 CET 2002 Daniel Veillard <daniel@veillard.com>
251
252 * Makefile.am libxml.3 libxml.4 libxml.spec.in: Fixed bug #72570
253 moved the libxml man page to section 3
254
Daniel Veillard1e774382002-03-06 17:35:40 +0000255Wed Mar 6 18:34:07 CET 2002 Daniel Veillard <daniel@veillard.com>
256
257 * tree.c: fix bug #72490
258 * python/libxml.c python/libxml.py: added methods serialize()
259 and saveTo() to all node elements.
260
Daniel Veillardddffd2a2002-03-05 20:28:20 +0000261Tue Mar 5 21:27:03 CET 2002 Daniel Veillard <daniel@veillard.com>
262
263 * xmlIO.c: closed #73430, don't read from an input source
264 which indicated an end-of-file or an error.
265
Daniel Veillard8d24cc12002-03-05 15:41:29 +0000266Tue Mar 5 16:33:42 CET 2002 Daniel Veillard <daniel@veillard.com>
267
268 * parser.c: make sure SAX endDocument is always called as
269 this could result in a Python memory leak otherwise (it's
270 used to decrement ref-counting)
271 * python/generator.py python/libxml.c python/libxml.py
272 python/libxml2-python-api.xml python/libxml2class.txt
273 python/tests/error.py python/tests/xpath.py: implemented
274 the suggestions made by Gary Benson and extended the tests
275 to match it.
276
Daniel Veillardba5e18a2002-03-05 09:36:43 +0000277Tue Mar 5 10:35:24 CET 2002 Daniel Veillard <daniel@veillard.com>
278
279 * python/generator.py: applied patch fixing #73450
280
Daniel Veillard044fc6b2002-03-04 17:09:44 +0000281Mon Mar 4 17:59:29 CET 2002 Daniel Veillard <daniel@veillard.com>
282
283 * xpath.c: fixing #61290 "namespace nodes have no parent"
284 long standing divergence from the XPath REC. NodeSets
285 simply hold a copy of namespace nodes and those node ->next
286 points to the parent (which may not be the node carrying the
287 definition).
288 * include/libxml/xpath.h: flagged but didn't added a possible
289 speedup
290 * DOCBparser.c HTMLparser.c: removed some warnings from push
291 parser due to new state being added.
292 * tree.c: new fix from Boris Erdmann
293 * configure.in c14n.c include/libxml/c14n.h testC14N.c: added
294 the XML Canonalization support from Aleksey Sanin
295
Daniel Veillardd4f41aa2002-03-03 14:13:46 +0000296Sun Mar 3 15:12:42 CET 2002 Daniel Veillard <daniel@veillard.com>
297
298 * tree.c: patch from Boris Erdmann fixing some namespace odities
299 with xmlCopyNode()
300
Daniel Veillardc6613042002-03-02 09:34:02 +0000301Sat Mar 2 10:33:04 CET 2002 Daniel Veillard <daniel@veillard.com>
302
303 * xmlIO.c: fix bug #72706 when loading a NULL entity
304
Daniel Veillardc0fef772002-03-01 16:16:31 +0000305Fri Mar 1 17:14:42 CET 2002 Daniel Veillard <daniel@veillard.com>
306
307 * SAX.c: Fixed #72346, about handling of xmlns:foo="", this could
308 actually change in a future XML Namespace revision.
309
Daniel Veillard79426f22002-03-01 16:14:17 +0000310Fri Mar 1 17:12:15 CET 2002 Daniel Veillard <daniel@veillard.com>
311
312 * python/types.c python/tests/Makefile.am python/tests/xpathret.py:
313 added the possibility of returning nodesets from XPath extension
314 functions written in Python
315
Daniel Veillarda94ec6f2002-03-01 13:00:53 +0000316Fri Mar 1 13:56:12 CET 2002 Daniel Veillard <daniel@veillard.com>
317
318 * python/*: commiting some Python bindings work done while travelling
319
Daniel Veillard97300512002-03-01 09:13:41 +0000320Fri Mar 1 10:11:15 CET 2002 Daniel Veillard <daniel@veillard.com>
321
322 * xmllint.c: close #72663 and #72658, don't memdump unless compiled
323 explicitely with memory debugging switched on
324
Daniel Veillard6361da02002-02-23 10:10:33 +0000325Sat Feb 23 11:08:09 CET 2002 Daniel Veillard <daniel@veillard.com>
326
327 * python/generator.py python/libxml.c python/libxml2-python-api.xml
328 python/libxml2class.txt python/libxml_wrap.h python/types.c:
329 Added wrapper for the xmlURIPtr type, provided accessors, fixed
330 the accessor generator for strings
331 * python/tests/Makefile.am python/tests/tstURI.py: added a specific
332 regression test.
333
Daniel Veillard0fea6f42002-02-22 22:51:13 +0000334Fri Feb 22 23:44:57 CET 2002 Daniel Veillard <daniel@veillard.com>
335
336 * python/README python/generator.py python/libxml.c python/setup.py:
337 added the 'usual' setup.py to allow building a libxml2-python
338 module based on the same code. The initialization is however
339 different the 2 .so files fo libxml2 and libxslt are identical and
340 they entry point initialize both libraries. this is done to avoid
341 some possible nasty problem since the Python don't merge the maps
342 of all shared modules.
343
Daniel Veillard158a4d22002-02-20 22:17:58 +0000344Wed Feb 20 23:16:08 CET 2002 Daniel Veillard <daniel@veillard.com>
345
346 * parser.c: fixed a push/encoding bug reported by Michael
347 on librsvg
348
Daniel Veillard7839e162002-02-20 18:54:48 +0000349Wed Feb 20 19:54:05 CET 2002 Daniel Veillard <daniel@veillard.com>
350
351 * include/libxml/parserInternals.h: fixes a misplaced #endif
352
Daniel Veillardd54fa3e2002-02-20 16:48:52 +0000353Wed Feb 20 17:47:55 CET 2002 Daniel Veillard <daniel@veillard.com>
354
355 * parser.c valid.c: found and fixed a couple of allocation bugs
356
Daniel Veillard6dbcaf82002-02-20 14:37:47 +0000357Wed Feb 20 15:36:03 CET 2002 Daniel Veillard <daniel@veillard.com>
358
359 * doc/xml.html doc/python.html doc/*: added a Python and binding
360 page describing the current state of the Python bindings and
361 giving pointers to the other languages wrappers.
362
Daniel Veillard5f4b5992002-02-20 10:22:49 +0000363Wed Feb 20 11:16:15 CET 2002 Daniel Veillard <daniel@veillard.com>
364
365 * configure.in include/libxml/xmlwin32version.h: preparing 2.4.16
366 * doc/* python/libxml2class.txt: updated and rebuilt the docs,
367 rebuilt the API and web site
368 * xpath.c: fixed #71978 portability bugs
369
Daniel Veillard8aff2472002-02-19 21:50:43 +0000370Tue Feb 19 22:49:36 CET 2002 Daniel Veillard <daniel@veillard.com>
371
372 * SAX.c: oops broke automatic defaulting of namespaces attributes.
373
Daniel Veillard8dc16a62002-02-19 21:08:48 +0000374Tue Feb 19 22:01:35 CET 2002 Daniel Veillard <daniel@veillard.com>
375
376 * include/libxml/parserInternals.h parser.c: had to change
377 2 internal parsing API when processing document content
378 to check the start and end of element content are defined
379 in the same entity
380 * valid.c include/libxml/valid.h: attribute normalization can
381 generate a validity error added xmlValidCtxtNormalizeAttributeValue()
382 with the context to report it.
383 * SAX.c: fixed the last known bugs, crazy validation constraints
384 when a document is standalone seems correctly handled. There
385 is a couple of open issues left which need consideration especially
386 PE93 on external unparsed entities and standalone status.
387 Ran 1819 tests: 1817 suceeded, 2 failed and 0 generated an error in 8.26 s.
388 The 2 tests left failing are actually in error. Cleanup done.
389
Daniel Veillardd6dc4cb2002-02-19 14:18:08 +0000390Tue Feb 19 15:17:02 CET 2002 Daniel Veillard <daniel@veillard.com>
391
392 * valid.c: implemented E59 spaces in CDATA does not match the
393 nonterminal S
394
Daniel Veillard878eab02002-02-19 13:46:09 +0000395Tue Feb 19 14:44:53 CET 2002 Daniel Veillard <daniel@veillard.com>
396
397 * SAX.c parser.c valid.c: more validation test fixups
398 * check-xml-test-suite.py: added duration info for the tests
399
Daniel Veillardd01fd3e2002-02-18 22:27:47 +0000400Mon Feb 18 23:25:08 CET 2002 Daniel Veillard <daniel@veillard.com>
401
402 * parser.c valid.c: a couple of errors were reported but not
403 saved back as such in the parsing context. Down to 1% failure rate
404 Ran 1819 tests: 1801 suceeded, 18 failed and 0 generated an error
405
Daniel Veillard4a7ae502002-02-18 19:18:17 +0000406Mon Feb 18 20:16:15 CET 2002 Daniel Veillard <daniel@veillard.com>
407
408 * xmlInternald.c: isExtender was missing a char
409 * parser.c include/libxml/parser.h: % are acceptable in the
410 internal subset if within a PUBLIC ID
411
Daniel Veillard8ab0f582002-02-18 18:31:38 +0000412Mon Feb 18 19:27:32 CET 2002 Daniel Veillard <daniel@veillard.com>
413
414 * SAX.c parserInternals.c valid.c: more work on the conformance
415 suite. Took the step to finally block documents with encoding
416 errors. It's a fatal error per the spec, people should have fixed
417 their documents by now.
418
Daniel Veillard55253e22002-02-18 14:32:39 +0000419Mon Feb 18 15:30:14 CET 2002 Daniel Veillard <daniel@veillard.com>
420
421 * check-xml-test-suite.py: fixed the test script after some discussion
422 on the semantic of TYPE="error"
423 * Makefile.am: added the script to the distrib
424
Daniel Veillard28757702002-02-18 11:19:30 +0000425Mon Feb 18 12:17:41 CET 2002 Daniel Veillard <daniel@veillard.com>
426
427 * SAX.c entities.c: fixed a couple of conformances issues deep
428 into the validation code (standalone and undeclared Notations)
429
Daniel Veillard82ac6b02002-02-17 23:18:55 +0000430Mon Feb 18 00:17:24 CET 2002 Daniel Veillard <daniel@veillard.com>
431
432 * parser.c: fixed #71741 supid typo an a bug about encoding parsing
433 stayed there for years !
434
Daniel Veillard7aea52d2002-02-17 23:07:47 +0000435Mon Feb 18 00:06:42 CET 2002 Daniel Veillard <daniel@veillard.com>
436
437 * valid.c SAX.c: fixed #71740 NotationDecl with a required field
438 missing
439
Daniel Veillardc7612992002-02-17 22:47:37 +0000440Sun Feb 17 23:45:40 CET 2002 Daniel Veillard <daniel@veillard.com>
441
442 * check-xml-test-suite.py: improved the behaviour a bit as
443 well as the logs
444 * parser.c valid.c SAX.c: fixed a few more bugs
445 "Ran 1819 tests: 1778 suceeded, 41 failed, and 0 generated an error"
446
Daniel Veillardbb7ddb32002-02-17 21:26:33 +0000447Sun Feb 17 20:41:37 CET 2002 Daniel Veillard <daniel@veillard.com>
448
449 * check-xml-test-suite.py: python script to run regression tests
450 against the XML Test suite of W3C/OASis
451 * SAX.c: fixed a validation bug
452 * parser.c: fixed 3 errors pointed by the test suite
453 * doc/buildDocBookCatalog: fixed a typo pointed by drake
454 * python/Makefile.am: fixed a dependendy
455
Daniel Veillard9f28f302002-02-15 20:48:08 +0000456Fri Feb 15 21:47:13 CET 2002 Daniel Veillard <daniel@veillard.com>
457
458 * xmlmemory.c: avoid a warning bug #71594
459
Daniel Veillard144024e2002-02-13 21:14:46 +0000460Wed Feb 13 22:13:33 CET 2002 Daniel Veillard <daniel@veillard.com>
461
462 * xmlmemory.c: Jesse Perry provided a patch to remove a few
463 warning on alpha/Tru64
464
Daniel Veillarde4301c82002-02-13 13:32:35 +0000465Wed Feb 13 14:30:49 CET 2002 Daniel Veillard <daniel@veillard.com>
466
467 * include/libxml/entities.h: fixing a comment
468 * valid.c: fixing some troubles with validity check on namespaces
469 * result/VC/NS3 test/VC/NS3: added a specific regression test
470
Daniel Veillarda6d05382002-02-13 13:07:41 +0000471Wed Feb 13 14:05:24 CET 2002 Daniel Veillard <daniel@veillard.com>
472
473 * tree.c: Fixing #71342 serializing '\n' in attribute values
474 * result/noent/att3 result/att3 test/att3: added a specific
475 test.
476
Daniel Veillard797a5652002-02-12 13:46:21 +0000477Tue Feb 12 14:45:32 CET 2002 Daniel Veillard <daniel@veillard.com>
478
479 * python/libxml.c: couple of bug fixes
480
Daniel Veillard01a6d412002-02-11 18:42:20 +0000481Mon Feb 11 19:41:29 CET 2002 Daniel Veillard <daniel@veillard.com>
482
483 * python/*.py: removed tabs and used spaces.
484
Daniel Veillard397ff112002-02-11 18:27:20 +0000485Mon Feb 11 19:25:44 CET 2002 Daniel Veillard <daniel@veillard.com>
486
487 * configure.in include/libxml/xmlwin32version.h: preparing 2.4.15
488 * doc/news.html doc/xml.html doc/xmlio.html: rebuilt some docs
489
Daniel Veillard03517542002-02-11 13:54:40 +0000490Mon Feb 11 14:53:24 CET 2002 Daniel Veillard <daniel@veillard.com>
491
492 * doc/xmlcatalog_man.xml: trying to close Red Hat bug #58707
493 https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=58707
494
Daniel Veillard6c4ffaf2002-02-11 08:54:05 +0000495Mon Feb 11 09:53:02 CET 2002 Daniel Veillard <daniel@veillard.com>
496
497 * include/libxml/encoding.h include/libxml/entities.h
498 include/libxml/globals.h include/libxml/parser.h
499 include/libxml/threads.h include/libxml/tree.h
500 include/libxml/xmlmemory.h: trying to fix the include mess
501
Daniel Veillard1a612ed2002-02-11 07:54:45 +0000502Mon Feb 11 08:53:33 CET 2002 Daniel Veillard <daniel@veillard.com>
503
504 * include/libxml/xmlmemory.h: reverted part of the previous
505 attempt to provide #69655, this was breaking the build.
506
Daniel Veillard0ba59232002-02-10 13:20:39 +0000507Sun Feb 10 14:13:34 CET 2002 Daniel Veillard <daniel@veillard.com>
508
509 * HTMLtree.c Makefile.am build_glob.py configure.in debugXML.c
510 globals.c parser.c threads.c tree.c valid.c xmlmemory.c
511 xpath.c xpointer.c include/libxml/globals.h include/libxml/parser.h
512 include/libxml/parserInternals.h include/libxml/tree.h
513 include/libxml/xmlmemory.h include/libxml/xpathInternals.h:
514 Tentatively fixed #69655 , make compiling with -Wredundant-decls
515 clean.
516 * python/libxml.c: fixed a warning.
517
Daniel Veillardc5f05ad2002-02-10 11:57:22 +0000518Sun Feb 10 12:02:59 CET 2002 Daniel Veillard <daniel@veillard.com>
519
520 * tree.c valid.c xinclude.c: fix #68882, cleanup the XInclude
521 copying of node, merge back IDs in the target document.
522 * result/XInclude/docids.xml test/XInclude/docs/docids.xml
523 test/XInclude/ents/ids.xml: test case
524 * result/VC/ElementValid4: output changed due to a typo fix
525
Daniel Veillard1c18e302002-02-09 22:16:40 +0000526Sat Feb 9 23:15:04 CET 2002 Daniel Veillard <daniel@veillard.com>
527
528 * python/Makefile.am: seems some version of automake didn't
529 generate the dependancies right as Jacob found out. Add
530 an extra dependancy rule.
531
Daniel Veillard5e5c2d02002-02-09 18:03:01 +0000532Sat Feb 9 18:59:23 CET 2002 Daniel Veillard <daniel@veillard.com>
533
534 * parserInternals.c valid.c: Justin Fletcher found some parts
535 of the code needing cleanup
536 * libxml.spec.in python/Makefile.am python/generator.py
537 python/libxml.c python/libxml.py: Fixed the python Makefiles
538 corrected a bug showing up on ia64, changed the name of the
539 python internal module too
540
Daniel Veillard07be19b2002-02-08 14:20:35 +0000541Fri Feb 8 15:19:28 CET 2002 Daniel Veillard <daniel@veillard.com>
542
543 * Makefile.am: applied patch from Andris Pavenis for binary
544 name suffixes
545
Daniel Veillardf216d462002-02-08 13:44:24 +0000546Fri Feb 8 14:43:17 CET 2002 Daniel Veillard <daniel@veillard.com>
547
548 * xmllint.c win32/win32config.h: fixing #68748
549
Daniel Veillardd455d792002-02-08 13:37:46 +0000550Fri Feb 8 14:37:05 CET 2002 Daniel Veillard <daniel@veillard.com>
551
552 * valid.c: fixing #70166
553
554Fri Feb 8 14:31:24 CET 2002 Daniel Veillard <daniel@veillard.com>
555
556 * valid.c: fixing #70077
557
Daniel Veillardc575b992002-02-08 13:28:40 +0000558Fri Feb 8 14:24:02 CET 2002 Daniel Veillard <daniel@veillard.com>
559
560 * Copyright Makefile.am README configure.in libxml.spec.in:
561 Changed to the MIT Licence
562 * doc/FAQ.html doc/catalog.html doc/intro.html doc/xml.html
563 doc/xmlio.html: updated the doc accordingly
564 * include/libxml/xmlwin32version.h configure.in: preparing
565 2.4.14 release
566 * python/generator.py python/libxml.c python/libxml2-python-api.xml
567 python/libxml2class.txt python/libxml_wrap.h python/types.c:
568 fixed the const xmlChar * wrapper and generator, XPath extension
569 functions now use the context as first argument
570 * python/tests/tstxpath.py python/tests/xpath.py
571 python/tests/xpathext.py: Updated the tests accordingly
572 * tree.c: fixed bug #70067
573
Daniel Veillard7db38712002-02-07 16:39:11 +0000574Thu Feb 7 17:33:58 CET 2002 Daniel Veillard <daniel@veillard.com>
575
576 * Makefile.am: cleanup
577 * debugXML.c: always use stdout if output is NULL
578 * xmlIO.c: don't close filedescriptors passed to outputBuffers
579 * python/Makefile.am python/generator.py python/libxml2class.txt
580 python/libxml_wrap.h python/types.c: augmented the number of bindings
581 handling FILE * and XPath contexts
582 * python/tests/Makefile.am: avoid a stupid problem due to the
583 use of TEST.
584
Daniel Veillard15a143b2002-02-06 22:40:50 +0000585Wed Feb 6 23:37:07 CET 2002 Daniel Veillard <daniel@veillard.com>
586
587 * configure.in: fixed stupid bug #70738 found by alfons hoogervorst
588
Daniel Veillard70cab352002-02-06 16:06:58 +0000589Wed Feb 6 17:04:51 CET 2002 Daniel Veillard <daniel@veillard.com>
590
591 * python/TODO python/libxml.c: cleanup the extension function lookup
592 * xmlmemory.c include/libxml/xmlmemory.h: always compile the list
593
Daniel Veillard7a96efc2002-02-05 16:34:33 +0000594Tue Feb 5 17:33:30 CET 2002 Daniel Veillard <daniel@veillard.com>
595
596 * configure.in python/Makefile.am: do not install outside
597 of prefix
598
Daniel Veillard33caa0b2002-02-04 14:07:26 +0000599Mon Feb 4 15:05:55 CET 2002 Daniel Veillard <daniel@veillard.com>
600
601 * python/TODO python/libxml.c: started adding SAX interfaces
602 * python/tests/Makefile.am python/tests/pushSAX.py: added a basic
603 SAX test
604
Daniel Veillard36eea2d2002-02-04 00:17:01 +0000605Mon Feb 4 01:12:42 CET 2002 Daniel Veillard <daniel@veillard.com>
606
607 * tree.c: hardened the addChild function
608 * python/generator.py python/libxml.c python/libxml2-python-api.xml
609 python/libxml2class.txt python/libxml_wrap.h python/TODO:
610 added accessors needed for xmlNode, a bit more testing and
611 extension of interfaces
612 * python/tests/Makefile.am python/tests/build.py: added a test
613 build from scratch/save/load/check
614
Daniel Veillard4e1b26c2002-02-03 20:13:06 +0000615Sun Feb 3 21:10:39 CET 2002 Daniel Veillard <daniel@veillard.com>
616
617 * parserInternals.c: change a small bit in the way valididy
618 error messages get initialized
619 * python/TODO python/libxml.c python/libxml2-python-api.xml
620 python/libxml2class.txt python/libxml_wrap.h python/types.c:
621 added some memory debugging to track leaks at the libxml2 level
622 * python/tests/*.py: changed all tests to check for leaks,
623 there is just one left in XPath extension registrations.
624
Daniel Veillard26f1dcc2002-02-03 16:53:19 +0000625Sun Feb 3 17:50:46 CET 2002 Daniel Veillard <daniel@veillard.com>
626
627 * python/TODO python/generator.py python/libxml2-python-api.xml
628 python/libxml2class.txt: more accessor classes for the parser
629 context, allow to switch on and check validity
630 * python/tests/Makefile.am python/tests/error.py
631 python/tests/invalid.xml python/tests/valid.xml
632 python/tests/validate.py: attded more test and and added error.py
633 which I forgot to commit in the last step
634
Daniel Veillard3ce52572002-02-03 15:08:05 +0000635Sun Feb 3 16:03:55 CET 2002 Daniel Veillard <daniel@veillard.com>
636
637 * python/Makefile.am python/types.c: cleanup
638 * python/libxml.c python/libxml.py python/libxml_wrap.h
639 python/generator.py python/libxml2-python-api.xml
640 python/libxml2class.txt: added class for parser context, added
641 first cut for push mode support. Added a framework to generate
642 accessors functions.
643 * python/tests/Makefile.am python/tests/push.py: added a push
644 test
645
Daniel Veillardcfb05462002-02-02 23:18:22 +0000646Sun Feb 3 00:17:26 CET 2002 Daniel Veillard <daniel@veillard.com>
647
648 * python/Makefile.am python/TODO python/libxml.py: fixed a small
649 bug a bit of cleanup.
650
Daniel Veillard5d819032002-02-02 21:49:17 +0000651Sat Feb 2 22:47:10 CET 2002 Daniel Veillard <daniel@veillard.com>
652
653 * python/Makefile.am python/libxml.c python/libxml2-python-api.xml
654 python/libxml2class.txt: adding error redirections and preformat
655 to a python handler
656 * python/tests/Makefile.am python/tests/*.py: cleanup made all
657 tests self checking
658
Daniel Veillard7fd7a942002-02-02 12:19:46 +0000659Sat Feb 2 13:18:54 CET 2002 Daniel Veillard <daniel@veillard.com>
660
661 * python/libxml.c python/libxml.py: fixed a stupid bug when renaming
662 a function
663
Daniel Veillard9589d452002-02-02 10:28:17 +0000664Sat Feb 2 11:25:51 CET 2002 Daniel Veillard <daniel@veillard.com>
665
666 * libxml.spec.in python/Makefile.am python/TODO python/generator.py
667 python/libxml.c python/libxml2-python-api.xml
668 python/libxml2class.txt: Progressing through the TODOs, class
669 description output, extra XML API, RPM now builds the wrappers
670 for all python installed versions
671
Daniel Veillard253aa2c2002-02-02 09:17:16 +0000672Sat Feb 2 10:13:52 CET 2002 Daniel Veillard <daniel@veillard.com>
673
674 * configure.in libxml.spec.in python/Makefile.am python/TODO
675 python/generator.py python/libxml2class.txt: added more informations
676 in the libxml2-python package including docs. Slightly changed
677 the class hierarchy
678 * python/tests/*: added basic regression tests infrastructure too
679
680Fri Feb 1 23:11:58 CET 2002 Daniel Veillard <daniel@veillard.com>
681
682 * configure.in libxml.spec.in example/Makefile.am python/Makefile.am:
683 added libxml2-python as part of the packages installed
684
Daniel Veillarda7340c82002-02-01 17:56:45 +0000685Fri Feb 1 18:48:19 CET 2002 Daniel Veillard <daniel@veillard.com>
686
687 * python/Makefile.am python/generator.py python/libxml.c
688 python/libxml.py: more work, now able to extend the
689 XPath interpreter with functions written in python.
690
Daniel Veillardc3e39442002-02-01 09:29:41 +0000691Fri Feb 1 10:28:51 CET 2002 Daniel Veillard <daniel@veillard.com>
692
693 * python/Makefile.am: Jacob sent a patch to allow building from
694 tarfile.
695
Daniel Veillardf1d0e6b2002-01-31 23:42:44 +0000696Fri Feb 1 00:40:48 CET 2002 Daniel Veillard <daniel@veillard.com>
697
698 * python/Makefile.am python/libxml.c configure.in Makefile.am:
699 inserted the python wrappers build, I hope this won't be too
700 unportable
701
Daniel Veillard1971ee22002-01-31 20:29:19 +0000702Thu Jan 31 21:27:37 CET 2002 Daniel Veillard <daniel@veillard.com>
703
704 * xpath.c: minor optimization
705 * python/generator.py python/libxml.c python/libxml.py
706 python/libxml_wrap.h: more work on the python bindings,
707 they now support XPath and there is no evident leak
708
Daniel Veillard36ed5292002-01-30 23:49:06 +0000709Thu Jan 31 00:48:06 CET 2002 Daniel Veillard <daniel@veillard.com>
710
711 * python/generator.py python/libxml.c python/libxml.py:
712 more work on the python bindings generator.
713
Daniel Veillard96fe0952002-01-30 20:52:23 +0000714Wed Jan 30 21:51:26 CET 2002 Daniel Veillard <daniel@veillard.com>
715
716 * python/generator.py python/libxml.c python/libxml_wrap.h:
717 more work on the python bindings.
718
Daniel Veillardd2897fd2002-01-30 16:37:32 +0000719Wed Jan 30 17:35:33 CET 2002 Daniel Veillard <daniel@veillard.com>
720
721 * python/generator.py python/libxml.c python/libxml.py
722 python/libxml_wrap.h: commited early version of a python binding
723 for private use only ATM
724
Daniel Veillard8ee9c8f2002-01-26 21:42:58 +0000725Sat Jan 26 22:41:13 CET 2002 Daniel Veillard <daniel@veillard.com>
726
727 * entities.c tree.c include/libxml/entities.h: applied patch
728 from Anthony Jones to implement copy of DTD subtree too. Had
729 just to keep 2 function private which really ought to become
730 public ones.
731
Daniel Veillarda42f25f2002-01-25 14:15:40 +0000732Fri Jan 25 15:14:55 CET 2002 Daniel Veillard <daniel@veillard.com>
733
734 * xmllint.c: added pointers to the web pages in the usage()
735
Daniel Veillardbd227ae2002-01-24 16:05:41 +0000736Thu Jan 24 17:04:04 CET 2002 Daniel Veillard <daniel@veillard.com>
737
738 * tree.c: more fixes from Petr Kozelka for attribute handling
739 in the tree API to align the semantic with DOM.
740
Daniel Veillard36065812002-01-24 15:02:46 +0000741Thu Jan 24 16:00:53 CET 2002 Daniel Veillard <daniel@veillard.com>
742
743 * valid.c tree.c entities.c: another set of patches from
744 Anthony Jones for copy operations cleanup and robustness
745
Daniel Veillardf8592562002-01-23 17:58:17 +0000746Wed Jan 23 18:53:55 CET 2002 Daniel Veillard <daniel@veillard.com>
747
748 * doc/APIchunk*.html doc/parsedecl.py doc/api.xsl: generated
749 an alphabetic index based on comments content
750 * doc/*: rebuilt the web site with the new references
751
Daniel Veillardc8c7be42002-01-23 17:53:44 +0000752Wed Jan 23 15:14:22 CET 2002 Daniel Veillard <daniel@veillard.com>
753
754 * parserInternals.h: Greg Sjaardema suggested to use an
755 eponential buffer groth policy in xmlParserAddNodeInfo()
756
Daniel Veillard3bf65be2002-01-23 12:36:34 +0000757Wed Jan 23 13:32:40 CET 2002 Daniel Veillard <daniel@veillard.com>
758
759 * doc/api.xsl doc/APIconstructors.html doc/APIfiles.html
760 doc/APIfunctions.html doc/APIsymbols.html doc/libxml2-refs.xml
761 doc/parsedecl.py doc/Makefile.am: updated the python extractor
762 to generate cross-references, and added/updated the stylesheets
763 to generate and link API indexes. The generic keyword index
764 is not done yet.
765 * doc/*.html: regenerated all the usual docs too
766
Daniel Veillard2070c482002-01-22 22:12:19 +0000767Tue Jan 22 23:11:26 CET 2002 Daniel Veillard <daniel@veillard.com>
768
769 * debugXML.c: added an xpath function to the shell for T. V. Raman
770
771Tue Jan 22 22:42:23 CET 2002 Daniel Veillard <daniel@veillard.com>
Daniel Veillard5e926fa2002-01-22 21:44:25 +0000772
773 * debugXML.c: patch from Anthony Jones to catch NULL nodes in
774 debug routines.
775
Daniel Veillardc169f8b2002-01-22 21:40:13 +0000776Tue Jan 22 22:38:42 CET 2002 Daniel Veillard <daniel@veillard.com>
777
778 * tree.c: apply an patch from Petr Kozelka for unlink and replace
779 support of attribute nodes
780
Daniel Veillard9d06d302002-01-22 18:15:52 +0000781Tue Jan 22 19:12:06 CET 2002 Daniel Veillard <daniel@veillard.com>
782
783 * doc/libxml2-api.xml doc/parsedecl.py: Build a new version
784 hopefully near complete and fully documented of the API in XML
785 * HTMLtree.c SAX.c debugXML.c error.c globals.c parser.c tree.c
786 xmlIO.c xmlmemory.c include/libxml/catalog.h include/libxml/hash.h
787 include/libxml/list.h include/libxml/parser.h include/libxml/tree.h
788 include/libxml/parserInternals.h include/libxml/valid.hi
789 include/libxml/xmlIO.h include/libxml/xmlerror.hi
790 include/libxml/xmlmemory.h include/libxml/xmlversion.h.ini
791 include/libxml/xpath.h include/libxml/xpathInternals.h:
792 Cleaned up the doc comments a lot in the process, the interface
793 coverage is now 100%
794
Daniel Veillard2d1464f2002-01-21 23:16:56 +0000795Tue Jan 22 00:12:58 CET 2002 Daniel Veillard <daniel@veillard.com>
796
797 * doc/libxml2-api.xml doc/parsedecl.py: improved the script to
798 extracts comments from the gtk-doc DocBook output (a bit
799 convoluted but seems to work).
800
Daniel Veillard61006472002-01-21 17:31:47 +0000801Mon Jan 21 18:29:19 CET 2002 Daniel Veillard <daniel@veillard.com>
802
803 * Makefile.am doc/Makefile.am doc/libxml2-api.xml doc/parsedecl.py:
804 added an XML description of the API, moved the script generating
805 it here. Added a "make api" target
806
Daniel Veillardd2f23002002-01-21 13:36:00 +0000807Mon Jan 21 14:34:37 CET 2002 Daniel Veillard <daniel@veillard.com>
808
809 * tree.c: Adam Lounds pointed out a bug in xmlSearchNs()
810
Daniel Veillard99e55eb2002-01-21 08:56:29 +0000811Mon Jan 21 09:55:21 CET 2002 Daniel Veillard <daniel@veillard.com>
812
813 * xpath.c include/libxml/xpathInternals.h: the change made to
814 xmlXPathFuncLookupFunc was incompatible roll it back
815
Daniel Veillard963d2ae2002-01-20 22:08:18 +0000816Sun Jan 20 23:03:41 CET 2002 Daniel Veillard <daniel@veillard.com>
817
818 * SAX.c: cleanup patch from Anthony Jones
819 * doc/Makefile.am: fix the headers to avoid in make scan
820 * parserInternals.c xpath.c include/libxml/*.h: cleanup of the
821 includes, * vs Ptr and general cleanup
822 * parsedecl.py: first version of a script to extract the
823 module interfaces, the goal will be to provide .decl or XML
824 specification of the interfaces to build wrappers.
825
Daniel Veillard0f5f1622002-01-20 12:42:06 +0000826Sun Jan 20 13:38:22 CET 2002 Daniel Veillard <daniel@veillard.com>
827
828 * doc/xmlcatalog_man.xml xmlcatalog.c: Fixed bug #68830, xmlcatalog
829 now provides return codes in case of errors
830
Bjorn Reese026d29f2002-01-19 15:40:18 +0000831Sat Jan 19 16:36:21 CET 2002 Bjorn Reese <breese@users.sourceforge.net>
832
833 * trio.h trio.c triodef.h triop.h trionan.h trionan.c Makefile.am:
834 Upgraded to trio baseline 1.6
835 * strio.h strio.c: Replaced by triostr.h and triostr.c
836
Daniel Veillard572577e2002-01-18 16:23:55 +0000837Fri Jan 18 17:22:50 CET 2002 Daniel Veillard <daniel@veillard.com>
838
839 * globals.c xmlIO.c xmlcatalog.c: removed the last occurences
840 of strdup usage in the code
841
Daniel Veillarddb5850a2002-01-18 11:49:26 +0000842Fri Jan 18 12:47:15 CET 2002 Daniel Veillard <daniel@veillard.com>
843
844 * parser.c error.c: Keith Isdale complained rightly that
845 xmlInitParser() did not preserve value set by xmlSetGenericErrorFunc
846
Daniel Veillardcfa0d812002-01-17 08:46:58 +0000847Thu Jan 17 09:44:44 CET 2002 Daniel Veillard <daniel@veillard.com>
848
849 * tree.c: fixed the funxtion to set the xml: attributes
850 * debugXML.c: added "setbase" to test it.
851
Daniel Veillard2c748c62002-01-16 15:37:50 +0000852Wed Jan 16 16:36:08 CET 2002 Daniel Veillard <daniel@veillard.com>
853
854 * tree.c: update xmlNodeSetContent() and xmlNodeSetContentLen()
855 to allow updating an attribute content
856
Daniel Veillard8de85c62002-01-15 17:10:15 +0000857Tue Jan 15 18:09:23 CET 2002 Daniel Veillard <daniel@veillard.com>
858
859 * libxml.h: try to avoid problems when compiling on Windows
860
Daniel Veillard314cfa02002-01-14 17:58:01 +0000861Mon Jan 14 18:56:25 CET 2002 Daniel Veillard <daniel@veillard.com>
862
863 * hash.c: patch from Anthony Jones for hash.c allocation size
864 * Makefile.am: trying to work around Yet Another Libtool Madness
865 and build the 2.4.13 release finally ...
866
Daniel Veillard744683d2002-01-14 17:30:20 +0000867Mon Jan 14 18:27:19 CET 2002 Daniel Veillard <daniel@veillard.com>
868
869 * configure.in include/libxml/xmlwin32version.h: updated to 2.4.13
870 * doc/* : update of the documentation
871
Daniel Veillarde6a55192002-01-14 17:11:53 +0000872Mon Jan 14 17:53:41 CET 2002 Daniel Veillard <daniel@veillard.com>
873
874 * debugXML.c tree.c: some cleanup after an unsuccessful attempt
875 at fixing #61290 :-(
876
Daniel Veillardfb25a512002-01-13 20:32:08 +0000877Sun Jan 13 21:30:54 CET 2002 Daniel Veillard <daniel@veillard.com>
878
879 * tree.c: fixed xmlSaveFormatFileEnc() when encoding == NULL
880 Fixes bug #67229
881
Daniel Veillardacb2bda2002-01-13 16:15:43 +0000882Sun Jan 13 17:14:06 CET 2002 Daniel Veillard <daniel@veillard.com>
883
884 * tree.c: trying to avoid troubles when a subtree is copied
885 and coalesced in part with the target tree. Should fix
886 bug #67407
887
Daniel Veillardd8224e02002-01-13 15:43:22 +0000888Sun Jan 13 16:37:15 CET 2002 Daniel Veillard <daniel@veillard.com>
889
890 * valid.c: fixed validation of attributes content of type
891 NAME NAMES NMTOKEN and NMTOKENS to accept internationalized
892 values, very old bug. Fixes #67671
893
Daniel Veillard8107a222002-01-13 14:10:10 +0000894Sun Jan 13 15:07:49 CET 2002 Daniel Veillard <daniel@veillard.com>
895
896 * parser.c include/libxml/parserInternals.h tree.c: integrated
897 a couple of fixes and a new API function xmlSetEntityReferenceFunc()
898 from Keith Isdale and dedicated to xsldbg the XSLT debugger.
899
Daniel Veillarddb0eb8d2002-01-13 13:35:00 +0000900Sun Jan 13 14:23:21 CET 2002 Daniel Veillard <daniel@veillard.com>
901
902 * threads.c: applied Serguei Narojnyi's patch to add native
903 thread support on the Win32 platform
904 * testThreadsWin32.c Makefile.am: added the test program also
905 from Serguei, Win32 specific
906 * include/win32config.h include/libxml/xmlwin32version.h.in:
907 added patch from Igor for the Windows thread specific defines.
908
Daniel Veillard845cce42002-01-09 11:51:37 +0000909Wed Jan 9 12:50:39 CET 2002 Daniel Veillard <daniel@veillard.com>
910
911 * entities.c: Anthony Jones pointed a bug in xmlCopyEntity()
912
Daniel Veillard7b602b42002-01-08 13:26:00 +0000913Tue Jan 8 14:23:22 CET 2002 Daniel Veillard <daniel@veillard.com>
914
915 * doc/*.html doc/site.xsl doc/Makefile: renamed XML.html
916 output page into XMLinfo.html. Close bug #66951 and
917 raised by Robert Collins too.
918
Daniel Veillard73c6e532002-01-08 13:15:33 +0000919Tue Jan 8 14:13:18 CET 2002 Daniel Veillard <daniel@veillard.com>
920
921 * encoding.c: Paul Keogh pointed out a possibility of segfault
922 on repeted xmlAddEncodingAlias() / xmlCleanupEncodingAlias().
923 Closes bug # 68238
924
Daniel Veillard4a859202002-01-08 11:49:22 +0000925Tue Jan 8 12:48:27 CET 2002 Daniel Veillard <daniel@veillard.com>
926
927 * doc/*.html: updated the Gdome2 links
928
Daniel Veillard3c5ed912002-01-08 10:36:16 +0000929Tue Jan 8 11:32:30 CET 2002 Daniel Veillard <daniel@veillard.com>
930
931 * libxml.h: Applied following patches from Robert Collins
932 and make sure IN_LIBXML is defined when compiling it
933 -------
934 * include/libxml/xmlversion.h.in (LIBXML_DLL_IMPORT): Use on Cygwin
935 as well as Visual C.
936 * parser.c (XML_DIR_SEP): Don't use '\\' for Cygwin.
937 * parserInternals.c (XML_DIR_SEP): Don't use '\\' for Cygwin.
938 * strio.c (PLATFORM_UNIX): Define for Cygwin.
939 * triodef.h (TRIO_PLATFORM_UNIX): Define for Cygwin.
940 * xmlIO.c (xmlFileOpen): Use unix behaviour for Cygwin.
941 Use binary mode opens for Cygwin (xmlFileOpenW xmlParserGetDirectory
942 xmlSysIDExists xmlNoNetExists).
943 * xmllint.c: Don't include winsock2.h for Cygwin.
944
Daniel Veillard401c2112002-01-07 16:54:10 +0000945Mon Jan 7 17:52:48 CET 2002 Daniel Veillard <daniel@veillard.com>
946
947 * parser.c: Jirka Kosek pointer out a bug in xmlParseTextDecl()
948 when the version info is not present.
949
Daniel Veillard6f42c132002-01-06 23:05:13 +0000950Mon Jan 7 00:03:58 CET 2002 Daniel Veillard <daniel@veillard.com>
951
952 * tree.c: Anthony Jones pointed out a problem in
953 xmlStringGetNodeList() and provided a fix for it
954
Daniel Veillardaa39a0f2002-01-06 12:47:22 +0000955Sun Jan 6 13:45:49 CET 2002 Daniel Veillard <daniel@veillard.com>
956
Daniel Veillarddb5850a2002-01-18 11:49:26 +0000957 * parser.c: patch from Frank J Franklin to remove a bug in
Daniel Veillardaa39a0f2002-01-06 12:47:22 +0000958 xmlCreatePushParserCtxt() when the initial buffer passed
959 is large.
960
Daniel Veillard0e47ee22002-01-05 18:25:52 +0000961Sat Jan 5 19:24:23 CET 2002 Daniel Veillard <daniel@veillard.com>
962
963 * win32/*: big cleanup of the Windows/MSVC project files
964 from Igor Zlatkovic
965
Daniel Veillardcebb1362002-01-02 13:13:30 +0000966Wed Jan 2 14:11:35 CET 2002 Daniel Veillard <daniel@veillard.com>
967
968 * doc/Makefile.am: should fix #67674 and avoid troubles if
969 xsltproc is not available or fails in the prefix provided
970
Daniel Veillard26908ab2002-01-01 16:50:03 +0000971Tue Jan 1 17:48:56 CET 2002 Daniel Veillard <daniel@veillard.com>
972
973 * xmlmemory.c: one more doc patch from Charlie Bozeman.
974
Daniel Veillard5344c602001-12-31 16:37:34 +0000975Mon Dec 31 17:35:40 CET 2001 Daniel Veillard <daniel@veillard.com>
976
977 * DOCBparser.c parser.c valid.c include/libxml/parserInternals.h
978 include/libxml/xmlerror.h include/libxml/xpathInternals.h:
979 Fixed a few other problems raised by Charlie Bozeman.
980 * result/VC/ElementValid[5-7]: fixed the output
981
Daniel Veillardcbaf3992001-12-31 16:16:02 +0000982Mon Dec 31 17:13:34 CET 2001 Daniel Veillard <daniel@veillard.com>
983
984 * *.c include/libxml/*.h doc/html/*: applied 42 documentation
985 patches from Charlie Bozeman. Regenerated the HTML docs.
986
Daniel Veillard7f9a6802001-12-20 14:01:47 +0000987Thu Dec 20 14:59:52 CET 2001 Daniel Veillard <daniel@veillard.com>
988
989 * include/libxml/debugXML.h win32/dsp/libxml2.def.src: fixes
990 for Windows from Igor
991
Daniel Veillard1df3dfc2001-12-18 11:14:16 +0000992Tue Dec 18 12:13:33 CET 2001 Daniel Veillard <daniel@veillard.com>
993
994 * xmllint.c: applied Justin Fletcher patch for --output or -o
995
Daniel Veillardd3b29d22001-12-18 07:53:16 +0000996Tue Dec 18 08:52:32 CET 2001 Daniel Veillard <daniel@veillard.com>
997
998 * win32/libxml2/libxml2.def.src: close #67019
999
Daniel Veillard01db67c2001-12-18 07:09:59 +00001000Tue Dec 18 08:08:51 CET 2001 Daniel Veillard <daniel@veillard.com>
1001
1002 * xmllint.c: applied Justin Fletcher generic timing patch
1003 similar to the one already applied to xsltproc.
1004
Daniel Veillardd1640922001-12-17 15:30:10 +00001005Mon Dec 17 16:29:08 CET 2001 Daniel Veillard <daniel@veillard.com>
1006
1007 * include/libxml/tree.h tree.c: applied documentation patches
1008 from Charlie Bozeman
1009
MST 2001 John Fleck2323ac22001-12-14 04:24:50 +00001010Thu Dec 13 21:24:16 MST 2001 John Fleck <jfleck@inkstain.net>
1011
1012 *doc/xmllint.xml, xmllint.1 - document --dropdtd
1013
Daniel Veillard29e43992001-12-13 22:21:58 +00001014Thu Dec 13 23:19:50 CET 2001 Daniel Veillard <daniel@veillard.com>
1015
1016 * valid.c: fix the xmlStrdup() used in the previous patch.
1017 * valid.c: added --dropdtd
1018 * tree.c: fixed xmlUnlinkNode so it also removes the references
1019 from the document if the node is a DTD
1020
Daniel Veillard86fd5a72001-12-13 14:55:21 +00001021Thu Dec 13 15:54:35 CET 2001 Daniel Veillard <daniel@veillard.com>
1022
1023 * HTMLtree.c valid.c: cleanup some static declarations
1024
Daniel Veillard9ae4b7a2001-12-13 14:24:09 +00001025Thu Dec 13 15:23:04 CET 2001 Daniel Veillard <daniel@veillard.com>
1026
1027 * xmllint.c: removed another strdup()
1028 * doc/FAQ: removed the HP/UX entry
1029
Daniel Veillarded472f32001-12-13 08:48:14 +00001030Thu Dec 13 09:44:58 CET 2001 Daniel Veillard <daniel@veillard.com>
1031
1032 * valid.c: fix bug #66816 when validating.
1033 * xmllint.c: don't use sys/time.h if configure did not found it
1034
MST 2001 John Fleck3fc555e2001-12-11 04:41:24 +00001035Mon Dec 10 21:39:55 MST 2001 John Fleck <jfleck@inkstain.net>
1036
1037 * docs/xmllint.1, xmllint.xml, xmlcatalog.1, xmlcatalog_man.html,
1038 xmlcatalog_man.xml
1039
Daniel Veillard2d8a93b2001-12-10 21:07:19 +00001040Mon Dec 10 22:06:16 CET 2001 Daniel Veillard <daniel@veillard.com>
1041
1042 * include/libxml/xmlmemory.h: Hietaniemi Jarkko pointed out that
1043 xmlInitMemory() was declared twice
1044
Daniel Veillardb82c1662001-12-09 14:00:54 +00001045Sun Dec 9 14:59:23 CET 2001 Daniel Veillard <daniel@veillard.com>
1046
1047 * globals.c: do not reference strdup() !
1048 * configure.in libxml-2.0.pc.in: trying to fix the libs
1049 of the various config extraction modules
1050
Daniel Veillardef90ba72001-12-07 14:24:22 +00001051Fri Dec 7 15:21:33 CET 2001 Daniel Veillard <daniel@veillard.com>
1052
1053 * configure.in : preparing 2.4.12
1054 * doc/* : updated and rebuilt the docs
1055
Daniel Veillard220346d2001-12-07 11:33:54 +00001056Fri Dec 7 12:32:00 CET 2001 Daniel Veillard <daniel@veillard.com>
1057
1058 * uri.c: closed bug #66159
1059 * testURI.c: added --escape option
1060 * configure.in: some cleanup for xml2-config --cflags
1061
Daniel Veillard2a906822001-12-06 14:34:08 +00001062Thu Dec 6 15:31:30 CET 2001 Daniel Veillard <daniel@veillard.com>
1063
1064 * globals.c testThreads.c: removed some misplaced includes
1065 of xmlversion.h
1066
Daniel Veillarde28313b2001-12-06 14:08:31 +00001067Thu Dec 6 09:06:08 EST 2001 Daniel Veillard <daniel@veillard.com>
1068
1069 * threads.c: patch from Gary Pennington fixing a possible
1070 problem at initialization time.
1071
Daniel Veillardd3b08822001-12-05 12:03:33 +00001072Wed Dec 5 13:01:37 CET 2001 Daniel Veillard <daniel@veillard.com>
1073
1074 * configure.in libxml.h parser.c testThreads.c macos/: integrated
Daniel Veillarde28313b2001-12-06 14:08:31 +00001075 Eric Lavigne contribution to build libxml2 on MacOS using
Daniel Veillardd3b08822001-12-05 12:03:33 +00001076 CodeWarrior.
1077
Daniel Veillarda7866932001-12-04 13:14:44 +00001078Tue Dec 4 14:13:44 CET 2001 Daniel Veillard <daniel@veillard.com>
1079
1080 * xmllint.c: applied Geert Kloosterman's patch to fix
1081 --repeat --timing output
1082
Daniel Veillard19840942001-11-29 16:11:38 +00001083Thu Nov 29 17:10:22 CET 2001 Daniel Veillard <daniel@veillard.com>
1084
1085 * parser.c: Robin Berjon <robin@knowscape.com> found a case
1086 where non-wellformed XML declaractions were not detected.
1087
Daniel Veillarde85d9342001-11-28 14:43:12 +00001088Wed Nov 28 15:41:40 CET 2001 Daniel Veillard <daniel@veillard.com>
1089
1090 * xpointer.c: fixed a compilation bug pointed by Danny Jamshy
1091
Daniel Veillard22f25a82001-11-28 09:12:23 +00001092Wed Nov 28 10:09:51 CET 2001 Daniel Veillard <daniel@veillard.com>
1093
1094 * xmlIO.c: as robert pointed again, xmlInputCallbackInitialized
1095 gets reset by xmlCleanupInputCallbacks() and this makes the
1096 function useless. Same for output.
1097
Daniel Veillard107ccaa2001-11-27 16:23:50 +00001098Tue Nov 27 17:22:36 CET 2001 Daniel Veillard <daniel@veillard.com>
1099
1100 * xmlIO.c: robert pointed out a loop error in callback cleanups
1101
Daniel Veillard8faa7832001-11-26 15:58:08 +00001102Mon Nov 26 16:56:00 CET 2001 Daniel Veillard <daniel@veillard.com>
1103
1104 * tree.c debugXML.c include/libxml/tree.h include/libxml/debugXML.h:
1105 moved xmlGetLineNo() and xmlGetNodePath() into the main tree module,
1106 they are not really tied to debugging
1107
Daniel Veillardbd9b0e82001-11-26 10:32:08 +00001108Mon Nov 26 11:31:36 CET 2001 Daniel Veillard <daniel@veillard.com>
1109
1110 * configure.in include/libxml/xmlwin32version.h: preparing 2.4.11
1111 * xmllint.c: better --catalogs description
1112
Daniel Veillard4855c8c2001-11-25 10:35:25 +00001113Sun Nov 25 11:34:24 CET 2001 Daniel Veillard <daniel@veillard.com>
1114
1115 * tree.c: fixed a couple of problems in xmlSetProp()
1116
Daniel Veillardcd337f02001-11-22 18:20:37 +00001117Thu Nov 22 19:19:10 CET 2001 Daniel Veillard <daniel@veillard.com>
1118
1119 * debugXML.c tree.c xmlIO.c xmlmemory.c: some cleanups when chasing
1120 unappropriate stdout output.
1121
Daniel Veillard566d4df2001-11-22 13:00:53 +00001122Thu Nov 22 13:58:14 CET 2001 Daniel Veillard <daniel@veillard.com>
1123
1124 * include/libxml/tree.h: Fixed a couple of macro errors pointed out
1125 by Denis Beurive, closes #65111
1126
Daniel Veillardb4545fd2001-11-20 09:37:09 +00001127Tue Nov 20 10:34:01 CET 2001 Daniel Veillard <daniel@veillard.com>
1128
1129 * valid.c: in case of content model validity error, don't
1130 print it if validity warnings were not requested.
1131
Daniel Veillardc69e0b12001-11-20 08:35:07 +00001132Tue Nov 20 09:30:02 CET 2001 Daniel Veillard <daniel@veillard.com>
1133
1134 * nanoftp.c: applied a couple of patches from Brian D Ripley.
1135 * parserInternals.c: removed the last exit() call. Print an
1136 unmaskable error on stderr instead (library mismatch detection)
1137
MST 2001 John Fleck42304042001-11-18 00:18:06 +00001138Sat Nov 17 17:16:51 MST 2001 John Fleck <jfleck@inkstain.net>
1139
1140 * doc/xmllint.xml, doc/xmllint.1 - update xmllint man page with
1141 shell instructions from Heiko Rupp
1142
Daniel Veillardf7b094f2001-11-15 13:54:39 +00001143Thu Nov 15 14:53:42 CET 2001 Daniel Veillard <daniel@veillard.com>
1144
1145 * catalog.c: use the URL notation file:// for default catalog paths
1146
Daniel Veillard0ec98632001-11-14 15:04:32 +00001147Wed Nov 14 16:03:02 CET 2001 Daniel Veillard <daniel@veillard.com>
1148
1149 * include/libxml/tree.h: better comments for _private fields
1150 * tree.c: removed a problem when copying an entity reference.
1151
Daniel Veillardd33cfbf2001-11-13 15:24:36 +00001152Tue Nov 13 16:23:04 CET 2001 Daniel Veillard <daniel@veillard.com>
1153
1154 * vms/*: updated instructions and diffs from John A Fotheringham
1155
Daniel Veillarda11001b2001-11-12 22:45:36 +00001156Mon Nov 12 23:43:22 CET 2001 Daniel Veillard <daniel@veillard.com>
1157
1158 * include/libxml/xmlerror.h: avoid an include problem if
1159 #include <libxml/xmlerror.h> happens first in code
1160 seems to be the case in KDE libs
1161
Daniel Veillard8e3943c2001-11-12 21:35:44 +00001162Mon Nov 12 22:32:41 CET 2001 Daniel Veillard <daniel@veillard.com>
1163
1164 * win32/dsp/* include/libxml/xmlwin32version.h.in: update
1165 from Igor for Windows
1166
1167Mon Nov 12 10:19:41 CET 2001 Daniel Veillard <daniel@veillard.com>
1168
1169 * Makefile.am: Gary Pennington pointed out a missing prefix
1170
Daniel Veillard43d3f612001-11-10 11:57:23 +00001171Sat Nov 10 12:55:42 CET 2001 Daniel Veillard <daniel@veillard.com>
1172
1173 * configure.in include/libxml/xmlwin32version.h: preparing 2.4.10
1174 * doc/*: upgraded and rebuilt the docs
1175
Daniel Veillardc1f78342001-11-10 11:43:05 +00001176Sat Nov 10 12:33:38 CET 2001 Daniel Veillard <daniel@veillard.com>
1177
1178 * HTMLparser.c: fix comment in scripts element parsing.
1179 * result/HTML/doc3*: updated the results.
1180
1181Sat Nov 10 11:18:18 CET 2001 Daniel Veillard <daniel@veillard.com>
1182
1183 * uri.c: another URI bug fix #63336, using Joel Young patch.
1184
Daniel Veillardc6e013a2001-11-10 10:08:57 +00001185Sat Nov 10 11:07:26 CET 2001 Daniel Veillard <daniel@veillard.com>
1186
1187 * debugXML.c include/libxml/debugXML.h: add xmlGetNodePath()
1188 a cleaned up version of the Pwd shell string generation.
1189
Daniel Veillardbe480fb2001-11-08 23:36:42 +00001190Fri Nov 9 00:34:13 CET 2001 Daniel Veillard <daniel@veillard.com>
1191
1192 * valid.c include/libxml/tree.h: trying to fix namespaces +
1193 validation problems for good, closing #63619 in the process
1194 * result/valid/dia.xml test/valid/dia.xml: the Dia test was
1195 wrong in this respect, fixed it.
1196
Daniel Veillardd536f702001-11-08 17:32:47 +00001197Thu Nov 8 18:31:40 CET 2001 Daniel Veillard <daniel@veillard.com>
1198
1199 * xmllint.c: Morus Walter patch to allow --format and --encode
1200
Daniel Veillard5004f422001-11-08 13:53:05 +00001201Thu Nov 8 14:52:18 CET 2001 Daniel Veillard <daniel@veillard.com>
1202
1203 * debugXML.c: Stefan Kost provided an help command for the shell
1204
Daniel Veillarda6825e82001-11-07 13:33:59 +00001205Wed Nov 7 14:32:55 CET 2001 Daniel Veillard <daniel@veillard.com>
1206
1207 * debugXML.c: Heiko Rupp pointed that the shell would crash
1208 on empty nodesets returns.
1209
Daniel Veillard03f848d2001-11-07 12:53:46 +00001210Wed Nov 7 13:52:36 CET 2001 Daniel Veillard <daniel@veillard.com>
1211
1212 * Makefile.am: Weiqi Gao pointed out that xmlcatalog
1213 migh need the history libraries
1214
Daniel Veillard957fdcf2001-11-06 22:50:19 +00001215Tue Nov 6 23:49:09 CET 2001 Daniel Veillard <daniel@veillard.com>
1216
1217 * HTMLparser.c test/HTML/lt.html result/HTML/lt.html*:
1218 handle the case of < in quoted attributes, Bastian Kleineidam
1219
Daniel Veillardc853b322001-11-06 15:24:37 +00001220Tue Nov 6 16:21:33 CET 2001 Daniel Veillard <daniel@veillard.com>
1221
1222 * configure.in include/libxml/xmlwin32version.h: releasing 2.4.9
1223 fixing catalog breakages
1224 * Makefile.am catalog.c result/catalogs/catal
1225 result/catalogs/mycatalog.* test/catalogs/catal*:
1226 fixed more problems in catalog support, added more regression tests
1227 for both XML and SGML catalog handling
1228
Daniel Veillard66870c72001-11-05 19:27:49 +00001229Mon Nov 5 20:26:41 CET 2001 Daniel Veillard <daniel@veillard.com>
1230
1231 * debugXML.c: applied an improvement to xmlGetLineNo() from
1232 Keith Isdale
1233
Daniel Veillardffe09c92001-11-05 14:21:47 +00001234Mon Nov 5 15:20:16 CET 2001 Daniel Veillard <daniel@veillard.com>
1235
1236 * catalog.c: dohhhh XML catalog add and remove ops were broken too.
1237 Side effect of the progressive catalog loading
1238
Daniel Veillardad661b92001-11-05 11:43:15 +00001239Mon Nov 5 12:40:54 CET 2001 Daniel Veillard <daniel@veillard.com>
1240
1241 * Makefile.am: confexecdir and confexec_DATA were defined twice
1242 pointed out by Karl Eichwalder
1243
Daniel Veillard6eb17722001-11-04 22:19:27 +00001244Sun Nov 4 23:18:34 CET 2001 Daniel Veillard <daniel@veillard.com>
1245
1246 * xmlcatalog.c: avoid unlink() and use remove() instead.
1247
Daniel Veillardea898282001-11-04 22:13:45 +00001248Sun Nov 4 23:12:38 CET 2001 Daniel Veillard <daniel@veillard.com>
1249
1250 * libxml.spec.in: cleanup
1251 * include/libxml/xmlwin32version.h: updated with 2.4.8
1252
Daniel Veillarda4617b82001-11-04 20:19:12 +00001253Sun Nov 4 21:17:24 CET 2001 Daniel Veillard <daniel@veillard.com>
1254
1255 * encoding.c global.data globals.c testThreads.c: fix bug #63752
1256 of compiling libxml with a non standard set of options
1257
John Fleck027edfb2001-11-04 20:13:58 +00001258Sun Nov 4 13:11:41 MST 2001 John Fleck <jfleck@inkstain.net
1259
1260 * doc/xmllint.xml, xmllint.1 - updating xmllint man page to
1261 document --sgml option, fixing gnome bugzilla #63382
1262
Daniel Veillardcd21dc72001-11-04 20:03:38 +00001263Sun Nov 4 20:56:53 CET 2001 Daniel Veillard <daniel@veillard.com>
1264
1265 * include/libxml/catalog.h catalog.c: Fixed SGML catalogs
1266 breakage of 2.4.7, added a couple of really needed APIs
1267 like xmlCatalogIsEmpty() and xmlNewCatalog()
1268 * xmlcatalog.c: updated --sgml --noout to be a suitable replacement
1269 for install-catalog
1270 * configure.in: preparing 2.4.8
1271
CET 2001 Daniel Veillard5a37bde2001-11-01 14:31:22 +00001272Thu Nov 1 15:29:31 CET 2001 Daniel Veillard <daniel@veillard.com>
1273
1274 * HTMLtree.c tree.c include/libxml/HTMLtree.h
1275 include/libxml/tree.h include/libxml/xmlIO.h: more include
1276 cleanups, export cleanly one html output + format function.
1277
1278Thu Nov 1 14:12:12 CET 2001 Daniel Veillard <daniel@veillard.com>
1279
1280 * parser.c: removed initGenericErrorDefaultFunc call from
1281 xmlInitParser() since it could destroy previous calls to
1282 xsltSetGenericErrorFunc() effects
1283
Daniel Veillardebd38c52001-11-01 08:38:12 +00001284Thu Nov 1 09:37:13 CET 2001 Daniel Veillard <daniel@veillard.com>
1285
1286 * debugXML.c include/libxml/debugXML.h: bool can be a reserved
1287 keyword.
1288
Daniel Veillard8bdb91d2001-10-31 17:52:43 +00001289Wed Oct 31 18:50:08 CET 2001 Daniel Veillard <daniel@veillard.com>
1290
1291 * Makefile.am: cleanup
1292 * threads.c: cleanup too
1293 * xmlIO.c include/libxml/xmlIO.h: added xmlNoNetExternalEntityLoader()
1294 from xsltproc
1295 * include/libxml/tree.h include/libxml/parser.h: trying to break a
1296 dependancy loop.
1297
Daniel Veillard91c00402001-10-30 17:41:38 +00001298Tue Oct 30 18:38:53 CET 2001 Daniel Veillard <daniel@veillard.com>
1299
1300 * catalog.c: Justin Fletcher pointed out that xmlParseXMLCatalog
1301 was not used anymore !
1302
Daniel Veillard52dcab32001-10-30 12:51:17 +00001303Tue Oct 30 13:33:13 CET 2001 Daniel Veillard <daniel@veillard.com>
1304
1305 * configure.in: preparing 2.4.7
1306 * Makefile.am doc/Makefile.am: switched to the latest xmllint
1307 manual page from John
1308 * doc/*: updated the doc and rebuilt the generated pages
1309
Daniel Veillarda9e65e82001-10-30 10:32:36 +00001310Tue Oct 30 11:31:19 CET 2001 Daniel Veillard <daniel@veillard.com>
1311
1312 * xmlIO.c: closing bug #62711, the library should never
1313 close stdin or stdout.
1314
Daniel Veillard4def3bd2001-10-30 09:47:47 +00001315Tue Oct 30 10:46:12 CET 2001 Daniel Veillard <daniel@veillard.com>
1316
1317 * uri.c: second pass at fixing #63336, using Joel Young
1318 final patch. looks okay.
1319
Daniel Veillardbb6808e2001-10-29 23:59:27 +00001320Tue Oct 30 00:56:05 CET 2001 Daniel Veillard <daniel@veillard.com>
1321
1322 * uri.c include/libxml/uri.h: trying to clear #63336
1323 allowing the escaping routine to parse unconformant
1324 URI-References.
1325
Daniel Veillardacf7ff02001-10-29 20:21:47 +00001326Mon Oct 29 19:09:46 CET 2001 Daniel Veillard <daniel@veillard.com>
1327
1328 * vms/readme.vms vms/build_libxml.com nanoftp.c
1329 include/libxml/xmlversion.h.in: a few VMS updates from
1330 John A Fotheringham
1331 * include/libxml/xmlIO.h xmlIO.c: added xmlCleanupInputCallbacks()
1332 and xmlCleanupOutputCallbacks() for the Perl binding people.
1333
Daniel Veillard635ef722001-10-29 11:48:19 +00001334Mon Oct 29 12:44:17 CET 2001 Daniel Veillard <daniel@veillard.com>
1335
1336 * parser.c globals.c DOCBparser.c HTMLparser.c error.c:
1337 apply fixes to close #63271 and avoid segfaults when
1338 the error routine gets callbed before xmlInitParser()
1339 get called.
1340 * nanoftp.c error.c: Applied patches from Justin Fletcher
1341 correcting some xmlGenericError misuses.
1342
MDT 2001 John Fleckfd32de62001-10-27 20:14:01 +00001343Sat Oct 27 14:04:45 MDT 2001 John Fleck <jfleck@inkstain.net>
1344
1345 *doc/xmllint.xml, doc/xmllint.1
1346 New and improved man page for xmllint - .xml is the original, .1
1347 is the generated man page
1348
Daniel Veillardc9484202001-10-24 12:35:52 +00001349Wed Oct 24 14:34:25 CEST 2001 Daniel Veillard <daniel@veillard.com>
1350
1351 * doc/site.xsl doc/*.html doc/Makefile.am: now autogenerate
1352 the web site from the main HTML document.
1353
Daniel Veillard5151c062001-10-23 13:10:19 +00001354Tue Oct 23 14:32:04 CEST 2001 Daniel Veillard <daniel@veillard.com>
1355
1356 * parser.c: fixed an erroneous validation bug when PE refs
1357 occurs in external parsed entities referenced from the
1358 internals subset
1359 * test/valid/index.xml test/valid/dtds/nitf-2-5.dtd
1360 test/valid/dtds/NewsMLv1.0.dtd result/valid/index.xml*:
1361 added the associated testcase, it's a nice one.
1362 * HTMLparser.c: generate the DTD node as HTML still ...
1363 * HTMLtree.c: fixed errors in Set/GetMetaEncoding
1364
Daniel Veillardb6b0fd82001-10-22 12:31:11 +00001365Mon Oct 22 14:20:17 CEST 2001 Daniel Veillard <daniel@veillard.com>
1366
1367 * HTMLparser.c: fixed a bug in htmlNewDoc()
1368
Daniel Veillard89cad532001-10-22 09:46:13 +00001369Mon Oct 22 11:32:36 CEST 2001 Daniel Veillard <daniel@veillard.com>
1370
1371 * test/threads/*: added entities testing to the Thread test
1372 * testThreads.c: make the test reasonable
1373 * DOCBparser.c: fix the DTD public and system ID
1374 * xmllint.c: added --sgml for SGML DocBook importing
1375 * Makefile.am: added Docbtests target
1376
Daniel Veillard9ae1eba2001-10-19 09:48:35 +00001377Fri Oct 19 11:47:13 CEST 2001 Daniel Veillard <daniel@veillard.com>
1378
1379 * nanoftp.c: use only "anonymous@" string for anonymous passwds
1380 * testThreads.c: removed bogus include
1381
Daniel Veillardce2c2f02001-10-18 14:57:24 +00001382Thu Oct 18 16:56:23 CEST 2001 Daniel Veillard <daniel@veillard.com>
1383
1384 * parser.c valid.c result/valid/rss.xml result/valid/rss.xml.err:
1385 fixed a very serious (looping) validation bug
1386
Daniel Veillard3c01b1d2001-10-17 15:58:35 +00001387Wed Oct 17 11:56:25 EDT 2001 Daniel Veillard <daniel@veillard.com>
1388
1389 * include/libxml/globals.h include/libxml/threads.h threads.c
1390 testThreads.c: far more testing, cleaning up bugs
1391 * *.c : make sure globals.h is always included.
1392
Daniel Veillard7cc95c02001-10-17 15:45:12 +00001393Wed Oct 17 17:41:41 CEST 2001 Daniel Veillard <daniel@veillard.com>
1394
1395 * HTMLparser.c: try to get rid of parser loops for good.
1396
Daniel Veillardab7488e2001-10-17 11:30:37 +00001397Wed Oct 17 13:29:02 CEST 2001 Daniel Veillard <daniel@veillard.com>
1398
1399 * configure.in: fixed some bugs in CFLAGS passing.
1400 * test/threads Makefile.am testThreads.c: added a specific
1401 threaded test case (really nasty, guaranteed).
1402
Daniel Veillard85c11fa2001-10-16 21:03:08 +00001403Tue Oct 16 23:01:49 CEST 2001 Daniel Veillard <daniel@veillard.com>
1404
1405 * catalog.c: serious cleanup on the management of the
1406 XML catalog tree, more tests done, especially with
1407 the catalog PI.
1408
Daniel Veillard364789a2001-10-16 12:45:00 +00001409Tue Oct 16 08:43:43 EDT 2001 Daniel Veillard <daniel@veillard.com>
1410
1411 * catalog.c: avoid a problem in catalog cleanup on SMP if
1412 catalogs were not initialized.
1413
Daniel Veillard81463942001-10-16 12:34:39 +00001414Tue Oct 16 14:33:19 CEST 2001 Daniel Veillard <daniel@veillard.com>
1415
1416 * catalog.c xpath.c: trying to cleanup the not thread safe
1417 parts of the library.
1418
Daniel Veillard64a411c2001-10-15 12:32:07 +00001419Mon Oct 15 14:30:11 CEST 2001 Daniel Veillard <daniel@veillard.com>
1420
1421 * include/libxml/globals.h configure.in global.data: make
1422 the allocation be per-thread a configure option
1423 * encoding.c include/libxml/parser.h: fixed compilation
1424 errors
1425
Daniel Veillard5ee57fc2001-10-15 10:46:16 +00001426Mon Oct 15 12:45:03 CEST 2001 Daniel Veillard <daniel@veillard.com>
1427
1428 * include/libxml/parser.h: Norm reported that a few lines
1429 added were breaking libxslt compile, removed them for now
1430
Daniel Veillard6f350292001-10-14 09:56:15 +00001431Sun Oct 14 05:55:01 EDT 2001 Daniel Veillard <daniel@veillard.com>
1432
1433 * parser.c parserInternals.c threads.c: debugged and fixed
1434 initialization problems which were giving troubles on SMP
1435 boxes.
1436
Daniel Veillard6661ffa2001-10-13 14:18:17 +00001437Sat Oct 13 16:17:13 CEST 2001 Daniel Veillard <daniel@veillard.com>
1438
1439 * include/libxml/Makefile.am: missing globals.h
1440
Daniel Veillarde7090612001-10-13 12:18:28 +00001441Sat Oct 13 14:15:00 CEST 2001 Daniel Veillard <daniel@veillard.com>
Jaka Mocnik77d19ae2001-10-13 12:06:09 +00001442
Daniel Veillarde7090612001-10-13 12:18:28 +00001443 * globals.c: added a couple of standard includes.
Jaka Mocnik77d19ae2001-10-13 12:06:09 +00001444
Daniel Veillardd0463562001-10-13 09:15:48 +00001445Sat Oct 13 11:08:20 CEST 2001 Daniel Veillard <daniel@veillard.com>
1446
1447 * include/libxml/SAX.h include/libxml/globals.h include/libxml/parser.h
1448 include/libxml/parserInternals.h include/libxml/tree.h
1449 include/libxml/xmlerror.h HTMLparser.c SAX.c error.c globals.c
1450 nanoftp.c nanohttp.c parser.c parserInternals.c testDocbook.c
1451 testHTML.c testSAX.c tree.c uri.c xlink.c xmlmemory.c:
1452 Applied the last patches from Gary, cleanup, activated threading
1453 all user accessible global variables are now handled in globals.[ch]
1454 Still a bit rought but make tests passes with either
1455 --with-threads defined at configure time or not.
1456 * Makefile.am example/Makefile.am: added globals.[ch] and threads
1457 linking options
1458
Daniel Veillardb8478642001-10-12 17:29:10 +00001459Fri Oct 12 19:25:55 CEST 2001 Daniel Veillard <daniel@veillard.com>
1460
1461 * Makefile.am include/libxml/Makefile.am
1462 include/libxml/globals.h globals.c include/libxml/threads.h
1463 threads.c build_glob.py global.data xmlcatalog.c acconfig.h
1464 configure.in: started integrating the core of the thread support
1465 not activated yet but half integrated. The code should still
1466 compile and work anyway.
1467
Daniel Veillardb44025c2001-10-11 22:55:55 +00001468Fri Oct 12 00:53:03 CEST 2001 Daniel Veillard <daniel@veillard.com>
1469
1470 * HTMLtree.c catalog.c debugXML.c entities.c nanoftp.c
1471 parser.c valid.c xmlmemory.c xpath.c xpointer.c: started
1472 integrating the non-controversial parts of Gary Pennington
1473 multithread patches
1474 * catalog.c: corrected a small bug introduced
1475
Daniel Veillard75b96822001-10-11 18:59:45 +00001476Thu Oct 11 20:58:15 CEST 2001 Daniel Veillard <daniel@veillard.com>
1477
1478 * catalog.c include/libxml/catalog.h: very serious cleanup,
1479 isolating unportable code and as much as possible the accesses
1480 to the global shared catalog. May need more testing !
1481
Daniel Veillard78d12092001-10-11 09:12:24 +00001482Thu Oct 11 11:10:31 CEST 2001 Daniel Veillard <daniel@veillard.com>
1483
1484 * include/libxml/debugXML.h debugXML.c tree.c: integrating
1485 Keith Isdale patches for the XSLT debugger interfaces. Some
1486 cleanup
1487
Daniel Veillardff0b7312001-10-11 06:46:09 +00001488Thu Oct 11 08:44:01 CEST 2001 Daniel Veillard <daniel@veillard.com>
1489
1490 * win32/Makefile.mingw: update from Tobias Peters for 2.4.5
1491 * DOCBparser.c: generate line nubers in elements
1492
Daniel Veillard60087f32001-10-10 09:45:09 +00001493Wed Oct 10 11:35:45 CEST 2001 Daniel Veillard <daniel@veillard.com>
1494
1495 * configure.in: preparing 2.4.6 release
1496 * doc/xml.html doc/html/*: updated and rebuilt the docs
1497 * include/libxml/*.h *.c: fixed a number of teh/the widht/width typos
1498
MDT 2001 John Fleck60416fa2001-10-09 02:41:50 +00001499Mon Oct 8 20:38:27 MDT 2001 John Fleck <jfleck@inkstain.net>
1500
1501 * doc/xmlcatalog_man.xml, xmlcatalog.1, xmlcatalog_man.html
1502 adding documentation for DV's supercatalog support
1503
Daniel Veillard82d75332001-10-08 15:01:59 +00001504Mon Oct 8 17:00:16 CEST 2001 Daniel Veillard <daniel@veillard.com>
1505
1506 * include/libxml/catalog.h catalog.c xmlcatalog.c: adding SGML
1507 super catalog support adding one API and one flag --sgml to
1508 xmlcatalog
1509
MDT 2001 John Fleck0e229932001-10-07 22:46:00 +00001510Sun Oct 7 16:43:57 MDT 2001 John Fleck <jfleck@inkstain.net>
1511
1512 * doc/xmlcatalog_man.xml, xmlcatalog.1
1513 One more crack at
1514 https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=54392
1515
1516
Thomas Broyer47334c02001-10-07 16:41:52 +00001517Sun Oct 7 18:47:02 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
1518
1519 * xpath.c: implemented xmlXPathObjectCopy for external objects
1520 * include/libxml/xpathInternals.h: added xmlXPathStackIsExternal
1521
MDT 2001 John Fleckac941e32001-10-06 22:30:16 +00001522Sat Oct 6 16:25:52 MDT 2001 John Fleck <jfleck@inkstain.net>
1523
1524 *doc/xmlcatalog_man.xml, xmlcatalog_man.html, xmlcatalog.1
1525 finishing up fix to
1526 https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=54392, making
1527 the xmlcatalog man page display more elegantly
1528
Daniel Veillard3fbe8e32001-10-06 13:30:33 +00001529Sat Oct 6 15:27:12 CEST 2001 Daniel Veillard <daniel@veillard.com>
1530
1531 * configure.in: closing bug #61832
1532 * HTMLparser.c: removed a warning
1533
Daniel Veillard6ab38382001-10-06 13:08:27 +00001534Sat Oct 6 15:07:14 CEST 2001 Daniel Veillard <daniel@veillard.com>
1535
1536 * xpath.c: fixing #61673 part I, do not loose doc information
1537 when copying result value trees.
1538
Daniel Veillard556c6682001-10-06 09:59:51 +00001539Sat Oct 6 11:58:58 CEST 2001 Daniel Veillard <daniel@veillard.com>
1540
1541 * xpath.c: trying to harden the XPath interpreter
1542
MDT 2001 John Fleck9f82dc62001-10-06 02:40:10 +00001543Fri Oct 5 20:37:51 MDT 2001 John Fleck <jfleck@inkstain.net>
1544
1545 * doc/xmlcatalog.1 updated using a new stylesheet to address, in
1546 part, https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=54392
1547
William M. Brack1633d182001-10-05 15:41:19 +00001548Fri Oct 5 23:35:00 HKT 2001 William Brack <wbrack@mmm.com.hk>
1549
1550 * HTMLparser: repaired another loop problem
1551
Daniel Veillard20ee8c02001-10-05 09:18:14 +00001552Fri Oct 5 11:16:21 CEST 2001 Daniel Veillard <daniel@veillard.com>
1553
1554 * uri.c: applied fix from Mathias Hasselmann about a bug in URI
1555 parsing.
1556 * xpath.c: fix bug #61291 the default XML namespace node is
1557 missing from the namespace axis.
1558 * tree.c: refuse to create namespaces nodes with prefix "xml"
1559
Daniel Veillard651f9472001-10-04 14:51:06 +00001560Thu Oct 4 16:47:44 CEST 2001 Daniel Veillard <daniel@veillard.com>
1561
1562 * SAX.c: ouch a non-defined namespace could lead to a crash,
1563 fixed #61215
1564
Daniel Veillard7dd05702001-10-04 14:25:12 +00001565Thu Oct 4 16:24:26 CEST 2001 Daniel Veillard <daniel@veillard.com>
1566
1567 * parserInternals.c: closed bug #61054
1568
Daniel Veillard5e6d10a2001-10-03 13:21:13 +00001569Wed Oct 3 15:19:04 CEST 2001 Daniel Veillard <daniel@veillard.com>
1570
1571 * include/libxml/Makefile.am: closing #60708
1572
Daniel Veillarda293c322001-10-02 13:54:14 +00001573Tue Oct 2 15:52:05 CEST 2001 Daniel Veillard <daniel@veillard.com>
1574
1575 * win32/dsp/libxml2.def.src include/libxml/parser.h parser.c:
1576 adding xmlSAXParseFileWithData following Marco Stipek suggestion
1577
Daniel Veillardf4309d72001-10-02 09:28:58 +00001578Tue Oct 2 11:27:58 CEST 2001 Daniel Veillard <daniel@veillard.com>
1579
1580 * valid.c: close bug #61550 when xml: wasn't considered a namespace
1581
Daniel Veillardf6ed8bc2001-10-02 09:22:47 +00001582Tue Oct 2 11:18:32 CEST 2001 Daniel Veillard <daniel@veillard.com>
1583
1584 * win32/dsp/libxml2.def.src: Igor Zlatkovic patches
1585 * DOCBparser.c HTMLparser.c parser.c: fixed typos
1586
Daniel Veillard16756b62001-10-01 07:36:25 +00001587Mon Oct 1 09:34:51 CEST 2001 Daniel Veillard <daniel@veillard.com>
1588
1589 * catalog.c: Justin Fletcher provided cleaup code in case
1590 HAVE_STAT is not defined
1591 * include/win32config.h: Igor Zlatkovic suggested to have
1592 HAVE_STAT defined there
1593
William M. Brack5e1cac12001-09-28 16:19:18 +00001594Sat Sep 29 00:15:00 HKT 2001 William Brack <wbrack@mmm.com.hk>
1595
1596 * catalog.c - fixed typing error reported by M. Barros
1597
MDT 2001 John Fleckbbb9e432001-09-24 03:08:43 +00001598Sun Sep 23 21:02:39 MDT 2001 John Fleck <jfleck@inkstain.net>
1599
1600 * xmllint.c - fixing typo
1601
William M. Brackd28e48a2001-09-23 01:55:08 +00001602Sat Sep 22 10:00:00 HKT 2001 William Brack <wbrack@mmm.com.hk>
1603
1604 * HTMLparser.c: small enhancement to prevent loop on
1605 unrecognizable data
1606
Daniel Veillardb1d62872001-09-21 09:47:08 +00001607Fri Sep 21 11:45:53 CEST 2001 Daniel Veillard <daniel@veillard.com>
1608
1609 * parserInternals.c: applying patch from bug #60757 this
1610 should close it
1611
Daniel Veillardc0631a62001-09-20 13:56:06 +00001612Thu Sep 20 15:54:29 CEST 2001 Daniel Veillard <daniel@veillard.com>
1613
1614 * catalog.c xmlcatalog.c: removed a couple of warning
1615 * xpath.c: try to solve the linking problem on platforms
1616 needing trio to compile
1617
Daniel Veillard1a123612001-09-19 08:06:23 +00001618Wed Sep 19 10:01:37 CEST 2001 Daniel Veillard <daniel@veillard.com>
CEST 2001 Jens Finkede8c8af2001-09-19 07:20:40 +00001619
Daniel Veillard1a123612001-09-19 08:06:23 +00001620 * Makefile.am libxml.spec.in: backing up non-documented changes
1621 commited without review or aproval by Jens Finke <jens@gnome.org>
1622 * HACKING: made 100% clear that no commit should be done directly
CEST 2001 Jens Finkede8c8af2001-09-19 07:20:40 +00001623
Daniel Veillardf5b44e42001-09-17 17:19:54 +00001624Mon Sep 17 18:52:37 CEST 2001 Daniel Veillard <daniel@veillard.com>
1625
1626 * configure.in: Joe Orton provided a patch fixing a problem
1627 when iconv is specified to be in a non-standard directory
1628 but wasn't exported in xml2-config --cflags
1629
Daniel Veillard2fc2db72001-09-14 17:33:51 +00001630Fri Sep 14 19:32:43 CEST 2001 Daniel Veillard <daniel@veillard.com>
1631
Daniel Veillardf5b44e42001-09-17 17:19:54 +00001632 * configure.in: let's ship 2.4.5 before getting too much
Daniel Veillard2fc2db72001-09-14 17:33:51 +00001633 troubles with 2.4.4 errors.
1634
Daniel Veillard16698282001-09-14 10:29:27 +00001635Fri Sep 14 12:26:58 CEST 2001 Daniel Veillard <daniel@veillard.com>
1636
1637 * encoding.c entities.c: do not output hexadecimal charrefs
1638 when serializing HTML since some version of Netscape can't
1639 grok it, generate decimal ones.
1640 * result/HTML/doc3.htm: output changed due to previous test
1641 * parserInternals.c: repair xmlKeepBlanksDefault() broken in 2.4.4
1642
Daniel Veillard98fed372001-09-13 11:34:58 +00001643Thu Sep 13 13:34:27 CEST 2001 Daniel Veillard <daniel@veillard.com>
1644
1645 * libxml-2.0.pc.in: dohh generated the wrong include path :-(
1646 * doc/Makefile.am libxml.spec.in: re-dohh forgot the new manpage :-(
1647
Daniel Veillard07cdb2a2001-09-12 20:19:58 +00001648Wed Sep 12 22:14:55 CEST 2001 Daniel Veillard <daniel@veillard.com>
Daniel Veillard98fed372001-09-13 11:34:58 +00001649 Released 2.4.4
Daniel Veillard07cdb2a2001-09-12 20:19:58 +00001650
1651 * config.h.in configure.in libxml.spec.in include/libxml/Makefile.am
1652 libxml-2.0.pc.in: moved includes to includedir/libxml2/libxml,
1653 updated the configuration scripts systems accordingly
1654
Daniel Veillard04382ae2001-09-12 18:51:30 +00001655Wed Sep 12 20:49:32 CEST 2001 Daniel Veillard <daniel@veillard.com>
1656
1657 * configure.in: preparing for 2.4.4
1658 * doc/xml.html doc/html/*: updated and rebuilt the docs
1659
Daniel Veillardd63437e2001-09-12 15:00:27 +00001660Wed Sep 12 16:58:16 CEST 2001 Daniel Veillard <daniel@veillard.com>
1661
1662 * win32/dsp/libxml2.def.src: tried to incorporate comments
1663 from bug #59220
1664
Daniel Veillard319a7422001-09-11 09:27:09 +00001665Tue Sep 11 11:25:36 CEST 2001 Daniel Veillard <daniel@veillard.com>
1666
1667 * parser.c result/noent/wml.xml: fixed bug #59981 related
1668 to handling of '&' in attributes when entities are substitued
1669
Daniel Veillard7cf5e442001-09-10 20:16:32 +00001670Mon Sep 10 22:14:42 CEST 2001 Daniel Veillard <daniel@veillard.com>
1671
1672 * libxml.h include/libxml/xmlversion.h.in
1673 include/libxml/xmlwin32version.h include/libxml/xmlwin32version.h.in:
1674 Tried to close bug #60131
1675
Daniel Veillardbce62332001-09-10 18:46:55 +00001676Mon Sep 10 20:46:03 CEST 2001 Daniel Veillard <daniel@veillard.com>
1677
1678 * SAX.c: fixed a bug in the HTML parser introduced Sep 9
1679
Daniel Veillard143b04f2001-09-10 18:14:14 +00001680Mon Sep 10 20:13:09 CEST 2001 Daniel Veillard <daniel@veillard.com>
1681
1682 * SAX.c: fixing bug #59946 on xmlns=""
1683
Daniel Veillard7a51d6d2001-09-10 14:40:43 +00001684Mon Sep 10 16:39:42 CEST 2001 Daniel Veillard <daniel@veillard.com>
1685
1686 * include/libxml/xmlerror.h SAX.c: fixing bug 59732, simple
1687 but allocates a new error code.
1688
Daniel Veillard05c13a22001-09-09 08:38:09 +00001689Sun Sep 9 10:33:15 CEST 2001 Daniel Veillard <daniel@veillard.com>
1690
1691 * xmllint.c: John Fleck fixed typos in the options output
1692 * parser.c SAX.c: fix ignorable white space SAX selection
1693
1694Sat Sep 8 11:43:53 CEST 2001 Daniel Veillard <daniel@veillard.com>
1695
1696 * entities.c: Steve Underwood found the possibility of an
1697 ininite loop in case of error.
1698
Daniel Veillard5eb9dea2001-09-07 09:38:02 +00001699Fri Sep 7 11:35:00 CEST 2001 Daniel Veillard <daniel@veillard.com>
1700
1701 * Makefile.am: Need $(ICONV_LIBS) in libxml2_la_LIBADD
1702
Daniel Veillarda050d232001-09-05 15:51:05 +00001703Wed Sep 5 17:47:43 CEST 2001 Daniel Veillard <daniel@veillard.com>
1704
1705 * parser.c: warn if version is not 1.0 but it's not
1706 strictly speaking an error after analyzing the spec
1707
MDT 2001 John Fleck04685002001-09-03 16:11:47 +00001708Mon Sep 3 10:07:03 MDT 2001 John Fleck <jfleck@inkstain.net>
1709
1710 *doc/catalog.html - add link to the html version of the
1711 man page, other linguistic cleanups
1712
MDT 2001 John Fleck5bd39dc2001-09-03 15:14:19 +00001713Mon Sep 3 09:10:08 MDT 2001 John Fleck <jfleck@inkstain.net>
1714
1715 * doc/xmlcatalog_man.xml, xmlcatalog_man.html, xmlcatalog.1
1716 adding documentation for xmlcatalog. Note: xmlcatalog.1, the man
1717 file, has not yet been included in the build.
1718
Daniel Veillard99784ff2001-09-01 16:20:28 +00001719Sat Sep 1 18:17:47 CEST 2001 Daniel Veillard <daniel@veillard.com>
1720
1721 * catalog.c: removed a duplicate affectation Justin Fletcher
1722
Daniel Veillard9e1c72d2001-08-31 20:03:19 +00001723Fri Aug 31 22:02:10 CEST 2001 Daniel Veillard <daniel@veillard.com>
1724
1725 * tree.c: Armin Sander pointed a possible text coalescing
1726 problem, completed his patch.
1727
Bjorn Reese0b2ae432001-08-31 16:31:57 +00001728Fri Aug 31 18:30:28 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
1729
1730 * trionan.c: Fixed const and volatile re-definition problem
1731
Daniel Veillard5d96fff2001-08-31 14:55:30 +00001732Fri Aug 31 16:51:28 CEST 2001 Daniel Veillard <daniel@veillard.com>
1733
1734 * libxml.4 parser.c: doc updates from Heiko Rupp
1735 * parserInternals.c: 2 sanity checks from Heiko Rupp
1736
Daniel Veillard3ec4c612001-08-28 20:39:49 +00001737Tue Aug 28 22:38:45 CEST 2001 Daniel Veillard <daniel@veillard.com>
1738
1739 * tree.c: applied patch from Armin Sander to make some pointers
1740 const in xmlCopyNode()
Daniel Veillard2ebd7a72001-08-28 21:07:03 +00001741 * include/libxml/tree.h: added fix to the header
Daniel Veillard3ec4c612001-08-28 20:39:49 +00001742
Daniel Veillardb06c6142001-08-27 14:26:30 +00001743Mon Aug 27 16:24:47 CEST 2001 Daniel Veillard <daniel@veillard.com>
1744
1745 * xpath.c: hum, restrict the integer usage gcc bug workaround
1746 to only gcc compilers so that other architecture don't get
1747 penalized by this limitation.
1748 * include/libxml/xpath.h: small typo fix from Heiko W. Rupp
1749
Daniel Veillard268fd1b2001-08-26 18:46:36 +00001750Sun Aug 26 20:45:04 CEST 2001 Daniel Veillard <daniel@veillard.com>
1751
1752 * valid.c: fixed a Windows compiler warning (Chris Poblete)
1753 * xpath.c: fix for mod when dividend is 0 (Chris Poblete)
1754
Daniel Veillard6c5f9d12001-08-25 13:33:14 +00001755Sat Aug 25 15:30:17 CEST 2001 Daniel Veillard <daniel@veillard.com>
1756
1757 * include/libxml/catalog.h catalog.c xmlcatalog.c: added a
1758 --convert option to xmlcatalog to convert SGML ones to
1759 the XML syntax.
1760 * xmllint.c: small cleanup for $SGML_CATALOG_FILES support.
1761
1762 2.4.3 got released at that point
Daniel Veillard6990bf32001-08-23 21:17:48 +00001763Thu Aug 23 23:16:32 CEST 2001 Daniel Veillard <daniel@veillard.com>
1764
1765 * catalog.c xmlIO.c: started some serious testing and fixed
1766 a few bug and optmization needs.
1767
Daniel Veillard9f7b84b2001-08-23 15:31:19 +00001768Thu Aug 23 17:26:58 CEST 2001 Daniel Veillard <daniel@veillard.com>
1769
1770 * Makefile.am configure.in include/libxml/xmlwin32version.h:
1771 preparing for a 2.4.3 release even if it may not be ready yet
1772 * catalog.c parser.c xmlIO.c include/libxml/catalog.h: redirected
1773 all file parsing lookup to go through the entity resolver, add
1774 to add an API to bypass it (needed to load catalogs themselves),
1775 some cleanup on the catalog code too.
1776 * nanoftp.c: small cleanup
1777 * doc/catalog.html: small update
1778
Daniel Veillardbc2ddbe2001-08-23 10:24:27 +00001779Thu Aug 23 12:22:26 CEST 2001 Daniel Veillard <daniel@veillard.com>
1780
1781 * catalog.c: fixed bugi #59406 in SGML catalog parsing reported by
1782 Jun Kuriyama
1783
Daniel Veillardffb120d2001-08-23 00:52:23 +00001784Thu Aug 23 02:51:29 CEST 2001 Daniel Veillard <daniel@veillard.com>
1785
1786 * doc/catalog.html: finished the catalog documentation
1787
Daniel Veillarde7ead2d2001-08-22 23:44:09 +00001788Thu Aug 23 01:38:42 CEST 2001 Daniel Veillard <daniel@veillard.com>
1789
1790 * doc/catalog.html doc/xml.html: added documentation about
1791 Catalog support, misses an API description
1792 * doc/html/*: reextracted the API pages
1793
Daniel Veillarddc2cee22001-08-22 16:30:37 +00001794Wed Aug 22 18:27:47 CEST 2001 Daniel Veillard <daniel@veillard.com>
1795
1796 * include/libxml/catalog.h catalog.c xmlIO.c HTMLparser.c:
1797 Added the part about section 7.2 on URI resolution,
1798 fixed a side effect in the HTML parser, look complete
1799 and ready to rock except the URI/SystemID part!
1800
Daniel Veillard5d90b6c2001-08-22 14:29:45 +00001801Wed Aug 22 16:27:03 CEST 2001 Daniel Veillard <daniel@veillard.com>
1802
1803 * include/libxml/catalog.h include/libxml/parser.h
1804 include/libxml/xmlerror.h catalog.c parser.c parserInternals.c
1805 xmlIO.c: added support and APIs needed for the catalog PI
1806 * include/libxml/xmlIO.h: cleanup
1807
Daniel Veillarde2940dd2001-08-22 00:06:49 +00001808Wed Aug 22 02:03:31 CEST 2001 Daniel Veillard <daniel@veillard.com>
1809
1810 * catalog.c parser.c xmlIO.c xmlcatalog.c xmllint.c
1811 include/libxml/catalog.h: starts to look okay, really
1812 plugged the new framework, cleaned a lot of stuff,
1813 added some APIs, except the PI's support missing this
1814 should be mostly complete
1815 * result/catalogs/* test/catalogs/*: added new test, enriched
1816 the existing one with URN ID tests
1817
Daniel Veillard64339542001-08-21 12:57:59 +00001818Tue Aug 21 14:56:18 CEST 2001 Daniel Veillard <daniel@veillard.com>
1819
1820 * catalog.c: fixed nextCatalog
1821 * result/catalogs/docbook test/catalogs/*: started adding
1822 a small regression test
1823
Daniel Veillardcda96922001-08-21 10:56:31 +00001824Tue Aug 21 12:52:38 CEST 2001 Daniel Veillard <daniel@veillard.com>
1825
1826 * Makefile.am catalog.c xmlcatalog.c include/libxml/catalog.h:
1827 more work on the XML catalog support.
1828 * parser.c include/libxml/parser.h: small cleanup seems using
1829 list as a public parameter name can give portability troubles
1830 * trionan.c trionan.h xpath.c include/libxml/trionan.h
1831 include/libxml/xpath.h include/libxml/Makefile.am: removed
1832 trionan from the libxml API, added xmlXPathIsInf and xmlXPathIsNaN
1833 wrappers
1834
Bjorn Reese45029602001-08-21 09:23:53 +00001835Tue Aug 21 11:18:45 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
1836
1837 * Makefile.am trio.c triodef.h trionan.c xpath.c
1838 include/libxml/Makefile.am include/libxml/trionan.h:
1839 Re-worked Not-A-Number and Infinity support.
1840 * xmlcatalog.c: added readline include files
1841
Daniel Veillard344cee72001-08-20 00:08:40 +00001842Mon Aug 20 02:04:13 CEST 2001 Daniel Veillard <daniel@veillard.com>
1843
1844 * Makefile.am xmlcatalog.c libxml.spec.in: renaming
1845 testCatalog as xmlcatalog, making it an installed app
1846 adding a shell, and preparing it to be a /etc/xml/catalog
1847 management tool, though not ready yet
1848 * catalog.c include/libxml/catalog.h: adding support for
1849 XML Catalogs http://www.oasis-open.org/committees/entity/
1850 not finished, there is some interesting tradeoffs and a
1851 few open questions left.
1852
Daniel Veillardb7664f42001-08-19 13:00:43 +00001853Sun Aug 19 14:59:56 CEST 2001 Daniel Veillard <daniel@veillard.com>
1854
1855 * xmllint.c: fixed a line formatting problem
1856
Daniel Veillard5015b712001-08-17 09:37:52 +00001857Fri Aug 17 11:35:31 CEST 2001 Daniel Veillard <daniel@veillard.com>
1858
1859 * SAX.c: removed a couple of unused variable (Albert Chin)
1860
Daniel Veillardbb371292001-08-16 23:26:59 +00001861Fri Aug 17 01:25:21 CEST 2001 Daniel Veillard <daniel@veillard.com>
1862
1863 * HTMLparser.c HTMLtree.c include/libxml/HTMLparser.h:
1864 trying to fix some troubles w.r.t. function returning
1865 const xxxPtr.
1866
Daniel Veillardb60c54e2001-08-16 19:34:27 +00001867Thu Aug 16 21:33:20 CEST 2001 Daniel Veillard <daniel@veillard.com>
1868
1869 * win32/dsp/libxml2.def.src: another set of symbols conditionally
1870 defined
1871
Daniel Veillardae6db172001-08-16 19:32:00 +00001872Thu Aug 16 21:31:14 CEST 2001 Daniel Veillard <daniel@veillard.com>
1873
1874 * xpointer.c: removed unused var
1875
Daniel Veillard09190202001-08-16 16:27:41 +00001876Thu Aug 16 18:26:40 CEST 2001 Daniel Veillard <daniel@veillard.com>
1877
1878 * testXPath.c: another small cleanup closing bug #59110
1879
Daniel Veillard796f4b62001-08-16 16:00:13 +00001880Thu Aug 16 17:59:18 CEST 2001 Daniel Veillard <daniel@veillard.com>
1881
1882 * win32/dsp/libxml2.def.src: small cleanup closing bug
1883 #59108
1884
Daniel Veillard5aac4e42001-08-15 20:46:57 +00001885Wed Aug 15 22:46:01 CEST 2001 Daniel Veillard <daniel@veillard.com>
1886
1887 * example/gjobread.c: add xmlCleanupParser() before leaving
1888
Daniel Veillard9a0b3d62001-08-15 12:58:03 +00001889Wed Aug 15 14:57:08 CEST 2001 Daniel Veillard <daniel@veillard.com>
1890
1891 * config.h.in configure.in include/libxml/xmlwin32version.h:
1892 released 2.4.2
1893
Daniel Veillardd3d06722001-08-15 12:06:36 +00001894Wed Aug 15 13:56:22 CEST 2001 Daniel Veillard <daniel@veillard.com>
1895
1896 * include/libxml/valid.h debugXML.c valid.c: deprecate
1897 the non-boundchecking Sprintf functions, add Snprintf
1898 this should close bug #57984
1899
Daniel Veillardecb6f5b2001-08-15 08:47:42 +00001900Wed Aug 15 10:46:07 CEST 2001 Daniel Veillard <daniel@veillard.com>
1901
1902 * xmlIO.c: xmlOutputBufferCreateFilename() didn't unescaped
1903 URIs before doing the lookups (pointed by Mark Vakoc)
1904
Daniel Veillard0ab5cab2001-08-14 16:43:10 +00001905Tue Aug 14 18:37:23 CEST 2001 Daniel Veillard <daniel@veillard.com>
1906
1907 * xpath.c: serious changes on Result Value Trees and NodeSets
1908 w.r.t. deallocation and collect operations. Probably not
1909 100% clean (merge of allocated trees smells like a problem).
1910 Seems sufficient to close #58943
1911
Daniel Veillard90493a92001-08-14 14:12:47 +00001912Tue Aug 14 16:12:00 CEST 2001 Daniel Veillard <daniel@veillard.com>
1913
1914 * xmllint.c: adding a --format option
1915
Daniel Veillardfe703322001-08-14 12:18:09 +00001916Tue Aug 14 14:16:24 CEST 2001 Daniel Veillard <daniel@veillard.com>
1917
1918 * xpath.c: count() was broken on Result Value Tree
1919 * xmlIO.c: fixed file:/// accesses on _WIN32
1920
Daniel Veillard70ac0e32001-08-13 11:24:16 +00001921Mon Aug 13 13:22:53 CEST 2001 Daniel Veillard <daniel@veillard.com>
1922
1923 * libxml.m4: s/LIBXML_VERSION_NUMBER/LIBXML_VERSION/ seems the
1924 macro was renamed, this should close bug #58683
1925
Daniel Veillardf300b7e2001-08-13 10:43:15 +00001926Mon Aug 13 12:33:40 CEST 2001 Daniel Veillard <daniel@veillard.com>
1927
1928 * SAX.c: small fix fixing bug #58539 reported by coolo, in
1929 entity substitution mode text at the end of the entity might
1930 be added due to text coalescing.
1931 * nanoftp.c parser.c: small cleanup
1932
Daniel Veillard0c720972001-08-08 20:59:00 +00001933Wed Aug 8 22:57:05 CEST 2001 Daniel Veillard <daniel@veillard.com>
1934
1935 * HACKING: added John Fleck right to commit in the doc subdir
1936
Daniel Veillard48da9102001-08-07 01:10:10 +00001937Tue Aug 7 03:05:58 CEST 2001 Daniel Veillard <daniel@veillard.com>
1938
1939 * SAX.c testXPath.c valid.c xmllint.c include/libxml/valid.h:
1940 allow to inherit attributes from the DTD directly in the
1941 tree, this is needed for XPath and can be a useful feature.
1942 Inherited namespaces are always provided at the tree level now
1943 * test/defattr* result/defattr* result/noent/defattr*: added a couple
1944 of tests for this feature (XSLT being the prime user).
1945
Daniel Veillard50f34372001-08-03 12:06:36 +00001946Fri Aug 3 14:02:20 CEST 2001 Daniel Veillard <daniel@veillard.com>
1947
1948 * DOCBparser.c Makefile.am nanohttp.c parser.c testHTML.c
1949 testSAX.c xmlIO.c xmllint.c include/win32config.h
1950 include/libxml/xmlversion.h.in include/libxml/xmlwin32version.h
1951 include/libxml/xmlwin32version.h.in win32/README.MSDev
1952 win32/dsp/*: applied Win32 Facelift No.2 patches from
1953 Igor Zlatkovic for Windows/MSC
1954
Daniel Veillard9f4eb912001-08-01 21:22:27 +00001955Wed Aug 1 23:21:06 CEST 2001 Daniel Veillard <daniel@veillard.com>
1956
1957 * SAX.c: unparsedEntityDecl() the URI computation of the
1958 entity wasn't done breaking XSLT unparsed-entity-uri()
1959
Daniel Veillard567e1b42001-08-01 15:53:47 +00001960Wed Aug 1 17:44:57 CEST 2001 Daniel Veillard <daniel@veillard.com>
1961
1962 * xpath.c: fixed a bug when walking the descendants and
1963 the current node has no children
1964 * debugXML.c: show up when a text node is supposed to not be escaped
1965
Thomas Broyerf186c822001-07-31 23:30:37 +00001966Wed Aug 1 01:33:35 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
1967
1968 * xpath.c: fixed a bug in xmlXPathNodeTrailingSorted (for now it
1969 worked like the set:leading() function)
1970 * include/libxml/xpathInternals.h: added xmlXPathNodeSetContains
1971
Daniel Veillardba6db032001-07-31 16:25:45 +00001972Tue Jul 31 18:24:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
1973
1974 * nanohttp.c: protected an use of EAGAIN, Brian Stafford
1975
Daniel Veillard57905372001-07-31 15:52:17 +00001976Tue Jul 31 17:48:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
1977
1978 * include/libxml/xmlIO.h: apply change to close #58141
1979 * win32/libxml2/*: update of the MSC projects from Igor Zlatkovic
1980
Daniel Veillard5e3eecb2001-07-31 15:10:53 +00001981Tue Jul 31 17:09:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
1982
1983 * parser.c: when the internal subset uses a PE, then the
1984 included entity can use conditional sections.
1985
Daniel Veillard7d7e3792001-07-30 13:42:13 +00001986Mon Jul 30 12:58:39 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
1987
1988 * xpath.c include/libxml/xpath.h: fixed a serious memory problen
1989 when walking the namespace axis showing up in
1990 libxst/tests/general/bug-12
1991 * xmlmemory.c: added the possibility to trace a given block
1992 defined by its address
1993
Daniel Veillard4aafa792001-07-28 17:21:12 +00001994Sun Jul 29 07:18:53 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
1995
1996 * parser.c: don't override existing encoding specified before
1997 starting xmlParseDocument()
1998
Daniel Veillardfdb1f242001-07-27 23:32:44 +00001999Sat Jul 28 13:33:10 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2000
2001 * include/libxml/xmlwin32version.h: reinserted, needed for
2002 Windows users of CVS
2003
Darin Adlera77cac02001-07-27 17:41:51 +000020042001-07-27 Darin Adler <darin@bentspoon.com>
2005
Darin Adler699613b2001-07-27 22:47:14 +00002006 * encoding.c: (xmlIconvWrapper): Add cast to fix warning.
2007 * testCatalog.c: Add include of <libxml/parser.h>.
2008
20092001-07-27 Darin Adler <darin@bentspoon.com>
2010
Darin Adlera77cac02001-07-27 17:41:51 +00002011 * include/libxml/.cvsignore:
2012 * include/libxml/xmlwin32version.h:
2013 Remove this file from CVS because it's generated.
2014
Daniel Veillard50822cb2001-07-26 20:05:51 +00002015Fri Jul 27 10:03:56 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2016
2017 * parser.c include/libxml/parser.h: applied const patches from
2018 Tom Moog #58002
2019
Thomas Broyerba4ad322001-07-26 16:55:21 +00002020Thu Jul 26 18:55:52 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
2021
2022 * xpath.c include/libxml/xpath{,Internals}.h: added a function
2023 lookup framework
2024
Daniel Veillard1d0bfab2001-07-26 11:49:41 +00002025Fri Jul 27 01:50:20 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2026
2027 * tree.c: fixed xmlCopyNode() for documents
2028
Daniel Veillard6dd398f2001-07-25 22:41:03 +00002029Thu Jul 26 12:40:35 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2030
2031 * parser.c: fixed bugs #58073 reported by Greg Shtilman
2032
2033Thu Jul 26 11:38:37 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
Daniel Veillard2454ab92001-07-25 21:39:46 +00002034
2035 * parser.c: fixes bug #57652 reported by Morus Walter
2036
Daniel Veillarde3924972001-07-25 20:25:21 +00002037Thu Jul 26 10:24:34 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2038
2039 * nanohttp.c: John Kroll provided a small fix to xmlNanoHTTPSave
2040
Daniel Veillarda53c6882001-07-25 17:18:57 +00002041Thu Jul 26 07:16:04 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2042
2043 * parser.c parserInternals.c: fixed the xmlLineNumbersDefault()
2044 errors, lesson don't add new functions at 1am before a release
2045 * xpath.c: integrated fix from Bjorn to avoid divide by zero
2046 from XPath initialization when possible.
2047
Daniel Veillardd9bad132001-07-23 19:39:43 +00002048Tue Jul 24 15:39:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2049
2050 * result/scripts/base*: removing history/readline changed
2051 this slightly
2052 * include/libxml/parser.h SAX.c parser.c parserInternals.c
2053 xmllint.c: make element content line number generation
2054 optionnal to avoid breaking old apps added interface to switch
2055
Daniel Veillardf012a642001-07-23 19:10:52 +00002056Tue Jul 24 15:06:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2057
2058 * configure.in: get rid of the readline and libhistory
2059 dependancies by default, release 2.4.1 with IA64 fix
2060 * nanohttp.c tree.c xmlIO.c include/libxml/nanohttp.h
2061 include/libxml/tree.h include/libxml/xmlIO.h: incorporated
2062 John Kroll fixes to allow saving to HTTP via PUT (or
2063 POST of needed).
2064 * doc/html/*.html: regenerated the docs
2065
Thomas Broyere8126242001-07-22 03:54:15 +00002066Sun Jul 22 05:56:16 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
2067
2068 * hash.c include/libxml/hash.h: added xmlHashScannerFull,
2069 xmlHashScanFull and xmlHashScannFull3 to get passed the
2070 three keys as arguments to the callback function
2071
Daniel Veillard5e2dace2001-07-18 19:30:27 +00002072Thu Jul 19 15:29:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2073
2074 * configure.in Makefile.am: removed libxml softlink for good
2075 * include/libxml/*.h *.c doc/Makefile.am: cleanup to get
2076 100% coverage by gtk-doc
2077
Daniel Veillard8599e702001-07-17 21:38:51 +00002078Tue Jul 17 17:36:46 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2079
2080 * xmlmemory.c include/libxml/xmlmemory.h: debugging on IA64,
2081 fixed serious troubles due to size_t vs. int mismatch
2082
Daniel Veillard8fcc4942001-07-17 20:07:33 +00002083Tue Jul 17 16:04:36 EDT 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2084
2085 * SAX.c xmlIO.c: cleaned up some warning on the Alpha
2086
Thomas Broyerf06a3d82001-07-16 04:52:57 +00002087Mon Jul 16 06:32:44 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
2088
2089 * include/libxml/xpath{,Internals}.h xpath.c: added a more
2090 convenient extension API for value and context managing
2091 Now handles external objects through xmlXPathPopExternal,
2092 xmlXPathWrapExternal and xmlXPathReturnExternal.
2093 Added functions for sets operations (intersection, etc.)
2094
Daniel Veillard22090732001-07-16 00:06:07 +00002095Mon Jul 16 20:05:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2096
2097 * include/libxml/parserInternals.h include/libxml/HTMLparser.h
2098 xmlIO.c tree.c parserInternals.c entities.c encoding.c
2099 HTMLparser.c: cleanup of global variables, marking some
2100 const or private.
2101
Thomas Broyerf06a3d82001-07-16 04:52:57 +00002102Mon Jul 16 00:17:15 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
Thomas Broyer496be682001-07-15 22:59:18 +00002103
2104 * include/libxml/xpath.h: exported xmlXPath{NAN,PINF,NINF}
2105 fixed xmlXPathNodeSetItem when passing index=0
2106
Daniel Veillard05dec342001-07-14 21:57:39 +00002107Sun Jul 15 17:58:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2108
2109 * include/libxml/xmlwin32version.h.in: added xmlCheckVersion()
2110
Daniel Veillard28ae6362001-07-14 16:44:32 +00002111Sat Jul 14 19:31:21 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2112
2113 * xmllint.c: fixed compilation under Cygwin #57503
2114 * TODO: update
2115
Peter Williamsed156f52001-07-13 18:35:13 +000021162001-07-13 Peter Williams <peterw@ximian.com>
2117
2118 * config.h.in: add #undef HAVE_DLFCN_H
2119
2120 * example/Makefile.am (INCLUDES): Compile fix when srcdir !=
2121 builddir.
2122
Daniel Veillard73b36e32001-07-12 15:09:52 +00002123Fri Jul 13 11:09:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2124
2125 * win32/libxml2/libxml2.def.src: added a couple of exported entries
2126 raised by #57348 and #57381
2127
Daniel Veillard7db37732001-07-12 01:20:08 +00002128Thu Jul 12 21:20:17 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2129
2130 * DOCBparser.c HTMLparser.c HTMLtree.c SAX.c debugXML.c parser.c
2131 tree.c xpointer.c: store the line numbder in element->content,
2132 may break some software, need a configuration mechanism
2133
Darin Adler96037892001-07-11 00:03:16 +000021342001-07-10 Darin Adler <darin@bentspoon.com>
2135
2136 * .cvsignore:
2137 * example/.cvsignore:
2138 * include/.cvsignore:
2139 * include/libxml/.cvsignore:
2140 Various things that are generated and should be ignored.
2141
Daniel Veillard09ab7e12001-07-10 15:49:44 +00002142Tue Jul 10 17:47:09 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2143
2144 * configure.in include/libxml/xmlwin32version.h: release of 2.4.0
2145 * doc/xml.html doc/html/*: updated the docs
2146
Daniel Veillard04e2dae2001-07-09 20:07:25 +00002147Mon Jul 9 22:06:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2148
2149 * valid.c: fixed "Internal: MIXED struct bad" when #CDATA elements
2150 validation occured on content with element child
2151
Daniel Veillardb8c9be92001-07-09 16:01:19 +00002152Mon Jul 9 17:59:08 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2153
2154 * tree.c: fixed XML Base computation which was broken
2155 * debugXML.c: added a base function to the shell
2156 * Makefile.am result/scripts/* test/scripts/*: added scripts
2157 based regression tests, and adding 2 XML Base tests
2158
Daniel Veillard19e96c32001-07-09 10:32:59 +00002159Mon Jul 9 12:31:05 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2160
2161 * tree.c: set properties doc and call xmlSetListDoc for properties
2162 content when grafting them in a different tree.
2163 * aclocal.m4: remove from CVS
2164
Daniel Veillarde086f5c2001-07-08 21:10:40 +00002165Sun Jul 8 23:09:07 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2166
2167 * win32/libxml2/libxml2.def.src: added some missing entry point
2168 for XPath (Mark Vakoc)
2169
Daniel Veillard388236f2001-07-08 18:35:48 +00002170Sun Jul 8 20:34:35 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2171
2172 * xmlIO.c: fixed an old bug raised by Bernhard Zwisch, the I/O
2173 layer should URI-Unescape before trying to open resources.
2174
Daniel Veillard04383752001-07-08 14:27:15 +00002175Sun Jul 8 16:26:00 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2176
2177 * xpath.c: fix the name() bug for elements in the default
2178 namespace reported by Charlie Bozeman
2179
Daniel Veillard7583a592001-07-08 13:15:55 +00002180Sun Jul 8 15:11:05 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2181
2182 * SAX.c parser.c testXPath.c xpath.c: trying to fix #56948, this
2183 led to an XPath fix, improvements of SAX initialization, and
2184 an added option --nocdata to testXPath
2185
Daniel Veillard449d7392001-07-07 19:11:06 +00002186Sat Jul 7 21:09:55 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2187
2188 * doc/libxml-doc.el: Felix Natter provided anew version working
2189 with XEmacs too
2190
Daniel Veillard5168dbf2001-07-07 00:18:23 +00002191Sat Jul 7 02:16:00 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2192
2193 * include/libxml/xpath.h: small cleanup
2194 * doc/xml.html: update
2195
Daniel Veillardf524d6e2001-07-05 23:41:40 +00002196Fri Jul 6 01:40:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2197
2198 * Makefile.am configure.in include/libxml/xmlwin32version.h:
2199 released 2.3.14
2200
Daniel Veillard4b8328d2001-07-05 22:48:42 +00002201Fri Jul 6 00:47:41 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2202
2203 * doc/html/*: rebuilt the docs for the release
Daniel Veillard5b43fde2001-07-05 23:31:40 +00002204 * doc/xml.html: added 2.3.14 release.
Daniel Veillard4b8328d2001-07-05 22:48:42 +00002205
Daniel Veillard73c9c042001-07-05 20:02:54 +00002206Thu Jul 5 22:01:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2207
2208 * xpath.c: a bug reported by Stephan Kulow empty nodesets
2209 were not equal to empty strings
2210
Daniel Veillard1fd36d22001-07-04 22:54:28 +00002211Thu Jul 5 00:52:25 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2212
2213 * SAX.c: fixed a URI-Reference computation problem when validating
2214 * xmlIO.c: small cleanup
2215
Daniel Veillard4d65a1c2001-07-04 22:06:23 +00002216Thu Jul 5 00:04:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2217
2218 * parser.c: improved the description of a couple of interfaces
2219 upon Larry Stamper suggestion
2220
Daniel Veillard62f313b2001-07-04 19:49:14 +00002221Wed Jul 4 21:42:24 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2222
2223 * SAX.c entities.c parser.c: changed completely the way entities
2224 are handled when running the parser in entity substitution mode.
2225 This fixes a bug reported by Stephan Kulow and nearly divides
2226 by 3 the amount of memory required by libxslt to load and process
2227 DocBook TDG.
2228
Daniel Veillardf420ac52001-07-04 16:04:09 +00002229Wed Jul 4 18:02:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2230
2231 * HTMLparser.c: fixing a too early root closing problem raised
2232 byt Prashanth Naidu
2233
Daniel Veillard8c357d52001-07-03 23:43:33 +00002234Wed Jul 4 01:42:01 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2235
2236 * xpath.c: fixed a missing copy in xmlXPathVariableLookupNS()
2237 raised by Mark Vakoc.
2238
Daniel Veillard6e90d192001-07-03 16:37:49 +00002239Tue Jul 3 18:35:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2240
2241 * example/Makefile.am: fixed the include path to add srcdir/include
2242 * Makefile.am configure.in: fix from Albert Chin for iconv detection
2243 and some cleanup
2244
Daniel Veillardf06307e2001-07-03 10:35:50 +00002245Tue Jul 3 10:12:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2246
2247 * xpath.c include/libxml/xpath.h include/libxml/xpathInternals.h:
2248 lot of optimization work, results in significant improvements
2249 when handling really complex XPath queries. Add a small optimizer
2250 for unions, improve [n] and [last()], avoid some costly ops.
2251
Daniel Veillard77044732001-06-29 21:31:07 +00002252Fri Jun 29 23:26:54 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2253
2254 * include/libxml/parser.h parser.c: xmlStrstr args are both const
2255 * xpath.c: small cleanup
2256 * xmlGetNsList: reformated, fixed problems if used on Entities
2257
Daniel Veillard2adbb512001-06-28 16:20:36 +00002258Thu Jun 28 18:19:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2259
2260 * doc/xml.html: added 1.8.14 and 2.3.13 releases
2261
Daniel Veillardb37ecd02001-06-28 16:18:11 +00002262Thu Jun 28 18:16:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2263
2264 * configure.in include/libxml/xmlwin32version.h: released 2.3.13
2265 * Makefile.am example/Makefile.am: workaround automake generating
2266 erroneous deps
2267
Daniel Veillard12f7d292001-06-28 13:12:11 +00002268Thu Jun 28 15:08:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2269
2270 * include/win32config.h: bug #56801 Yon Derek provided a patch
2271 to the windows config file.
2272
Daniel Veillard87ee9142001-06-28 12:54:16 +00002273Thu Jun 28 14:51:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2274
2275 * xpointer.c include/win32config.h win32/libxml2/libxml2.def.src
2276 libxml.h : Yon Derek provided a set of changes to compile from
2277 CVS on Windows/MSC
2278
Daniel Veillard0e4cd172001-06-28 12:13:56 +00002279Thu Jun 28 14:11:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2280
2281 * parser.c: fixed UTF8 BOM support in push mode
2282 * test/utf8bom.xml result/utf8bom.xml result/noent/utf8bom.xml:
2283 added a specific testcase
2284
Daniel Veillard3e5bb8e2001-06-27 16:34:34 +00002285Wed Jun 27 18:33:13 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2286
2287 * Makefile.am: added --push regression tests
2288 * parserInternals.c: the XML parser segfaulted in --push mode
2289
Daniel Veillard9a89a8a2001-06-27 11:13:35 +00002290Wed Jun 27 13:09:51 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2291
2292 * configure.in: moved the symlinks detection within a CVS
2293 check, this is not portable and will be removed soon.
2294 * xpath.c: small cleanup/speedup
2295
Daniel Veillard11648102001-06-26 16:08:24 +00002296Tue Jun 26 18:05:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2297
2298 * configure.in doc/xml.html include/libxml/xmlwin32version.h:
2299 release of 2.3.12
2300 * parser.c: make an error message if unknow entities in all cases
2301
Daniel Veillardfcbd74a2001-06-26 07:47:23 +00002302Tue Jun 26 09:46:29 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2303
2304 * uri.c: fixed 2 uri normalization bugs on '//' reduction
2305
Daniel Veillard23793842001-06-25 16:07:45 +00002306Mon Jun 25 18:06:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2307
2308 * include/libxml/Makefile.am: Laszlo Peter pointed out that
2309 includes were installed in the wrong dir
2310
Daniel Veillardf5498f32001-06-25 15:08:36 +00002311Mon Jun 25 17:07:37 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2312
2313 * doc/html.xml: warn against sending code to exhibit bugs.
2314
Daniel Veillard56f06462001-06-24 21:34:03 +00002315Sun Jun 24 23:31:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2316
2317 * xpath.c: patch to xmlXPathFormatNumber for the optimizer on
2318 Tru64 from Thomas Leitner
2319
Daniel Veillardc5d64342001-06-24 12:13:24 +00002320Sun Jun 24 14:05:54 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2321
2322 * AUTHORS: added William and Bjorn
2323 * include/libxml/*.h *.c README doc/*.html etc.: changed old email to
2324 daniel@veillard.com hopefully I won't have to do this again
2325 * doc/Makefile.am doc/html/*.html: cleanup makefile, checked that
2326 docs can be rebuilt cleanly now
2327 * include/libxml/xml*version.h*: removed include/libxml/xmlversion.h
2328 from CVs it's generated, added include/libxml/xmlwin32version.h
2329 also generated but which should change far less frequently.
2330 * catalog.c nanoftp.c: made sure to include libxml.h not
2331 libxml/xmlversion.h directly
2332 * include/libxml/*.h: include xmlwin32version.h instead of xmlversion.h
2333 when compiling on WIN32 and MSC
2334
Daniel Veillard07385fd2001-06-23 21:55:48 +00002335Sat Jun 23 23:54:12 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2336
2337 * include/Makefile.am include/libxml/Makefile.am configure.in:
2338 fixed make distcheck and rebuilding the rpms
2339
Daniel Veillardcd1d9442001-06-23 18:53:44 +00002340Sat Jun 23 20:50:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2341
2342 * configure.in: should finish the migration of exported includes
2343 into a real include/libxml in CVS, at least for CVS users.
2344 * removed the exported headers, added in include/libxml (as well
2345 as xmlversion.h.in).
2346
Daniel Veillard6dd8e052001-06-23 18:38:06 +00002347Sat Jun 23 20:37:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2348
2349 * configure.in: fixed the way to detect symlink
2350
Daniel Veillard66541772001-06-23 18:31:04 +00002351Sat Jun 23 20:30:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2352
2353 * configure.in: updated, include/libxml is now a real CVS dir
2354
Daniel Veillardca989762001-06-23 17:39:29 +00002355Sat Jun 23 19:36:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2356
2357 * doc/libxml-doc.el: a new version of libxml-doc.el. This new
2358 version works with both libxml1 and libxml2 (it autodetects
2359 the prefix of the html-files) from Felix Natter.
2360 * doc/xml.html: updated doc accordingly
2361
Daniel Veillard8cf14d52001-06-23 16:32:46 +00002362Sat Jun 23 18:30:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2363
2364 * xpath.c: fixed the bug generating a template loop in libxslt
2365 when using docbook-xsl-1.4, * should filter out document nodes
2366 * HACKING: added William
2367 * TODO: updated
2368
Daniel Veillard7b06bcb2001-06-22 16:03:51 +00002369Fri Jun 22 18:02:37 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2370
2371 * doc/FAQ.html: added a warning about gcc-3.0
2372 * doc/xml.html: added reference to gdome2 and removed a confusing
2373 sentence
2374
Daniel Veillardf7f41852001-06-22 15:18:01 +00002375Fri Jun 22 17:02:16 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2376
2377 * xmlversion.h: okay this is a generated file, but Windows
2378 users need it and they can't generate it, and I want CVS
2379 Windows users ...
2380 * win32/libxml2/libxml2_so.dsp: Windows project file for
2381 the shared lib version of libxml2
2382 * win32/libxml2/libxml2.def.src: bug #56527 set of exported
2383 resources needed for libxslt/xsltproc by Yon Derek
2384
Bjorn Reese3157b342001-06-22 14:41:45 +00002385Fri Jun 22 16:39:36 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
2386
2387 * trio.c: MSVC fix (provided by Igor Zlatkovic)
2388
Daniel Veillard4151acb2001-06-22 10:48:57 +00002389Fri Jun 22 12:42:16 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2390
Daniel Veillardcc146db2001-06-22 11:10:52 +00002391 * include/win32config.h: another small fix for ATTRIBUTE_UNUSED
2392
2393Fri Jun 22 12:42:16 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2394
Daniel Veillard4151acb2001-06-22 10:48:57 +00002395 * include/win32config.h: Yon Derek provided a first fix
2396 to be able to compile libxslt/xsltproc on Windows
2397
Daniel Veillardd79bcd12001-06-21 22:07:42 +00002398Fri Jun 22 00:04:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2399
2400 * xpath.c: attempt to work around what seemed a gcc optimizer
2401 bug when handling floats on i386 http://veillard.com/gcc.bug
2402 * tree.c entities.c encoding.c: doing some cleanups while
2403 chasing it
2404
Daniel Veillard017b1082001-06-21 11:20:21 +00002405Thu Jun 21 13:13:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2406
2407 * Makefile.am: cleanup when --without-debug is specified
2408 * xinclude.c xpath.c xpathInternals.h xpointer.c: cleanup
2409 w.r.t. --without-debug and other include points
2410 * catalog.h testCatalog.c: a bit of cleanup and prepare for XML
2411 Catalogs
2412 * configure.in entities.h tree.h HTMLparser.c: removed
2413 --without-corba, made the _private field mandatory
2414
Daniel Veillard87a764e2001-06-20 17:41:10 +00002415Wed Jun 20 19:37:25 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2416
2417 * parser.c parserInternals.c encoding.c: Since Notepad on Win2k
2418 outputs a BOM in UTF8, an errata has been issued to avoid the
2419 problem, that was the most reasonable solution... Add support
2420 for a leading UTF8 BOM in entities.
2421
Daniel Veillard10ea86c2001-06-20 13:55:33 +00002422Wed Jun 20 15:38:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2423
2424 * valid.c: fixed a bug found when post validating an entity ref
2425 * xmllint.c: added --loaddtd and sligly changed --postvalid to
2426 activate it too
2427
Daniel Veillard39196eb2001-06-19 18:09:42 +00002428Tue Jun 19 20:03:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2429
2430 * tree.c xinclude.c xpointer.c: bug #56402 exposed a number of
2431 weakness in the node copy the XPointer and the XInclude
2432 implementations. Serious cleanup.
2433
Daniel Veillard3739b982001-06-19 12:51:30 +00002434Tue Jun 19 14:50:18 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2435
2436 * Makefile.am: Kjartan Maraas provided a small patch to
2437 add xml2-config.in to EXTRA_DIST
2438
Daniel Veillarda9142e72001-06-19 11:07:54 +00002439Tue Jun 19 13:04:10 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2440
2441 * valid.c tree.c parserInternals.c parser.c: Stephan Kulow
2442 provided another failing case found in KDE, the way the
2443 ctxt->vctxt.nodeTab was allocated and freed changed over
2444 time but it wasn't completely cleaned up. This should fix it.
2445
Daniel Veillard3ed27bd2001-06-17 17:58:17 +00002446Sun Jun 17 19:56:33 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2447
2448 * parser.c: Stephan Kulow also raised the fact that line number
2449 could get miscounted making debug harder, fixed the problem
2450 in xmlParseCharData()
2451
Daniel Veillard64b98c02001-06-17 17:20:21 +00002452Sun Jun 17 19:17:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2453
2454 * valid.c: Stephan Kulow pointed out a problem when validating
2455 and using an empty entity, forgot a 'break' in a case.
2456
Daniel Veillarde3c81b52001-06-17 14:50:34 +00002457Sun Jun 17 16:47:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2458
2459 * tree.c: fixed xmlHasNsProp() accordingly to bug #55683
2460 * doc/xml.html: updated with 2.3.11
2461
Daniel Veillard4ec885a2001-06-17 10:31:07 +00002462Sun Jun 17 12:24:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2463
2464 * TODO: updated adding cleanup of generated doc
2465 * configure.in: prepared to release 2.3.11
2466 * xmllint.c: added --version for bug reporting
2467 * doc/html/*.html: rebuilt the doc
2468
Daniel Veillard8b8d2252001-06-16 21:24:56 +00002469Sat Jun 16 23:23:33 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2470
2471 * xpath.c: first part of the work on selecting namespace to
2472 fix bug #56115
2473
Daniel Veillard96ed5832001-06-15 22:22:04 +00002474Sat Jun 16 00:20:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2475
2476 * Makefile.am example/Makefile.am: Laszlo PETER provided a fix
2477 when using -liconv
2478 * TODO: updated
2479
Daniel Veillardc4f631d2001-06-14 11:11:59 +00002480Fri Jun 15 07:08:57 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2481
2482 * HTMLtree.[ch]: more work on the HTML serialization routnes,
2483 cleanup, encoding support.
2484
Daniel Veillard608ad072001-06-14 08:32:28 +00002485Thu Jun 14 10:31:17 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2486
2487 * xpath.c: Thomas Broyer suggested a better patch for the / arg
2488
Daniel Veillard239d0522001-06-13 23:02:48 +00002489Thu Jun 14 01:01:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2490
2491 * xpath.c: bug detected by Ankh when / is used as a function arg
2492
Daniel Veillard02bb1702001-06-13 21:11:59 +00002493Wed Jun 13 23:08:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2494
2495 * HTMLparser.[ch] HTMLtree.c: stored the inline/block property
2496 of element and use it to avoid outputting formatting spaces at
2497 the wrong place. Implemented the format parameter for HTML save.
2498 * result/HTML/doc2.htm result/HTML/doc3.htm result/HTML/fp40.htm
2499 result/HTML/script.html result/HTML/test2.html result/HTML/test3.html
2500 result/HTML/wired.html: of course this impact the result of a
2501 number of HTML tests
2502
Daniel Veillard95d845f2001-06-13 13:48:46 +00002503Thu Jun 14 09:49:09 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2504
2505 * HTMLtree.[ch]: started augmenting the HTML save API with
2506 encoding and formatting parameters
2507
Daniel Veillardeca60d02001-06-13 07:45:41 +00002508Wed Jun 13 09:44:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2509
2510 * HTMLtree.h: cleanup and started evaluating the work needed on
2511 revamping the HTML output code
2512
Daniel Veillard84666b32001-06-11 17:31:08 +00002513Mon Jun 11 19:29:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2514
2515 * DOCBparser.c: handling of PIs and <?sgml-declaration in entities.
2516
Daniel Veillard8bdd2202001-06-11 12:47:59 +00002517Tue Jun 12 08:46:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2518
2519 * valid.c: fixed bug #56049, forgot one check in the
2520 validation routine
2521
Daniel Veillardca2366a2001-06-11 12:09:01 +00002522Tue Jun 12 08:09:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2523
2524 * tree.[ch]: grrr ... namespace is a C++ reserved keyword
2525
Daniel Veillard6761eee2001-06-11 10:29:38 +00002526Tue Jun 12 06:29:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2527
2528 * libxml.h: fixed an error in last commit
2529 * doc/FAQ.html: added an entry for compilation from CVS
2530
Daniel Veillard9cc6dc62001-06-11 08:09:20 +00002531Mon Jun 11 10:07:29 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2532
2533 * xmlversion.h.in libxml.h: Cygwin patches
2534 * tree.c: xmlFreeNodeList patch similar to xmlFreeNode one
2535 * tree.h: cleanup
2536
Daniel Veillardacd370f2001-06-09 17:17:51 +00002537Sat Jun 9 19:16:00 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2538
2539 * tree.c: patched xmlFreeNode() to avoid freeing() a static
2540 memory block in a strange case where libxml is linked twice
2541 in the binary.
2542
Daniel Veillard1d047672001-06-09 16:41:01 +00002543Sat Jun 9 18:39:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2544
2545 * valid.c: (a? , b? , c? , ... , z?) was storing/restauring
2546 state far too often, simple fix used to avoid it.
2547
Daniel Veillard4497e692001-06-09 14:19:02 +00002548Sat Jun 9 16:10:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2549
2550 * xinclude.c: Raphael Hertzog had a trouble with DTD nodes
2551 being processed, applied his patch
2552 * tree.c: fixed a bug raised in xmlStaticCopyNodeList()
2553
Daniel Veillardf3afa7d2001-06-09 13:52:58 +00002554Sat Jun 9 15:50:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2555
2556 * nanoftp.c nanohttp.c uri.c include/win32config.h: Igor Zlatkovic
2557 provided fixes to compile on MSCC again
2558 * win32/libxml2/libxml2.def.src win32/libxml2/libxml2*.dsp: he
2559 also provided an update for the project files.
2560
Daniel Veillarda682b212001-06-07 19:59:42 +00002561Thu Jun 7 21:52:10 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2562
2563 * tree.c: applied Steve Tinney patch to xmlNewNsProp to fix
2564 bug #55810
2565
Daniel Veillarde8fc08e2001-06-07 19:35:47 +00002566Thu Jun 7 21:29:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2567
2568 * tree.c: fixed xmlGetNsProp() to close bug #55683
2569 Note this requires libxslt to use it's own function instead.
2570
Daniel Veillardf0c53762001-06-07 16:07:07 +00002571Thu Jun 7 18:06:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2572
2573 * HTMLtree.c: when in a pre element no formatting space should
2574 be added.
2575 * test/HTML/pre.html result/HTML/pre.html*: added a regression test
2576
Daniel Veillard068a9652001-06-07 15:30:26 +00002577Thu Jun 7 17:29:38 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2578
2579 * configure.in: added tests for signal() and signal.h
2580
Daniel Veillard541d6552001-06-07 14:20:01 +00002581Fri Jun 8 10:17:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2582
2583 * xpath.c: robert pointed out xmlXPathNINF was not initialized
2584
Daniel Veillard8a367d42001-06-07 14:01:34 +00002585Fri Jun 8 10:01:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2586
2587 * doc/libxml-doc.el: Felix Natter provided a new version for
2588 libxml2
2589
Daniel Veillard8a926292001-06-07 11:20:20 +00002590Fri Jun 8 07:20:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2591
2592 * HTMLtree.c: when in a pre element no formatting space should
2593 be added.
2594
Daniel Veillard14839d52001-06-06 16:11:56 +00002595Wed Jun 6 18:07:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2596
2597 * configure.in: add -mieee to CFLAGS when compiling on Linux/alpha
2598
Daniel Veillarde95e2392001-06-06 10:46:28 +00002599Thu Jun 7 06:44:01 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2600
2601 * DOCBparser.c: implemented the <?sgml-declaration encoding="xxx"?>
2602 hack
2603 * tree.[ch]: added xmlHasNsProp as suggested in bug report #55653
2604 * uri.c: fixed a warning
2605
Daniel Veillard6e93c4a2001-06-05 20:57:42 +00002606Tue Jun 5 22:54:21 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2607
2608 * HTMLtree.c: trying to close bug #55772 escaping in script
2609 elements
2610 * doc/xml.html: suggest to send mail to the list
2611
2612Tue Jun 5 19:11:02 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
Daniel Veillard1c43dbf2001-06-05 17:12:52 +00002613
2614 * error.c: attempt to fix the xmlGetVarStr breakage once and for
2615 good. Use a macro and based on the solution provided in
2616 vsnprintf manual page from GNU.
2617
Bjorn Reese99748722001-06-05 12:49:15 +00002618Tue Jun 5 14:46:10 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
2619
2620 * error.c: Workaround for non-preserving variadic list.
2621 * trio.c trio.h triop.h strio.c strio.h: Upgraded to trio baseline 1.4
2622
Daniel Veillard2e4f1882001-06-01 10:11:57 +00002623Sat Jun 2 06:12:33 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2624
2625 * doc/xml.html: added 2.3.10 release
2626
Daniel Veillardb3a182e2001-06-01 09:28:09 +00002627Fri Jun 1 11:27:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2628
2629 * configure.in: releasing 2.3.10
2630
Daniel Veillard3c2758d2001-05-31 18:43:43 +00002631Thu May 31 20:42:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2632
2633 * xmlIO.c: Gary Pennington spotted a few troubles with file:///
2634
Daniel Veillard20042422001-05-31 18:22:04 +00002635Thu May 31 20:18:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2636
2637 * encoding.c: Robert Collins provided a patch to add the
2638 "US-ASCII" encoding alias
2639
Daniel Veillard97ac1312001-05-30 19:14:17 +00002640Wed May 30 21:12:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2641
2642 * xpath.c encoding.[ch]: William M. Brack provided a set of UTF8
2643 string oriented functions and started cleaning the related areas
2644 in xpath.c which needed fixing in this respect
2645
Daniel Veillard2d703722001-05-30 18:32:34 +00002646Wed May 30 20:30:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2647
2648 * HTMLtree.c: applied patch from Jaroslaw Kolakowski to close bug
2649 #55380
2650 * tree.c: patch to xmlNodeGetContent() to get CDATA section content
2651
Daniel Veillard9403a042001-05-28 11:00:53 +00002652Mon May 28 12:56:29 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2653
2654 * TODO: updated
2655 * nanohttp.[ch] : started adding APIs to get the redirected URL
2656 when this occurs (needed for further base computation
2657 * tree.h: cleanup
2658 * encoding.c: cleanup
2659 * SAX.c: minor change around ctxt->loadsubset
2660
Daniel Veillard6278fb52001-05-25 07:38:41 +00002661Fri May 25 09:36:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2662
2663 * Makefile.am include/Makefile.am: small change to have
2664 include/libxml rebuilt if working from CVS.
2665 * uri.c: applied another patch from Carl Douglas for URI escaping,
2666 this should close bug #51876
2667
Daniel Veillardd16df9f2001-05-23 13:44:21 +00002668Wed May 23 15:40:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2669
2670 * xinclude.c: fixed XInclude recursive behaviour bug #54678
2671 * result/XInclude/recursive.xml test/XInclude/docs/recursive.xml
2672 test/XInclude/ents/inc.txt test/XInclude/ents/sub-inc.ent:
2673 added specific regression test
2674 * parser.h: preparing for the XSLT mode where DTD inherited
2675 attributes are added to the tree.
2676
Daniel Veillardbbd22452001-05-23 12:02:27 +00002677Wed May 23 13:59:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2678
2679 * xinclude.[ch]: Updated the namespace for the Last Call version
2680 * result/XInclude/include test/XInclude/include: updated the
2681 testsuite accordingly
2682
Daniel Veillard8514c672001-05-23 10:29:12 +00002683Wed May 23 12:27:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2684
2685 * uri.[ch]: applied a patch from Carl Douglas for URI escaping,
2686 related to bug #51876
2687
Daniel Veillard42596ad2001-05-22 16:57:14 +00002688Tue May 22 18:46:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2689
2690 * tree.c: fixed a gross mistake in base computation, xml:base is
2691 not completely correct yet (need cascade).
2692 * xpath.[ch]: added the few things needed to find a function name
2693 and URI from the XPath context when it is called.
2694
Daniel Veillard81418e32001-05-22 15:08:55 +00002695Tue May 22 17:00:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2696
2697 * catalog.[ch]: fixes and add xmlLoadCatalogs()
2698 * DOCBparser.c: small cleanup
2699 * xmllint.c: added a --catalogs option to load catalogs from
2700 $SGML_CATALOG_FILES
2701 * tree.c: cleanup
2702 * configure.in: iconv library fixup, ICONV_LIBS
2703
Daniel Veillardaf86c7f2001-05-21 14:11:26 +00002704Mon May 21 16:05:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2705
2706 * catalog.c: handling of CATALOG entries. detection of recursion,
2707 and a few bugfixes
2708 * xpath.c: fixing bug #54951 QNAME with no prefix should not match
2709 against the default namespace
2710
Daniel Veillard04b93292001-05-21 08:15:31 +00002711Mon May 21 10:14:07 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2712
2713 * xpath.c: Joe Orton reported a bug found with IRIx compiler.
2714
Daniel Veillarda97a19b2001-05-20 13:19:52 +00002715Sun May 20 15:15:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2716
2717 * parser.c: fixed propagation context info when parsing an
2718 external entity.
2719 * doc/html/*.html: regenerated a couple of docs
2720
Daniel Veillard4623acd2001-05-19 15:13:15 +00002721Sat May 19 17:11:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2722
2723 * doc/xml.html: update with 2.3.9 informations
2724
Daniel Veillardbed7b052001-05-19 14:59:49 +00002725Sat May 19 16:50:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2726
2727 * HTMLtree.h debugXML.h parserInternals.h tree.h valid.c
2728 xmlversion.h.in xpathInternals.h xpath.h: some cleanup for gtk-doc
2729 * doc/html/* : rebuilt the docs
2730 * valid.c: small patch which may improve some case when
2731 validating.
2732
Daniel Veillardf69bb4b2001-05-19 13:24:56 +00002733Sat May 19 15:20:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2734
2735 * HTMLparser.c: Closed bug #54891
2736 * result/HTML/cf_128.html* test/HTML/cf_128.html: added the test
2737 to the suite
2738
2739Thu May 17 14:15:07 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2740
2741 * encoding.h hash.c nanoftp.h parser.h tree.h uri.h xlink.h xpointer.c:
2742 applied a documentation patch from LotR and filled in a few missing
2743 descriptions
2744
Daniel Veillard76d66f42001-05-16 21:05:17 +00002745Wed May 16 23:02:41 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2746
2747 * xpath.c tree.c parser.c: speed optimizations at the parser level
2748 document tree freeing and xpath evaluation
2749
Daniel Veillardfd7ddca2001-05-16 10:57:35 +00002750Wed May 16 12:55:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2751
2752 * parser.c parser.h parserInternals.h: fixed a couple of
2753 interfaces for handling memory buffer input to const char *
2754 upon suggestion of JamesH.
2755
Daniel Veillardc3739e72001-05-15 15:23:27 +00002756Tue May 15 17:22:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2757
2758 * configure.in: LoTR sent a patch fixing the previous commit
2759
Daniel Veillarda4f27e02001-05-15 12:41:29 +00002760Tue May 15 14:40:04 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2761
2762 * configure.in: trying to deal again with the stoopid -R linking
2763 flag of Solaris
2764
Daniel Veillard790142b2001-05-15 10:51:53 +00002765Tue May 15 12:49:50 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2766
2767 * xpath.h: two nodeset access macros from Thomas Broyer
2768
Daniel Veillardba0b8c92001-05-15 09:43:47 +00002769Tue May 15 11:42:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2770
2771 * xpath.c xpath.h xpathInternals.h: apply an XPath API cleanup
2772 patch from Thomas Broyer
2773
Daniel Veillarde62d36c2001-05-15 08:53:16 +00002774Tue May 15 10:52:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2775
2776 * valid.c test/VCM/v2[34].xml: Fixed bug #54631 added specific test
2777 case
2778 * INSTALL: was empty added stuff from the FAQ
2779
Daniel Veillard75bea542001-05-11 17:41:21 +00002780Fri May 11 19:37:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2781
2782 * tree.[ch]: fixing bug #54446, by cleaning some bugs in the
2783 attributes handling and #54433 by adding xmlUnsetProp()
2784 and xmlUnsetNsProp()
2785
Daniel Veillard0a2a1632001-05-11 14:18:03 +00002786Fri May 11 16:07:13 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2787
2788 * HTMLparser.c: Patch from Jonas Borgström
2789 (htmlGetEndPriority): New function, returns
2790 the priority of a certain element.
2791 (htmlAutoCloseOnClose): Only close inline elements if they
2792 all have lower or equal priority.
2793 * result/HTML: this of course changed a number of tests results.
2794
Daniel Veillard7d6fd212001-05-10 15:34:11 +00002795Thu May 10 17:30:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2796
2797 * xmlIO.c catalog.c: plugged in the default catalog resolution
2798 * doc/gnome-xml.sgml: linked in the Docbook parser and catalog
2799 documentations
2800 * doc/html/libxml-*.html: rebuild added the missing ones to CVS
2801
Daniel Veillarda7374592001-05-10 14:17:55 +00002802Thu May 10 16:14:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2803
2804 * Makefile.am xmlversion.h.in configure.in include/Makefile.am:
2805 integrating catalogs
2806 * catalog.[ch] testCatalog.c: adding a small catalo API
2807 (only SGML catalog support).
2808 * parser.c: restaured xmlKeepBlanksDefault(0) API
2809
Daniel Veillardc17337c2001-05-09 10:51:31 +00002810Wed May 9 12:50:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2811
2812 * tree.c: zb@bisp.com reported an error in xmlNodeGetLang()
2813
Daniel Veillard257d9102001-05-08 10:41:44 +00002814Tue May 8 12:31:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2815
2816 * parser.c: added xmlParseExternalEntityPrivate() to allow
2817 propagation of ctxt->_private when parsing external entities
2818
Daniel Veillard083c2662001-05-08 08:27:14 +00002819Tue May 8 10:26:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2820
2821 * HTMLtree.c: fixed the bug reported by Bjorn in htmlNodeDump
2822
Daniel Veillard01ef7382001-05-08 07:31:43 +00002823Tue May 8 09:30:12 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2824
2825 * configure.in: fixed a small portability problem with AM_CONDITIONAL
2826
Daniel Veillard4de4d3b2001-05-07 20:50:47 +00002827Mon May 7 22:44:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2828
2829 * valid.c: warn when indeterminist content model is detected
2830 * result/VC/ElementValid8: this adds a message
2831 * Makefile.am: add --novalid for VCM tests
2832 * parserInternals.c: added a call to Init memory
2833
Daniel Veillard64269352001-05-04 17:52:34 +00002834Fri May 4 19:51:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2835
2836 * HTMLparser.c: fixed htmlNewDoc SYSTEM and PUBLIC ID inversion
2837 when both parameters are NULL.
2838
Daniel Veillard37721922001-05-04 15:21:12 +00002839Fri May 4 17:19:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2840
2841 * valid.c: applied small patch from Gary Pennington, reindented
2842 some part of the code.
2843
Daniel Veillard3bbbe6f2001-05-03 11:15:37 +00002844Thu May 3 13:10:43 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2845
2846 * configure.in doc/xml.html doc/html/*: preparing for 2.3.8
2847 release, updated and regenerated the docs
2848
Daniel Veillard357c9602001-05-03 10:49:20 +00002849Thu May 3 12:47:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2850
2851 * xpath.c result/XPath/expr/floats : clarified and cleanup
2852 printing of abnormal floats in tests.
2853
Daniel Veillarda2bc3682001-05-03 08:27:20 +00002854Thu May 3 10:25:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2855
2856 * HTMLparser.c: trying to fix the problem reported by Jonas Borgström
2857 * results/HTML/ : a few changes in the output of the HTML tests as
2858 a result.
2859 * configure.in: tying to fix -liconv where needed
2860
Daniel Veillard2a0d2e62001-05-02 17:11:36 +00002861Wed May 2 19:10:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2862
2863 * Makefile.am: fixed a stupid error
2864
Daniel Veillard7150a032001-05-02 16:41:11 +00002865Wed May 2 18:39:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2866
2867 * configure.in Makefile.am: make the inclusion of the trio
2868 modules in the library conditional
2869
Daniel Veillardc057c5d2001-05-02 12:41:24 +00002870Wed May 2 14:39:57 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2871
2872 * DOCBparser.c: patche from László Kovács, fixed entities refs
2873 in attributes handling
2874
Daniel Veillardedddff92001-05-02 10:58:52 +00002875Wed May 2 12:56:04 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2876
2877 * xmlIO.c: Bjorn Reese provided a fix for a problem on buffer
2878 flushing
2879
Daniel Veillardc8f620b2001-04-30 20:31:33 +00002880Mon Apr 30 22:29:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2881
2882 * xpath.c: fix of an XSLT namespace bug reported on the list
2883 general/bug-8-
2884
Daniel Veillard5792e162001-04-30 17:44:45 +00002885Mon Apr 30 19:42:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2886
2887 * strio.h trio.c: Dan McNichol suggested a couple of small
2888 fixes for AIX 4.3.3 using Visual Age 5.0.2 compiler
2889
Daniel Veillard02141ea2001-04-30 11:46:40 +00002890Mon Apr 30 13:44:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2891
2892 * tree.c parser.c encoding.c: spent a bit more time looking
2893 at the parsing speed and DOM handling. Added a few more
2894 speedups.
2895
Daniel Veillard3ed155f2001-04-29 19:56:59 +00002896Sun Apr 29 21:53:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2897
2898 * parser.c: small but effective parsing speed improvement
2899
Daniel Veillardb59076b2001-04-29 17:04:07 +00002900Sun Apr 29 19:02:13 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2901
2902 * configure.in: default on the DocBook parser inclusion (for Gnome)
2903 * DOCBparser.h: fixed a header reference
2904
Daniel Veillardb45c43b2001-04-28 17:02:11 +00002905Sat Apr 28 19:00:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2906
2907 * configure.in xpath.c: applied Bjorn patches for FPE on the
2908 alpha
2909
Daniel Veillardeefd4492001-04-28 16:55:50 +00002910Sat Apr 28 18:54:28 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2911
2912 * tree.[ch] xmlIO.h: applied patch from Joe McAlerney to add
2913 xmlSaveFormatFileTo()
2914
Daniel Veillarde39a93d2001-04-28 14:35:02 +00002915Sat Apr 28 16:33:05 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2916
2917 * xpath.c: simple and efficient optimization, XPath functions
2918 aways bind to the same code, cache this
2919 * TODO: updated (by saying some is obsolete)
2920
Daniel Veillard2156a562001-04-28 12:24:34 +00002921Sat Apr 28 14:23:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2922
2923 * xpath.c: more cleanup work on XPath name parsing routines
2924
Daniel Veillard61d80a22001-04-27 17:13:01 +00002925Fri Apr 27 19:06:13 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2926
2927 * parserInternals.c xpath.[ch]: some UTF8 cleanup on
2928 xmlXPathParseName
2929 * xpath.c: Igor Zlatkovic suggested a change for NAN and MSC
2930 * debugXML.c: avoid compilation problems if compiling without
2931 HTML support, Igor Zlatkovic
2932 * win32/libxml2/libxml2.def.src: being able to compile without
2933 XPath on Windows
2934
Daniel Veillarddbb14a72001-04-26 20:54:01 +00002935Thu Apr 26 22:53:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2936
2937 * libxml.m4: yet another patch from Toshio Kuratomi
2938
Daniel Veillard2913e4c2001-04-26 19:29:02 +00002939Thu Apr 26 21:27:43 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2940
2941 * libxml.m4 libxml2-spec.in: new patches from Toshio Kuratomi
2942
Daniel Veillard67fee942001-04-26 18:59:03 +00002943Thu Apr 26 20:53:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2944
2945 * tree.[ch]: added xmlSaveFormatFile interface for saving
2946 and indenting a file.
2947
Daniel Veillard82e49712001-04-26 14:38:03 +00002948Thu Apr 26 16:35:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2949
2950 * xpath.c: fixed bug #53689 related to processing-instruction()
2951
Daniel Veillard02f077a2001-04-26 10:59:11 +00002952Thu Apr 26 12:57:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2953
2954 * DOCBparser.c: patche from László Kovács
2955
Daniel Veillard30211a02001-04-26 09:33:18 +00002956Thu Apr 26 11:31:54 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2957
2958 * parser.c: applied fixes from Christian Glahn bug report #53391
2959
Daniel Veillard5a7c3452001-04-26 09:16:13 +00002960Thu Apr 26 11:14:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2961
2962 * error.c: Jean François Lecomte provided a complete description
2963 and a fix to bug #53537
2964
Daniel Veillard5c4ec4c2001-04-26 07:43:59 +00002965Thu Apr 26 09:42:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2966
2967 * libxml.m4: added AM_PATH_XML2 provided by Toshio Kuratomi
2968
Daniel Veillard1034da22001-04-25 19:06:28 +00002969Wed Apr 25 21:05:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2970
2971 * DOCBparser.c SAX.c: a bit more work on entities processing.
2972 Still Need to cleanup XML output and references in attributes
2973
Daniel Veillard4ec0b0f2001-04-25 15:53:40 +00002974Wed Apr 25 17:52:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2975
2976 * DOCBparser.c include/Makefile.am: two patches from László Kovács
2977
Daniel Veillardb33c2012001-04-25 12:59:04 +00002978Wed Apr 25 14:56:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2979
2980 * tree.c: trying to fix #53574, not completely complete,
2981 I would like xmllint --copy --debug test/ent1 and
2982 xmllint --debug test/ent1 to show the same result.
2983 * xpath.c: fix a bug when trying to sort namespace nodes
2984
Daniel Veillard5146f202001-04-25 10:29:44 +00002985Wed Apr 25 12:28:57 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2986
2987 * HTMLtree.c: real fix for #53402
2988
Daniel Veillard7533cc82001-04-24 15:52:00 +00002989Tue Apr 24 17:36:35 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2990
2991 * HTMLtree.c HTMLtree.h : closing #53402 i.e. output of
2992 PIs when using xsl:output
2993 * valid.c: closing #53537 some case generate segfaults if there
2994 is validity errors
2995
Daniel Veillard61b33d52001-04-24 13:55:12 +00002996Tue Apr 24 15:19:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
2997
2998 * SAX.c testDocbook.c DOCBparser.c: more work on the support
2999 of external parsed entities, added --noent to testDocbook
3000 * valid.c: Garry Pennington found an uninitialized variable
3001 access in xmlValidateElementContent()
3002
Daniel Veillard56098d42001-04-24 12:51:09 +00003003Tue Apr 24 14:41:25 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3004
3005 * HTMLparser.c : HTML parsing still sucks ... trying to deal
3006 with madness
3007 * result/HTML/ : this modified the result of the regression tests
3008 a lot.
3009
Daniel Veillard122376b2001-04-24 12:12:30 +00003010Tue Apr 24 14:10:38 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3011
3012 * entities.c: xmlEncodeEntitiesReentrant fixed a few accesses
3013 to doc where it wasn't checked against NULL reported by
3014 Jens Laas
3015
Daniel Veillard43dadeb2001-04-24 11:23:35 +00003016Tue Apr 24 13:21:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3017
3018 * HTMLparser.c: Jonas Borgström patch, the <td>, and <th> elements
3019 now means the end of any open <span>,<font>,<a>,<b>,<i>,<u>.
3020
Daniel Veillardeae522a2001-04-23 13:41:34 +00003021Mon Apr 23 15:40:04 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3022
3023 * DOCBparser.c DOCBparser.h testDocbook.c configure.in Makefile.am
3024 xmlversion.h.in: started (re)integrating the DocBook SGML parser.
3025 * SAX.[ch]: cleanup and updates for DocBook
3026 * debugXML.c parser.h tree.[ch] valid.c xpath.c: small macro or
3027 ex SGML identifier changes
3028 * valid.c: removed a static unused function.
3029
Daniel Veillardde57c612001-04-23 09:13:36 +00003030Mon Apr 23 11:05:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3031
3032 * HTMLtree.c: applied change for Paul Sponagl on script saving
3033 * Makefile.am: the warning about entity title.xml are normal.
3034
Daniel Veillard393df012001-04-22 20:11:18 +00003035Sun Apr 22 22:09:35 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3036
3037 * configure.in: release of 2.3.7
3038 * Makefile.am: fixing make distcheck
3039
Daniel Veillarda41123c2001-04-22 19:31:20 +00003040Sun Apr 22 21:29:52 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3041
3042 * doc/html/* doc/xml.html: updated and regenerated the docs
3043
Daniel Veillardfd0c3eb2001-04-22 19:13:10 +00003044Sun Apr 22 21:11:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3045
3046 * xpath.c: fixed the XPointer problem introduced in 2.3.6
3047
Daniel Veillarde82a9922001-04-22 12:12:58 +00003048Sun Apr 22 14:11:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3049
3050 * tree.c: fixed #53388 with the provided patch
3051
Daniel Veillard06803992001-04-22 10:35:56 +00003052Sun Apr 22 12:34:41 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3053
3054 * valid.c: Bjorn detected an invalid memory access. Fixed
3055 vstateVPush()
3056
Daniel Veillard40af6492001-04-22 08:50:55 +00003057Sun Apr 22 10:49:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3058
3059 * xpath.c: fixed xmlXPathCompile to detected unproperly ended expr
3060
Bjorn Reese70a9da52001-04-21 16:57:29 +00003061Sat Apr 21 18:27:51 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
3062
3063 * libxml.h: new header used only for the compilation of libxml
3064 * HTMLparser.c HTMLtree.c SAX.c debugXML.c encoding.c entities.c
3065 error.c hash.c list.c nanoftp.c nanohttp.c parser.c
3066 parserInternals.c testHTML.c testSAX.c testURI.c testXPath.c
3067 tree.c uri.c valid.c xinclude.c xlink.c xmlIO.c xmllint.c
3068 xmlmemory.c xpath.c xpointer.c: libxml.h integration
3069 * trio.[ch] triop.h strio.[ch]: upgraded to the latest trio
3070 baseline (version 1.2 plus a single patch).
3071 * xpath.c result/XPath/expr/floats test/XPath/expr/floats: parses
3072 scientific notation for numbers. Tests added.
3073 * xpath.c: formatting of numbers changed to use sprintf
3074 (contribution from William Brack)
3075
Daniel Veillard34b1b3a2001-04-21 14:16:10 +00003076Sat Apr 21 16:12:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3077
3078 * valid.c: cleanup, more useful debugging
3079 * parserInternals.c: cleanup vctxt.nodeTab (de)allocation
3080 * xmlIO.c: entity loading is printed as an error when validating
3081
Daniel Veillard1c14b8d2001-04-21 10:28:59 +00003082Sat Apr 21 12:25:49 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3083
3084 * valid.c: fixed to validate within entities
3085 * test/VCM/v22.xml: added a specific testcase
3086
Daniel Veillardca1f1722001-04-20 15:47:35 +00003087Fri Apr 20 17:45:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3088
3089 * valid.c: forgot an epsilon transition in for ()+
3090 * test/VCM/v21.xml : added a specific test case
3091
Daniel Veillard85349052001-04-20 13:48:21 +00003092Fri Apr 20 15:46:04 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3093
3094 * valid.c: removed a state explosion exhibited by RSS
3095 * test/valid/rss.xml result/valid/rss.xml*: added the testcase
3096 from bug #51872
3097
Daniel Veillarddab4cb32001-04-20 13:03:48 +00003098Fri Apr 20 14:52:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3099
3100 * valid.[ch] tree.h: worked *hard* to get non-determinist content
3101 validation without using an ugly NFA -> DFA algo in the source.
3102 Made a specific algorithm easier to maintain, using a single
3103 stack and without recursion.
3104 * Makefile.am test/VCM/*.xml: added more tests to "make Validtests"
3105 * hash.c: made the growing routine static
3106 * tree.h parser.c: added the parent information to an
3107 xmlElementContent node.
3108
Daniel Veillarde470df72001-04-18 21:41:07 +00003109Wed Apr 18 23:33:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3110
3111 * SAX.c parser.c xpath.c: generating IDs when not validating
3112 from an external parsed entity was poisoning the ID has table
3113 with removed values. This was killing XSLT on the KDE help
3114 browser.
3115
Daniel Veillardceacdd92001-04-18 15:10:35 +00003116Wed Apr 18 17:09:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3117
3118 * entities.h: andrew@ugh.net.au detected a double declaration
3119
Daniel Veillarda10efa82001-04-18 13:09:01 +00003120Wed Apr 18 15:06:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3121
3122 * debugXML.c hash.c tree.h valid.c : some changes related to
3123 the validation suport to improve speed with DocBook
3124 * result/VC/OneID2 result/VC/OneID3 : this slightly changes
3125 the way validation errors get reported
3126
Daniel Veillard1ed3f882001-04-18 09:45:35 +00003127Wed Apr 18 11:42:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3128
3129 * HTMLparser.c HTMLtree.c: applied part of the patches provided
3130 by P C Chow and William M. Brack for XSLT HTML output
3131
Daniel Veillard2d90de42001-04-16 17:46:18 +00003132Mon Apr 16 19:44:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3133
3134 * xmlversion.h.in win32config.h win32/libxml2/*: applied
3135 Igor Zlatkovic patches for MSC compilation and added his
3136 updates
3137
Daniel Veillarde043ee12001-04-16 14:08:07 +00003138Tue Apr 17 10:08:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3139
3140 * xpath.c: fixed xmlXPathNodeCollectAndTest() to do proper
3141 prefix lookup.
3142 * parserInternals.c: fixed the bug reported by Morus Walter
3143 due to an off by one typo in xmlStringCurrentChar()
3144
Daniel Veillarda3bfca52001-04-12 15:42:58 +00003145Thu Apr 12 17:41:09 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3146
3147 * HTMLparser.c result/HTML/*: revamped the way the HTML
3148 parser handles end of tags or end of input
3149
Daniel Veillard82daa812001-04-12 08:55:36 +00003150Thu Apr 12 10:50:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3151
3152 * tree.[ch] : added xmlDocCopyNode for gdome2 support
3153
Daniel Veillard67a21302001-04-11 14:39:16 +00003154Wed Apr 11 16:37:50 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3155
3156 * tree.h: include xmlmemory.h this seems to havoid a nasty glibc
3157 bug where the linktime verions of free() won't work ...
3158
Daniel Veillard27b55282001-04-11 12:22:25 +00003159Wed Apr 11 14:21:31 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3160
3161 * config.h.in configure.in xmlversion.h.in: added ansidecl.h test
3162
Daniel Veillardafc73112001-04-11 11:51:41 +00003163Wed Apr 11 13:50:42 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3164
3165 * doc/xml.html: added 2.3.6 release
3166
Daniel Veillardbdb9ba72001-04-11 11:28:06 +00003167Wed Apr 11 13:26:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3168
3169 * tree.c: fixed xmlStringGetNodeList() to handle charrefs
3170 * result/wml.xml: resulted in a small output change
3171
Daniel Veillardd2f3ec72001-04-11 07:50:02 +00003172Wed Apr 11 09:47:55 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3173
3174 * tree.c: xmlNewDoc was missing the charset initialization
3175 * xmllint.c: added --auto to autogenerate a doc, allow to
3176 reproduce the problem fixed on xmlNewDoc
3177
Daniel Veillard1731d6a2001-04-10 16:38:06 +00003178Tue Apr 10 18:13:10 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3179
3180 * xpath.c: trying to get 52979 solved
3181 * tree.c result/ result/noent/: trying to get 52712 solved, this
3182 also made me clean up the fact that XML output in general should
3183 not add formating blanks by default, this changed the output of
3184 a few tests
3185
Daniel Veillard73639a72001-04-10 14:31:39 +00003186Tue Apr 10 16:30:20 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3187
3188 * xpath.c: Bill Brack pointer an error in detecting a null nodeset
3189
Daniel Veillardfac26a12001-04-08 13:08:14 +00003190Sun Apr 8 15:07:16 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3191
3192 * configure.in: finally released 2.3.6
3193
Daniel Veillard911f49a2001-04-07 15:39:35 +00003194Sun Apr 8 11:39:21 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3195
3196 * xpath.c: checking for null pointer generated by new code
3197
Daniel Veillardd8df6c02001-04-05 16:54:14 +00003198Fri Apr 6 12:53:05 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3199
3200 * xpath.c: fixed a [] evaluation problem reported
3201 * test/XPath/tests/simpleaddr: extended test
3202 * result/XPath/simpleaddr: updated result
3203
Daniel Veillard3b2c2612001-04-04 00:09:00 +00003204Wed Apr 4 02:07:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3205
3206 * xmllint.c: Dan Timis reported a portability problem
3207 on Macs without mmap, fixed it.
3208
Daniel Veillardb38bd552001-04-03 18:22:00 +00003209Tue Apr 3 20:20:51 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3210
3211 * testXPath.c : added a --tree option allowing to display the
3212 tree dump of the XPath expression
3213
Daniel Veillard4dd93462001-04-02 15:16:19 +00003214Mon Apr 2 17:13:51 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3215
3216 * xpath.c: fixed a memleak when comparing nodesets
3217 * HTMLtree.c: don't invent the HTML doctype if not available (XSLT)
3218 * tree.c: added a TODO
3219
Daniel Veillard92ad2102001-03-27 12:47:33 +00003220Tue Mar 27 14:32:06 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3221
3222 * configure.in Makefile.am config.h.in xmlversion.h.in: detect if
3223 we need string functions
3224 * trio.[ch] strio.[ch]: embedded the Trio-0.23 string functions
3225 to be able to use them where needed. Applied some changes
3226 to reduce name linking pollution and compile in only what's
3227 needed.
3228 * HTMLtree.c debugXML.c entities.c error.c nanoftp.c valid.c
3229 xlink.c xmlversion.h.in xpath.c: got rid of the #ifdef
3230 for the string manipulation functions
3231 * xmlmemory.[ch]: removed DEBUG_MEMORY_FREED and added it automatically
3232 to the free() function of xmlmemory.c
3233 * entities.c HTMLtree.c parserInternals.c tree.c uri.c valid.c
3234 xinclude.c xmlIO.c xpath.c xpointer.c: removed the MEM_CLEANUP
3235 usage.
3236
3237
Daniel Veillard2be30642001-03-27 00:32:28 +00003238Tue Mar 27 02:30:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3239
3240 * error.c: applied the context output patch of the error
3241 handling submitted by Chuck Griffith
3242 * error/VC/*: this slightly change some error logs
3243
Daniel Veillard50582112001-03-26 22:52:16 +00003244Tue Mar 27 00:51:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3245
3246 * parser.c: fixed line number reporting on error
3247
Daniel Veillard04be4f52001-03-26 21:23:53 +00003248Mon Mar 26 23:21:41 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3249
3250 * parser.c: Sullivan and Darin found a parser bug,
3251 applied the patch.
3252
Daniel Veillardc86a4fa2001-03-26 16:28:29 +00003253Mon Mar 26 18:24:52 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3254
3255 * HTMLparser.c HTMLtree.c SAX.c debugXML.c error.c parserInternals.c
3256 testHTML.c testSAX.c tree.c valid.c xmlIO.c xmlmemory.c
3257 xmlversion.h.in xpointer.c: of course the way I defined
3258 UNUSED breaks on old gcc version. Try to be smart and
3259 also define it directly in xmlversion.h
3260 * configure.in: removed -ansi flag from the pedantic set
3261
3262Sat Mar 24 17:45:36 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
Daniel Veillard56a4cb82001-03-24 17:00:36 +00003263 Huge cleanup, I switched to compile with
3264 -Wall -g -O -ansi -pedantic -W -Wunused -Wimplicit
3265 -Wreturn-type -Wswitch -Wcomment -Wtrigraphs -Wformat
3266 -Wchar-subscripts -Wuninitialized -Wparentheses -Wshadow
3267 -Wpointer-arith -Wcast-align -Wwrite-strings -Waggregate-return
3268 -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Winline
3269 * HTMLparser.[ch] HTMLtree.c SAX.c debugXML.c encoding.[ch]
3270 encoding.h entities.c error.c list.[ch] nanoftp.c
3271 nanohttp.c parser.[ch] parserInternals.[ch] testHTML.c
3272 testSAX.c testURI.c testXPath.c tree.[ch] uri.c
3273 valid.[ch] xinclude.c xmlIO.[ch] xmllint.c xmlmemory.c
3274 xpath.c xpathInternals.h xpointer.[ch] example/gjobread.c:
3275 Cleanup, staticfied a number of non-exported functions,
3276 detected and cleaned up a dozen of problem found this way,
3277 avoided a lot of public function name/typedef/system names clashes
3278 * doc/xml.html: updated
3279 * configure.in: switched private flags to the really pedantic ones.
3280
Daniel Veillardc7ad7ce2001-03-22 21:45:29 +00003281Thu Mar 22 22:44:15 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3282
3283 * configure.in: 2.3.5
3284 * doc/html/*: rebuilt the docs
3285
Daniel Veillard146c9122001-03-22 15:22:27 +00003286Thu Mar 22 15:36:45 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3287
3288 * parser.c: fixed a reported bug in NOTATION parsing
3289 * uri.c: accepted but not fixed bug 51876, added TODO
3290 * Makefile.am: fixed bug 51876
3291
Daniel Veillarda5f013b2001-03-22 12:44:45 +00003292Thu Mar 22 13:41:22 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3293
3294 * config.h.in configure.in error.c: fix a compilation problem
3295 on platforms without vsnprintf (xml@thewrittenword.com)
3296
Daniel Veillarde020c3a2001-03-21 18:06:15 +00003297Wed Mar 21 19:04:34 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3298
3299 * parser.c: fixed a function name header typo
3300 * SAX.c: notations can also occur in external subset.
3301
Daniel Veillard7d42b542001-03-20 13:22:46 +00003302Tue Mar 20 14:21:28 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3303
3304 * error.c: removed a C++ like comment
3305
Daniel Veillard0b6b55b2001-03-20 11:27:34 +00003306Tue Mar 20 12:22:36 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3307
3308 * parser.c: fixing bug 52299 strange condition leading
3309 to a parser crash due to a buffer overflow
3310 * result/noent/attrib.xml result/attrib.xml test/attrib.xml:
3311 added the specific test case
3312
Daniel Veillardfbf8a2d2001-03-19 15:58:54 +00003313Mon Mar 19 16:50:52 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3314
3315 * xpath.[ch]: still a lot of cleanup based on XSLT, added
3316 xmlXPathConvert{String,Number,Boolean} to be able to make
3317 type casts without a context stack, fixed some implementation
3318 problems related to the absence of context at parse-time,
3319 added xmlXPathEvalPredicate() and xmlXPathFreeCompExpr()
3320 in the public API too
3321 * xpointer.c xpathInternals.h: we need to know at parse time
3322 whether we are compiling an XPointer
3323
Daniel Veillardafcbe1c2001-03-19 10:57:13 +00003324Mon Mar 19 11:54:31 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3325
3326 * xpath.[ch] xpointer.c: restaured the Binary and API compatibility
3327 cleaned up the parser internals, refactored XPath code, added
3328 new compilation based APIs and cleanly separated public and
3329 private APIs.
3330
Daniel Veillardd007d6c2001-03-19 00:01:07 +00003331Mon Mar 19 00:59:25 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3332
3333 * xpath.h: the comp field must be added at the end to avoid
3334 killing binary compat.
3335
Daniel Veillard9e7160d2001-03-18 23:17:47 +00003336Mon Mar 19 00:11:18 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3337
3338 * Makefile.am: detect XPath memleaks in regreson tests
3339 * error.c: fixed and error w.r.t. error reporting still using
3340 stderr
3341 * hash.c: added new line at end of file
3342 * tree.h: minor cleanup
3343 * xpath.[ch] xpointer.[ch]: Major changes ! Separated XPath
3344 expression parsing from evaluation, resulted in a number of
3345 changes internally, and in XPointer. Likely to break stuff
3346 using xpathInternals.h but should remain binary compatible,
3347 new interfaces will be added.
3348
Daniel Veillardd574f782001-03-14 19:40:17 +00003349Wed Mar 14 20:34:02 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3350
3351 * configure.in: fixed a couple of problems reported by
3352 okiddle@yahoo.co.uk and allanc@chickenandporn.com when compiling
3353 without gcc on non linux platforms.
3354
Daniel Veillard0a6c3582001-03-14 19:15:37 +00003355Wed Mar 14 20:13:54 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3356
3357 * doc/Makefile.am configure.in: yearke@eng.buffalo.edu suggested
3358 a fix for --with-html-dir= configure support. I hope it won't
3359 break rpm generation
3360
Daniel Veillarda022fe02001-03-14 16:30:00 +00003361Wed Mar 14 17:28:49 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3362
3363 * xmlIO.c: one function comment cleanup.
3364
Daniel Veillard25239c12001-03-14 13:56:48 +00003365Wed Mar 14 14:55:46 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3366
3367 * SAX.c: external subset notations were improperly registered
3368 in the internal subset.
3369
Daniel Veillard2c4754f2001-03-13 09:31:12 +00003370Tue Mar 13 10:28:49 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3371
3372 * README.cvs-commits: added, pointing to HACKING
3373 * HACKING: updated
3374
Daniel Veillard82ab81e2001-03-12 21:11:21 +00003375Mon Mar 12 22:09:40 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3376
3377 * parser.c: and Matt Sergeant found one in the XML push
3378 parser (erroneous check I forgot to remove when I fixed the
3379 main parser).
3380
Daniel Veillard68d7b672001-03-12 18:22:04 +00003381Mon Mar 12 19:19:04 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3382
3383 * xpath.c: ptittom found a small bug in UnaryExpr
3384
Daniel Veillarde356c282001-03-10 12:32:04 +00003385Sat Mar 10 13:09:53 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3386
3387 * configure.in: bumped to 2.3.4
3388 * error.c: fixed bug #51860
3389 * tree.c: fixed bug #51861
3390 * valid.c: cleanup, more debug, failed to fix one bug crap ...
3391 * tree.[ch] : added xmlDefaultBufferSize
3392 * nanoftp.c: typo in function name header block
3393 * doc/xml.html : updated, added link to XML::LibXSLT
3394 * doc/html/* : rebuilt the docs
3395
Daniel Veillard80f32572001-03-07 19:45:40 +00003396Wed Mar 7 20:43:47 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3397
3398 * parser.c SAX.c: the new content parsing code raised an
3399 ugly bug in the characters() SAX callback. Found it
3400 just because of strangeness in XSLT XML Rec ouptut :-(
3401
Daniel Veillard6c831202001-03-07 15:57:53 +00003402Wed Mar 7 16:50:22 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3403
3404 * Makefile.am: Martin Baulig suggested to add -lm
3405 * tree.c: found another bug in xmlNodeGetContent()
3406
Daniel Veillard4af6b6e2001-03-06 08:33:38 +00003407Tue Mar 6 09:21:30 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3408
3409 * xpath.c: Bjorn found the error related to strictness of comparison.
3410
Daniel Veillard29631a82001-03-05 09:49:20 +00003411Mon Mar 5 21:47:31 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3412
3413 * parser.c: trying to fix the Dtd parsing problem reported
3414 by Gary, side effect of last week speed optimizations.
3415
Daniel Veillard14be0a12001-03-03 18:50:55 +00003416Sat Mar 3 19:45:59 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3417
3418 * xml2Conf.sh.in: fixes pointed out by Fredrik Hallenberg
3419 * parserInternals.c: removed unneeded test raised by Stric
3420
Bjorn Reesee1dc0112001-03-03 12:09:03 +00003421Sat Mar 3 13:04:37 CET 2001 Bjorn Reese <breese@users.sourceforge.net>
3422
3423 * xpath.c: Fixed xmlXPathNodeCollectAndTest (problem reported
3424 and fixed by William Brack). Added xmlXPathFormatNumber.
3425 Changed the sorting slightly.
3426 * configure.in Makefile.am example/Makefile.am: Added -lm.
3427 Please note that applications linking with libxml2, must
3428 also like with the math library from now on.
3429
Daniel Veillardf9533d12001-03-03 10:04:57 +00003430Sat Mar 3 07:38:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3431
3432 * HTMLparser.c: fixed loop reported by Marc Sanfacon
3433
Daniel Veillard2f362242001-03-02 17:36:21 +00003434Sat Mar 3 02:10:24 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3435
3436 * parser.c: one must report spaces even if the Dtd element
3437 content proves that this is not part of the element content.
3438 * result/valid/*.xml: this changed the ouptu slightly
3439
Daniel Veillardb402c072001-03-01 17:28:58 +00003440Thu Mar 1 17:53:39 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3441
3442 * configure.in: bumped to 2.3.3
3443 * doc/xml.html: updated
3444
Daniel Veillard77851712001-02-27 21:54:07 +00003445Wed Feb 28 00:43:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3446
3447 * tree.c: minor doc fix
3448 * xpath.c: deallocation issues when a result tree has been
3449 converted to a node-set
3450
Daniel Veillardec70e912001-02-26 20:10:45 +00003451Mon Feb 26 22:09:45 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3452
3453 * doc/xml.html: oops corrected dates s/2000/2001
3454
Daniel Veillard8730c562001-02-26 10:49:57 +00003455Mon Feb 26 12:48:35 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3456
3457 * valid.c: new patch from Gary Pennington
3458
Daniel Veillard91e9d582001-02-26 07:31:12 +00003459Mon Feb 26 09:30:23 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3460
3461 * doc/xml.html: applied patch from Ankh
3462
Daniel Veillardedac3c92001-02-26 01:36:19 +00003463Mon Feb 26 03:34:43 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3464
3465 * xinclude.c: fixed a problem building on Mac
3466
Daniel Veillard21a0f912001-02-25 19:54:14 +00003467Sun Feb 25 21:52:30 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3468
3469 * parser.c: more work on increasing parsing ferformances
3470
Daniel Veillard48b2f892001-02-25 16:11:03 +00003471Sun Feb 25 18:03:42 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3472
3473 * xmlmemory.h HTMLparser.c HTMLtree.c entities.c parser.c
3474 xpath.c xpointer.c tree.c uri.c valid.c xinclude.c xmlIO.c:
3475 avoiding memcpy in production builds MEM_CLEANUP macro use
3476 * parser.[ch] parserInternals.c: optimizations of the tightest
3477 internal loops inside the parser. Better checking of I/O
3478 flushing/loading conditions
3479 * xmllint.c : added --timing
3480
Daniel Veillard71681102001-02-24 17:48:53 +00003481Sun Feb 25 05:48:51 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3482
3483 * configure.in: bumped to 2.3.2
3484 * doc/xml.html: updated for release
3485
Daniel Veillardbbd51d52001-02-24 03:07:03 +00003486Sat Feb 24 14:07:52 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3487
3488 * xpath.c: found a memleak and fixed a nasty bug
3489
Daniel Veillardf7cd4812001-02-23 18:44:52 +00003490Sat Feb 24 03:35:48 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3491
3492 * xmllint.[c1] : added return code errors for xmllint
3493 * xpath.c: specific debug dump function for result value trees
3494
Daniel Veillard4b637072001-02-21 21:52:55 +00003495Thu Feb 22 07:52:27 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3496
3497 * xpath.c: finally implemented xmlXPathCompareNodeSets
3498 * test/XPath/expr/floats results/XPath/expr/floats: added
3499 a test for float expressions
3500
Daniel Veillardf714aa32001-02-21 03:07:44 +00003501Tue Feb 20 18:57:54 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3502
3503 * tree.c: fixed xmlNodeGetContent, it was not recursing on child
3504 * parserInternals.[ch]: trying to speed up parsing
3505 * xpath.c : speeded up node set equality op
3506
Daniel Veillarde0c3a622001-02-19 18:05:20 +00003507Mon Feb 19 19:01:57 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3508
3509 * Makefile.am valid.c list.[ch]: Gary Pennington provided a
3510 better handling of ID/IDREF and the list modules associated
3511 * configure.in: small CFLAGS cleanup
3512
Daniel Veillarda8abee62001-02-19 15:14:59 +00003513Mon Feb 19 16:13:22 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3514
3515 * configure.in: fixed iconv detection on AIX (stric)
3516
Daniel Veillardbca64ef2001-02-19 22:20:01 +00003517Mon Feb 19 10:59:41 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
Daniel Veillard88f8f6f2001-02-19 10:00:53 +00003518
3519 * xpath.c: fixed "*" (unbelievable !) and a couple of warnings
3520
Bjorn Reesefd9b09b2001-02-18 16:51:25 +00003521Sun Feb 18 17:52:37 MET 2001 Bjorn Reese <breese@users.sourceforge.net>
3522
3523 * xpath.c: fixed whitespace handling in xmlXPathStringEvalNumber,
3524 and optimized xmlXPathNodeSetSort
3525
Daniel Veillard142adbf2001-02-17 13:21:05 +00003526Sat Feb 17 14:18:42 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3527
3528 * xpath.c: bug fix when context size is 0
3529 * parser.c: I like Norm's Dtd because they still manage to break
3530 the parser occasionally
3531
Daniel Veillardf23e0092001-02-16 13:21:29 +00003532Fri Feb 16 14:20:35 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3533
3534 * xpath.c: xmlXPathEqualNodeSetFloat the arg is really a double now
3535
Daniel Veillarde0e26512001-02-16 00:11:46 +00003536Fri Feb 16 01:10:06 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3537
3538 * tree.[ch] parser.c xpath.c: fixed the problem of addressing
3539 attributes within the XML-1.0 namespace
3540
Daniel Veillard6e6a6cc2001-02-15 15:55:44 +00003541Thu Feb 15 16:53:20 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3542
3543 * xpathInternals.h: exported a few axis functions
3544 * doc/xml.html: updated the doc
3545
Daniel Veillard760f4422001-02-15 14:59:48 +00003546Thu Feb 15 15:57:14 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3547
3548 * configure.in: applied patch from Daniel van Balen for OpenBSD
3549 and bumped version to 2.3.1
3550 * HTMLtree.c result/HTML/doc3.htm result/HTML/wired.html: the
3551 attempt to find autoclosing was simply broken, removed it,
3552 updated the examples, this is better
3553
Daniel Veillardd194dd22001-02-14 10:37:43 +00003554Wed Feb 14 11:35:39 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3555
3556 * hash.[ch]: added Paolo Casarini patch to provide Delete from
3557 hash functionnalities.
3558 * doc/html/* : rebuild the doc
3559
Daniel Veillardf41fbbf2001-02-13 17:05:35 +00003560Tue Feb 13 18:01:48 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3561
3562 * xpath.c result/XPath/tests/chaptersprefol: bugfixes on order and
3563 on predicate
3564 * HTMLparser.[ch] HTMLtree.c result/HTML/doc3.htm.err
3565 result/HTML/doc3.htm.sax result/HTML/wired.html: sometimes one
3566 really want to have tags closed on output even if we accept
3567 unclosed ones on input
3568
Daniel Veillard5dd2f0a2001-02-12 17:36:05 +00003569Mon Feb 12 18:33:20 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3570
3571 * xpath.c: ouch don't free NULL, rare case fixed
3572 * tree.c: don't coalesce text nodes if they don't have the
3573 same behaviour wrt escaping on output
3574
Daniel Veillardd12b69d2001-02-11 20:17:31 +00003575Sun Feb 11 21:15:41 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3576
3577 * xpath.c: small fixup
3578 * SAX.c: don't warn on empty namespaces.
3579
Daniel Veillard6a2e4062001-02-08 10:31:33 +00003580Thu Feb 8 11:28:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3581
3582 * README: a bit of cleanup
3583 * configure.in: preparing for 2.3.0 release
3584
Daniel Veillard1f83d392001-02-08 09:37:42 +00003585Thu Feb 8 10:37:00 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3586
3587 * hash.[ch]: added a first version of xmlHashSize()
3588 * valid.c: another bug fix from Gary Pennington
3589
Daniel Veillard5eef6222001-02-07 18:24:48 +00003590Wed Feb 7 19:22:37 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3591
3592 * valid.c: couple of bug fixes pointed by Gary Pennington
3593 * HTMLtree.c: #if 0 cleanup
3594
Daniel Veillard2c257ec2001-02-06 13:29:07 +00003595Tue Feb 6 14:02:56 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3596
3597 * xpath.c: started profiling XSLT, added xmlXPathNodeSetAddUnique()
3598 which removes a time consuming check of xmlXPathNodeSetAdd()
3599 and use it in places where we are sure to not break unicity
3600
Daniel Veillard0f2a53c2001-02-05 17:57:33 +00003601Mon Feb 5 18:51:36 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3602
3603 * xpath.c: bug fixes found from XSLT
3604 * tree.c: preserve node->name special values when copying nodes.
3605 * parserInternals.[ch] parser.[ch] SAX.c : added a mode where
3606 external subset are fetched when available but without full
3607 validation. Added xmlLoadExtDtdDefaultValue, need a function.
3608 * HTMLtree.c: add support for xmlStringTextNoenc for XSLt HTML
3609 output with encoding disabled.
3610
Daniel Veillard2c833b62001-02-03 08:52:06 +00003611Sat Feb 3 09:50:29 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3612
3613 * xmliO.c: Harry Blundell pointed out that xmlCheckFilename
3614 xmlCheckFilename should not be called from xmlFileOpenW
3615 and xmlGzfileOpenW
3616
Daniel Veillardb6e7fdb2001-02-02 17:07:32 +00003617Fri Feb 2 18:04:35 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3618
3619 * uri.c: rewrite of xmlNormalizeURIPath from Paul D. Smith
3620 * test/URI/smith.uri result/URI/smith.uri Makefile.am:
3621 added the new tests for URI normalization
3622 * testURI.c: fixed stoopid bugs
3623 * result/VC/OneID3 result/VC/UniqueElementTypeDeclaration:
3624 the URI in the error messages are now properly normalized
3625
Daniel Veillardea28ce62001-02-02 08:20:19 +00003626Fri Feb 2 09:18:53 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3627
3628 * uri.c: applied Marc Sanfacon's patch for xmlNormalizeURIPath
3629
Daniel Veillarde99a4762001-02-01 04:34:35 +00003630Thu Feb 1 05:28:55 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3631
3632 * xpath.c: fixed a number of problems in XPATH_XSLT_TREE processing
3633
Daniel Veillard2b325a02001-01-31 20:46:31 +00003634Wed Jan 31 21:45:37 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3635
3636 * xpath.c: fixed mod operator
3637
Daniel Veillardde55cf62001-01-31 15:53:13 +00003638Wed Jan 31 16:50:42 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3639
3640 * parser.c: fixed xmlStrcat doc
3641 * tree.c: 2 fixes form Anders Carlson for copying nodes and
3642 trees.
3643
Daniel Veillard2f913b72001-01-31 13:23:49 +00003644Wed Jan 31 14:19:16 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3645
3646 * xpath.c result/XPath/tests/chaptersbase
3647 result/XPath/tests/simplebase: fixed XPath node()
3648 * tree.c: small fix in xmlNewNs()
3649 * Makefile.am: removed extraneous xml2Conf.sh rule
3650
Daniel Veillardb42042b2001-01-28 07:40:36 +00003651Sun Jan 28 08:37:03 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3652
3653 * Makefile.am configure.in libxml.spec.in example/Makefile.am:
3654 Changed the library name, in order to get libxml-devel and
3655 libxml2-devel to coexist on a single system
3656 * xml-config.1 xml-config.in xmlConf.sh.in: renamed
3657 * xml2-config.1 xml2-config.in xml2Conf.sh.in: new files
3658
Daniel Veillardee0a4662001-01-27 18:59:33 +00003659Sat Jan 27 19:58:22 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3660
3661 * Makefile.am configure.in libxml-2.0.pc.in: started working on getting
3662 libxml2-devel installable in // as libxml-devel.
3663
Daniel Veillard5eb05942001-01-27 17:50:22 +00003664Sat Jan 27 18:49:02 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3665
3666 * doc/Makefile.am: fixed make rebuild in doc
3667 * doc/html/*.html: rebuilt the docs
3668
Daniel Veillard65c295d2001-01-26 09:32:39 +00003669Fri Jan 26 10:30:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3670
3671 * tree.c: patch from Bjorn Reese on xmlBufferCCat
3672
Daniel Veillard8e199902001-01-25 18:54:39 +00003673Thu Jan 25 19:22:25 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3674
3675 * Makefile.am doc/Makefile.am libxml.spec.in: painful work to get
3676 the HTML doc to go into the -devel RPM ...
3677 * aclocal.m4 config.h.in: some updates due to auto* magic
3678
Daniel Veillard93086662001-01-25 18:13:04 +00003679Thu Jan 25 19:11:49 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3680
3681 * xpath.h: added a hook in the context structure allowing to
3682 link to extra support, needed for XSLT
3683
Daniel Veillardf17e09b2001-01-25 13:55:35 +00003684Thu Jan 25 13:34:11 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3685
3686 * xpath.[ch] xpointer.c: added xmlXPathCmpNodes, changed
3687 xmlXPtrCmpPoints to use it.
3688 * propagated the following patch from Alejandro Forero
3689 * include/win32config.h xmlIO.c: applied further suggestions
3690 from Igor Zlatkovic <igorz@dialup.nacamar.de> and cleanup
3691 * example/gjobread.c: fixed warnings, now that it builds
3692
3693Wed Jan 24 20:27:28 COT 2001 Alejandro Forero <bachue@bachue.com>
3694
3695 * xmlIO.c (xmlFileOpen, xmlFileOpenW): Removed unnecesary checks.
3696
3697 * xmlIO.c (xmlCheckFilename): Function added to know whether a given
3698 filename points to a valid file (not a directory).
3699 * xmlIO.c (xmlFileOpen, xmlFileOpenW, xmlGzfileOpen, xmlGzfileOpenW):
3700 Added calls to xmlCheckFilenameDir.
3701
3702 * xmlIO.c (xmlGzfileOpen, xmlGzfileOpenW, xmlFdOpen, xmlFdOpenW): Pass
3703 `path' (rather than `filename') as the parameter to gzopen and open.
3704
Daniel Veillard48177c22001-01-23 15:27:41 +00003705Tue Jan 23 16:26:30 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3706
3707 * Makefile.am: fixed a problem with EXTRA_DIST
3708
Daniel Veillardb83ba402001-01-22 22:45:10 +00003709Mon Jan 22 23:42:17 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3710
3711 * Makefile.am example/Makefile.am: finally found the trick
3712 to build the example, i.e. add "." in SUBDIRS before example
3713 in the list <grin/>
3714
Daniel Veillard82687162001-01-22 15:32:01 +00003715Mon Jan 22 16:30:37 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3716
3717 * doc/xml.html: updated with an XSLT section, removed pointer to
3718 W3C CVS base.
3719
Daniel Veillard8a7642f2001-01-22 10:45:16 +00003720Mon Jan 22 11:43:21 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3721
3722 * xpath.c: when copying a XSLT tree object teh tree need to be copied
3723 too, and deallocation need to occur the same way.
3724
Daniel Veillarde4566462001-01-22 09:58:39 +00003725Mon Jan 22 10:35:40 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3726
3727 * xpathInternals.h xpath.[ch] debugXML.c: added the XPATH_XSLT_TREE
3728 type correponding to an XSLT result tree fragment. Share most
3729 of the data format with node set, as well as operators.
3730 * HTMLtree.c: added a newline at the end of the doctype output
3731 whe this one is not present initially.
3732 * tree.c: make sure taht the parent and doc pointers are properly
3733 set when copying attributes (lists).
3734
Daniel Veillard701c7362001-01-21 09:48:59 +00003735Sun Jan 21 10:47:38 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3736
3737 * htmlTree.[ch] xmlIO.h: exported htmlDocContentDumpOutput
3738
Daniel Veillard5a2b6972001-01-20 21:15:50 +00003739Fri Jan 19 18:15:50 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3740
3741 * xpath.c: seems I finally killed that ugly path evaluation
3742 context bug (tagged 9999 in case is is wrong)
3743
Daniel Veillard8f4d9752001-01-19 05:32:34 +00003744Fri Jan 19 06:30:38 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3745
3746 * xpath.[ch] xpathInternals.h: added xmlXPathRegisterVariableLookup()
3747 for XSLT
3748
Daniel Veillardd8aa7cb2001-01-18 15:21:36 +00003749Thu Jan 18 16:19:47 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3750
3751 * xmlIO.c: Gary Pennington <Gary.Pennington@uk.sun.com> fix
3752 for xmlGzfileOpen() bug
3753
Daniel Veillardf6eea272001-01-18 12:17:12 +00003754Thu Jan 18 13:11:50 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3755
3756 * xpath.c: removed an error found by XSLT usage
3757 * tree.c parserInternals.h: use a predefined static string
3758 for text and comment nodes, avoid freeing them in xmlFreeNode,
3759 exported the string name in parserInternals.h and added
3760 another value to disable encoding at output (for XSLT),
3761 gain memory, time.
3762
Daniel Veillard8f2cc572001-01-17 08:19:35 +00003763Wed Jan 17 09:15:16 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3764
3765 * win32/README.MSDev win32/libxml2/libxml2_a.dsp
3766 win32/libxml2/libxml2_so.dsp: new makefiles and update
3767 provided by Igor Zlatkovic <igor@stud.fh-frankfurt.de>
3768
Daniel Veillardf831bfb2001-01-16 17:26:04 +00003769Tue Jan 16 18:24:46 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3770
3771 * tree.c : xmlSaveFile, xmlSaveFileEnc, applied patch from
3772 Gary Pennington
3773
Daniel Veillard389e6b72001-01-15 19:41:13 +00003774Mon Jan 15 20:24:18 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3775
3776 * xpath.c: fixed the comaprision of values and nodelists,
3777 need to compare nodelist still ...
3778 * debugXML.c: avoided a possible core dump
3779 * HTMLparser.c: cleanup
3780 * nanohttp.c: contributed fix.
3781 * tree.c: fixes in properties handling added xmlSetNsProp
3782 needed by libxslt
3783 * xpathInternals.h: exported xmlXPathBooleanFunction, added a
3784 comment
3785 * TODO: updated
3786
Daniel Veillard167bd532001-01-06 21:09:34 +00003787Sat Jan 6 22:05:09 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3788
3789 * parser.c parserInternals.c: applied Bjorn Reese optimization
3790 patch
3791
3792Sat Jan 6 19:13:27 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3793
3794 * Makefile.am: applied patch fro make check from Martin Vidner
3795
Daniel Veillard503b8932001-01-05 06:36:31 +00003796Thu Jan 4 19:07:49 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3797
3798 * configure.in: preparing 2.2.11
3799 * doc/html/*: rebuild the HTML files
3800 * doc/xml.html : updated
3801
Daniel Veillardc2f4df22001-01-04 14:06:39 +00003802Thu Jan 4 14:09:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3803
3804 * tree.c: fixed a stupid bug
3805 * valid.c: applied "Paul D. Smith" <pausmith@nortelnetworks.com>
3806 patches related to validation of an XInclude processing result
3807 * TODO: updated
3808
Daniel Veillarde2488192001-01-04 10:54:22 +00003809Thu Jan 4 11:46:40 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3810
3811 * encoding.c xmlIO.c: Fixing the problem reported by Marc Sanfacon
3812 on large files
3813
Daniel Veillardf060a412001-01-03 20:52:44 +00003814Wed Jan 3 21:51:13 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3815
3816 * xmlIO.c: fixed xmlParserInputBufferCreateMem doc
3817
Daniel Veillard45cff692001-01-03 18:02:04 +00003818Wed Jan 3 18:56:00 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3819
3820 * HTMLparser.c: htmlCheckParagraph to check htmlOmittedDefaultValue,
3821 reported by Jonas Borgström
3822 * nanohttp.c: Applied Bjorn Reese' IPV6 first patch
3823
Daniel Veillard08108982001-01-03 15:24:58 +00003824Wed Jan 3 16:19:39 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3825
3826 * testXPath.c xpath.c: fixing the XPath union expressions problem
3827 reported by Martin Vidner <martin@artax.karlin.mff.cuni.cz>
3828
Daniel Veillard4a6845d2001-01-03 13:32:39 +00003829Wed Jan 3 14:22:33 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
3830
3831 * xmllint.c: Made is so if the file name is "-" is will read form
3832 standard input. Sven Heinicke <sven@zen.org>
3833 * tree.c: fixed a problem when growing buffer
3834 * tree.h: fixed the comment of the node types following andersca
3835 comment
3836 * TODO: updated
3837
Daniel Veillarda6d8eb62000-12-27 10:46:47 +00003838Wed Dec 27 12:35:49 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
3839
3840 * HTMLparser.[ch]: added a way to avoid adding automatically
3841 omitted tags. htmlHandleOmittedElem() allows to change the
3842 default handling.
3843 * tree.[ch] xmllint.c: added xmlDocDumpFormatMemory() and
3844 xmlDocDumpFormatMemoryEnc(), uses memory functions for output
3845 of xmllint too when using --memory flag, added a memory test
3846 suite at the Makefile level.
3847 * xpathInternals.h xpath.[ch] xpointer.c: fixed problems
3848 with namespace use when encountering QNames in XPath evalation,
3849 added xmlns() scheme in XPointer.
3850 * nanoftp.c : incorporated a fix
3851 * parser.c xmlIO.c: fixed problems raised with encoding when using
3852 the memory I/O
3853 * parserInternals.c: closed bug 25934 reported by
3854 torsten.landschoff@innominate.de
3855 * TODO: updated
3856
Daniel Veillarda1fe9102000-11-25 10:49:25 +00003857Sat Nov 25 11:46:27 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
3858
3859 * configure.in doc/html/* doc/xml.html: made a 2.2.9 release
3860 on a non-updated tree :-(, made a 2.2.10 release to correct the
3861 situation
3862
Daniel Veillardce6e98d2000-11-25 09:54:49 +00003863Sat Nov 25 10:41:37 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
3864
3865 * nanohttp.c parser.[ch] tree.[ch] xmlIO.[ch] xmllint.c xpath.c
3866 parserInternals.h vms/build_libxml.com vms/config.vms Makefile.am:
3867 integrated a set of OpenVMS changes from Howard Taylor
3868 <Howard.Taylor@pacoast.com>
3869
Daniel Veillard58770e72000-11-25 00:48:47 +00003870Sat Nov 25 01:21:01 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
3871
3872 * tree.[ch] xmlIO.c: added xmlDocDumpMemoryEnc() from John Kroll
3873 * error.c: applied fix suggested by "Leo Davidson" <leo@ox.compsoc.net>
3874
Daniel Veillardf62ceff2000-11-24 23:36:01 +00003875Sat Nov 25 00:24:49 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
3876
3877 * HTMLparser.c: some fixes on auto-open of html/head/body
3878 * encoding.c: fixed a compilation error on some gcc env
3879 * xpath.c xpointer.[ch] xpathInternals.h: improved the
3880 XPointer implementation
3881 * test/XPath/xptr/strpoint test/XPath/xptr/strrange3: added
3882 related XPointer tests and associated results
3883
Daniel Veillard300f7d62000-11-24 13:04:04 +00003884Fri Nov 24 14:01:44 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
3885
3886 * doc/xmldtd.html doc/xml.html: following a short step by step
3887 guidance on IRC to help maciej with DTDs I started a small
3888 page on the subject.
3889
Daniel Veillard748e45d2000-11-17 16:36:08 +00003890Fri Nov 17 17:28:06 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
3891
3892 * HTMLparser.c: fixed handling of broken charrefs
3893 * xmlmemory.h libxml2.dsp include/win32config.h: reporting Windows
3894 patches
3895
Daniel Veillard28929b22000-11-13 18:22:49 +00003896Mon Nov 13 19:17:20 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
3897
3898 * doc/xml.html doc/html/* : rebuilt the docs after adding
3899 xinclude and updated page for 2.2.7 and 2.2.8
3900 * configure.in: releasing 2.2.8
3901
Daniel Veillard41e06512000-11-13 11:47:47 +00003902Mon Nov 13 12:39:38 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
3903
3904 * parser.[ch] parserInternals.c: applied the conditional
3905 section processing fix from Jonathan P Springer
3906 <jonathan.springer2@gte.net>
3907 * xmlversion.h.in win32/libxml2/libxml2.dsp : Updated MS
3908 project file, fixed iconv default non support
3909 * xpath.c: fixed the problem of evaluating relative expressions
3910 when a node context is provided.
3911
Daniel Veillardbf432752000-11-12 15:56:56 +00003912Sun Nov 12 16:31:19 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
3913
3914 * nanoftp.c: fixed gcc 2.95 new warnings
3915 * SAX.c: fixed a stupid bug
3916 * tree.c: fixed a formatting problem when round-tripping
3917 from/to memory
3918 * xinclude.c: chased memleak, fixed a base problem
3919 * xpointer.c: added xmlXPtrBuildRangeNodeList(), finished ?
3920 xmlXPtrBuildNodeList()
3921 * TODO: updated
3922 * Makefile.am test/XInclude/docs test/XInclude/ents result/XInclude:
3923 adding a first small set of regression tests for XInclude
3924
Daniel Veillardc2def842000-11-07 14:21:01 +00003925Tue Nov 7 15:11:34 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
3926
3927 * nanohttp.[ch]: applied Wayne Davison patches to access
3928 the WWW-Authorization header.
3929 * parser.c: Closed Bug#30847: Problems when switching encoding
3930 in short files by applying Simon Berg's patch.
3931 * valid.c: fixed a validation problem
3932 * hash.c parser.h parserInternals.h testHTML.c testSAX.c tree.h
3933 xmlerror.h xmlmemory.h xmlversion.h.in: applied a DLL patch from
3934 Wayne Davison
3935 * xpointer.[ch]: added first version of xmlXPtrBuildNodeList()
3936 need to be extended to non full nodes selections.
3937 * xinclude.c: starts to work decently
3938
Daniel Veillard9e8bfae2000-11-06 16:43:11 +00003939Mon Nov 6 17:22:46 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
3940
3941 * tree.[ch] xinclude.[ch] xmllint.c configure.in valid.c
3942 debugXML.c xmlversion.h.in: Started adding XInclude support,
3943 this is a new xmllint option
3944 * tree.c xpath.c: applied TOM patches for XPath
3945 * xpointer.c: fixed a couple of errors.
3946 * uri.c: added an escaping function needed for xinclude
3947 * testXPath.c hash.c HTMLtree.c: minor cleanups raised by
3948 new warning from RH70 gcc's version
3949
Daniel Veillarda4964b72000-10-31 18:23:44 +00003950Tue Oct 31 14:14:13 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
3951
3952 * HTMLparser.c: fixed loop on invalid char in scripts
3953 * parser.c: update to description of xmlIOParseDTD()
3954 * libxml.m4 xmlversion.h.in: changes contributed by
3955 Michael Schmeing <m.schmeing@internet-factory.de>
3956 * configure.in: preparing for 2.2.7
3957 * Makefile.am: trying to avoid config.h and acconfig.h
3958 being included in the distrib
3959 * configure.in: released 2.2.7
3960
3961Mon Oct 30 17:08:10 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
3962
3963 * tree.[ch] debugXML.c parserInternals.c xpath.c: Deprecated Pi's
3964 like namespaces for good. Unified xmlNs and xmlNode somewhat.
3965
Daniel Veillard01411222000-10-30 15:33:22 +00003966Mon Oct 30 16:26:49 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
3967
3968 * parser.[ch]: added xmlIOParseDTD()
3969 * xpointer.c: added support for the 2 extra parameters of
3970 string-range, fixed a stoopid error when '0' was present
3971 in XPointer expressions
3972 * test/XPath/xptr/strrange2 result/XPath/xptr/strrange2: added
3973 testsuite for the above
3974
Daniel Veillard6db58192000-10-30 09:27:53 +00003975Mon Oct 30 10:26:43 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
3976
3977 * libxml.spec.in: improved package descriptions
3978
Daniel Veillarda5db68a2000-10-29 18:06:06 +00003979Sun Oct 29 19:03:11 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
3980
3981 * xpath.c xpathInternals.h: applied a large cleaning patch
3982 from TOM <ptittom@free.fr>, it also add namespace support
3983 for function and variables registration.
3984
Daniel Veillardbd20df72000-10-29 17:53:40 +00003985Sun Oct 29 18:51:46 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
3986
3987 * uri.c: Wayne Davison's patch fixing xmlBuildURI()
3988 * Makefile.mingw: Wayne Davison's update adding hash.c
3989
Daniel Veillardc4f4f0b2000-10-29 17:46:30 +00003990Sun Oct 29 18:38:12 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
3991
3992 * xpath.c: fixed the root evaluation problems
3993 * HTMLparser.c result/HTML/doc3.htm: fixed the problem of non
3994 ignorable spaces with <b> <bold> <em>
3995 * tree.c: fixed a loop in xmlSearchNsByHref()
3996
Daniel Veillard767662d2000-10-27 17:04:52 +00003997Fri Oct 27 18:57:32 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
3998
3999 * xpath.c: applied another XPath patch from TOM
4000 * xpath.c include/makefile.am: applied another patch from
4001 china@thewrittenword.com (cleanup on IRIX).
4002
Daniel Veillard211cc0a2000-10-27 11:49:33 +00004003Fri Oct 27 13:45:28 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4004
4005 * xml-config.1: received a fixed version from Fredrik Hallenberg
4006 <hallon@lysator.liu.se>
4007
Daniel Veillardf6bf9212000-10-26 14:07:44 +00004008Thu Oct 26 16:05:25 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4009
4010 * xpath.c textXPath.c xpathInternals.h: applied TOM <ptittom@free.fr>
4011 cleanup patch for XPath
4012
Daniel Veillardd6d7f7b2000-10-25 19:56:55 +00004013Wed Oct 25 21:31:10 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4014
4015 * patched to redirrect all "out of context" error messages to
4016 a reconfigurable routine. The changes are:
4017 * xmlerror.h : added the export of an error context type (void *)
4018 an error handler type xmlGenericErrorFunc there is an interface
4019 xmlSetGenericErrorFunc(void *ctx, xmlGenericErrorFunc handler);
4020 to reset the error handling routine and its argument
4021 (by default it's equivalent to respectively fprintf and stderr.
4022 * all the c files: all wild accesses to stderr or stdout within
4023 the library have been replaced to calls to the handler.
4024
Daniel Veillard29a11cc2000-10-25 13:32:39 +00004025Wed Oct 25 15:27:19 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4026
4027 * configure.in: release 2.2.6
4028 * xpath.[ch] xpointer.c xpathInternals.h: added xpathInternals.h
4029 exporting the inner functions of xpath for extension modules
4030 * doc/*: updated and rebuilt the doc
4031
Daniel Veillardbe9ec4b2000-10-25 11:01:53 +00004032Wed Oct 25 12:48:55 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4033
4034 * nanohttp.c : applied Wayne HTTP cleanup patch
4035 * tree.[ch]: applied TOM <ptittom@free.fr> for xmlNodeSetBase()
4036 and xmlNodeSetSpacePreserve()
4037
Daniel Veillarddf7ef2a2000-10-25 10:11:55 +00004038Wed Oct 25 12:11:03 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4039
4040 * xpath.c: closing bug #29260
4041
Daniel Veillard126f2792000-10-24 17:10:12 +00004042Tue Oct 24 18:49:34 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4043
4044 * hash.[ch] debugXML.c: expanded/enhanced the API, added
4045 multikey tuples, made hash structure opaque
4046 * valid.[ch]: moved elements, attributes, notations decalarations
4047 as well as ID and refs to hash tables.
4048 * entities.c: hash cleanup
4049 * xmlmemory.c: fixed a dump problem in debug mode
4050 * include/Makefile.am: problem passing in DESTDIR= values patch
4051 from Marc Christensen <marc@calderasystems.com>
4052 * nanohttp.c: removed debugging remains
4053 * HTMLparser.c: the bogus tag should be ignored (Wayne)
4054 * HTMLparser.c parser.c: fixing a number of problems with the
4055 macros in the *parser.c files (Wayne).
4056 * HTMLparser.c: close the previous option when opening a new one
4057 (Marc Sanfacon).
4058 * result/HTML/*: updated the HTML results accordingly
4059
Daniel Veillard52afe802000-10-22 16:56:02 +00004060Sun Oct 22 18:39:19 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4061
4062 * entities.[ch] xpath.[ch] hash.[ch] debugXML.c tree.h: added/hacked
4063 hash tables from Bjorn Reese <breese@mail1.stofanet.dk>. Switched
4064 XPath functions and XML entities table to them. More to come...
4065 * xmlIO.c: fixed libxml closing FILEs it didn't open.
4066
Daniel Veillard683cb022000-10-22 12:04:13 +00004067Sun Oct 22 13:59:50 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4068
4069 * tree.c: coalesce adjacent text nodes
4070 * valid.c: handling of blank nodes in DTd validation (raised
4071 by problems with a posteriori validation).
4072 * nanohttp.c: changing behaviour on HTTP write stuff.
4073 * HTMLtree.c: forced body and html to be explicitely closed.
4074 * xpath.h: exported more XPath functions.
4075
Daniel Veillard1baf4122000-10-15 20:38:39 +00004076Sun Oct 15 22:28:32 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4077
4078 * Release of 2.2.5
4079 * xpointer.c: range() range-inside and other helper functions
4080 * parserInternals.c: fixed perf problem raised by rolf@pointsman.de
4081
Daniel Veillard47e12f22000-10-15 14:24:25 +00004082Sun Oct 15 16:21:27 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4083
4084 * SAX.c: HTML attributes need normalization too (Bjorn Reese)
4085 * HTMLparser.[ch]: addded htmlIsScriptAttribute()
4086
Daniel Veillardb732a0e2000-10-15 11:27:01 +00004087Sun Oct 15 13:18:36 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4088
4089 * doc/*: rebuilt docs preparing for 2.2.5 release, added URI
4090 and XPointer modules
4091
Daniel Veillard134c9f32000-10-15 10:27:08 +00004092Sun Oct 15 12:13:30 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4093
4094 * SAX.h: closed #25107
4095
Daniel Veillard39915622000-10-15 10:06:55 +00004096Sun Oct 15 12:06:16 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4097
4098 * testSAX.c: fixed problem with cdata reporting
4099 * SAXresult/* : updated
4100
Daniel Veillard1e851392000-10-15 10:02:56 +00004101Sun Oct 15 12:00:24 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4102
4103 * parser.c test/wap.xml result/noent/wap.xml result/wap.xml:
4104 Closed bug #27499, added to regression tests
4105 * TODO: updated
4106
Daniel Veillard7eda8452000-10-14 23:38:43 +00004107Sun Oct 15 01:34:37 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4108
4109 * HTMLparser.c HTMLtree.[ch] SAX.c testHTML.c tree.c: fixed HTML
4110 support for SCRIPT and STYLE with help from Bjorn Reese
4111 * test/HTML/* result/HTML/*: added simple testcase and updated
4112 the existing ones.
4113
Daniel Veillardff9c3302000-10-13 16:38:25 +00004114Fri Oct 13 18:24:31 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4115
4116 * xpath.c xpointer.c: XPointer reorder of ranges start/end and
4117 string-range for empty strings
4118 * test/XPath/docs/str test/XPath/xptr/chaptersrange
4119 test/XPath/xptr/strrange: augmented the XPointer testsuite
4120
Daniel Veillard189446d2000-10-13 10:23:06 +00004121Fri Oct 13 12:21:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4122
4123 * doc/xml.html doc/xmlmem.html: added a module describing memory
4124 interfaces and use, updated the main page.
4125
Daniel Veillard2f971a22000-10-12 23:26:32 +00004126Fri Oct 13 01:23:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4127
4128 * nanoftp.c nanohttp.c xmlIO.c: Wayne Davison Win32 patch
4129 nanoftp code work on Windows too now
4130
4131Fri Oct 13 00:54:37 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillardc2df4cd2000-10-12 23:15:24 +00004132
4133 * testXPath.c xpath.[ch]: moved some debug functions to xpath core
4134 * xpointer.c: implemented string-range() at least a good first version
4135 * test/XPath/docs/str test/XPath/xptr/strrange
4136 result/XPath/xptr/strrange: the string-range() tests
4137
Daniel Veillardd3c68c42000-10-12 08:06:28 +00004138Thu Oct 12 10:02:59 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4139
4140 * Makefile.am include/Makefile.am include/win32config.h
4141 win32/Makefile.mingw: fixed problems reported by Wayne Davison
4142 and make distcheck
4143
Daniel Veillard19d61112000-10-11 23:50:35 +00004144Thu Oct 12 01:44:08 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4145
4146 * nanohttp.c: added xmlNanoHTTPTimeout(int delay), removed a bug
4147 xmlNanoHTTPMethod on input MimeType Tony Lam <Tony.Lam@eng.sun.com>
4148 * xpointer.c: slight extension of xmlXPtrLocationSetMerge
4149
Daniel Veillardb0426ca2000-10-11 23:39:43 +00004150Thu Oct 12 01:37:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4151
4152 * config.h.in configure.in nanoftp.c nanohttp.c xmlversion.h.in :
4153 patch for socklen_t detection by
4154 Albert Chin-A-Young <china@thewrittenword.com>
4155
Daniel Veillardcd429612000-10-11 15:57:05 +00004156Wed Oct 11 17:53:57 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4157
4158 * tree.c valid.c xmllint.c: Fixed a few postvalidation bugs
4159 and added a --dtdvalid option to xmllint used to test it
4160
Daniel Veillard47c02452000-10-11 13:04:36 +00004161Wed Oct 11 15:01:29 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4162
4163 * xml-config.1 Makefile.am libxml.spec.in: adding a man page for
4164 xml-config by Fredrik Hallenberg <hallon@lysator.liu.se>
4165
Daniel Veillard2d38f042000-10-11 10:54:10 +00004166Wed Oct 11 12:41:30 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4167
4168 * xpath.[ch] xpointer.[ch]: worked on XPath functions and variable
4169 handlings (registration, lookup, cleanup)
4170
Daniel Veillardc8df0aa2000-10-10 23:50:30 +00004171Wed Oct 11 01:46:44 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4172
4173 * configure.in Makefile.am include/makefile.am: adding XPointer
4174 and XPtrtests target
4175 * xpointer.[ch] : new files for XPointer support
4176 * test/XPath/xptr result/XPath/xptr: added XPointer testsuite and
4177 more XPath tests
4178
Daniel Veillard57fda592000-10-10 23:24:14 +00004179Wed Oct 11 01:23:25 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4180
4181 * configure.in: fixed, very broken, make distcheck works again
4182
Daniel Veillarde8282ed2000-10-10 23:01:31 +00004183Wed Oct 11 02:53:10 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4184
4185 * More work toward 2.2.5, integrated a number of patches
4186 * configure.in Makefile.am win32config.h.in: trying to cleanup
4187 make distcheck .... huh ...
4188 * include/Makefile.am include/win32config.h: new directory
4189 for includes
4190 * win32/Makefile.mingw win32/README.MSDev win32/libxml2/libxml2.dsp
4191 updated teh makefiles and instructions for WIN32
4192 * xpath.c: small fixes
4193 * test/XPath/ results/XPath: updated the testcases and results
4194 * HTMLparser.c nanohttp.c testXPath.c: incorporated provided or
4195 suggested patches
4196 * valid.c: fixed an ID bug
4197
Daniel Veillardb71379b2000-10-09 12:30:39 +00004198Mon Oct 9 14:28:56 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4199
4200 * moved xml-error.h to xmlerror.h: seems this allowed to bypass
4201 the automake bug where wrong dependancies were generated.
4202 * xpath.[ch]: worked on XPointer
4203
Daniel Veillard7e99c632000-10-06 12:59:53 +00004204Fri Oct 6 12:58:04 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4205
4206 * configure.in Makefile.am: 2.2.5, ship the include in an
4207 include/libxml subdirectory, use symlinks when using CVS
4208 * testSAX.c: fixed small bug
4209 * testXPath.c: changed the way testfiles are parsed
4210 * debugXML.c: same kind of cleanup when parsing an argument expression
4211 XPath/XPointers can have blanks embedded
4212 * xpath.[ch]: more cleanup, reorgs for XPointer work
4213 * parserInternals.c parser.c HTMLparser.c: fixed wrong include
4214 * win32/README.MSDev win32/libxml2/libxml2.dsp: Windows stuff
4215
Daniel Veillard55b91f22000-10-05 16:30:11 +00004216Thu Oct 5 18:13:15 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4217
4218 * debugXML.c testXPath.c xpath.[ch]: got pissed by some nastyness
4219 in the XPath engine, rewrote large parts of it, now it's far
4220 cleaner and in sync with the REC not an old WD. Fixed a parsing
4221 problem in the interactive XML shell found when testing XPath.
4222
Daniel Veillardac260302000-10-04 13:33:43 +00004223Wed Oct 4 15:25:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4224
4225 * debugXML.c testXPath.c xpath.[ch]: More work on XPath/Xpointer,
4226 incorporated "(TOM)" <ptittom@free.fr> patches rebuilt the XPath
4227 examples with the extra test
4228
Daniel Veillard7cfce322000-10-04 12:40:27 +00004229Wed Oct 4 14:39:01 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4230
4231 * parser.c xmlIO.c xmlIO.h: fixed bug 26650, and improved
4232 the global init function.
4233
Daniel Veillard970112a2000-10-03 09:33:21 +00004234Tue Oct 3 11:28:52 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4235
4236 * HTMLparser.c: Doohhh, attribute name parsing was still case
4237 sensitive ! Fixed this ...
4238 * result/HTML/* : updated the tests results accordingly
4239
Daniel Veillard740abf52000-10-02 23:04:54 +00004240Mon Oct 2 23:47:32 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4241
4242 * xpath.[ch] debugXML.c testXPath.c: fixed the XPath evaluation
4243 engine, should be far more stable, incorporated a new version of
4244 preceding/following axis, need testing
4245 * uri.c: fixed file:///c:/a/b/c problem
4246 * test/XPath/tests/idsimple: augmented the XPath tests
4247
Daniel Veillard3bff2b02000-10-01 20:33:47 +00004248Sun Oct 1 22:33:00 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4249
4250 * doc/* rebuilding docs for 2.2.4 release
4251
Daniel Veillard8b5dd832000-10-01 20:28:44 +00004252Sun Oct 1 22:16:33 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4253
4254 * configure.in: releasing 2.2.4
4255 * parser.[ch]: added xmlStrEqual()
4256 * HTMLparser.c HTMLtree.c SAX.c debugXML.c entities.c parser.c
4257 tree.c valid.c xlink.c xpath.c: converted all !xmlStrcmp to
4258 use xmlStrEqual instead
4259 * TODO: updated
4260 * added an XPath test
4261
Daniel Veillardbc765302000-10-01 18:23:35 +00004262Sun Oct 1 20:19:39 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4263
4264 * HTMLparser.c: fixed htmlStartCloseIndexinitialized init
4265 * entities.h: exported xmlInitializePredefinedEntities
4266 * parser.[ch] : added xmlInitParser()
4267 * parserInternals.h : had to export htmlInitAutoClose()
4268
Daniel Veillardf09e7e32000-10-01 15:53:30 +00004269Sun Oct 1 16:28:22 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4270
4271 * xpath.[ch] : fixed some serious XPath Predicate evaluation
4272 problems
4273 * Makefile.am : added XPath regression tests to normal tests
4274 * uri.c: fixed a problem with local paths, cleanup
4275 * parser.c: fixed a problem with large CData sections
4276
Daniel Veillardd2ade932000-09-30 14:39:55 +00004277Sat Sep 30 16:35:54 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4278
4279 * configure.in xml-config.in: patch from "Ben Taylor"
4280 <sol7x86@hotmail.com> for solaris shared libs lookup
4281
Martin Bauligdd7d1f62000-09-29 23:17:57 +000042822000-09-30 Martin Baulig <baulig@suse.de>
4283
4284 * libxml-2.0.pc.in: Provide pkg-config script.
4285
4286 * configure.in: Create the libxml-2.0.pc script from the
4287 libxml-2.0.pc.in templates.
4288 * Makefile.am (pkgconfig_DATA): Install the libxml-2.0.pc
Martin Baulig1b478d12000-09-30 02:27:55 +00004289 script in `$(libdir)/pkgconfig'.
Martin Bauligdd7d1f62000-09-29 23:17:57 +00004290
Daniel Veillard4b0755c2000-09-25 14:26:28 +00004291Mon Sep 25 16:23:41 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4292
4293 * HTMLparser.c parser.c tree.c tree.h: Avoiding a few warning
4294 when compiling with MSC
4295
Daniel Veillard46057e12000-09-24 18:49:59 +00004296Sun Sep 24 20:32:52 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4297
4298 * xpath.c: patch for normalize-string() substring-before(),
4299 substring-after() and translate() functions from Bjorn Reese
4300 <breese@mail1.stofanet.dk>
4301 * libxml.m4 Makefile.am: added libxml.m4 from Debian ?
4302 Fredrik Hallenberg <hallon@lysator.liu.se>
4303 * TODO: updated
4304
Daniel Veillard281f8ff2000-09-24 08:12:14 +00004305Sun Sep 24 10:00:49 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4306
4307 * xmlversion.h.in nanoftp.c nanohttp.c: traying to work out the
4308 problem of socklen_t being undefined on a number of platforms
4309 * debugXML.c: fixed a compilation problem when without snprintf
4310
Daniel Veillard8ddb5a72000-09-23 10:28:52 +00004311Sat Sep 23 12:19:45 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4312
4313 * HTMLparser.c uri.c: Another patch from Wayne Davison, correcting
4314 an URI bug and a fix for the control-character-induced infinite loop
4315 * nanohttp.c: preventive fix for compiling on WIN32
4316
Daniel Veillard64c20ed2000-09-22 16:07:02 +00004317Fri Sep 22 18:06:08 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4318
4319 * xmlint.c: closing bug #25000
4320
Daniel Veillardb656ebe2000-09-22 13:51:48 +00004321Fri Sep 22 14:17:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4322
4323 * xmlIO.h tree.h: made xmlNodeDump() and xmlNodeDumpOutput() public
4324 * parser.[ch] nanohttp.c HTMLtree.c HTMLparser.c tree.c: applied and
4325 modified slightly Wayne Davison patch adding xmlStrcasecmp and
4326 related function, fixing xmlStrncmp(), and associated cleanup
4327 * result/HTML/entities.html.sax: updating result
4328
Daniel Veillard4fb87ee2000-09-19 12:25:59 +00004329Tue Sep 19 14:20:10 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4330
4331 * uri.c: applied patch for URI escaping from Wayne Davison
4332 <wayned@blorf.net>
4333 * tree.c parserInternals.c HTMLparser.c: memset checks patches
4334 from Denis Barbier <barbier@imacs.polytechnique.fr>
4335 * HTMLparser.c: UTF8 characters in HTML tag-attribute values
4336 patch from Wayne Davison
4337
Daniel Veillardd5f97f82000-09-17 16:38:14 +00004338Sun Sep 17 18:37:03 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4339
4340 * doc/xml.html : updated with new releases, adding "how to help"
4341
Daniel Veillard04698d92000-09-17 16:00:22 +00004342Sun Sep 17 17:58:37 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4343
4344 * SAX.c debugXML.c parser.c parserInternals.c tree.c valid.c xpath.c:
4345 removed a few warnings in pedantic mode ...
4346 * parserInternals.c parser.c: moved encoding switching function
4347 to parserInternals.c
4348 * configure.in, doc/Makefile.am libxml.spec.in: released 2.2.3
4349
Daniel Veillarda2c6da92000-09-16 18:15:00 +00004350Sat Sep 16 20:12:41 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4351
4352 * HTMLparser.c parser.c: set ctxt->errNo before calling the
4353 error or warning handlers
4354
Daniel Veillardb1059e22000-09-16 14:02:43 +00004355Wed Sep 13 22:03:18 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4356
4357 * parserInternals.c parserInternals.h parser.c Makefile.am:
4358 created a new module parserInternals.c, moved most of the
4359 code shared by the various parsers there, as well as
4360 deprecated code from parser.c. More cleanup of parser.c
4361 * uri.c: fixed a problem when URI is NULL
4362 * valid.c: speedup when looking for an attribute declaration
4363
Daniel Veillard39c7d712000-09-10 16:14:55 +00004364Sun Sep 10 17:53:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4365
4366 * uri.c tree.c SAX.c parser.c entities.c debugXML.c: finished
4367 the cleanup of the computation of URI references when seeking
4368 external entities. The URI reference string and the resulting
4369 URI are both stored now.
4370 * parser.c HTMLparser.c valid.c nanoftp.c nanohttp.c xpath.c:
4371 large s(n)printf checks and cleanup from Denis Barbier
4372 <barbier@imacs.polytechnique.fr>
4373 * xmlversion.h.in tree.h: couple of SGML declarations for a
4374 possible docbook module.
4375 * result/VC/ : a couple of test output changed due to the change
4376 of the entities URI
4377
Daniel Veillardb513f5a2000-09-10 14:01:12 +00004378Sun Sep 10 15:59:58 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4379
4380 * parser.h: added a _private field for linking user's data
4381
Daniel Veillarddd477ce2000-09-10 13:23:08 +00004382Sun Sep 10 15:14:43 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4383
4384 * parser.c parserInternals.h: demacroified most of the IS_XXX
4385 the gain in size is significant so ...
4386
Daniel Veillard4b5b80c2000-09-08 18:54:41 +00004387Fri Sep 8 20:48:29 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4388
4389 * entities.c: cases where looking up entities with doc==NULL
4390 covered
4391
Daniel Veillard90e11312000-09-05 10:42:32 +00004392Tue Sep 5 12:41:15 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4393
Daniel Veillard1de50802000-09-07 08:54:32 +00004394 * uri.c: applied Wayne Davison patch
Daniel Veillard90e11312000-09-05 10:42:32 +00004395 * Makefile.in test/URI/uri.data result/URI/uri.data: updated URI tests
4396
Daniel Veillard98a79162000-09-04 11:15:39 +00004397Mon Sep 4 13:01:45 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4398
Daniel Veillard1de50802000-09-07 08:54:32 +00004399 * uri.c testUri.c: applied Wayne Davison patches
Daniel Veillard98a79162000-09-04 11:15:39 +00004400 * test/URI/uri.data result/URI/uri.data: first set of tests/results
4401 * Makefile.in: added URItest and included thenin "make tests"
4402
4403Sun Sep 3 19:19:29 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard960aa532000-09-03 17:20:17 +00004404
4405 * xmlversion.h.in: closed bug 22941
4406
Daniel Veillard2bb89092000-08-31 14:57:50 +00004407Thu Aug 31 16:55:55 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4408
4409 * doc/xmlio.html: added doc and example for entity loader
4410 redefinition.
4411
Daniel Veillard96984452000-08-31 13:50:12 +00004412Thu Aug 31 14:59:28 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4413
4414 * doc/xmlio.html doc/xml.html: added a doc on the I/O mechanism
4415 used by libxml
4416
Daniel Veillarde715dd22000-08-29 18:29:38 +00004417Tue Aug 29 20:22:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4418
4419 * parser.c: Fixed bug on invalid ontent characters and when using
4420 push.
4421 * xmllint.c: fixed xmllint endling of errors in push mode
4422
Daniel Veillard4948eb42000-08-29 09:41:15 +00004423Tue Aug 29 11:24:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4424
4425 * HTMLparser.c testHTML.c: applied two new patches from
Daniel Veillardbbe11b02000-09-23 07:07:40 +00004426 Wayne Davison <wayned@users.sourceforge.net>
Daniel Veillard4948eb42000-08-29 09:41:15 +00004427 * result/HTML/*.sax: regenerated HTML SAX output
4428 * parser.c: more cleanup.
4429
Daniel Veillarde010c172000-08-28 10:04:51 +00004430Mon Aug 28 11:58:12 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4431
4432 * HTMLparser.[ch] testHTML.c: applied the second set of
Daniel Veillardbbe11b02000-09-23 07:07:40 +00004433 patches from Wayne Davison <wayned@users.sourceforge.net>,
4434 adding htmlEncodeEntities()
Daniel Veillarde010c172000-08-28 10:04:51 +00004435 * HTMLparser.c: fixed an ignorable white space detection bug
4436 occuring when parsing with SAX only
4437 * result/HTML/*.sax: updated since the output is now HTML
4438 encoded...
4439
Daniel Veillard47f3f312000-08-27 22:40:15 +00004440Mon Aug 28 00:38:31 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4441
Daniel Veillardbbe11b02000-09-23 07:07:40 +00004442 * HTMLparser.[ch]: applied some of Wayne Davison
4443 <wayned@users.sourceforge.net> patches
Daniel Veillard47f3f312000-08-27 22:40:15 +00004444
Daniel Veillarde0854c32000-08-27 21:12:29 +00004445Sun Aug 27 22:14:01 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4446
4447 * SAX.c tree.c debugXML.c: fixed bogus behaviour when an
4448 undeclared namespace prefix was used, added a warning.
4449 Cleaned up support w.r.t. entities, spilling out a warning
4450 and being pedantic on lookups.
4451 * test/warning/ent9 : added testcase for previous example.
4452 * TODO: updated
4453 * parserInternals.h parser.c: changed the way names are parsed
4454 now allow infinite size and decrease penalty for normal use
4455 * parser.c: Started a big cleanup/check of the parser code,
4456 fixed some of the most tortuous entity code, spotted code
4457 unused anymore
4458 * test/*: added tests for very long names and related nasty
4459 things.
4460
Daniel Veillardf0cc7cc2000-08-26 21:40:43 +00004461Sat Aug 26 23:31:04 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4462
4463 * doc/encoding.html: added encoding aliases doc
4464 * doc/xml.html: updates
4465 * encoding.[ch]: added EncodingAliases functions
4466 * entities.[ch] valid.[ch] debugXML.c: removed two serious
4467 bottleneck affecting large DTDs like Docbook
4468 * parser.[ch] xmllint.c: added a pedantic option, will be
4469 useful
4470 * SAX.c: redefinition of entities is reported in pedantic mode
4471 * testHTML.c: uninitialized warning from gcc
4472 * uri.c: fixed a couple of bugs
4473 * TODO: added issue raised by Michael
4474
Daniel Veillard0d6b1702000-08-22 23:52:16 +00004475Wed Aug 23 01:50:51 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4476
4477 * doc/encoding.html: propagated Martin Duerst suggestions
4478
Daniel Veillard52402ce2000-08-22 23:36:12 +00004479Wed Aug 23 00:23:41 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4480
4481 * parser.c: Fixed Bug#21552: libxml fails to decode &amp;
4482 * uri.c testUri.c patches, by Marc Sanfacon (1 left)
4483 * parser.c HTMLparser.c: HTML/encoding push problems reportedi
4484 by Wayne Davison
4485
Daniel Veillard2f2bf412000-08-20 15:11:02 +00004486Sun Aug 20 17:03:38 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4487
4488 * nanoftp.c nanohttp.c: small cleanup
4489 * TODO: updated
4490
Daniel Veillard244ece92000-08-19 20:58:02 +00004491Sat Aug 19 22:57:02 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4492
4493 * added an old VC testcase and updated title.xml entity
4494
Daniel Veillardb8f25c92000-08-19 19:52:36 +00004495Sat Aug 19 21:02:08 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4496
4497 * HTMLparser.c SAX.c tree.c HTMLtree.h result/HTML/*: work
4498 done on auto-opening of <p> tags and cleanup of SAX output
4499
Daniel Veillard979e55e2000-08-19 16:48:54 +00004500Sat Aug 19 18:45:40 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4501
4502 * libxml.4 xmllint.1 Makefile.am libxml.spec.in: added man pages
4503
Daniel Veillard4540be42000-08-19 16:40:28 +00004504Sat Aug 19 18:38:53 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4505
4506 * doc/xml.html libxml.* structure.*: updated the doc a bit
4507
Daniel Veillard808a3f12000-08-17 13:50:51 +00004508Thu Aug 17 15:50:00 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4509
4510 * testSAX.c testHTML.c result/HTML/: cleanup of the output
4511 of SAX tests
4512
Daniel Veillard29579362000-08-14 17:57:48 +00004513Mon Aug 14 13:56:33 EDT 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4514
4515 * Patch from Albert Chin-A-Young <china@thewrittenword.com>:
4516 * xmllint.c: workaround a MAP_FAILEd definition bug in DU-4.0
4517
Daniel Veillard1255ab72000-08-14 15:13:33 +00004518Mon Aug 14 11:10:20 EDT 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4519
4520 * Patch from Dave Yearke <yearke@eng.buffalo.edu>:
4521 * testHTML.c: fix core dump on Solaris 2.x systems
4522 * HTMLparser.c: fix segfault if ctxt->sax->characters() is NULL
4523 * result/HTML/*.sax: previous bug fix lead to new results
4524
Daniel Veillard03109292000-08-14 14:58:22 +00004525Mon Aug 14 10:26:09 EDT 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4526
4527 * Patch from Albert Chin-A-Young <china@thewrittenword.com>:
4528 * configure.in: added --with-readline=DIR to accept alternate
4529 path for readline include/library
4530 * configure.in: added AM_C_PROTOTYPES to add -Aa -D_HPUX_SOURCE
4531 for ANSI under HP-UX
4532 * config.in: Removed @LIBS@ from xml-config because @XML_LIBS@
4533 includes @LIBS@
4534
Daniel Veillard7c29ce22000-08-12 21:20:53 +00004535Sat Aug 12 23:19:42 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4536
4537 * doc/* : rebuilt the docs
4538 * getting ready for 2.2.2 release
4539
Daniel Veillard87b95392000-08-12 21:12:04 +00004540Sat Aug 12 16:42:37 EDT 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4541
4542 * parser.[ch]: added xmlGetFeaturesList() xmlGetFeature()
4543 and xmlAddFeature()
4544 * tree.[ch]: added xmlAddChildList()
4545 * xmllint.c: MAP_FAILED macro test
4546 * parser.h: added xmlParseCtxtExternalEntity()
4547 * valid.c: applied bug fixes removed warning
4548 * tree.c: added CDATA block to elements content
4549 * testSAX.c: cleanup of output
4550 * testHTML.c: added SAX testing
4551 * encoding.c: better error recovery
4552 * SAX.c, parser.c: fixed one of the external entity processing
4553 of the OASis testsuite
4554 * Makefile.am: added HTML SAX regression tests
4555 * configure.in: bumped to 2.2.2
4556 * test/HTML/ result/HTML: added a few of HTML tests, and added the
4557 SAX results
4558
Daniel Veillard88a172f2000-08-04 18:23:10 +00004559Fri Aug 4 11:21:50 PDT 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4560
4561 * configure.in: patch for HP compiler
4562
45632000-08-04 Sven Heinicke <sven@zen.org>
4564
4565 * xmllint.c: Was coredumping sometimes when the file given didn't
4566 exist.
4567
Daniel Veillard46e370e2000-07-21 20:32:03 +00004568Sat Jul 22 05:59:05 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4569
4570 * parser.c xmlIO.[ch]: fixed the problem of encoding support
Daniel Veillard2f2bf412000-08-20 15:11:02 +00004571
Daniel Veillard46e370e2000-07-21 20:32:03 +00004572 when using in memory parsing. Need some cleanup.
4573 * xmllint.c configure.in: added a --memory flag to test memory
4574 parsing
4575
Daniel Veillard36650692000-07-21 15:16:39 +00004576Fri Jul 21 17:09:57 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4577
4578 * nanohttp.c: fixed socklen_t replacement to unsigned int
4579 * parser.c: fixed a space handdling missing at the end of
4580 production 28 DOCTYPE.
4581 * xmlmemory.c: fixed a stupid bug on the routine to override
4582 allocation functions
4583 * TODO: updated
4584
Daniel Veillarde46e20d2000-07-14 15:02:46 +00004585Fri Jul 14 17:01:14 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4586
4587 * doc/ regenerated the docs
4588
Daniel Veillard32bc74e2000-07-14 14:49:25 +00004589Fri Jul 14 16:12:20 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4590
4591 * doc/encoding.html doc/xml.html: added I18N doc
4592 * encoding.[ch] HTMLtree.[ch] parser.c HTMLparser.c: I18N encoding
4593 improvements, both parser and filters, added ASCII & HTML,
4594 fixed the ISO-Latin-1 one
4595 * xmllint.c testHTML.c: added/made visible --encode
4596 * debugXML.c : cleanup
4597 * most .c files: applied patches due to warning on Windows and
4598 when using Sun Pro cc compiler
4599 * xpath.c : cleanup memleaks
4600 * nanoftp.c : added a TESTING preprocessor flag for standalong
4601 compile so that people can report bugs more easilly
4602 * nanohttp.c : ditched socklen_t which was a portability mess
4603 and replaced it with unsigned int.
4604 * tree.[ch]: added xmlHasProp()
4605 * TODO: updated
4606 * test/ : added more test for entities, NS, encoding, HTML, wap
4607 * configure.in: preparing for 2.2.0 release
4608
Daniel Veillard49703262000-07-10 10:27:46 +00004609Mon Jul 10 16:17:18 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4610
4611 * nanoftp.c: fixed the way the control connection is handled
4612 * libxml.spec.in: fixed the dependancies and cleanup
4613
Daniel Veillard306be992000-07-03 12:38:45 +00004614Mon Jul 3 14:37:07 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4615
4616 * doc/xml.html: changed the xmlsoft.org structure, updated the
4617 examples w.r.t. root and childs
4618
Daniel Veillard7d853352000-07-02 18:53:09 +00004619Sun Jul 2 20:51:43 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4620
4621 * libxml.spec.in: fixed bug #7419, dependancies fouled for libxml-devel
4622
Daniel Veillard365e13b2000-07-02 07:56:37 +00004623Sun Jul 2 09:52:45 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4624
4625 * HTMLparser.c: Work on character encoding support for the HTML parser
4626 * HTMLparser.c: Fixed some autoopen/autoclose probs for the HTML parser
4627 * encoding.c: Fixed a potential memleak in the encoding stuff
4628
Daniel Veillardaf743792000-07-01 11:49:28 +00004629Sat Jul 1 13:44:22 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4630
4631 * doc/FAQ.html doc/Makefile.am : added a FAQ
4632
4633Fri Jun 30 20:29:08 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillardd83eb822000-06-30 18:39:56 +00004634
4635 * HTMLparser.c HTMLtree.c SAX.c valid.c tree.h : more cleanup
4636 of the HTML parser to force it to not bypass SAX
4637
Daniel Veillard3f6f7f62000-06-30 17:58:25 +00004638Fri Jun 30 11:19:59 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4639
4640 * win32config.h.in: updated
4641 * xmlversion.h.in: crap forgot to update this, this mean 2.1.0
4642 lacks iconv support :-( need to release 2.1.1
4643 * configure.in: release 2.1.1
4644 * HTMLparser: fixed bug #14784
4645 * xpath.c HTMLparser.c encoding.c parser.c: fix warning raised
4646 by Windows compiler
4647 * HTMLparser.c SAX.c HTMLtree.h tree.h: create HTML document in
4648 the SAX startDocument() callback.
4649 * TODO: updated
4650
4651Thu Jun 29 12:06:48 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4652
4653 * added xmlStopParser()
4654
Daniel Veillardbe803962000-06-28 23:40:59 +00004655Wed Jun 28 23:10:26 MEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4656
4657 * configure.in: 2.1.0 prerelease
4658 * Large resync between W3C and Gnome tree
4659 * nanoftp, nanohttp.c: fixed stalled connections probs
4660 * HTMLtree.c SAX.c : support for attribute without values in
4661 HTML for andersca
4662 * valid.c: Fixed most validation + namespace problems
4663 * HTMLparser.c: start document callback for andersca
4664 * debugXML.c xpath.c: lots of XPath fixups from Picdar Technology
4665 * parser.h, SAX.c: serious speed improvement for large
4666 CDATA blocks
4667 * encoding.[ch] xmlIO.[ch]: Improved seriously saving to
4668 different encoding
4669 * example/Makefile.am example/gjobread.c tree.h: work on
4670 libxml1 libxml2 convergence.
4671 * config.h.in parser.c xmllint.c: added xmlCheckVersion()
4672 and the LIBXML_TEST_VERSION macro
4673
Daniel Veillardc310d562000-06-23 18:32:15 +00004674Fri Jun 23 22:26:07 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4675
4676 * doc/xml.html: various patches and improvements typo fixed by
4677 Felix Natter
4678 * doc/libxml-doc.el: Emacs module to lookup the libxml documentation
4679 from Felix Natter <fnatter@gmx.net>
4680
Daniel Veillardf3029822000-05-06 08:11:19 +00004681Sat May 6 10:09:45 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4682
4683 * doc/upgrade.html: updated with instructions for support of both
4684 libxml-1.x and libxml-2.x
4685 * doc/gjobread.c : applied Todd Dukes <tdukes@ibmoto.com> patch
4686 for 2.x support and also fixed includes
4687
4688
Daniel Veillard496a1cf2000-05-03 14:20:55 +00004689Wed May 3 14:21:25 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4690
4691 * encoding.[ch], xmlIO.[ch], parser.c, configure.in : revamped
4692 the encoding support, added iconv support, so now libxml if
4693 compiled with iconv automatically support japanese encodings
4694 among others. Work based on initial patch from Yuan-Chen Cheng
4695 I may have broken binary compat in the encoding handler
4696 registration scheme, but that was so utterly broken I don't
4697 expect anybody to have used this feature until now.
4698 * parserInternals.h: fixup on the CHAR range macro
4699 * xml-error.h, parser.c: catch URL/URI errors using the uri.c
4700 code.
4701 * tree.[ch]: added xmlBufferGrow(), was needed for iconv
4702 * uri.c: added xmlParseURI() I can't believe I forgot to
4703 implement this one in 2.0 !!!
4704 * SAX.c: moved doc->encoding update in the endDocument() call.
4705 * TODO: updated.
4706
Daniel Veillard06047432000-04-24 11:33:38 +00004707Mon Apr 24 13:30:13 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4708
4709 * tree.h: removed extraneous xmlRemoveProp definition
4710 * TODO: added item about --disable-corba configure switch
4711 * tree.c parser.c: fixed problems for xmlCopyDoc and postvalidation
4712 * nanoftp.c: fixed include problems giving troubles on AIX and
4713 slowlaris
4714 * xmlIO.[ch] valid.h tree.[ch] xlink.c xmlmemory.c uri.c
4715 parser.c nanoftp.c nanohttp.c SAX.c testSAX.c :
4716 comment and headers changes to lower gtk-doc number of warnings
4717 * doc/html/*: rebuilt docs
4718
Daniel Veillarde0aed302000-04-16 08:52:20 +00004719Sun Apr 16 11:23:29 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4720
4721 * HACKING: documented the tag for 1.x and instructions
4722
Daniel Veillard5e873c42000-04-12 13:27:38 +00004723Wed Apr 12 15:47:22 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4724
4725 * xmlIO.[ch] parser.[ch]: More interfaces for new I/O functions
4726 xmlNewIOInputStream, xmlParserInputBufferCreateIO,
4727 xmlCreateIOParserCtxt
4728 * parser.c parserInternals.h: speedup of IS_CHAR like macros,
4729 significant overall improvement
4730 * xmllint.c: added I/O test to xmllint
4731 * testSAX.c: added a speed test
4732 * doc/* : updated/regenerated
4733
Daniel Veillardfc708e22000-04-08 13:17:27 +00004734Sat Apr 8 14:54:54 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4735
4736 * xpath.c uri.h parserInternals.h: cosmetic changes from
4737 "Timur I. Bakeyev" <timur@bat.ru>, including making
4738 xmlCreateURI() public
4739
Daniel Veillard5d211f42000-04-07 17:00:24 +00004740Fri Apr 7 18:35:02 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4741
4742 * xmlIO.[ch] parser.c: cleane up the xmlParserInputBuffer mess
4743 and the code at the same time. Added a clean mechanism for
4744 overload or added input methods: xmlRegisterInputCallbacks()
4745 * tree.c: fixed xmlPrevSibling and xmlNextSibling per
4746 Christophe Le Gal (Christophe.Le-Gal@imag.fr) input
4747 * TODO: updated
4748 * doc/* : updated/regenerated
4749 * doc/Makefile.am: tweaks to avoid problem with libxml link in the
4750 source dir
4751
Daniel Veillarde77a9182000-04-05 19:12:29 +00004752Wed Apr 5 21:11:35 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4753
4754 * testURI.c: yet another forgotten commit, I should get some sleep !
4755
Daniel Veillardce8b83b2000-04-05 18:38:42 +00004756Wed Apr 5 20:36:46 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4757
4758 * xmllint.c: forgot to commit this too ?
4759
Daniel Veillardb9df4042000-04-05 14:23:16 +00004760Wed Apr 5 16:22:44 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4761
4762 * xmlversion.h.in : forgot to commit this previously
4763
Daniel Veillard361d8452000-04-03 19:48:13 +00004764Mon Apr 3 21:47:10 CEST 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4765
4766 * configure.in: preparing libxml-2.0.0 version looks Ok so far
4767 * README TODO: updated for release
4768 * uri.c uri.h: added authority parsing/saving
4769 * uri.c testURI.c Makefile.am: moved the testing code to testURI.c
4770 * xmlversion.h.in configure.in nanoftp.[ch] nanohttp.[ch] encoding.h
4771 debugXML.[ch] xpath.[ch] xmlIO.c tester.c testXPath.c testHTML.c
4772 tree.c HTMLtree.c HTMLparser.c tree.c tree.h parser.c
4773 Makefile.am : added compile-time customization of libxml
4774 --with-ftp --with-http --with-html --with-xpath --with-debug
4775 --with-mem-debug
4776 * *.[ch] autoconf.sh : moved to an absolute adressing of includes :
4777 #include <libxml/xxx.h> I hope it won't break too much stuff
4778 and will be manageable in the future...
4779 * xmllint.c Makefile.am libxml.spec.in : renamed tester.c to xmllint.c
4780 and added xmllint to the installed programs
4781 * uri.h: added xmlFreeURI()
4782
Daniel Veillardec303412000-03-24 13:41:54 +00004783Fri Mar 24 14:35:21 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4784
4785 * uri.c uri.h: finished the escaping handling, the base support
4786 and the URI path normalization. Looks good just lacks the
4787 authority content parsing code.
4788 * Makefile.am: added instructions to generate testURI
4789 * TODO: updated
4790 * doc/xml.html, doc/smallfootonly.gif doc/w3c.png: updated,
4791 added links and icons for W3C and Gnome
4792
Daniel Veillard8f621982000-03-20 13:07:15 +00004793Mon Mar 20 14:05:26 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4794
4795 * xmlmemory.[ch] : seems I forgot to actually update the files in
4796 the last commit :-)
4797 * doc/xml.html doc/html/* : updated and uploaded the docs
4798
Daniel Veillard3dd82e72000-03-20 11:48:04 +00004799Mon Mar 20 12:33:51 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4800
4801 * test/valid/dtds/xhtml*: removed RCS infos (pain with CVS)
4802 * TODO: updated
4803 * xmlmemory.[ch] : added xmlMemSetup() and xmlMemGet() to override
Daniel Veillard8f621982000-03-20 13:07:15 +00004804 libxml default allocation function with another set (like gmalloc/
Daniel Veillard3dd82e72000-03-20 11:48:04 +00004805 gfree).
4806 * Makefile.am, uri.c, uri.h: added a set of functions to do
4807 exact (litteraly copied from the RFC 2396 productions) parsing
4808 and handling of URI. Will be needed for XLink, one XML WFC,
4809 XML Base and reused in the nano[ftp/http] modules. Still work
4810 to be done.
4811
Daniel Veillardedfb29b2000-03-14 19:59:05 +00004812Tue Mar 14 20:52:35 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4813
4814 * configure.in, libxml.spec.in : libxml2
4815 * doc/* : updated the doc page, rebuilt the docs
4816
Daniel Veillardcf461992000-03-14 18:30:20 +00004817Tue Mar 14 19:11:29 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4818
4819 * all: tagged LIB_XML_1_X
4820 * *.c *.h : updated from W3C CVS tree
4821 * configure.in : 2.0.0-beta
4822 * libxml.spec.in : libxml2 package nam
4823 * result/* : new version of the tests output
4824
Daniel Veillardf13e1ed2000-03-06 07:41:49 +00004825Mon Mar 6 09:34:52 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4826
4827 * doc/xml.html, doc/update.html: updated docs, 1.8.7
4828
Daniel Veillardb566ce12000-03-04 11:39:42 +00004829Sat Mar 4 16:14:42 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4830
4831 * doc/* : rebuilt the docs
4832 * parser.c: final patch on #6766
4833 * valid.c: small patch on validity checks.
4834
Daniel Veillardfb76c402000-03-04 11:39:42 +00004835Sat Mar 4 12:38:41 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4836
4837 * doc/upgrade.html: instruction on how to upgrade from 1.x to 2.x
4838 added
4839 * parser.c: adding xmlKeepBlanksDefault() as a way to manage
4840 compatibility w.r.t. XML spec and existing code.
4841
Daniel Veillard90fb02c2000-03-02 03:46:43 +00004842Thu Mar 2 04:45:15 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4843
4844 * parser.c: seems a better solution to <a> </a> exists,
4845 will try it for a while
4846
Daniel Veillard83a30e72000-03-02 03:33:32 +00004847Thu Mar 2 02:26:13 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4848
4849 * parser.c: tried to remove the <a> </a> generating <a/>
4850 this is hard. Left a flag for that purpose. Fixed bug #6766
4851 * configure.in: prepared 1.8.7 not released, due to previous
4852 problem
4853
Daniel Veillard88f00ae2000-03-02 00:15:55 +00004854Thu Mar 2 03:03:50 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4855
4856 * doc/xml.html : applied second patch from Paul DuBois
4857
Daniel Veillard402e8c82000-02-29 22:57:47 +00004858Tue Feb 29 23:55:13 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4859
4860 * doc/xml.html : applied patch from Paul DuBois
4861
Daniel Veillardd0f7f742000-02-02 17:42:48 +00004862Thu Feb 3 16:36:39 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4863
4864 * parser.c HTMLparser.c: do a bit of bufferization in push mode.
4865
Daniel Veillard5feb8492000-02-02 17:15:36 +00004866Thu Feb 3 15:59:37 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4867
4868 * nanoftp.c nanohttp.c tree.c HTMLtree.[ch] debugXML.c xpath.c: Fixed
4869 compilation warnings on various platforms.
4870 * parser.c: Fixed #5281 validity error callbacks are now desactived
4871 by default if not validating.
4872
Daniel Veillardf341f932000-02-02 14:52:08 +00004873Thu Feb 3 13:46:14 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4874
4875 * nanoftp.c, win32config.h.in: patches to compile on WIN32
4876
Daniel Veillard13c757e2000-02-01 23:59:15 +00004877Wed Feb 2 22:51:16 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4878
4879 * nanoftp.c: snprintf/sprintf patch courtesy George Katsirelos
4880 <gkatsi@cs.toronto.edu>
4881
Daniel Veillard726e8792000-01-30 20:04:29 +00004882Mon Jan 31 18:58:21 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4883
4884 * nanoftp.c nanohttp.c: Fixed '#' and '?' stripping when
4885 processing URLs
4886
Daniel Veillarde41f2b72000-01-30 20:00:07 +00004887Mon Jan 31 14:25:57 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4888
4889 * nanoftp.[ch]: cleanup, bug fixes, integration in rpmfind, added
4890 xmlNanoFTPUpdateURL for persistent control connections.
4891 * configure.in: 1.8.6
4892
4893Thu Jan 27 17:52:29 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4894
4895 * nanohttp.[ch], nanoftp.[ch]: cleanup, added proxy support
4896 * tree.[ch] : added xmlSaveNoEmptyTags
4897
James Henstridgef3be9312000-01-28 13:59:21 +000048982000-01-29 James Henstridge <james@daa.com.au>
4899
4900 * nanoftp.c: include <netinet/in.h> for IPPROTO_TCP.
4901
4902 * Makefile.am: added nanoftp.[ch] to the build.
4903
Daniel Veillardaeea04f2000-01-25 19:27:27 +00004904Wed Jan 26 18:14:55 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4905
4906 * nanoftp.[ch]: cleanup, comments, API
4907 * debugXML.c : fixed a bug in the cat command
4908 * doc/*: regenerated the docs
4909
Daniel Veillardda07c342000-01-25 18:31:22 +00004910Wed Jan 26 16:52:50 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4911
4912 * nanoftp.[ch] parser.c xmlIO.[ch]: added a Nano FTP implementation
4913 * debugXML.c : fixed a bug in the cat command
4914 * valid.c: fixing some small probs
4915 * libxml.spec.in: get rid of the SNAP suffix
4916 * doc/xml.html: updated the status
4917
Daniel Veillarde3d88ef2000-01-24 13:55:06 +00004918Mon Jan 24 14:31:09 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4919
4920 * xml-config.in: xml-config --version to just return the
4921 version number
4922 * xpath.c: some cleanup w.r.t. axis when the current node is
4923 an attribute.
4924 * TODO: updated
4925
Daniel Veillard461a66c2000-01-18 18:01:01 +00004926Tue Jan 18 18:46:06 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4927
4928 * configure.in: prepared for libxml-1.8.5
4929 * doc/* recompiled the documentation
4930
49312000-01-17 Jody Goldberg <jgoldberg@home.com>
4932
4933 * configure.in : WARNING autoconf subtlety alert :
4934 Use AC_CHECK_HEADERS rather than AC_CHECK_HEADER
4935 when looking for zlib.h so that HAVE_ZLIB_H is defined.
4936 * config.h.in : Have a #undef for HAVE_ZLIB_H so that it will
4937 get defined by AC_CHECK_HEADERS.
4938
Daniel Veillardf967b902000-01-17 16:06:10 +00004939Mon Jan 17 17:04:12 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4940
4941 * tree.c: fixed a hideous bug in xmlGetProp() thanks to
4942 Rune.Djurhuus@fast.no
4943
Daniel Veillardad8f99d2000-01-15 14:20:03 +00004944Sat Jan 15 15:09:06 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4945
4946 * TODO: updated
4947 * tree.c, parser.c: made sure that only memory alloc problems
4948 and internal parser errors are allowed to write to stdout or
4949 stderr.
4950
Daniel Veillard0142b842000-01-14 14:45:24 +00004951Thu Jan 13 11:49:11 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4952
4953 * tree.c : restored xmlNewGlobalNs since this seems used by
4954 a lot of existing code :-(, fixed a bug in xmlNewNs
4955 * nanohttp.c: fixed a problem with INCLUDE_WINSOCK
4956 * HTMLparser.c, parser.c, entities.c, valid.c : removed all calls
4957 to exit() from the library code.
4958 * xpath.c, parser.c: removed bugs or unused code detected by
4959 Windows compilers
4960 * parser.c: started adding interfaces for parsing well balanced
4961 XML fragments
4962 * configure.in: releasing 1.8.4
4963 * doc/* : rebuilt the docs
4964
Daniel Veillard2eac5032000-01-09 21:08:56 +00004965Sun Jan 9 23:03:20 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4966
4967 * tree.[ch] : added xmlNewDocFragment() for DOM
4968 * testHTML.c: uninitialized variable.
4969
Daniel Veillardf3a73582000-01-05 14:58:39 +00004970Wed Jan 5 17:29:17 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4971
4972 * doc/* : rebuild the docs
4973
Daniel Veillard71b656e2000-01-05 14:46:17 +00004974Wed Jan 5 17:08:43 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4975
4976 * acconfig.h: readline and history patch
4977 * valid.[ch]: added xmlRemoveID() and xmlRemoveRef()
4978 * tree.c: added check and handling when possibly removing an ID
4979 * tree.c, HTMLparser.h, HTMLtree.h: fixed entities parsing
4980 and saving.
4981 * test/HTML/entities.html result/HTML/entities.html* : test for
4982 various entities reference cases
4983 * result/HTML/* : as a result output of some testcase have
4984 changed
4985 * HTMLparser.c, parser.c: fixed a bug in the push mode triggered
4986 by previous example. added xmlParseTryOrFinish().
4987 * xpath.h tree.h parser.h valid.h xmlIO.h xlink.h encoding.h
4988 entities.h debugXML.h HTMLparser.h: changed the way struct are
4989 declared to allow gtk-doc to expose those
4990 * parser.c: closed bug #4960
4991 * Makefile.am configure.in: Applied patch from
4992 Albert Chin-A-Young <china@thewrittenword.com> for better zlib
4993 and math/socket libs detection
4994
Daniel Veillard437b87b2000-01-03 17:30:46 +00004995Mon Jan 3 18:29:43 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
4996
4997 * configure.in, Makefile.am: link tester against readline
4998 * doc/xml.html doc/*/*: updated and rebuilt the documentation pages
4999
Daniel Veillard686d6b62000-01-03 11:08:02 +00005000Mon Jan 3 11:58:05 CET 2000 Daniel Veillard <Daniel.Veillard@w3.org>
5001
5002 * tree.[ch]: added xmlRemoveProp
5003 * win32config.h.in nanohttp.c: avoid including the Windows
5004 socket stuff in every C files
5005 * parser.c: removed an indetermination xmLDecl/PI(xml...) in
5006 the XmL parser(s)
5007 * test/ns4 result/ns4 etc...: added test case for previous prob
5008 * tree.c: xmlNewNs wasn't checking for double definition
5009 * Makefile.in: fixed a problem with dist-hook duplicates
5010 * parser.[hc], xmlIO.c: fixed the loading of external entities
5011 APIs, now xmlLoadExternalEntity() is used everywhere and
5012 setting up an app specific front-end using the
5013 * SAX.c parser.c: some fixes, now the xhtml spec validates
5014 with the xhtml DTD.
5015 * error.c: fixed crashes in case of no input stream
5016 * test/valid/[dtds/]/xhtml* : added the xhtml spec and dtds
5017 to the validation tests and results
5018
Daniel Veillard5e5c6231999-12-29 12:49:06 +00005019Wed Dec 29 15:29:52 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5020
5021 * HTMLparser.[ch] testHTML.c: added push mode for the HTML parser
5022 too htmlCreatePushParserCtxt() and htmlParseChunk()
5023 * parser.c: a bit of cleanup.
5024 * SAX.c, HTMLparser.c: some attributes may not have values (contrary
5025 to XML) removed the last mem leak known
5026 * HTMLtree.c: output message cleanup
5027 * xmlmemory.c: display content info about memory blocks
5028 * result/HTML/wired.* : missing att value warning change
5029
Daniel Veillardbe849cf1999-12-28 16:43:59 +00005030Tue Dec 28 17:42:41 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5031
5032 * doc/* : rebuilt the documentation
5033
Daniel Veillarddbfd6411999-12-28 16:35:14 +00005034Tue Dec 28 18:44:22 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5035
5036 * parser.[ch] parserInternals.h: Push parser for XML,
5037 seems to work fine now
5038 * tester.c debugXML.[ch]: Added an XML shell debug facility and
5039 --push for push testing
5040 * xpath.[ch] : cleaned up for Shell usage, added missing APIs
5041 * testSAX.c: added --push
5042 * HTMLtree.[ch] tree.[ch]: new functions for dumping parts of the
5043 subtree
5044 * xmlIO.[ch] : enriched API + fixes for push mode
5045 * entities.[ch]: added the entity content length to the struct.
5046 * xmlmemory.[ch]: new API to show the last entries for the shell
5047 * valid.c: added required attribute testing
5048 * SAX.c: the cdata callback now merge contiguous fragments
5049 * HTMLparser.c: cleanup of some macros
5050
Daniel Veillard3c558c31999-12-22 11:30:41 +00005051Wed Dec 22 12:20:53 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5052
5053 * parser.c: fix for PIs name starting with xml
5054 * tree.c: fixed a potential problem with || and && ops
Daniel Veillardfef854d1999-12-22 11:31:10 +00005055 * *.c, configure.in win32config.h.in : generate win32config.h for
5056 those on the Other Side !
Daniel Veillard3c558c31999-12-22 11:30:41 +00005057
Daniel Veillard0caf07a1999-12-21 16:25:49 +00005058Tue Dec 21 17:22:17 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5059
5060 * parser.c: fixed a stupid = vs. == bug :-(
5061 * doc/gnome-xml.sgml: s/glade/xml/
5062
Daniel Veillard5cb5ab81999-12-21 15:35:29 +00005063Tue Dec 21 14:29:34 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5064
5065 * configure.in, doc/xml.html : bug fix release 1.8.2
5066 * debugXML.h nanohttp.h xml-error.h xmlmemory.h xpath.h :
5067 Hopefully the end of that silly C++ include problem
5068 * tree.[ch]: Added a few functions: xmlReplaceNode, xmlAddPrevSibling,
5069 xmlAddNextSibling, xmlNodeSetName and xmlDocSetRootElement
5070 * HTMLparser.c HTMLparser.h HTMLtree.c: When saving HTML try to avoid
5071 troubles with autoclosed elements when the stree shape doesn't
5072 follow the DtD specs. Added htmlIsAutoClosed() and
5073 htmlAutoCloseTag()
5074 * result/HTML/*.htm*: Updated the HTML examples regression tests output
5075 * SAX.c tree.c: fixed bug on defaulting namespaces on attributes
5076 * debugXML.c: fixed a bug on printing default namespaces.
5077 * HTMLtree.c: fixed a problem when outputing XML parsed docs as HTML
5078
Daniel Veillardb24054a1999-12-18 15:32:46 +00005079Mon Dec 20 16:20:55 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5080
5081 * result/HTML/*.htm[l] : updated the HTML regression tests according
5082 to the new output
5083 * xpath.h xml-error.h valid.h tree.h parser.h entities.h SAX.h
5084 HTMLtree.h tree.c entities.c: headers tweakings to avoid a nasty
5085 problem due to intermix of extern "C" { ... } declarations for C++
5086 and recursive includes in the headers
5087
Chris Lahey323c48c1999-12-18 15:32:45 +000050881999-12-20 Chris Lahey <clahey@umich.edu>
5089
5090 * HTMLtree.c: Made it so that html nodes with a single child do
5091 not insert a carriage return before or after the child node.
5092
Daniel Veillardb24054a1999-12-18 15:32:46 +00005093Sat Dec 18 16:07:03 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard262f9cb1999-12-18 15:32:45 +00005094
5095 * configure.in, doc/xml.html : bug fix release 1.8.1
5096 * parser.c: fixed bug #4344
5097 * xpath.h xml-error.h xlink.h nanohttp.h debugXML.h SAX.h HTMLparser.h
5098 added the glue to avoid C++ problems
5099 * doc/* : regenerated the documentation
5100
Daniel Veillard6d3bf1f1999-12-16 17:52:19 +00005101Thu Dec 16 16:19:29 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5102
5103 * tree.c: fixed a bug introduced in 1.8.0 and breaking default
5104 namespace recognition, and Dia as a resul :-(
5105 * encoding.c: closed bug #3950
5106
Daniel Veillard944b5ff1999-12-15 19:08:24 +00005107Wed Dec 15 19:22:23 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5108
5109 * valid.c: debugging a posteriori validation, except URI expansion
5110 stuff this should be fixed now
5111 * parserInternals.h: fixed a bug in IS_BASECHAR reported by
5112 Carl Nygard <cnygard@bellatlantic.net>
5113 * tester.c: added --postvalid, cleaning of the code
5114 * tree.[ch]: added xmlDocGetRootElement()
5115
Ramiro Estrugobfce3771999-12-15 04:32:07 +00005116Tue Dec 14 20:30:34 PST 1999 Ramiro Estrugo <ramiro@eazel.com>
5117
5118 * SAX.h, tree.h : changed 'namespace' to 'nameSpace' to workaround
5119 c++ losage.
5120
Daniel Veillard10a2c651999-12-12 13:03:50 +00005121Sun Dec 12 13:08:15 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5122
5123 * configure.in, doc/xml.html : bumped to 1.8.0
5124 * xlink.[ch], Makefile.am : added framework for link detection
5125 * parser.h: added nbChars to parser context, needed for cleanup.
5126 * xmlmemory.c: removed a nasty bug when out of mem
5127 * valid.[ch]: adding namespace support for attribute decl
5128 * tester.c: added --debugent option
5129 * debugXML.[ch]: added xmlDebugDumpEntities()
5130 * parser.c: cleanup, avoiding use of CUR_PTR like plague, using
5131 buffers instead, this was really needed, validation was breaking
5132 in strange ways due to that. Added xmlParseStringPEReference()
5133 and other parsing from strings functions. Entities processing
5134 modified again, but PERef are still not handled correcly but
5135 unless you're Eve Maller you won't notice :-)
5136 * HTMLparser.c: large changes toward reliability, and switched to
5137 lowercase internal tags, XHTML is lowercase, so it will help
5138 that output is closer to next version.
5139 * doc/* : regenerated the documentation, it is now hosted at
5140 http://xmlsoft.org/ (same bits I just bought the domain :-)
5141
5142
Daniel Veillard294cbca1999-12-03 13:19:09 +00005143Fri Dec 3 13:46:32 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5144
5145 * SAX.h, SAX.c, makefile.am: added SAX.h mostly useful for the
5146 doc generation
5147 * parser.c: fixed bugs #3908 and #3937 and a memory leak
5148 in the SAX API
5149 * doc/*: rebuilt the doc making sure everything appears in the
5150 HTML files
5151
Daniel Veillardf5c2c871999-12-01 09:51:45 +00005152Wed Dec 1 10:27:47 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5153
5154 * tree.[ch] HTMLtree.c, debugXML.c, configure.in, xml-config.in:
5155 added the patch from Carl Nygard <cnygard@bellatlantic.net>
5156 which allow impressive speed improvement on dataset with
5157 large text pieces, but at the cost of broken binary
5158 compatibility and slightly bigger memory usage.
5159 Configure with --with-buffers to activate them, they
5160 are protected with XML_USE_BUFFER_CONTENT define.
5161 * entities.[ch], parser.c: added xmlCleanupPredefinedEntities(),
5162 goal is 0 memory left allocated once parser is no more used
5163 * testDAV.c, testHTML.c, testSAX.c, testXPath.c: make sure we
5164 call xmlCleanupParser() and xmlMemoryDump()
5165
Daniel Veillarda819dac1999-11-24 18:04:22 +00005166Wed Nov 24 19:00:06 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5167
5168 * tree.[ch] xmlIO.[ch] parser.c valid.c: code cleanup with -pedantic
5169 * parser.[ch] encoding.[ch]: added memory cleanup routines
5170 * parser.c: closing bug #3788
5171 * doc/*: rebuilt the doc
5172
Daniel Veillard11a48ec1999-11-23 10:40:46 +00005173Tue Nov 23 11:23:55 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5174
5175 * tree.[ch]: closing bug 3748, added xmlNewDocRawNode(),
5176 xmlNewTextChild() and xmlSetCompressMode() behaviour.
5177 * tester.c: added --compress option
5178 * doc/*: rebuilt the documentation
5179
Daniel Veillard4c3a2031999-11-19 17:46:26 +00005180Fri Nov 19 18:41:28 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5181
5182 * HTMLparser.c: bugfixing, the damn thing MUST not crash even
5183 if given /proc/kcore as input !
5184 * doc/xml.html doc/*: updated and rebuilt the documentation
5185
5186Thu Nov 18 14:57:18 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard07136651999-11-18 14:02:05 +00005187
5188 * parser.c: Fixed some wrongly space collapsing code due to
5189 a misreading of the spec.
5190 * result/*: fixed the output accordingly
5191
5192Wed Nov 17 18:28:06 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard7f858501999-11-17 17:32:38 +00005193
5194 * encoding.c: bug fix and typos
5195 * xmlIO.[ch] parser.c: first bits toward real progressive parsing
5196 * parser.c: added attribute normalization closing bug #3597
5197 * test/att* result/att* SAXresult/att*: testcase for attribute
5198 normalization
5199
Daniel Veillardd7e200c1999-11-15 17:53:11 +00005200Mon Nov 15 18:50:56 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5201
5202 * configure.in: closing bug #3163 by adding extra flags for the
5203 cc compiler on HP-UX
5204
Daniel Veillard51e3b151999-11-12 17:02:31 +00005205Fri Nov 12 17:41:20 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5206
5207 * valid.[ch] : removed a typo and an enumerated type bug in the
5208 xmlAddElementDecl() function
5209 * tree.c : I changed xmlSetProp() and xmlNewProp() to do the
5210 call to xmlEncodeEntitiesReentrant() so that the functions
5211 New, Set and Get are at the same level.
5212 * parser.c HTMLparser.c: extra memory allocation bug for
5213 attributes detected by someone using libxml in embedded systems :-)
5214
Daniel Veillard962195f1999-10-28 15:51:53 +00005215Thu Oct 28 17:49:26 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5216
5217 * xmlmemory.h: turned off mem debug :-\
5218
Daniel Veillard35008381999-10-25 13:15:52 +00005219Mon Oct 25 12:13:25 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5220
5221 * parser.c: closed bug #2784 a one line fix, but worth pushing
5222 a new release out
5223 * HTMLparser.c: fixed auto-close bugs on list items, zeroing
5224 some structures, comments before and after the
5225 main element, and other nastyness
5226 * HTMLtree.c tree.c: accomodate the extended HTML supported
5227 * configure.in: pushing 1.7.4
5228 * test/ent8 and related outputs : added a new test for bug #2784
5229 * test/HTML/wired.html and related output: a nasty HTML example
5230 * Makefile.am: improved the test scripts
5231 * docs/* : reran the documentation extractor, updated xml.html
5232
Daniel Veillard7c1206f1999-10-14 09:10:25 +00005233Thu Oct 14 10:29:56 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5234
5235 * HTMLparser.c, HTMLtree.c, tree.h: completely revamped the
5236 HTMLparser and debugged the HTML related code. HTML documents
5237 now have their own type
5238 * entities.c: do not dump &apos; for HTML output
5239 * xmlmemory.c: improvement, breakpoint mechanism
5240 * testHTML.c: added --sax --repeat ...
5241 * Makefile.am: improved the HTML tests
5242 * valid.[ch]: added xmlValidGetValidElements and
5243 xmlValidGetPotentialChildren
5244 * tester.c: added --insert to test the 2 new functions
5245 * test//* result//* SAXresult//* : regression test cleanup
5246 and extension.
5247 * doc/html : added doc for new modules gnome-xml-xmlmemory.html and
5248 gnome-xml-nanohttp.html
5249
Daniel Veillard7d2c2761999-10-11 15:09:51 +00005250Mon Oct 11 14:31:58 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5251
5252 * HTMLparser.c: fixed problems with some autoclose tags
5253 * tree.c: fixed XML output problems.
5254 * result/* SAXresult/*: update of the tests output
5255
Daniel Veillard6077d031999-10-09 09:11:45 +00005256Sat Oct 9 11:02:57 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5257
5258 * Makefile.am: Arturo patch for xmlConf.sh version info
5259 * parser.c: Tim Josling patch for single quoted items
5260 * tester.c: Tim Josling patch for tester options usage
5261 * tree.h: indent cleanup
5262
Daniel Veillard2673d3c1999-10-08 14:37:09 +00005263Fri Oct 8 16:35:37 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5264
5265 * HTMLparser.c parser.h : Fixed problems with HTML parsing
5266 reported by Kristian Hogsberg Kristensen <hogsberg@daimi.au.dk>
5267
Daniel Veillard00fdf371999-10-08 09:40:39 +00005268Fri Oct 8 11:37:11 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5269
5270 * tree.c : Raph patch for initialization of CORBA fields
5271 * parser.c, xpath.c, ...: modification of doc comments
5272 * xpath.c : allow spaces in xpath expressions
5273
Daniel Veillardad219441999-09-27 08:17:49 +00005274Mon Sep 27 10:16:43 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5275
5276 * xmlmemory.h: turning off memory debug :-(
5277
Daniel Veillard7a66ee61999-09-26 11:31:02 +00005278Sun Sep 26 13:16:54 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5279
5280 * parser.[ch] : added xmlSAXUserParseFile() and xmlSAXUserParseMemory()
5281 better SAX interfaces.
5282 * testSAX.c: uses the new SAX routine, avoid fetching any remote
5283 entity.
5284 * configure.in: 1.7.2
5285
5286Fri Sep 24 16:01:01 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard2f4dfc41999-09-24 14:03:48 +00005287
5288 * libxml.spec.in: fixed the URL
5289 * doc/xml.html: improved the documentation front-end
5290
Daniel Veillard7a66ee61999-09-26 11:31:02 +00005291Fri Sep 24 01:06:36 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard335849b1999-09-23 23:08:42 +00005292
5293 * nanohttp.c: conditionned references to snprintf with HAVE_SNPRINTF
5294
Daniel Veillard7a66ee61999-09-26 11:31:02 +00005295Fri Sep 24 00:15:58 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillarddd6b3671999-09-23 22:19:22 +00005296
5297 * libxml.spec.in: fixed the alpha compile problem
5298 * parser.[ch]: changed errno to errNo in the parser context :-(
5299 * *.[ch]: changed CHAR to xmlChar to avoid problem on WIN32
5300 * doc/xml.html: changed CHAR to xmlChar
5301 * doc/html/*: recompiled the documentation
5302 * configure.in: 1.7.1
5303
Daniel Veillard7f7d1111999-09-22 09:46:25 +00005304Wed Sep 22 11:40:31 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5305
5306 * parser.h: modified the parser context struct to regain 1.4.0
5307 binary compatibility
5308 * parser.c, xml-error.h: added errno ot teh context and defined
5309 a set of errors values with update of errno
5310 * nanohttp.[ch]: minimalist HTTP front-end for fetching remote
5311 DTDs and entities
5312 * *.h, *.c: complete cleanup of the use of config.h and include
5313 protection depending on the current setup.
5314 * overalll debugging, maintenance and bug-fixing on all modules
5315 * updated the documentation
5316 * ready for 1.7.0
5317
Daniel Veillardc08a2c61999-09-08 21:35:25 +00005318Wed Sep 8 22:46:14 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5319
5320 * HTMLparser.c : cleanup
5321 * SAX.c valid.c valid.h: added ID/IDREF checking
5322 * tree.c tree.h: extended doc structure for refs
5323 * configure.in: 1.6.2
5324 * parser.c: patched bug in SAX user arg call
5325 * parserInternals.h: patched missing close in C++ wrapping
5326 * testXPath.c xpath.c xpath.h: prepared for extensibility,
5327 especially upcoming XPointer implementation.
5328 * doc/xml.html: augmented, typo
5329
CEST 1999 Timur Bakeyev72bd1001999-09-04 20:50:25 +00005330Sat Sep 4 22:48:05 CEST 1999 Timur Bakeyev <mc@bat.ru>
5331
5332 * doc/Makefile.am: replaced "install -d " with "mkinstalldirs" -
5333 not all invocations of install understand -d.
5334
CEST 1999 Timur Bakeyev6db3cb01999-09-04 20:25:14 +00005335Sat Sep 4 22:20:07 CEST 1999 Timur Bakeyev <mc@bat.ru>
5336
5337 * Makefile.am: prepend all the test* calls with $(top_builddir) -
5338 to make 'check' works, when builddir != srcdir.
5339
Daniel Veillardc8eab3a1999-09-04 18:27:23 +00005340Sat Sep 4 20:25:46 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5341
5342 * doc/xml.html : updated the documentation
5343
Daniel Veillard6454aec1999-09-02 22:04:43 +00005344Fri Sep 3 00:01:08 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5345
5346 * xmlmemory.[ch] Makefile.am :added a memory wrapper to chase
5347 not deallocated memory blocks
5348 * *.c : replaces all calls to malloc() free() and realloc() to
5349 the wrapper functions/macros
5350 * tree.c : removed memory leaks dues to calling xmlFreeNode()
5351 instead of xmlFreeNodeList()
5352
Daniel Veillard1ff7ae31999-09-01 12:19:13 +00005353Wed Sep 1 14:15:09 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5354
5355 * HTMLparser.c: corrected a stupid bug leading to core dump at
5356 tree deallocation. Removed warnings indicated by
5357 Stephane.Conversy@lri.fr
5358 * entities.c: Fixes Yet Another Stupid Bug, entities were not
5359 looked for in the external subset
5360
5361Mon Aug 30 13:22:26 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillardc26087b1999-08-30 11:23:51 +00005362
5363 * parser.c valid.[ch] xpath.c: patched compilation warnings reported
5364 on SGI by Stephane.Conversy@lri.fr
5365
Daniel Veillardb96e6431999-08-29 21:02:19 +00005366Sun Aug 29 22:27:29 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5367
5368 * all .h : changed the prototype declaration indent as in gtk
5369 * most .c : working on reducing the TODOs in the code
5370 * most .c : cleanup though -pedantic and Insure++
5371 * improvements on validation ID checkings.
5372 * tree.[ch] SAX.c: added support for namespace on attributes #2022
5373 * xml-config.in: closed #1810
5374
5375Mon Aug 16 03:27:38 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard991e63d1999-08-15 23:32:28 +00005376
5377 * tree.h, valid.c, valid.h: more work on validity, IDs
5378 * xpath.c: added/fixed comparidon and equlity, added a new isinf
5379 definition for AIX
5380
Daniel Veillardb556eb51999-08-15 17:19:50 +00005381Sun Aug 15 21:15:17 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5382
5383 * Makefile.am libxml.spec.in: corrected missing xmlConf.sh in
5384 the distribution due to a cut'n paste error at last commit
5385
Daniel Veillardb05deb71999-08-10 19:04:08 +00005386Tue Aug 10 20:28:09 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5387
5388 * configure.in: upgraded to version 1.4.0
5389 * valid.[ch], SAX.c, parser.[ch] parserInternals.h ...
5390 Big update, added a large part of the validation process,
5391 it should be usable, but some parts are missing
5392 * xpath.c: improved the implementation w.r.t. root.
5393 * Makefile.am: added more tests
5394 * test and result trees: added a lot of tests
5395 * libxml.spec.in: export libxml.so.0 and libxml.so.1
5396
Daniel Veillard6a6ccc11999-08-10 09:34:35 +00005397Tue Aug 10 11:33:41 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5398
5399 * Added an HACKING file
5400
Daniel Veillarde2d034d1999-07-27 19:52:06 +00005401Tue Jul 27 21:43:00 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5402
5403 * xpath.[ch] : improvements and debug of the XPath implementation
5404 * parser.c, HTMLparser.c : modified the parsers to be progressive
5405 * tree.[ch] : extended the Buffer promitives
5406 * xmlIO.[ch] : added basic I/O routines providing progressive
5407 parsing and ready for I18N conversion plugins
5408 * SAXresult/* : the SAX callback sequence maybe slightly different
5409 now
5410 * test*.c : improved/updated the tests programs
5411 * doc/* : recompiled the docs.
5412
Daniel Veillard15b75af1999-07-26 16:42:37 +000054131999-07-26 Michael Meeks <michael@edenproject.org>
5414
5415 * tree.h: Add const to 'content' in xmlNewDocNode, xmlNewChild
5416
5417 * tree.c: Ditto.
5418
Daniel Veillard1566d3a1999-07-15 14:24:29 +00005419Thu Jul 15 16:17:16 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5420
5421 * configure.in: upgraded to version 1.4.0
5422 * xpath.c, xpath.h, testXPath.c, makefile.am: added code for the XPath
5423 draft from W3C. Will be used by XPointer, Xlink, XSL, and possibly
5424 XML query language, see http://www.w3.org/TR/xpath for more details.
5425 * parser.c, parser.h: added CHAR* related string functions for XPath
5426 * HTMLparser.[ch], HTMLtree.c: a bit of cleanup on entities.
5427 * doc/gnome-xml.sgml, doc/html/* : added XPath and HTML documentation,
5428 rebuild the docs.
5429 * Makefile.am, test/XPath/*, result/XPath/*: added an XPathtests target
5430 and regression testing capabilities for XPath.
5431
Daniel Veillardd79d7871999-07-12 10:38:12 +00005432Mon Jul 12 12:36:39 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5433
5434 * parser.c, HTMLparser.c: applied patch from John Ellson <ellson@lucent.com>
5435 closing bug #1646
5436
Daniel Veillardbe9e5951999-07-12 09:16:45 +00005437Mon Jul 12 11:04:44 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5438
5439 * Makefile.am, example/Makefile.am: closed bug #1683
5440
Daniel Veillard3166ab11999-07-11 16:14:19 +00005441Sun Jul 11 18:16:34 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5442
5443 * example/Makefile.am, configure.in: added the makefile for the
5444 gjobread example
5445
Tomasz Kłoczkoa75b6b31999-07-10 12:21:13 +00005446Sat Jul 10 14:19:11 CEST 1999 Tomasz K³oczko <kloczek@pld.org.pl>
5447
5448 * doc/Makefile.am:
5449 - fix which allow "make install DESTDIR=</install/prefix>".
5450
Daniel Veillard7cc3c041999-07-09 10:11:57 +00005451Fri Jul 9 12:10:24 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5452
5453 * HTMLparser.c parser.c: applied patch from John Ellson <ellson@lucent.com>
5454 which fixed a problem on the file reading-code.
5455
Daniel Veillard82150d81999-07-07 07:32:15 +00005456Wed Jul 7 09:28:43 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5457
5458 * HTMLparser.[ch], HTMLtree.[ch]: more work for HTML parsing and
5459 output.
5460 * Makefile.am, test/HTML/*, result/HTML/*: added HTMLtests targetestHTMLt
5461
Daniel Veillard5233ffc1999-07-06 22:25:25 +00005462Wed Jul 7 00:25:42 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5463
5464 * parser.h : Oops removed the binary compatibility problem
5465 * HTMLparser.[ch], HTMLtree.h : More work on the HTML parse/dump
5466 * parser.c, HTMLparser.c: applied patches for reading from stdin
5467
Daniel Veillardbe70ff71999-07-05 16:50:46 +00005468Mon Jul 5 18:45:31 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5469
5470 * parser.c, entities.c, valid.c: cleanup bug #1591
5471 * configure.in: cleanup bug #1592
5472 * HTMLparser.[ch], testHTML.c: started adding an HTML parser using
5473 the same tree back-end. Hence gdome will be available for it.
5474 * doc/Makefile.am: close bug #617
5475
Daniel Veillard97fea181999-06-26 23:07:37 +00005476Sat Jun 26 23:36:38 EDT 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5477
5478 * parser.c: alloctate a per parser context SAX interface block
5479
Daniel Veillard14fff061999-06-22 21:49:07 +00005480Tue Jun 22 23:46:32 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5481
5482 * released 1.3.0 with xmlEncodeEntities restoring old behaviour
5483 and xmlEncodeEntitiesReentrant with the correct one :-\
5484
5485Mon Jun 21 14:07:53 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5486
5487 * commit of my internal XML base changes, quite a lot of
5488 changes, cleanups, better entities support, framework for
5489 new I/O and charset detection and handling
5490 * Fixed the configure/Makefile stuff to generate shared libs
5491 with the proper version info, so we jumped on rev from
5492 0.0.0 to 1.2.0 ! The binary interfaces have been broken,
5493 xmlEncodeEntities() result need to be freed now, and a string
5494 xmlParserVersion provide the current library version.
5495
Raph Levien05240da1999-06-15 21:27:11 +00005496Tue Jun 15 14:24:19 1999 Raph Levien <raph@acm.org>
5497
5498 * parser.c: fixed a buffer overrun for when you have a very long
5499 attribute with no entities in it.
5500
Daniel Veillardbb2da581999-06-13 14:37:07 +00005501Mon Jun 14 00:17:50 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5502
5503 * added example directory
5504 * added example/gjobs.xml gjobread.c, still need a Makefile.in
5505
Daniel Veillard011b63c1999-06-02 17:44:04 +00005506Wed Jun 2 19:40:58 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5507
5508 * Release of libxml-1.1, nearly everything has been touched for
5509 this.
5510 * Added more regression tests
5511 * Updated the documentation
5512
Daniel Veillard27d88741999-05-29 11:51:49 +00005513Sat May 29 13:34:42 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5514
5515 * tree.[ch]: unified the XML_NO_CORBA defines.
5516 * parser.c encoding.[ch]: started plugging in char encoding detection
5517
Manish Vachharajani5e60f5a1999-05-29 03:04:30 +00005518Fri May 28 22:58:42 EDT 1999 Manish Vachharajani <mvachhar@vger.rutgers.edu>
5519
5520 * tree.c: (xmlSaveFile) - removed double call of xmlContentDump.
5521 Also freed allocated buffer.
5522
Daniel Veillard27d88741999-05-29 11:51:49 +00005523Wed Apr 21 22:07:35 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard5099ae81999-04-21 20:12:07 +00005524 * parser.[ch] tree.[ch] entities.[ch] valid.[ch] : removed the main
5525 reentrancy problem at printing. One is left in entities.c, to
5526 remove ASAP
5527 * testSAX.c : added a test example showing the use of the SAX
5528 interface if one doesn't want to build the DOM tree.
5529 * html/gnome-xml-*.html html/index.sgml: regenerated the documentation
5530
Daniel Veillard517752b1999-04-05 12:20:10 +00005531Mon Apr 5 14:14:40 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5532
5533 * parser.[ch] tree.[ch] SAX.c, parserInternals.h valid.[ch]:
5534 large revamping of the parser to use SAX callbacks
5535 http://www.megginson.com/SAX/ (or at least a C like interface
5536 a la Expat). It's now possible to set up your own callbacks
5537 and the parser will not build a DOM tree.
5538 * test/* result/*: updated the test suite, I finally removed
5539 the old Namespace draft support (PI based).
5540
Daniel Veillard87c83bd1999-04-02 16:04:43 +00005541Fri Apr 2 17:57:32 CEST 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5542
5543 * Makefile.am: added test result to EXTRA_DIST for make tests
5544
Daniel Veillard64068b31999-03-24 20:42:16 +00005545Wed Mar 24 21:37:02 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5546
5547 * parser.c, parserInternals.h: moved the chars macro definitions
5548 to parserInternals.h
5549 * parser.c, error.c: applied patches from "Knut Ã…kesson"
5550 <ka@s2.chalmers.se> for clean compilation under MSVC 6 :-o
5551
Daniel Veillard012ccc11999-03-23 10:11:11 +00005552Tue Mar 23 11:10:15 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5553
5554 * xml-config.in : applied patch to make --version work
5555
Raja R Harinatha86c23e1999-03-05 22:14:01 +000055561999-03-05 Raja R Harinath <harinath@cs.umn.edu>
5557
5558 * Makefile.am (check-local): Alias for `tests' target. This will
5559 cause `make check' to do the right thing.
5560 (tests): Don't run tests in srcdir. Also, replaced calls to
5561 basename with a `sed' "equivalent".
5562
Daniel Veillardd109e371999-03-05 06:26:45 +00005563Fri Mar 5 07:23:53 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5564
5565 * Renamed error.h to xml-error.h, corrected Makefile.am to list
5566 it in the header and not the sources, updated the doc.
5567 Thanks to Tim Mooney <mooney@dogbert.cc.ndsu.nodak.edu> for
5568 pointing this out.
5569
Daniel Veillardbc50b591999-03-01 12:28:53 +00005570Mon Mar 1 13:27:17 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5571
5572 * parser.c, parser.h, parserInternals.h: memory leak hunting,
5573 exported the inputStream routines.
5574 * doc/html/* : updated accordingly
5575
Daniel Veillardd692aa41999-02-28 21:54:31 +00005576Sun Feb 28 22:51:33 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5577
5578 * parser.c, parser.h, parserInternals.h: added a few extra
5579 internal calls to allocate and free parser contexts ...
5580 * doc/html/* : updated accordingly
5581
Daniel Veillard55a99271999-02-25 11:01:29 +00005582Thu Feb 25 11:52:24 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5583
5584 * configure.in, Makefile.am, doc/makefile.am : General changes for
5585 1.0.0 release and including the generated HTML documentation.
5586
Daniel Veillard35925471999-02-25 08:46:07 +00005587Thu Feb 25 09:44:52 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5588
5589 * makefile.am : added parserInternals.h, oops.
5590
Daniel Veillard1e346af1999-02-22 10:33:01 +00005591Mon Feb 22 11:24:56 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5592
5593 * parserInternals.h: added this header giving access to the parser
5594 internal functions.
5595 * doc/Makefile.am : added a rebuild target which rebuilds the full
5596 set of documentations
5597 * parser.[ch] tree.[ch] valid.[ch]: serious updates w.r.t. parsing
5598 the internal subset.
5599 * *.c *.h: modifications needed to generate the documentation using
5600 gtk-doc, cleanup of functions blocks, reorganisation of struct
5601 declarations.
5602
Daniel Veillard1164e751999-02-16 16:29:17 +00005603Tue Feb 16 17:27:29 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5604
5605 * Makefile.am, spec, doc/Makefile.am : upgrading to 0.99.8, fixing
5606 the tar and spec file to include the beginning of the doc.
5607
Nuno Ferreira03d04781999-02-13 00:07:17 +000056081999-02-13 Nuno Ferreira <nmrf@rnl.ist.utl.pt>
5609
5610 * doc/.cvsignore: Added this file.
5611
Daniel Veillard6800ef31999-02-08 18:33:22 +00005612Mon Feb 8 19:27:56 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5613
5614 * tree.c: fixed xmlGetProp to return "" when the attribute
5615 exists, even if the node-list is NULL.
5616
Daniel Veillard726c7e31999-02-08 15:13:10 +00005617Mon Feb 8 16:10:15 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5618
5619 * tree.c: patched an error outputting empty attribute values.
5620 * Makefile.am and doc/makefile.am: have been updated during the
5621 week-end. Sorry for an empty CVS log, I got a shell problem.
5622
Daniel Veillard1899e851999-02-01 12:18:54 +00005623Mon Feb 1 12:10:13 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5624
5625 * tree.h: cleaned up using enums instead of defines
5626 * parser.c, valid.[ch]: more work on parsing/output of element
5627 declarations
5628
Daniel Veillard3b9def11999-01-31 22:15:06 +00005629Sun Jan 31 22:06:48 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5630
5631 * valid.[ch], tree.c, parser.c : more work toward full parsing
5632 of XML DTDs.
5633 * README: added informations about mailing-list and on-line
5634 documentation
5635
Raja R Harinath7eb5c4f1999-01-27 23:01:51 +000056361999-01-27 Raja R Harinath <harinath@cs.umn.edu>
5637
5638 * configure.in (XML_INCLUDEDIR): Use -I not -L for includes.
5639
Daniel Veillard39a1f9a1999-01-17 19:11:59 +00005640Sun Jan 17 20:06:36 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5641
5642 * parser.c, tree.[ch] : more work toward conformance testing,
5643 added a last element to accelerate parsing of very flat structures
5644 started working on internal subset Element content declaration.
5645 * valid.[ch] : first cut at adding code toward validation.
5646 * previous changes had also small impact on most files, especially
5647 the conformance testing using James Clark test suite.
5648
Daniel Veillard3c2c2ce1999-01-17 13:48:01 +00005649Sun Jan 17 14:45:06 CET 1999 Daniel Veillard <Daniel.Veillard@w3.org>
5650
5651 * test/* : updated the examples, most of them were not well
5652 formed (humm), and added rdf2.
5653 * result/* : resulting changes in the output.
5654
Daniel Veillard7c92c0a1998-12-06 18:08:28 +00005655Sun Dec 6 13:06:58 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
5656
5657 * tree.c: changed the behaviour of xmlGetProp on NULL values.
5658
Daniel Veillard44b3a061998-12-05 17:27:22 +00005659Sat Dec 5 12:25:09 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
5660
5661 * tree.c: patched a bug in the generation of empty attributes
5662
Daniel Veillardbe36afe1998-11-27 06:39:50 +00005663Fri Nov 27 01:36:54 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
5664
5665 * entities.[ch], tree.[ch], tester.c: added copy interfaces
5666 for node/trees/documents/... Biggest problem is namespace
5667 support when copying subtrees.
5668
Daniel Veillard8cc0d1f1998-11-16 01:04:26 +00005669Sun Nov 15 19:59:47 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
5670
5671 * parser.c, entities.c: improve entities and char ref encoding,
5672 and cleanups of error messages.
5673
Daniel Veillard242590e1998-11-13 18:04:35 +00005674Fri Nov 13 13:03:10 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
5675
5676 * parser.c, entities.c: simple bug hunting done during rpm2html and
5677 rpmfind integration.
5678
Daniel Veillard42dc9b31998-11-09 01:17:21 +00005679Sun Nov 8 13:11:07 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
5680
5681 * parser.[ch]: Added interfaces allowing to specify a SAX
5682 handler before parsing.
5683
Daniel Veillarde3bffb91998-11-08 14:40:56 +00005684Sun Nov 8 09:39:17 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
5685
5686 * parser.c: redirrect all errors reporting through the SAX
5687 error function
5688
Daniel Veillardda4d3c41998-11-04 20:07:05 +00005689Wed Nov 4 14:21:54 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
5690
5691 * entities.c: rather use HAVE_SNPRINTF and not depend on glib
5692 * libtool, tlmain ...: update of the libtool files
5693
Miguel de Icaza442321c1998-11-04 18:13:38 +000056941998-11-04 Miguel de Icaza <miguel@nuclecu.unam.mx>
5695
5696 * entities.c: Use g_snprintf insteda of snprintf.
5697
Daniel Veillard0ba4d531998-11-01 19:34:31 +00005698Sun Nov 1 14:31:06 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
5699
5700 * entities.c, parser.c: debug and cleanup of CharRef handling/saving.
5701 added ent5 test for this purpose.
5702 * parser.c, parser.h: formatting, comments and UTF-8 planning.
5703
Daniel Veillard27271681998-10-30 06:39:40 +00005704Fri Oct 30 01:36:52 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
5705
5706 * parser.c: fixed? a strange error due to compression on a GWP
5707 document.
5708
Daniel Veillard25940b71998-10-29 05:51:30 +00005709Thu Oct 29 00:48:45 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
5710
5711 * tree.[ch]: bug fixing
5712 * entities.[ch]: defined a specific type for predefined entities
5713 * doc/xml.html: more documentation on the library, how to use it,
5714 overview of the interfaces.
5715
Daniel Veillard16253641998-10-28 22:58:05 +00005716Wed Oct 28 17:56:35 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
5717
5718 * tree.[ch]: more cleanup on the API, made the tree mor conformant.
5719
Daniel Veillardbaf4cd51998-10-27 22:56:57 +00005720Tue Oct 27 17:54:00 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
5721
Daniel Veillard10c6a8f1998-10-28 01:00:12 +00005722 * tree.c: corrected a small bug
5723 * doc/xml.html: continuing writing documentation.
5724
5725Tue Oct 27 17:54:00 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
5726
Daniel Veillardbaf4cd51998-10-27 22:56:57 +00005727 * debugXML.h debugXML.c: added debugging utilities.
5728 * tester.c: added --debug switch.
5729 * tree.c: patched an incorrect node->type assignment.
5730 * parser.c: formatting, ensure that node->doc != NULL in attributes
5731
Daniel Veillardccb09631998-10-27 06:21:04 +00005732Tue Oct 27 01:15:39 EST 1998 Daniel Veillard <Daniel.Veillard@w3.org>
5733
5734 * parser.[ch] SAX.c tree.[ch]: large amount of changes to improve
5735 entity support and provide an internal representation close to
5736 DOM one (entity ref nodes, and attribute value as tree). I tried
5737 to preserve the interface but this will surely break some apps
5738 (I have to change rpm2html/rpmfind for example). I had to change
5739 two interfaces, and the generated tree is somewhat different.
5740 * doc/* : started documenting the XML library, the tree and
5741 DOM/Corba. This is a first step.
5742
Daniel Veillard11e00581998-10-24 18:27:49 +00005743Sat Oct 24 14:23:51 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
5744
5745 * parser.c: Set up the fonctions comment block, boring but useful.
5746 * parser.h, SAX.c, parser.c: now attributes are processed through
5747 the SAX interface. The problem is that my SAX interface diverged
5748 quite a bit from the original one, well this is not an official
5749 spec, and translating it from Java to C is hairy anyway...
5750
Daniel Veillard97b58771998-10-20 06:14:16 +00005751Tue Oct 20 02:11:21 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
5752
5753 * SAX.c, entities.c, tree.c, encoding.c, error.c: Set up the
5754 fonctions comment block, boring but useful.
5755
5756Sun Oct 18 20:40:58 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard891e4041998-10-19 00:43:02 +00005757
5758 * encoding.[ch], Makefile.am: Added the UTF-8, UTF-16 and ISO Latin 1
5759 conversion routines. However they are not yet used to convert the
5760 inputs. The core will run with UTF-8.
5761
Daniel Veillard33942841998-10-18 19:12:41 +00005762Sun Oct 18 15:08:19 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
5763
5764 * tree.c : make sure that the type id is properly set-up when
5765 a new object is allocated, needed for DOM.
5766
Daniel Veillard27fb0751998-10-17 06:47:46 +00005767Sat Oct 17 02:43:21 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
5768
5769 * tree.h, tree.c: Ok, the main objects in the tree will be native
5770 corba objects, it costs 8 bytes per Node, Attribute and Document
5771 but it simplifies the Corba integration a lot (no extra interface
5772 objects to allocate/free).
5773
Daniel Veillard0bef1311998-10-14 02:36:47 +00005774Tue Oct 13 21:46:57 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
5775
5776 * tree.h, tree.c, parser.c: added prev and doc pointers to Node,
5777 and changed NODEs contants for conformity with DOM Level 1
5778
Daniel Veillard27864701998-10-08 03:47:24 +00005779Wed Oct 7 23:42:46 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
5780
5781 * added hooks to keep track of servants when creating objects
5782 xmlDoc and xmlNode (for Corba export).
5783
Daniel Veillarda6e1d121998-10-04 14:41:05 +00005784Sun Oct 4 03:18:09 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
5785
5786 * added xml-config script.
5787
Daniel Veillard7066a791998-10-01 20:28:28 +00005788Thu Oct 1 16:22:37 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
5789
5790 * autogen.sh : applied patch from Frederic Devernay <devernay@istar.fr>
5791 to autoupdate libtool and automake conf files.
5792
Miguel de Icaza60681bd1998-09-30 19:28:59 +000057931998-09-30 Miguel de Icaza <miguel@nuclecu.unam.mx>
5794
5795 * Makefile.am: Use '?' to separate the sed
5796 commands as ',' is used when people pass -Wl,something.
5797
5798
Daniel Veillard15a8df41998-09-24 19:15:06 +00005799Thu Sep 24 15:13:29 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
5800
5801 * tree.c, tree.h: added a per-document compression interface.
5802
Daniel Veillard151b1b01998-09-23 00:49:46 +00005803Tue Sep 22 20:47:38 EDT 1998
5804
5805 * tree.c, tree.h: added saving with compression and added interfaces
5806 to control the compression level (xmlGetCompressMode,
5807 xmlSetCompressMode) and a new save to filename function (xmlSaveFile).
5808
Daniel Veillard70120ff1998-09-22 00:24:21 +00005809Mon Sep 21 20:11:13 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
5810
5811 * parser.c: corrected a loop for files of size 0
5812
Raja R Harinathd2e3abd1998-08-20 21:52:38 +000058131998-08-20 Raja R Harinath <harinath@cs.umn.edu>
5814
5815 * error.h: New file. Contains prototyes from `error.c'.
5816
Tom Tromeyc19653d1998-08-14 01:22:43 +00005817Thu Aug 13 19:02:34 1998 Tom Tromey <tromey@cygnus.com>
5818
5819 * Makefile.am (xmlincdir): New macro.
5820 (xmlinc_HEADERS): Renamed from include_HEADERS.
5821
Daniel Veillard845664d1998-08-13 04:43:19 +00005822Thu Aug 13 00:40:14 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
5823
5824 * applied small patch on numeric entities from
5825 Christopher Blizzard <blizzard@appliedtheory.com>
5826
Daniel Veillard260a68f1998-08-13 03:39:55 +00005827Wed Aug 12 23:12:58 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
5828
5829 * New release 0.2, removed the old xml_* files so that it's
5830 coherent with the other CVS base (W3C), far better conformance
5831 to standard, new namespaces, decent entities support, beginning
5832 of a SAX-like interface. Nearly nothing left intact, even the
5833 test examples ...
5834
Christopher Blizzarda36749e1998-07-30 21:47:18 +000058351998-07-30 Christopher Blizzard <blizzard@appliedtheory.com>
5836
5837 * .cvsignore: Add .deps dir
5838
Daniel Veillardf8015fa1998-07-26 21:31:38 +00005839Sun Jul 26 17:29:52 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
5840
5841 * xml_tree: changed the memory allocation scheme for name in xmlNewNode
5842
Daniel Veillardfe926001998-07-26 04:28:20 +00005843Sun Jul 26 00:17:51 EDT 1998 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard01791d51998-07-24 19:24:09 +00005844
Daniel Veillardfe926001998-07-26 04:28:20 +00005845 * configure.in: added test for CPP
5846 * AUTHORS, Changelog: the original ones didn't get commited but the
5847 glib ones instead, fixed.
5848 * Makefile.am: corrected an error in library naming
Daniel Veillard01791d51998-07-24 19:24:09 +00005849
Daniel Veillardfe926001998-07-26 04:28:20 +00005850Fri Jul 24 16:47:14 1998 Daniel Veillard <Daniel.Veillard@w3.org>
Daniel Veillard01791d51998-07-24 19:24:09 +00005851
Daniel Veillardfe926001998-07-26 04:28:20 +00005852 * integrated code developped at W3C
5853 * changed the original Copyright
5854 * migrated to automake
5855 * prefixed the filenames by xml_ to avoid filename clashes
Daniel Veillard01791d51998-07-24 19:24:09 +00005856