Refactored xsltValueOf(). Changed to use xmlXPathCastToString() directly,
[platform/upstream/libxslt.git] / ChangeLog
1 Fri Jul 14 17:55:42 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net>
2
3         * libxslt/attributes.c libxslt/documents.c
4           libxslt/functions.c libxslt/keys.c libxslt/namespaces.c
5           libxslt/pattern.c libxslt/preproc.c libxslt/templates.c
6           libxslt/templates.h libxslt/transform.c libxslt/variables.c
7           libxslt/xslt.c libxslt/xsltInternals.h libxslt/xsltutils.c
8           libxslt/xsltutils.h libexslt/common.c libexslt/dynamic.c
9           libexslt/functions.c libexslt/strings.c:
10           Refactored xsltValueOf(). Changed to use xmlXPathCastToString()
11           directly, rather than creating an intermediate object with
12           xmlXPathConvertString(). This now does not add a text-node to
13           the result if the string is empty (this has impact on
14           serialization, since an empty text-node is serialized as
15           <foo></foo>, and now it will be serialized as <foo/>).
16           Refactored other functions in transform.c:
17           Mostly code cleanup/restructuring. Minimized number of
18           function variables for instruction which eat up function stack
19           memory when recursing templates (xsltIf(), xsltChoose(),
20           xsltApplyTemplates(),  xsltCallTemplate()).
21           Changed XSLT tests to use xmlXPathCompiledEvalToBoolean().
22           Implemented redefinition checks at compilation-time and
23           eliminating them at transformation time in the refactored code
24           paths.
25           Introduced the field @currentTemplateRule on xsltTransformContext to
26           reflect the "Current Template Rule" as defined by the spec.
27           NOTE that ctxt->currentTemplateRule and ctxt->templ is not the
28           same; the former is the "Current Template Rule" as defined by the
29           XSLT spec, the latter is simply the template struct being
30           currently processed by Libxslt.
31           Added XML_COMMENT_NODE and XML_CDATA_SECTION_NODE to the macro
32           IS_XSLT_REAL_NODE.
33           Misc code cleanup/restructuring and everything else I already forgot.
34           Refactored lifetime of temporary result tree fragments.
35           Substituted all calls to the now deprecated xsltRegisterTmpRVT()
36           for the new xsltRegisterLocalRVT().
37           Fragments of xsl:variable and xsl:param are freed when the
38           variable/pram is freed.
39           Fragments created when evaluating a "select" of xsl:varible and
40           xsl:param are also bound to the lifetime of the var/param.
41           EXSLT's func:function now uses the following functions to let take
42           care the transformation's garbage collector of returned tree
43           fragments:
44             xsltExtensionInstructionResultRegister(),
45             xsltExtensionInstructionResultFinalize()
46           Fixes:
47           #339222 - xsl:param at invalid position inside an xsl:template is
48                     not catched
49           #346015 - Non-declared caller-parameters are accepted
50           #160400 - Compiles invalid XSLT; unbound variable accepted
51           #308441 - namespaced parameters become unregistered
52           #307103 - problem with proximity position in predicates of match
53                     patterns
54           #328218 - problem with exsl:node-set() when converting strings
55                     to node sets
56           #318088 - infinite recursion detection
57           #321505 - Multiple contiguous CDATA in output
58           #334493 - "--param" option does not have root context
59           #114377 - weird func:result/xsl:variable/exsl:node-set interaction
60           #150309 - Regression caused by fix for 142768
61
62 Wed Jun 21 15:13:27 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net>
63
64         * tests/docs/bug-54.xml tests/general/bug-54.out
65           tests/general/bug-99.out tests/general/bug-136.out
66           tests/REC/test-7.1.3.xsl tests/REC/test-7.1.4.xsl
67           tests/REC/test-7.3.xsl tests/REC/test-7.4.xsl:
68           Fixed incorrect regression tests/results.
69
70 Mon Jun 19 13:33:50 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net>
71
72         * libxslt/attributes.c libxslt/attrvt.c libxslt/namespaces.c
73           libxslt/namespaces.h libxslt/preproc.c libxslt/templates.c
74           libxslt/transform.c libxslt/variables.c libxslt/xslt.c
75           libxslt/xsltInternals.h libxslt/xsltutils.c:
76           Merged all the namespace lookup/create/disable functions
77           into xsltGetSpecialNamespace(). Changed xsltGetNamespace()
78           and xsltGetPlainNamespace() to call xsltGetSpecialNamespace(),
79           but kept the ns-aliasing mechanism; the ns-aliasing needs
80           to be removed when we move to the refactored code, which
81           applies ns-alias only at compilaton time.
82           Refactored xsltElementComp() (preproc.c); enhanced error reports.
83           Fixed: if the "namespace" attribute was not given, then this
84           performed incorrectly only a lookup for a default namespace;
85           i.e., without taking any prefix on the "name" attribute into
86           account.
87           Refactored xsltElement() (transform.c); enhanced error reports.
88           Refactored xsltAttributeComp() (preproc.c). Added namespace
89           lookup as in xsltElementComp(). Enhanced error reports.
90           Refactored xsltAttribute() (transform.c); enhanced error reports.
91           xsltCopyTreeInternal(): eliminated the need to call xmlGetNsList()
92           for every element in the tree; this needs to be done only for
93           the top-most elements. For subsequent elements reconcile only
94           the ns-declarations. Disallowed setting of ns-declarations if
95           children have been already added to an element.
96           Removed ns-aliasing code where necessary.
97           xsltCopyProp(): disallowed setting of attribute nodes if
98           children have been already added to an element.
99           xsltCopy(): removed the incorrect skipping of attributes in the
100           XSLT namespace. Removed the incorrect ns-aliasing for attributes.
101           Changed to use the introduced function xsltShallowCopyAttr().
102           xsltShallowCopyAttr():  Centralized all attribute-copy related
103           code in this function. It will now be called by
104           xsltCopyTreeInternal(), xsltCopyOf() and xsltCopy().
105           xsltCopyAttrListNoOverwrite(): Renamed. Refactored. Optimized to
106           use xsltGetSpecialNamespace() and xmlNewDocProp().
107           Further substitution of various scattered namespace-lookup
108           related code for the use of xsltGetSpecialNamespace().
109           xsltAttrTemplateProcess(): Refactored. Removed the incorrect
110           processing of attribute-sets. Attribute sets need to be applied
111           before adding any normal attribute of the literal result element;
112           this is now done in  xsltAttrListTemplateProcess(). Fixed to
113           ensure that the ns-prefix of the overwriting attribute is used.
114           xsltAttrListTemplateProcess(): Refactored. Moved semantics from
115           xsltAttrTemplateProcess() over to this function in order to
116           optimize processing of multiple attributes. This does not call
117           xsltAttrTemplateProcess() anymore.
118           Fixed: do not exclude the XSLT namespace after ns-aliasing have
119           beed applied.
120           The IFDEFed-out refactored code fixes the following issues:
121           - #313711: namespace collision with namespace-alias (reported
122                       by by Oleg Paraschenko)
123           - #338214: Incorrect scope for exclude-result-prefixes
124           - #341392: Excluding namespace declarations of literal result
125                      elements.
126           - #341325: Namespace aliasing and resulting namespace prefixes
127           Already enabled fixes:
128           - #344183: xsl:copy misses to copy attributes in the XSLT namespace
129           - #341463: Namespace-alias using #default for result-prefix with no
130                      default namespace in scope
131           - #313890: namespace collision with xsl:element and xsl:attribute,
132                      reported by Oleg Paraschenko
133           - #344176: xsl:copy misses to set an element's namespace-URI in
134                      some cases
135           - #305739: the "name" QName of xsl:element is incorrectly always
136                      resolved to the default namespace
137
138 Mon Jun 12 16:34:15 CEST 2006 Daniel Veillard <daniel@veillard.com>
139
140         * doc/xsltproc.1 doc/xsltproc.xml: more info about --output
141           from Daniel Leidert c.f. #344654
142
143 Tue Jun  6 17:16:33 CEST 2006 Daniel Veillard <daniel@veillard.com>
144
145         * configure.in libxslt.spec.in doc//*: preparing release of 1.1.17
146
147 Tue Jun  6 11:44:34 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net>
148
149         * libxslt/attributes.c: Eliminated a tiny difference wrt to
150           the old behaviour in the naming of newly generated ns-decls
151           in xsltAttributeInternal().
152
153 Thu Jun  1 15:06:31 CEST 2006 Daniel Veillard <daniel@veillard.com>
154
155         * configure.in: fix a problem in Python detection
156
157 Thu Jun  1 13:58:19 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net>
158
159         * libxslt/attributes.c libxslt/variables.c
160           libxslt/transform.c libxslt/xslt.c:
161           Next step in the refactored code: enhanced xsl:attribute;
162           enhanced xsltCopyProp.
163           Added the creation of an XPath cache in
164           xsltNewTransformContext().
165
166 Wed May 31 22:32:44 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net>
167
168         * libxslt/transform.c: Fixed a difference in processing of
169           xsl:value-of and  xsl:text wrt to merging of strings of
170           output-escaped text-nodes. This difference made the
171           optimized string-merging mechanism run out of sync, which
172           led to segfaults in subsequent string reallocations. See
173           bug #343411, reported by Grzegorz Kaczor.
174         * xslt.c: Added check for ctxt->internalized when we parse
175           xsl:text and internalize the strings.
176
177 Mon May 22 10:32:57 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net>
178
179         * libxslt/attributes.c libxslt/documents.c
180           libxslt/extensions.c libxslt/keys.c libxslt/pattern.c
181           libxslt/preproc.c libxslt/templates.c
182           libxslt/transform.c libxslt/variables.c
183           libxslt/xslt.c libxslt/xsltInternals.h:
184           Next tiny step of refactoring - mostly bug fixes and
185           cosmetic changes.
186           Changes outside of the refactored code:
187           1) Optimized xsl:attribute if the content consists of
188            just 1 text node.
189           2) Optimized computation of xsl:key. The keys will now be
190            computed for a specific document not until the first call
191            of a key() function; here only the keys with the specific
192            name used by key() are computed. This means that this
193            now avoids computation of all keys for all loaded
194            input documents (even if no key() was called on them).
195            One exception is the scenario where a key() is used in
196            a template's match pattern; in this case all keys are
197            computed for a document if there's a chance that
198            a "keyed" template could match a node (this could still
199            be optimized a bit).
200
201 Mon May 15 22:32:13 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net>
202
203         * libxslt/namespaces.c libxslt/attributes.c:
204           Fixed bug #302020, reported by Thomas Blatter.
205
206 Fri May 12 23:23:06 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net>
207
208         * libxslt/documents.c libxslt/namespaces.c
209           libxslt/preproc.c libxslt/transform.c
210           libxslt/xslt.c libxslt/xsltInternals.h libxslt/xsltutils.c:
211           Next step of refactoring. For more details see bug #341588.
212           I applied the suggestion of Jerome Pesenti to the refactored
213           (still IDFEDed out with XSLT_REFACTORED) code: The XPath
214           compilation context (accessible via the compilation context)
215           is now reused for compilation of expressions at
216           compilation-time; this should reduce compilation time to 50%
217           for avarage stylesheets.
218
219 Thu May 11 22:12:22 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net>
220
221         * libxslt/extensions.c: Changed a comment to indicate that a
222           specific bug was already fixed.
223           
224 Fri May  5 23:10:47 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net>
225
226         * libxslt/xsltInternals.h libxslt/attributes.c
227           libxslt/documents.c libxslt/extensions.c
228           libxslt/extensions.h libxslt/functions.c
229           libxslt/imports.c libxslt/keys.c libxslt/preproc.c
230           libxslt/transform.c libxslt/variables.c libxslt/xslt.c
231           libxslt/xsltutils.c libxslt/xsltutils.h libexslt/functions.c:
232           Next step of refactoring (plus some bug-fixes).
233           For more details see #340780.
234
235 Fri May  5 14:31:53 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net>
236
237         * tests/exslt/common/node-set.5.out
238           tests/exslt/sets/difference.1.out
239           tests/exslt/functions/function.6.out: Reverting the
240           changes; I'll rather change the processing stylesheet
241           documents in a way that they will produce the same results
242           for broken and stricter whitespace-stripping.
243
244 Thu May  4 22:55:26 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net>
245
246         * tests/exslt/common/node-set.5.out
247           tests/exslt/sets/difference.1.out
248           tests/exslt/functions/function.6.out: Changed regression test
249           results (bug #340684). Those will now produce regression
250           errors; so we need to fix the processor.
251
252 Mon May  1 17:39:27 EDT 2006 Daniel Veillard <daniel@veillard.com>
253
254         * configure.in NEWS doc//*: preparing release of 1.1.16, updated and
255           regenerated the docs.
256
257 Tue Apr 25 15:02:42 CEST 2006 Daniel Veillard <daniel@veillard.com>
258
259         * configure.in: applied patch from Joseph Sacco changing slightly
260           the python detection scheme should fix bug #338527
261
262 Wed Apr 12 13:35:45 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net>
263
264         * libxslt/attributes.c libxslt/preproc.c libxslt/transform.c
265           libxslt/variables.c libxslt/xslt.c libxslt/xsltInternals.h
266           libxslt/xsltutils.c libxslt/xsltutils.h:
267           Refactored the internal structures into specialized
268           structures and adjusted the code to work with those new
269           structures. I didn't yet (we should in the future)
270           renamed any fields of the old structures in order to avoid
271           changing too much code.
272           Introduced the internal structure xsltCompilerCtxt to be
273           used for storage and control of the compilation.
274           Optimized the way lists of in-scope namespaces are created
275           and stored; this will now only generate a new list if
276           really needed, i.e. if we encounter a ns-decl.
277           All this changes here are IFDEFed out with XSLT_REFACTORED.
278           
279 Thu Apr  6 10:16:59 CEST 2006 Daniel Veillard <daniel@veillard.com>
280
281         * doc/xsltproc.1 doc/xsltproc.xml: applied man page improvement
282           from Daniel Leidert
283
284 Thu Mar 30 17:23:52 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net>
285
286         * tests/general/bug-36-inc.xsl tests/general/bug-37-inc.xsl
287           tests/general/bug-65-inc.xsl tests/general/bug-100.xsl
288           tests/REC/test-15-1.xsl tests/REC/test-7.1.1-3.xsl
289           tests/namespaces/extra2.xsl tests/extensions/module.xsl
290           tests/plugins/plugin.xsl python/tests/extelem.py
291           python/tests/extfunc.py: Fixed regression tests wrt
292           usage of the attributes "exclude-result-prefixes"
293           and "extension-element-prefixes". test-7.1.1-3.xsl fails
294           now, since the code still does not exclude ns-decls
295           correctly.
296
297 Thu Mar 30 17:11:53 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net>
298
299         * libxslt/xslt.c libxslt/xsltutils.c libxslt/preproc.c
300           libxslt/namespaces.c libxslt/imports.c
301           libxslt/attributes.c: Eliminated usage of xsltGetNsProp() in cases
302           where an attribute with a specific namespace is requested.
303           xsltGetNsProp() uses xmlGetProp() which is not namespace aware
304           and thus will return the first attribute with the requested
305           name but of arbitrary namespace.
306           Changed retrieval of the attributes "exclude-result-prefixes"
307           and "extension-element-prefixes", which are expected to be in
308           no namespace on XSLT elements and in the XSLT namespace on
309           literal result elements or extension elements.
310           Additional change: for XSLT elements the attribute
311           "exclude-result-prefixes" is only allowed on xsl:stylesheet
312           and xsl:transform. This attribute was previously processed on
313           all XSLT elements.
314
315 Wed Mar 29 12:16:41 CEST 2006 Daniel Veillard <daniel@veillard.com>
316
317         * libxslt/transform.c: Charles Hardin pointed an OOM condition where
318           a NULL pointer could be dereferenced, closes #336394
319
320 Fri Mar 10 12:49:18 CET 2006 Daniel Veillard <daniel@veillard.com>
321
322         * libexslt/crypto.c libexslt/date.c libexslt/saxon.c
323           libxslt/attributes.c libxslt/imports.c libxslt/pattern.c
324           libxslt/preproc.c libxslt/transform.c libxslt/variables.c
325           libxslt/xslt.c libxslt/xsltutils.c: various assorted small cleanups
326           based on the Coverity reports
327
328 Wed Feb 22 16:09:10 CET 2006 Daniel Veillard <daniel@veillard.com>
329
330         * python/types.c: Nic Ferrier found debug statement left in the
331           XPath conversion code
332
333 Tue Feb 21 20:21:07 CET 2006 Daniel Veillard <daniel@veillard.com>
334
335         * doc/xsltproc.1 doc/xsltproc.xml: new update from Daniel Leidert
336
337 Tue Feb 21 17:59:11 CET 2006 Daniel Veillard <daniel@veillard.com>
338
339         * libxslt/extensions.c libxslt/xslt.c libxslt/xslt.h
340           libxslt/xsltInternals.h: applied patch from Christopher R. Palmer
341           to avoid a race condition in xsltInit()
342
343 Sun Feb 19 22:40:58 CET 2006 Daniel Veillard <daniel@veillard.com>
344
345         * doc/xsltproc.1 doc/xsltproc.xml: improvement of the man page
346           by Daniel Leidert, c.f. #331779
347
348 Sat Feb 11 13:10:01 CET 2006 Daniel Veillard <daniel@veillard.com>
349
350         * libxslt/xsltutils.c: fix xsltSaveResultToString comment
351         * libxslt/transform.c: detect loops when computing variables, should
352           fix bug #330772
353         * doc/xsltproc.xml doc/xsltproc.1: fix typo in man page
354         * tests/namespaces/tst7.out tests/general/bug-152.out: small output
355           changes due to libxml2 xhtml meta handling modification
356
357 Mon Nov 21 12:22:21 CET 2005 Daniel Veillard <daniel@veillard.com>
358
359         * libexslt/date.c: Albert Chin found another signed/unsigned problem
360           in the date and time code raised on IRIX 6.5
361
362 Mon Nov 21 12:08:05 CET 2005 Daniel Veillard <daniel@veillard.com>
363
364         * libexslt/crypto.c: patch from Albert Chin needed for HP-UX
365           which doesn't have <sys/select.h>
366
367 Mon Nov 21 12:05:41 CET 2005 Daniel Veillard <daniel@veillard.com>
368
369         * libexslt/date.c: Albert Chin posted a patch to fix a problem on
370           Solaris with dates, extended bitfield size too to match libxml2
371           code from xmlschemastypes.c
372
373 Wed Nov 16 12:47:25 CET 2005 Daniel Veillard <daniel@veillard.com>
374
375         * libexslt/functions.c: fix an problem raised by Ralf Junker in the
376           use of xmlHashScanFull() fixes bug #321582
377         
378 Sun Nov  6 19:22:45 CET 2005 Daniel Veillard <daniel@veillard.com>
379
380         * libxslt/attrvt.c: added a missing parameter to a debug function
381
382 Tue Oct  4 20:37:09 HKT 2005 William Brack <wbrack@mmm.com.hk>
383
384         * libexslt/date.c: applied fix to date:week-in-year posted to
385           the mailing list by Thomas Broyer
386         * tests/exslt/date/date.1.out, tests/exslt/date/datetime.1.out:
387           updated to reflect above fix
388
389 Sun Oct  2 11:52:44 CEST 2005 Daniel Veillard <daniel@veillard.com>
390
391         * configure.in libxslt/Makefile.am libxslt/xsltconfig.h.in
392           libxslt.spec.in tests/plugins/Makefile.am xslt-config.in: applied
393           patch from Joel Reed to ease plugin integration
394
395 Thu Sep 22 21:51:22 HKT 2005 William Brack <wbrack@mmm.com.hk>
396
397         * libxslt/pattern.c: fixed problem in internal XPath compilation
398           of patterns including variables, fixes #316861
399
400 Wed Sep 14 14:30:03 CEST 2005 Daniel Veillard <daniel@veillard.com>
401
402         * libxslt/transform.c: removed a superfluous second sorting of
403           the node set on xsl:copy-of, fixes #316288
404         * libxslt/xsltutils.c: marked xsltDocumentSortFunction as slow,
405           obsolete and deprecated :-)
406
407 Sat Sep 10 14:35:06 CEST 2005 Daniel Veillard <daniel@veillard.com>
408
409         * configure.in: check environment for PYTHON, fixes #315367
410
411 Mon Sep  5 00:44:24 CEST 2005 Daniel Veillard <daniel@veillard.com>
412
413         * configure.in NEWS doc/*: preparing release 1.1.15
414         * libxslt/pattern.c libxslt/xsltutils.c: a bit more cleanup
415
416 Mon Sep  5 00:07:40 CEST 2005 Daniel Veillard <daniel@veillard.com>
417
418         * libxslt/pattern.c: fixed #303289 variable in match are forbidden
419         * tests/general/bug-89.xsl: had to fix that test which was doing this
420         * tests/general/bug-142.out tests/general/bug-152.out
421           tests/namespaces/tst7.out: small output change on libxml2-2.6.21
422           new way of serializing encoding meta in HTML
423
424 Wed Aug 31 13:49:51 CEST 2005 Daniel Veillard <daniel@veillard.com>
425
426         * libxslt/transform.c: fixed #314936 a dictionnary issue on text
427           node merging, which probably fixed #311267 too.
428
429 Thu Aug 25 13:29:20 CEST 2005 Daniel Veillard <daniel@veillard.com>
430
431         * libxslt/xslt.c: libxslt should deallocate directly text node content
432           use xmlSetNodeContent(..., NULL)
433
434 Fri Aug 12 12:17:10 CEST 2005 Daniel Veillard <daniel@veillard.com>
435
436         * tests/general/bug-163.*, tests/general/Makefile.am,
437           tests/docs/bug-163.*, tests/docs/Makefile.am: check fix for
438           #310692
439
440 Tue Aug  9 22:13:18 CEST 2005 Daniel Veillard <daniel@veillard.com>
441
442         * tests/plugins/Makefile.am: try to get rid of complaints from
443           jhbuild newbies.
444
445 Sun Aug  7 16:04:47 CEST 2005 Daniel Veillard <daniel@veillard.com>
446
447         * libxslt/xsltutils.c: fixed a bug when size of xmlXPathContext
448           changes, uses the libxml2 alloc and dealloc functions instead.
449
450 Tue Jul 13 22:41:03 PDT 2005 William Brack <wbrack@mmm.com.hk>
451
452         * libxslt/transform.c: added check in xsltCopyText to assure
453           content is in dictionary before doing a straight copy of
454           content (bug 302821)
455
456 Tue Jul 13 16:16:31 PDT 2005 William Brack <wbrack@mmm.com.hk>
457
458         * libxslt/transform.c: fixed to set current default value for
459           XInclude when creating new TransformContext
460         * libxslt/xslt.c: minor change for per-mille
461
462 Sun Jul 10 16:17:53 CEST 2005 Daniel Veillard <daniel@veillard.com>
463
464         * libxslt/xsltwin32config.h*: try to avoid generating conflicts
465         * libexslt/dynamic.c: applied patch from Mark Vakoc to implement
466           dyn:map
467         * configure.in tests/exslt/Makefile.am tests/exslt/dynamic/*:
468           added test for dyn:map to the regression suite
469
470 Sat Jul  2 02:32:24 PDT 2005 <wbrack@mmm.com.hk>
471
472         * libxslt/numbers.c: further fixes for bug 309209, changing
473           behaviour of format-number.
474         * libxslt/xslt.c: changed definition of per-mille character from
475           '?' to Unicode #2030 (UTF-8 '‰') (ref XSLT spec 12.3)
476           
477 2005-06-30  Federico Mena Quintero  <federico@ximian.com>
478
479         * libxslt/xsltwin32config.h: Added this file back.  We'll have to
480         figure out a way to make jhbuild not get CVS conflicts with it.
481
482 Thu Jun 30 14:09:55 PDT 2005 William Brack <wbrack@mmm.com.hk>
483
484         * libxslt/numbers.c: fixed bug in negative prefix (bug 309209)
485         
486 2005-06-17  Federico Mena Quintero  <federico@ximian.com>
487
488         * libxslt/xsltwin32config.h: Removed from CVS; this is a generated
489         file anyway and it breaks jhbuild all the time.
490
491 Sat May  7 11:28:41 CEST 2005 Daniel Veillard <daniel@veillard.com>
492
493         * libexslt/libexslt.3: applied patch from Jonathan Wakely to fix
494           the namespace name for the EXSLT date and time functions in the man
495           page.
496
497 Wed Apr  6 23:58:12 CEST 2005 Igor Zlatkovic <igor@zlatkovic.com>
498
499         * libexslt/exslt.c libexslt/libexslt.h: Windows build cleanups,
500           removed obsolete checks
501         * libxslt/libxslt.h libxslt/win32config.h libxslt/xsltutils.h: 
502           Windows build cleanups, removed obsolete checks
503         * win32/configure.js: removed obsolete copy operations
504         * win32/Makefile.*: make install cleanup
505         * xsltproc/xsltproc.c: Windows build cleanup, removed obsolete 
506           macro definitions
507         * .cvsignore: added Eclipse project files
508
509 Sat Apr  2 13:34:11 CEST 2005 Daniel Veillard <daniel@veillard.com>
510
511         * configure.in NEWS doc/*: preparing release of 1.1.14, updated docs
512           and rebuilt.
513
514 Thu Mar 31 23:50:43 CEST 2005 Daniel Veillard <daniel@veillard.com>
515
516         * tests/docbook/result/fo/gdp-handbook.fo tests/general/bug-105.out
517           tests/general/bug-142.out: updated the result of some tests
518           following the change to serailization in libxml2.
519
520 Thu Mar 31 11:54:31 CEST 2005 Daniel Veillard <daniel@veillard.com>
521
522         * libxslt/pattern.c: fixed bug #171488 with cascading select in
523           patterns.
524         * tests/general/bug-161.*, tests/general/Makefile.am,
525           tests/docs/bug-161.*, tests/docs/Makefile.am: added test provided
526           by Ben Ko
527         
528 Thu Mar 31 00:28:38 CEST 2005 Daniel Veillard <daniel@veillard.com>
529
530         * tests/plugins/Makefile.am: fixed build outside of source tree
531           bug #172155 thanks to patch from Mike Castle
532
533 Wed Mar 30 14:09:19 CEST 2005 Daniel Veillard <daniel@veillard.com>
534
535         * xsltproc/xsltproc.c: fixed the xinclude problem with document()
536           as in bug #171893
537         * configure.in tests/Makefile.am tests/xinclude/*: added a new
538           xinclude directory with the test for this problem
539
540 Wed Mar 30 11:59:06 CEST 2005 Daniel Veillard <daniel@veillard.com>
541
542         * libxslt/pattern.c: fixed bug 169718 with ancestors in patterns
543           similar to same bug fixed in libxml2
544         * tests/general/bug-160.*, tests/general/Makefile.am,
545           tests/docs/bug-160.*, tests/docs/Makefile.am: added test provided
546           by Aaron Kaplan
547
548 Tue Mar 29 22:35:14 CEST 2005 Daniel Veillard <daniel@veillard.com>
549
550         * tests/general/bug-159.*, tests/general/Makefile.am,
551           tests/docs/bug-159.*, tests/docs/Makefile.am: added test for
552           bug #168196 fixed in libxml2
553
554 Tue Mar 29 21:06:11 CEST 2005 Daniel Veillard <daniel@veillard.com>
555
556         * libxslt/transform.c: working around Mark Vakoc' reported bug related
557           to mode internaing
558         * xsltproc/xsltproc.c: adding a --nodict mode to check problems with
559           document without a dictionnary.
560         * tests/REC/Makefile.am tests/general/Makefile.am: testing without 
561           dictionnary
562
563 Tue Mar 29 15:37:13 CEST 2005 Daniel Veillard <daniel@veillard.com>
564
565         * libxslt/xslt.c: fix bug #165201 when calling xsltInit() multiple
566           times.
567
568 Tue Mar 29 15:13:59 CEST 2005 Daniel Veillard <daniel@veillard.com>
569
570         * libxslt/preproc.c libxslt/xslt.c libxslt/xsltInternals.h: 
571           added DTD like checking when compiling stylesheets, closes
572           bug #160402 and a long term TODO
573         * tests/general/bug-89.xsl: thos spotted a misconstruct of one
574           of the test cases where <xsl:when> was not within <xsl:choose>
575
576 Mon Mar 21 20:56:43 MST 2005 John Fleck (jfleck@inkstain.net)
577
578         * doc/xsltproc.xml, xsltproc.html, xsltproc.1:
579         update documentation to reflect addition of --nodtdattr
580         command line flag. Bug #171098
581
582 Wed Mar 16 17:19:24 HKT 2005 William Brack (wbrack@mmm.com.hk)
583
584         * libxslt/xslt.c: fixed problem with text node on stylesheet
585           document without a dictionary (bug 170533)
586
587 Sun Mar 13 20:08:34 CET 2005 Daniel Veillard <daniel@veillard.com>
588
589         * NEWS configure.in doc/*: preparing 1.1.13, updated and rebuilt
590           the docs.
591         * tests/plugins/Makefile.am xsltproc/Makefile.am: trying to fix
592           some build problems.
593         * libxslt.spec.in: adding a build require and a require for 
594           libgcrypt-devel, c.f. Red Hat bug #133211
595         * libxslt/xsltInternals.h: as for libxml2, XML_CAST_FPTR was wrong.
596
597 Wed Feb 23 19:25:13 HKT 2005 William Brack <wbrack@mmm.com.hk>
598
599         * libxslt/pattern.c: fixed a problem with '//' and
600           namespaces (bug 168208)
601
602 Mon Feb 14 23:10:21 HKT 2005 William Brack <wbrack@mmm.com.hk>
603
604         * libxslt/namespaces.c: fixed a problem with
605           exclude-result-prefixes (bug 165560)
606
607 Mon Feb 14 12:51:07 CET 2005 Daniel Veillard <daniel@veillard.com>
608
609         * libxslt/variables.c: added a cretion of ctxt->globalVars in
610           xsltProcessUserParamInternal if missing.
611
612 Wed Feb  9 21:58:56 CET 2005 Daniel Veillard <daniel@veillard.com>
613
614         * doc/Makefile.am doc/libxslt-api.xml doc/libxslt-refs.xml 
615           doc/EXSLT/libexslt-api.xml: applied patch for make wiki from
616           Joel Reed and rebuild
617         * tests/plugins/Makefile.am: fix from Joel Reed for make dist
618
619 Sun Jan 30 20:01:21 CET 2005 Daniel Veillard <daniel@veillard.com>
620
621         * tests/plugins/testplugin.c win32/Makefile.msvc win32/configure.js:
622           applied plugin patch for Windows by Joel Reed
623
624 Fri Jan 28 01:00:56 CET 2005 Daniel Veillard <daniel@veillard.com>
625
626         * win32/configure.js: Makefile fixes for Widows from Joel Reed
627
628 Sat Jan 22 22:14:26 CET 2005 Daniel Veillard <daniel@veillard.com>
629
630         * libxslt/pattern.c libxslt/preproc.c libxslt/templates.c
631           libxslt/xslt.c libxslt/xsltInternals.h: chasing xmlStrEqual
632           calls and removed them when comparing mode and modeURI for
633           templates by interning those strings when compiling the
634           stylesheets.
635
636 Sat Jan 22 19:17:13 CET 2005 Daniel Veillard <daniel@veillard.com>
637
638         * configure.in: small fix for local setup
639         * libxslt/transform.c libxslt/variables.c : speeding up some
640           variable lookup. In the process dug out something nasty about
641           ctxt->dict creation and key initialization order.
642
643 Sat Jan 22 16:28:27 CET 2005 Daniel Veillard <daniel@veillard.com>
644
645         * libxslt/templates.c libxslt/transform.c libxslt/xslt.c
646           libxslt/xsltInternals.h: when copying text nodes in elements
647           or attributes to the output, if interning, then reuse the strings
648           directly without copying them in the output tree if dicts are
649           shared between the context and the output docs. Less allocations
650           smaller output document and no copying involved anymore.
651
652 Sat Jan 22 11:24:43 CET 2005 Daniel Veillard <daniel@veillard.com>
653
654         * libxslt/xslt.c: internalize all text node content from
655           stylesheet documents with the stylesheet dictionnary
656
657 Fri Jan 21 12:04:18 HKT 2005 William Brack <wbrack@mmm.com.hk>
658
659         * tests/plugins/Makefile.am: Applied patch 11 (with small
660           modification) from Joel
661
662 Thu Jan 20 21:05:27 CET 2005 Daniel Veillard <daniel@veillard.com>
663
664         * tests/plugins/Makefile.am tests/plugins/testplugin.c: applied
665           patch 10 from Joel Reed
666
667 Wed Jan 19 10:08:55 HKT 2005 William Brack <wbrack@mmm.com.hk>
668
669         * libxslt/xsltwin32config.h, libxslt/xsltwin32config.h.in:
670           fixed a small error in LIBXSLT_VERSION_EXTRA pointed out
671           by Michael.Hewarth on the mailing list
672          
673 Wed Jan 19 13:58:16 CET 2005 Daniel Veillard <daniel@veillard.com>
674
675         * configure.in: patch #9 from Joel Reed
676
677 Wed Jan 19 10:21:37 HKT 2005 William Brack <wbrack@mmm.com.hk>
678
679         * transform.c: fixed problem with parserOptions not being
680           set before loading a new document (bug 164530)
681
682 Mon Jan 17 16:50:02 CET 2005 Daniel Veillard <daniel@veillard.com>
683
684         * configure.in libxslt/Makefile.am libxslt/xsltwin32config.h
685           tests/Makefile.am tests/plugins/Makefile.am
686           tests/plugins/testplugin.c: applied another patch from Joel Reed
687           still failing here but looking better
688
689 Sun Jan 16 00:09:11 CET 2005 Daniel Veillard <daniel@veillard.com>
690
691         * libxslt/extensions.c: applied another patch from Joel Reed
692
693 Sat Jan 15 13:54:28 CET 2005 Daniel Veillard <daniel@veillard.com>
694
695         * tests/plugins/plugin.* tests/Makefile.am libxslt/extensions.c
696           libxslt/Makefile.am configure.in: Applied another patch from
697           Joel Reed, fixed a segfault and changed the configure code
698           a bit to work in my debug environment.
699
700 Tue Jan 11 10:50:33 HKT 2005 William Brack <wbrack@mmm.com.hk>
701
702         * configure.in: added python2.4 to the list of accepted
703           versions (bug 163274)
704
705 Sun Jan  9 17:04:23 CET 2005 Daniel Veillard <daniel@veillard.com>
706
707         * libxslt/extensions.c: oops previous patch could break build
708
709 Sun Jan  9 16:41:59 CET 2005 Daniel Veillard <daniel@veillard.com>
710
711         * configure.in win32/configure.js libxslt/extensions.c
712           libxslt/xsltconfig.h.in libxslt/xsltwin32config.h.in:
713           integrated the module patch from Joel Reed with just a couple
714           of changes and cleanup.
715
716 Tue Dec 27 17:50:10 HKT 2004 William Brack <wbrack@mmm.com.hk>
717
718         * libxslt/pattern.c: fixed a problem with the expression
719           "*//name" (bug 162265), also a small problem with the '|'
720           operator.
721
722 Thu Dec 23 16:04:47 HKT 2004 William Brack <wbrack@mmm.com.hk>
723
724         * libxslt/transform.c, libxslt/templates.c: fixed a couple of
725           spots where out-of-memory errors were not detected in time
726           (bug #153660 on OSF/1)
727           
728 Thu Dec  2 21:10:31 HKT 2004 William Brack <wbrack@mmm.com.hk>
729
730         *doc/xslt.html, doc/downloads.html: changed the download link
731          on the web page for cvs snapshot
732          
733 Wed Dec  1 22:37:55 HKT 2004 William Brack <wbrack@mmm.com.hk>
734
735         * libxslt/extensions.c, libxslt/functions.c, libxslt/numbers.c,
736           libxslt/pattern.c, libxslt/transform.c, libxslt/xslt.c,
737           libxslt/xsltInternals.h: minor changes to get rid of gcc
738           warnings, especially on 64-bit system. Implemented
739           XML_CAST_FPTR macro to cast between function pointer <->
740           object pointer while avoiding gcc warnings (a hack).
741           No change to the logic.
742
743 Wed Dec  1 10:47:15 CET 2004 Daniel Veillard <daniel@veillard.com>
744
745         * libxslt/security.c xsltproc/xsltproc.c: applied patch from
746           Aleksey Gurtovoy moving some stat() definition for Windows
747           to the right place.
748
749 Wed Dec  1 14:30:22 HKT 2004 William Brack <wbrack@mmm.com.hk>
750
751         * libxslt/xslt.c: applied patch from Mark Vakoc fixing bug with
752           namespace URI on template names.
753         * tests/namespaces/tst9*, tests/namespaces/Makefile.am: added
754           test case for this
755
756 Tue Nov 30 10:53:18 HKT 2004 William Brack <wbrack@mmm.com.hk>
757
758         * libxslt/pattern.c: more on RVT's in XPath predicates, this
759           time for bug 159726.  Cleaned up the logic a little, hopefully
760           now covers all setting of XSLT_RUNTIME_EXTRA.
761         * tests/general/bug-158.xsl: corrected a typo
762
763 Thu Nov 25 22:24:03 HKT 2004 William Brack <wbrack@mmm.com.hk>
764
765         * libxslt/variables.c, libxslt/xsltInternals.h: backed out the
766           last change and re-did it the "right way" (bug 158372).
767         * tests/general/bug-158.*, tests/general/Makefile.am,
768           tests/docs/bug-158.*, tests/general/Makefile.am: added test
769           case for this bug
770
771 Wed Nov 24 10:51:51 HKT 2004 William Brack <wbrack@mmm.com.hk>
772
773         * libxslt/variables.c, libxslt/xsltInternals.h: enhanced the
774           evaluation of global variables to take account of possible
775           changes to the current document (bug 158372).
776           
777 Mon Nov 22 08:10:18 HKT 2004 William Brack <wbrack@mmm.com.hk>
778
779         * libxslt/pattern.c: small change to previous fix for bug 153137,
780           fixes bug 158840.
781         * tests/general/bug-157.*, tests/general/Makefile.am,
782           tests/docs/bug-157.*, tests/docs/Makefile.am: added test for this
783
784 Sun Nov 21 09:42:22 HKT 2004 William Brack <wbrack@mmm.com.hk>
785
786         * libxslt/transform.c: enhanced code to assure the "current
787           template rule" is not changed by xsl:call-template (bug 157859).
788         * tests/general/bug-156.*, tests/general/Makefile.am,
789           tests/docs/bug-156.*, tests/docs/Makefile.am: added a test case
790           
791 Mon Nov  8 11:41:32 HKT 2004 William Brack <wbrack@mmm.com.hk>
792
793         * libexslt/date.c: fixed problem with day-of-week-in-month
794           (bug 157592) with patch from Sal Paradise
795         * tests/exslt/date/datetime.1.out: corrected expected output
796           after above fix
797
798 Mon Nov  1 15:57:24 CET 2004 Daniel Veillard <daniel@veillard.com>
799
800         * tests/general/bug-155.*, tests/general/Makefile.am,
801           tests/docs/bug-155*, tests/docs/Makefile.am: added a test case
802           provided by Markus Bertheau breaking on libxml2-2.6.15
803
804 Fri Oct 29 17:03:26 CEST 2004 Daniel Veillard <daniel@veillard.com>
805
806         * configure.in NEWS doc/*: preparing release of libxslt-1.1.12
807         * libexslt/crypto.c: mini change to avoid breaking apibuild.py
808         * libxslt/templates.c: small fix, first step in adressing #153660
809
810 Fri Oct 29 14:18:35 CEST 2004 Daniel Veillard <daniel@veillard.com>
811
812         * doc/xsltproc.1 doc/xsltproc.xml: indicate - means stdin closing
813           #156626
814
815 Wed Oct 27 17:00:54 CEST 2004 Daniel Veillard <daniel@veillard.com>
816
817         * libxslt/transform.c: another dictionnary/string interning fix
818
819 Wed Oct 27 00:00:07 CEST 2004 Daniel Veillard <daniel@veillard.com>
820
821         * libxslt/transform.c: fix to force string interning on generated
822           documents
823
824 Sat Oct 23 09:36:12 PDT 2004 William Brack <wbrack@mmm.com.hk>
825
826         * libexslt/crypto.c, libexslt/functions.c, libxslt/keys.c,
827           libxslt/numbers.c, libxslt/pattern.c, libxslt/transform.c,
828           libxslt/variables.c: changed some variable names for warning
829           cleanup when -ansi flag is not present.
830         * libxslt/namespaces.c: fixed potential NULL pointer reference
831           pointed out by Dennis Dams (bug 156187)
832
833 Mon Oct 18 17:04:27 CEST 2004 Daniel Veillard <daniel@veillard.com>
834
835         * libxslt.spec.in doc/Makefile.am: fix for RedHat bug #136072
836           to include EXSLT doc in libxslt package.
837
838 Thu Oct 14 22:43:22 PDT 2004 William Brack <wbrack@mmm.com.hk>
839
840         * configure.in, config.h.in, libexslt/date.c: changed date.c to use
841           gmtime_r if available (bug 129983)
842         * libexslt/functions.c: fixed a namespace problem concerning a
843           function with a namespace-qualified name (bug 155197)
844
845 Tue Oct 12 03:54:44 CEST 2004 Daniel Veillard <daniel@veillard.com>
846
847         * libxslt/namespaces.c: fixed a bug in namespace lookup exhibited
848           by the recent namespace tests in libxml2
849
850 Thu Oct  7 16:15:15 CEST 2004 Daniel Veillard <daniel@veillard.com>
851
852         * libxslt/transform.c: fixed a problem of tree structure raised
853           by the new libxml2 tree checking code.
854
855 Thu Sep 30 11:28:03 PDT 2004 William Brack <wbrack@mmm.com.hk>
856
857         * libexslt/date.c: fixed problem with negative periods
858           (bug 154021)
859         * tests/exslt/date/sum.2.out: changed expected output, now
860           agrees with comments in sum.2.xml test data file
861           
862 Thu Sep 30 08:19:28 CEST 2004 Daniel Veillard <daniel@veillard.com>
863
864         * libxslt/templates.c: patch from Mark Vakoc about an incorrect
865           attribute document pointer.
866
867 Thu Sep 30 08:13:57 CEST 2004 Daniel Veillard <daniel@veillard.com>
868
869         * doc/tutorial2/libxslt_pipes.*: updated the tutorial from Panagiotis
870           Louridas
871
872 Thu Sep 30 00:10:09 CEST 2004 Daniel Veillard <daniel@veillard.com>
873
874         * configure.in doc/*: release of 1.1.11, rebuilt the docs
875
876 Wed Sep 29 15:42:33 CEST 2004 Daniel Veillard <daniel@veillard.com>
877
878         * libxslt/pattern.c: try to fix #153137 but without a test case
879           it's shooting in the dark.
880
881 Tue Sep 28 16:20:48 CEST 2004 Daniel Veillard <daniel@veillard.com>
882
883         * doc/tutorial2/libxslt_pipes.*: New tutorial from Panagiotis Louridas
884         * libxslt.spec.in doc/Makefile.am: integrated the tutorial in the
885           distribution
886
887 Sat Sep 25 21:38:57 CEST 2004 Daniel Veillard <daniel@veillard.com>
888
889         * libxslt/preproc.c libxslt/variables.c: fixed 2 leaks with
890           namespaced variable names.
891         * tests/general/bug-154.*, tests/general/Makefile.am,
892           tests/docs/bug-154*, tests/docs/Makefile.am: added test case
893           for above
894
895 Fri Sep 24 18:13:45 CEST 2004 Daniel Veillard <daniel@veillard.com>
896
897         * Makefile.am: add missing variable
898         * libxslt/transform.c: fixed some error callback data
899         * tests/exslt/date/Makefile.am tests/exslt/date/sum*: added new
900           date:sum testing from Derek Poon
901
902 Fri Sep 24 09:17:22 PDT 2004 William Brack <wbrack@mmm.com.hk>
903
904         * libexslt/date.c: fixed problem with empty sets, etc.
905           (see discussion on mailing list)
906
907 Sat Sep 18 17:08:31 PDT 2004 William Brack <wbrack@mmm.com.hk>
908
909         * libexslt/date.c: fixed problem with timezone offset
910           (bug 153000)
911         * tests/exslt/date/add.1.out: changed regression test output,
912           which was apparently incorrect for above case
913
914 Sat Sep 18 00:04:02 PDT 2004 William Brack <wbrack@mmm.com.hk>
915
916         * libxslt/transform.c: re-arranged sequence of setting up
917           namespaces within xsltCopyTree (see the list thread
918           http://mail.gnome.org/archives/xml/2004-September/msg00072.html)
919         * tests/general/bug-104.out: slight change to expected output
920           due to above fix
921
922 Fri Sep 17 23:15:33 PDT 2004 William Brack <wbrack@mmm.com.hk>
923
924         * libexslt/date.c: enhanced validation of date-time to catch
925           bit-field overflow (bug 152836)
926         * tests/exslt/date/date.2.*, tests/exslt/time.2.*: added test
927           cases for above
928
929 Tue Sep  7 18:04:55 PDT 2004 William Brack <wbrack@mmm.com.hk>
930
931         * libxslt/numbers.c: further refinement to UTF8 pattern
932           separator (bug 151975)
933
934 Tue Sep  7 00:14:12 PDT 2004 William Brack <wbrack@mmm.com.hk>
935
936         * libxslt/numbers.c: fixed problem with UTF8 pattern
937           separator (bug 151975)
938
939 Mon Sep  6 14:27:38 PDT 2004 William Brack <wbrack@mmm.com.hk>
940
941         * libxslt/imports.c, libxslt/xslt.c, libxslt/xsltInternals.h:
942           fixed 2 problems with xsl:include (bug #151795)
943
944 Tue Aug 31 15:45:42 CEST 2004 Daniel Veillard <daniel@veillard.com>
945
946         * NEWS configure.in doc/*: Release of libxslt-1.1.10
947
948 Tue Aug 31 11:41:11 CEST 2004 Daniel Veillard <daniel@veillard.com>
949
950         * doc/xsltproc.1 doc/xsltproc.xml: added missing descriptions
951           for --path as well as --load-trace, fixes Red Hat bug #106545
952
953 Fri Aug 27 20:52:52 PDT 2004 William Brack <wbrack@mmm.com.hk>
954
955         * libxslt/keys.c: fixed small problem with key initialisation
956           disturbing the transformation context (bug 151201).
957         * tests/general/bug-153.*, tests/general/Makefile.am,
958           tests/docs/bug-153*, tests/docs/Makefile.am: added test case
959           for above
960
961 Tue Aug 24 16:40:51 CEST 2004 Igor Zlatkovic <igor@zlatkovic.com>
962
963         * win32/configure.js: added support for version extra
964
965 Mon Aug 23 16:53:02 CEST 2004 Daniel Veillard <daniel@veillard.com>
966
967         * libexslt/date.c libxslt/imports.c libxslt/xslt.c: fixing 
968           compilation problems on Solaris #150844
969
970 Sun Aug 22 17:19:49 CEST 2004 Daniel Veillard <daniel@veillard.com>
971
972         * configure.in NEWS doc/*: preparing release of 1.1.9
973
974 Sat Aug 21 22:08:14 PDT 2004 William Brack <wbrack@mmm.com.hk>
975
976         * transform.c: Further enhancement for keys on exslt:node-sets.
977           Corrects a rather serious timing problem (bug 150741)
978         * tests/exslt/common/node-set.8.*: added regression test for this
979
980 Fri Aug 20 18:53:50 CEST 2004 Daniel Veillard <daniel@veillard.com>
981
982         * Makefile.am configure.in: a bit of cleanup and a extra variable for
983           CVS dist
984
985 Fri Aug 20 11:30:19 CEST 2004 Daniel Veillard <daniel@veillard.com>
986
987         * libxslt/imports.c: fix a 64bit bug reported by Andreas Schwab
988
989 Wed Aug 18 14:27:18 PDT 2004 William Brack <wbrack@mmm.com.hk>
990
991         * configure.in libxslt/xsltconfig.h.in libxslt/xslt.c
992           libxslt/xsltwin32config.* libexslt/exsltconfig.h.in
993           libexslt/exslt.c: added some code to include the CVS
994           ChangeLog version in the version strings available for
995           printing (e.g. by xsltproc)
996
997 Wed Aug 18 00:22:00 CEST 2004 Daniel Veillard <daniel@veillard.com>
998
999         * xsltproc/xsltproc.c: implemented --nodtdattr to avoid defaulting
1000           DTD attributes, RFE 150311 . Also cleanup the code from all
1001           libxml2 pre 2.6.0 specific code since we are using 
1002           LIBXML_REQUIRED_VERSION=2.6.8 in configure.in
1003
1004 Tue Aug 17 01:01:22 CEST 2004 Daniel Veillard <daniel@veillard.com>
1005
1006         * libxslt/documents.c libxslt/documents.h libxslt/imports.c
1007           libxslt/xslt.c libxslt/xsltutils.c: Implemented a hook to
1008           provide document loading as suggested by David Hyatt for
1009           Safari
1010
1011 Mon Aug 16 12:53:55 PDT 2004 William Brack <wbrack@mmm.com.hk>
1012
1013         * libxslt/transform.c: added a call to xmlXPathOrderDocElems
1014           in xmlNewTransformContext for the principal document (bug 133289)
1015
1016 Sat Aug 14 21:49:48 PDT 2004 William Brack <wbrack@mmm.com.hk>
1017
1018         * libxslt/namespaces.[ch], transform.c, xslt.c, xsltInternals.h:
1019           fixed handling of #default in namespace-alias for default
1020           namespace (bug 149659)
1021         * tests/namespaces/tst7.* tst8.*: added regression tests for above
1022
1023 Fri Aug  6 11:05:31 PDT 2004 William Brack <wbrack@mmm.com.hk>
1024
1025         * libexslt/date.c: added date:sum routine supplied by Joel
1026           Reed
1027
1028 Wed Aug  4 00:04:13 CEST 2004 Daniel Veillard <daniel@veillard.com>
1029
1030         * doc/downloads.html doc/xslt.html: fixed a couple of problems
1031           reported by Oliver Stoeneberg
1032                 
1033 Mon Aug  2 08:48:03 PDT 2004 William Brack <wbrack@mmm.com.hk>
1034
1035         * libxslt/documents.c, libxslt/functions.c, libxslt/transform.c,
1036           libxslt/variables.c: added code to assure keys are generated
1037           when needed for node-sets (bug 148773)
1038         * tests/exslt/common/node-set.7.* - added test case for above.
1039
1040 Mon Jul 26 17:03:22 PDT 2004 William Brack <wbrack@mmm.com.hk>
1041
1042         * libexslt/strings.c: fixed str:tokenize for case when 2nd
1043           argument is an empty string (should produce a token for
1044           each char in the string).  Reported on the mailing list by
1045           Peter Pawlowski.
1046
1047 Fri Jul 23 21:55:14 PDT 2004 William Brack <wbrack@mmm.com.hk>
1048         * libxslt/imports.c: further enhancement for template priorities
1049           on imported stylesheets (better fix for bug 141279, fixes
1050           bug 148246).
1051
1052 Fri Jul 16 12:14:57 CEST 2004 Daniel Veillard <daniel@veillard.com>
1053
1054         * configure.in libexslt/crypto.c libexslt/exslt.[ch] 
1055           libexslt/exsltconfig.h.in win32/configure.js: apply patch from
1056           Rob Richards to add a normal --with-crypto configure option.
1057
1058 Tue Jul 13 22:57:43 HKT 2004 William Brack <wbrack@mmm.com.hk>
1059
1060         * libxslt/functions.c: added some logic to xsltKeyFunction
1061           to set the transform context doc ptr when the xpath context
1062           doc is different (bug 147445)
1063         * tests/exslt/common/Makefile.am, tests/exslt/common/node-set.5*
1064           and tests/exslt/common/node-set.6*: added regression tests
1065           for bug 145547 (UNION and FILTER for RVT's)
1066
1067 Mon Jul 12 08:28:07 HKT 2004 William Brack <wbrack@mmm.com.hk>
1068
1069         * python/libxslt-python-api.xml: fixed type for doctypeSystem
1070           and doctypePublic (problem reported on the list by Sitsofe
1071           Wheeler)
1072         * doc/libxslt-api.xml: updated database.
1073
1074 Sun Jul 11 22:46:31 HKT 2004 William Brack <wbrack@mmm.com.hk>
1075
1076         * transform.c: small change to key handling for RVT, needed
1077           because of enhancement to libxml2 xpath.
1078
1079 Fri Jul  9 02:51:38 PDT 2004 Daniel Veillard <daniel@veillard.com>
1080
1081         * python/libxsl.py: fixes Python on 64bits box problem.
1082
1083 Tue Jul  6 18:43:37 CEST 2004 Daniel Veillard <daniel@veillard.com>
1084
1085         * libxslt.spec.in: better python dependancy Red hat bug #126364
1086           by Robert Scheck
1087
1088 Tue Jul  6 21:35:44 HKT 2004 William Brack <wbrack@mmm.com.hk>
1089
1090         * tests/namespaces/Makefile.am: added extra2.err, tst5.xml,
1091           tst5.xsl and tst.out to EXTRA_DIST
1092
1093 Mon Jul  5 21:48:13 CEST 2004 Daniel Veillard <daniel@veillard.com>
1094
1095         * configure.in doc/*: releasing 1.1.8
1096
1097 Sun Jul  4 24:18:12 HKT 2004 William Brack <wbrack@mmm.com.hk>
1098
1099         * xsltproc/Makefile.am: changed the sequence of LD_ADDS and
1100           LIBGCRYPT_LIBS on xsltproc_LDADD.  Previously this was
1101           causing the wrong libs to be linked when using the configure
1102           option --with-libxml-libs-prefix, or --with-libxml-src (nasty)
1103
1104 Sun Jul  4 21:42:48 HKT 2004 William Brack <wbrack@mmm.com.hk>
1105
1106         * libexslt/Makefile.am: implemented change from Joel Reed for
1107           automake-1.4 compatibility.
1108         * libexslt/crypto.c: reformatted source to remove an overly
1109           generous supply of tabs.  Added a #include for sys/select to
1110           fix a compilation error caused by the gcrypt include file's
1111           usage of 'fd_set'.  Made some minor changes to fix
1112           some warning messages (no change to the logic).
1113         * configure.in, config.h.in: added test for presence of
1114           sys/select.h.
1115           Added test for libgcrypt version > 1.1.41 (bug 145245)
1116           
1117 Sat Jul  3 17:52:27 HKT 2004 William Brack <wbrack@mmm.com.hk>
1118
1119         * doc/xslt.html, doc/extensions.html: corrected the URI for libxslt
1120           namespace, also a small enhancement of the surrounding text on
1121           extension functions. (bug 145250)
1122           
1123 Fri Jul  2 15:51:49 CEST 2004 Daniel Veillard <daniel@veillard.com>
1124
1125         * configure.in: convenience change
1126         * python/libxsl.py python/libxslt-python-api.xml python/libxslt.c:
1127           try to avoid calling libxml2 cleanup function directly but go
1128           though the python wrapper of libxml2 for memory debug accounting.
1129
1130 Fri Jul  2 16:24:12 HKT 2004 William Brack <wbrack@mmm.com.hk>
1131
1132         * libxslt/keys.c: added namespace setup before calling XPath
1133           to evaluate key (Bug 143520)
1134
1135 Thu Jul  1 10:07:55 HKT 2004 William Brack <wbrack@mmm.com.hk>
1136
1137         * libxslt/transform.c: added coding to xsltCopyTree to copy
1138           namespaces (bug 139578).
1139         * tests/general/bug-128.out: changed to reflect above fix
1140         * libxslt/xslt.c: minor change to an error message
1141
1142 Wed Jun 30 18:41:20 CEST 2004 Daniel Veillard <daniel@veillard.com>
1143
1144         * win32/Makefile.msvc win32/Makefile.mingw libexslt/Makefile.am
1145           libexslt/exslt.c libexslt/exslt.h config.h.in configure.in
1146           libexslt/crypto.c: applied patch from Joel Reed to get EXSLT
1147           crypto extensions based on libgcrypt if found at configure time.
1148         * tests/namespaces/Makefile.am: fixed a small breakage
1149
1150 Wed Jun 30 12:28:34 HKT 2004 William Brack <wbrack@mmm.com.hk>
1151
1152         * libxslt/namespaces: some enhancement for fixing bug 142768
1153         * tests/namespaces/Makefile.am, tests/namespaces/tst6*:
1154           added regression test for this bug
1155
1156 Tue Jun 29 09:23:03 CEST 2004 Daniel Veillard <daniel@veillard.com>
1157
1158         * Makefile.am examples/xsltICUSort.c: seems I never commited to CVS
1159           the example from Richard Jinks
1160
1161 Wed Jun  9 16:33:56 CEST 2004 Igor Zlatkovic <igor@zlatkovic.com>
1162
1163         * win32/configure.js win32/Makefile.* minor changes for the new
1164           layout of the Windows binary package
1165
1166 Wed May 26 10:51:22 HKT 2004 William Brack <wbrack@mmm.com.hk>
1167
1168         * doc/search.php.inc, doc/search/php: enhanced to remove
1169           forcing module names to lower case, and to fix problem
1170           with links between pages in libxml2 directory.
1171
1172 Mon May 24 12:46:10 HKT 2004 Igor Zlatkovic <igor@zlatkovic.com>
1173
1174         * win32/makefile.msvc, win32/configure.js: included the cruntime 
1175           option, contributed by Oliver Stoeneberg
1176
1177 Mon May 24 08:37:22 HKT 2004 William Brack <wbrack@mmm.com.hk>
1178
1179         * libxslt/xsltutils.c: fixed bug in error message printing
1180           for undefined namespace (bug 143004)
1181
1182 Mon May 17 23:08:42 CEST 2004 Daniel Veillard <daniel@veillard.com>
1183
1184         * NEWS doc/*: updated for 1.1.7
1185
1186 Mon May 17 06:14:09 CEST 2004 Daniel Veillard <daniel@veillard.com>
1187
1188         * configure.in: release of libxslt-1.1.7
1189
1190 Sun May 16 23:08:05 CEST 2004 Daniel Veillard <daniel@veillard.com>
1191
1192         * tests/general/bug-151*, tests/docs/bug-151.xml,
1193           tests/general/Makefile.am, tests/docs/Makefile.am: added
1194           regression test for old bug #127877
1195
1196 Sun May 16 20:48:35 CEST 2004 Daniel Veillard <daniel@veillard.com>
1197
1198         * libxslt/transform.c: fixing bug #135542 about the DOCTYPE name
1199           being generated when the root element is namespaced 
1200         * tests/general/bug-151*, tests/docs/bug-151.xml,
1201           tests/general/Makefile.am, tests/docs/Makefile.am: added
1202           regression test for bug #135542
1203
1204 Sun May 16 19:39:44 CEST 2004 Daniel Veillard <daniel@veillard.com>
1205
1206         * libxslt/namespaces.c libxslt/namespaces.h libxslt/templates.c
1207           libxslt/transform.c: fixing bug #134500 on namespace lookup for
1208           attribute which sometimes lead to default namespace
1209         * tests/general/bug-150*, tests/docs/bug-150.xml,
1210           tests/general/Makefile.am, tests/docs/Makefile.am: added
1211           regression test for bug #134500
1212
1213 Sun May 16 18:09:36 CEST 2004 Daniel Veillard <daniel@veillard.com>
1214
1215         * libexslt/date.h: fixing a small portability problem on Solaris
1216           for the declaration of localtime_r bug #140468
1217
1218 Sun May 16 16:36:38 CEST 2004 Daniel Veillard <daniel@veillard.com>
1219
1220         * libxslt.m4: applied patch from Edward Rudd to fix the problems
1221           raised in bug #142429
1222           
1223 Sun May 16 11:01:52 CEST 2004 Daniel Veillard <daniel@veillard.com>
1224
1225         * libxslt/xslt.c: fixed a weird namespace bug #141532
1226         * tests/docs/Makefile.am tests/docs/bug-14[89].xml
1227           tests/general/Makefile.am tests/docs/bug-14[89]*: added tests
1228           to the regression for bug #141532
1229
1230 Sun May  2 23:47:43 PDT 2004 William Brack <wbrack@mmm.com.hk>
1231
1232         * libxslt/imports.c: added comments and function header,
1233           improved logic of routine just added.
1234         * tests/general/bug-147*, tests/docs/bug-147.xml,
1235           tests/general/Makefile.am, tests/docs/Makefile.am: added
1236           regression test for bug 141279
1237
1238 Sun May  2 12:47:32 PDT 2004 William Brack <wbrack@mmm.com.hk>
1239
1240         * libxslt/imports.c: enhanced normalization of comp steps
1241           when an imported stylesheet has it's own imports
1242           (bug 141279)
1243
1244 Sat May  1 10:35:03 PDT 2004 William Brack <wbrack@mmm.com.hk>
1245
1246         * libxslt/transform.c: added code to recognize
1247           disable-output-escaping on certain text nodes (bug 140755)
1248         * tests/general/bug-100.out: regenerated to account for change
1249           from next ChangeLog entry (bug 140558)
1250
1251 Wed Apr 28 18:17:24 PDT 2004 William Brack <wbrack@mmm.com.hk>
1252
1253         * libxslt/xsltutils.c: suppressed any automatic linefeed after
1254           a comment following the document root element (bug 140558)
1255
1256 Thu Apr 22 08:38:35 CEST 2004 Daniel Veillard <daniel@veillard.com>
1257
1258         * libxslt/transform.c: fix a problem where we updated an
1259           ELEMENT node psvi field as if it was a DOCUMENT one, leading
1260           to a subtle crash later, valgrind rules.
1261
1262 The Apr 20 00:22:37 HKT 2004 William Brack <wbrack@mmm.com.hk>
1263
1264         * libexslt/strings.c: fixed bug in UTF8 string tokenize
1265           kindly reported by Vasily Tchekalkin
1266
1267 Mon Apr 19 00:39:18 CEST 2004 Daniel Veillard <daniel@veillard.com>
1268
1269         * configure.in doc/*: preparing release 1.1.6
1270         * libxslt.spec.in: keep the ChangeLog compressed 
1271
1272 Mon Apr  5 15:23:53 CEST 2004 Daniel Veillard <daniel@veillard.com>
1273
1274         * libxslt/keys.c: fixed a stupid cut'npaste bug #139132
1275         * tests/docs/Makefile.am tests/docs/bug-146.xml
1276           tests/general/Makefile.am tests/docs/bug-146*: added test
1277           to the regression for bug #139132
1278
1279 2004-04-02 10:17:23 HKT 2004 William Brack <wbrack@mmm.com.hk>
1280
1281         * libxslt/keys.c: applied patch from Mark Vakoc to fix problem
1282           with key matching attribute node.
1283
1284 2004-04-01  Johan Dahlin  <johan@gnome.org>
1285
1286         * python/.cvsignore: Add generated files, to make cvs silent.
1287
1288         * .cvsignore: Add missing libexslt.pc and stamp-h1
1289
1290 Tue Mar 23 13:13:56 CET 2004 Daniel Veillard <daniel@veillard.com>
1291
1292         * configure.in: prepare release of 1.1.5, made a hard dependancy
1293           to libxml2 2.6.8 due to the dictionnary reference counting change
1294         * doc/*: updated and rebuilt the doc.
1295         * tests/namespaces/Makefile.am: fixed a build problem (tst5 ?)
1296
1297 Mon Mar 22 20:25:41 CET 2004 Daniel Veillard <daniel@veillard.com>
1298
1299         * libxslt/xsltconfig.h.in: small fix for OpenVMS
1300         * libxslt/documents.c: fixed a leak associated to the change
1301           in reference counting when running the XML parser and using
1302           the document() function.
1303
1304 Wed Mar 17 18:49:55 HKT 2004 William Brack <wbrack@mmm.com.hk>
1305
1306         * xsltproc/xsltproc.c: added check for state XSLT_STATE_STOPPED
1307           when output file is used (bug 137341)
1308           
1309 Tue Mar 16 08:55:18 HKT 2004 William Brack <wbrack@mmm.com.hk>
1310
1311         * libxslt/xsltutils.c: corrected my error from bug 135938
1312           pointed out on the mailing list by Mark Vakoc.
1313         * libxslt/transform.c: enhanced the error message for
1314           call-template when namespace is present.
1315         * tests/general/bug-145.err: regenerated for new message
1316
1317 Fri Mar 12 13:07:03 HKT 2004 William Brack <wbrack@mmm.com.hk>
1318
1319         * libxslt/namespaces.c: added additional check to prevent
1320           superfluous namespace href's being generated on elements
1321           (bug 136914)
1322         * tests/namespaces/Makefile.am, tests/namespaces/tst5.x[ms]l:
1323           added new test for bug 136914
1324         * tests/namespaces, tests/extensions/ tests/reports: fixed
1325           error in "enhanced" Makefile.am, removed superfluous .err files
1326           from cvs
1327
1328 Wed Mar 10 19:27:39 HKT 2004 William Brack <wbrack@mmm.com.hk>
1329
1330         * doc/search.php.incl: minor addition for later version of php
1331           requiring $HTTP_GET_VARS.
1332           doc/*: rebuilt the docs
1333
1334 Wed Mar 10 17:14:13 HKT 2004 William Brack <wbrack@mmm.com.hk>
1335
1336         * libexslt/strings.c: modified the 'tokenize' routine to work with
1337           UTF8 chars in both string and tokens (Bug 136183)
1338
1339 Tue Mar  9 23:44:31 HKT 2004 William Brack <wbrack@mmm.com.hk>
1340
1341         * libxslt/attrvt.c: added coding to allow growing the
1342           AVT structure when a large number of segments are present
1343           (bug 136624)
1344         * libxslt/keys.c: fixed a compilation warning (no logic change)
1345
1346 Sat Mar  6 23:42:47 HKT 2004 William Brack <wbrack@mmm.com.hk>
1347
1348         * tests/docbook/Makefile.am: small fix to typo
1349
1350 Sat Mar  6 23:05:11 HKT 2004 William Brack <wbrack@mmm.com.hk>
1351
1352         * Makefile.am, tests/Makefile.am, tests/REC/Makefile.am,
1353           tests/REC1/Makefile.am, tests/REC2/Makefile.am,
1354           tests/XSLTMark/Makefile.am, tests/docbook/Makefile.am,
1355           tests/exslt/common/Makefile.am, tests/exslt/date/Makefile.am,
1356           tests/exslt/functions/Makefile.am, tests/exslt/math/Makefile.am,
1357           tests/exslt/sets/Makefile.am, tests/exslt/strings/Makefile.am,
1358           tests/extensions/Makefile.am, tests/general/Makefile.am,
1359           tests/keys/Makefile.am, tests/multiple/Makefile.am,
1360           tests/namespaces/Makefile.am, tests/numbers/Makefile.am,
1361           tests/reports/Makefile.am, test/xmlspec/Makefile.am,
1362           tests/general/bug-60.err, tests/docbook/result/html/gdp-handbook.err,
1363           tests/REC/test-2.5-1.err:
1364           Major enhancement to "make tests". All but Python tests
1365           cleaned up to produce minimum summary output if no problems.
1366         * tests/general/bug-145.xsl, tests/general/bug-145.err,
1367           tests/docs/Makefile.am, tests/docs/bug-145.xml:
1368           Added test case for bugzilla bug 135938
1369           
1370 Thu Mar  4 23:02:18 HKT 2004 William Brack <wbrack@mmm.com.hk>
1371
1372         * libxslt/xsltutils.h, libxslt/xsltutils.c, libxslt/preproc.c:
1373           fixed problem with dictionary handling (bug 135938).
1374         * doc/EXSLT/*: fixed a few more "href_base" files.
1375
1376 Wed Mar  3 21:33:33 HKT 2004 William Brack <wbrack@mmm.com.hk>
1377
1378         * doc/*, doc/html/*, doc/EXSLT/*: rebuilt the docs to fix
1379           the "href_base" problem.
1380
1381 Fri Feb 27 01:04:47 HKT 2004 William Brack <wbrack@mmm.com.hk>
1382
1383         * configure.in, config.h.in: added test for localtime_r
1384         * libexslt/date.c: added usage of localtime_r if present on
1385           system (bug 129983, suggested by Vasily Tchekalkin)
1386
1387 Thu Feb 26 16:59:45 CET 2004 Daniel Veillard <daniel@veillard.com>
1388
1389         * libxslt/keys.c libxslt/pattern.c: removed the last use
1390           of _private that time in the input document, use the psvi
1391           field again, this may be interesting if XSLT2 support gets
1392           in but since this is very unlikely ...
1393
1394 Thu Feb 26 16:04:28 CET 2004 Daniel Veillard <daniel@veillard.com>
1395
1396         * libxslt/transform.c libxslt/variables.c: use the psvi field
1397           of teh document used for RVT instead of _private. 
1398
1399 Thu Feb 26 15:17:52 CET 2004 Daniel Veillard <daniel@veillard.com>
1400
1401         * libxslt/attrvt.c libxslt/templates.c: use the psvi field of
1402           the attribute instead of the _private one to compile AVT infos
1403
1404 Thu Feb 26 14:53:16 CET 2004 Daniel Veillard <daniel@veillard.com>
1405
1406         * tests/docs/Makefile.am tests/docs/bug-144.xml
1407           tests/general/Makefile.am tests/docs/bug-144*: added test
1408           similar to 143 but checking for AVT in local variables.
1409         
1410 Thu Feb 26 13:16:33 CET 2004 Daniel Veillard <daniel@veillard.com>
1411
1412         * libxslt/attrvt.c libxslt/variables.c: fixed a regression for
1413           AVT found in global variable content.
1414         * tests/docs/Makefile.am tests/docs/bug-143.xml
1415           tests/general/Makefile.am tests/docs/bug-143*: added test
1416           to the regression suite.
1417
1418 Wed Feb 25 16:35:01 CET 2004 Daniel Veillard <daniel@veillard.com>
1419
1420         * libxslt/attributes.c libxslt/keys.h libxslt/preproc.c 
1421           libxslt/transform.c libxslt/variables.c libxslt/xsltutils.c:
1422           First step toward _private cleanup: use the psvi field to store
1423           the precompilation informations in the stylesheet nodes.
1424
1425 Wed Feb 25 14:24:34 CET 2004 Daniel Veillard <daniel@veillard.com>
1426
1427         * libxslt/variables.c: trying to use the fact that names comes
1428           from a dictionnary when looking up for variables.
1429         * tests/documents/Makefile.am: try to fix an error reported on
1430           the list.
1431
1432 Wed Feb 25 17:02:22 HKT 2004 William Brack <wbrack@mmm.com.hk>
1433
1434         * tests/general/Makefile.am, tests/general/bug-142.xsl,
1435           tests/general/bug-142.out, tests/docs/Makefile.am,
1436           tests/general/bug-142.xml: added test for language
1437           attribute which previously triggered a memory leak
1438           (from list report by Mike Hommey)
1439
1440 Mon Feb 23 18:01:44 CET 2004 Daniel Veillard <daniel@veillard.com>
1441
1442         * NEWS configure.in doc/*: preparing release 1.1.4, updated and
1443           regenerated the documentation
1444
1445 Tue Feb 24 00:37:28 HKT 2004 William Brack <wbrack@mmm.com.hk>
1446
1447         * libxslt/xsltutils.c, libxslt/templates.c, libxslt/preproc.c:
1448           minor changes to eliminate compilation warnings.  No change
1449           to logic.
1450
1451 Sun Feb 22 23:59:12 CET 2004 Daniel Veillard <daniel@veillard.com>
1452
1453         * libexslt/exsltexports.h libxslt/xsltexports.h: patches from
1454           Mikhail S Grushinskiy to compile on Mingw
1455
1456 Sat Feb 21 16:47:04 CET 2004 Daniel Veillard <daniel@veillard.com>
1457
1458         * win32/Makefile.msvc: patch from Mark Vadoc for attrvt.c
1459
1460 Wed Feb 18 13:32:55 CET 2004 Daniel Veillard <daniel@veillard.com>
1461
1462         * libxslt/extensions.c: applied patch from Steve Little to 
1463           display the extension modules.
1464
1465 Wed Feb 18 11:40:23 CET 2004 Daniel Veillard <daniel@veillard.com>
1466
1467         * libxslt/transform.c: trying to fix an extension regression pointed
1468           out on the list.
1469
1470 Tue Feb 17 12:20:26 CET 2004 Daniel Veillard <daniel@veillard.com>
1471
1472         * libxslt/transform.c: try to fix the problem with yelp
1473           and dictionnaries
1474
1475 Tue Feb 17 11:29:15 CET 2004 Daniel Veillard <daniel@veillard.com>
1476
1477         * libxslt/templates.c: applied patch from #134588 provided by
1478           Mariano Suárez-Alvarez, attribute text node without doc.
1479
1480 Mon Feb 16 15:55:57 CET 2004 Daniel Veillard <daniel@veillard.com>
1481
1482         * configure.in, doc/*: updated and rebuilt the documentation
1483           preparing release of 1.1.3
1484         * libxslt/attrvt.c libxslt/xsltInternals.h: cleanup
1485
1486 2004-02-15  Tomasz KÅ‚oczko <kloczek@pld.org.pl>
1487
1488         * libxslt.m4: small fix: added missing [] quotation macro name
1489           defined in AC_DEFUN(). Fix is neccessary for aclocal from automake
1490           1.8.x and is backward compatible with older auto tools.
1491
1492 Sun Feb 15 23:01:09 CET 2004 Daniel Veillard <daniel@veillard.com>
1493
1494         * libxslt/attrvt.c libxslt/templates.c: removed the two last
1495           known bug with the new code, was overoptimizing a bit...
1496
1497 Sun Feb 15 19:57:20 CET 2004 Daniel Veillard <daniel@veillard.com>
1498
1499         * libxslt/attrvt.c: found the memory leak shown in DocBook,
1500           mostly an error handling some ATV coupled with doctionnaries
1501           reference counting.
1502         * libxslt/documents.c libxslt/transform.c libxslt/variables.c
1503           libxslt/xslt.c: added a bit of debug to be able to trace 
1504           dictionnaries.
1505
1506 Fri Feb 13 16:59:46 CET 2004 Daniel Veillard <daniel@veillard.com>
1507
1508         * libxslt/attrvt.c libxslt/Makefile.am: added new code to handle
1509           attribute value templates
1510         * libxslt/*.c libxslt/*.h: also a lot of work to reuse the 
1511           dictionaries at the stylesheet and transformation level.
1512         * configure.in: this relies on a recent version of libxml2 
1513           with the sub dictionnary catalog.
1514
1515 Sun Feb  8 16:53:14 HKT 2004 William Brack <wbrack@mmm.com.hk>
1516
1517         * libxslt/transform.c: added check for "?>" in PI content
1518           (Bug 133726)
1519
1520 Sat Jan 31 02:43:45 PST 2004 William Brack <wbrack@mmm.com.hk>
1521
1522         * libxslt/namespaces.c: fixed problem with attribute
1523           namespace (Bug 132953)
1524
1525 Thu Jan 29 14:47:22 PST 2004 William Brack <wbrack@mmm.com.hk>
1526
1527         * libxslt/transform.c: added check for "--" or ending '-'
1528           in xsl:comment (Bug 132742)
1529
1530 Thu Jan 29 14:08:31 PST 2004 William Brack <wbrack@mmm.com.hk>
1531
1532         * libxslt/transform.c, libxslt/attributes.c: added
1533           validation of QName for xsl:element and xsl:attribute
1534           (Bug 132531)
1535
1536 Fri Jan 23 18:52:22 HKT 2004 William Brack <wbrack@mmm.com.hk>
1537
1538         * libxslt/pattern.c: changed priority of template patterns
1539           starting with '//' from 0.0 to 0.5 (Bug 131705)
1540
1541 Thu Jan 22 18:42:03 CET 2004 Daniel Veillard <daniel@veillard.com>
1542
1543         * libxslt/xslt.c: applied patch from Stefan Kost to fix
1544           behaviour on unknown element from the XSLT namespace.
1545         * python/generator.py: applied patch from Stephane bidoul
1546           to export enums in the bindings.
1547
1548 Thu Jan 22 10:35:14 HKT 2004 William Brack <wbrack@mmm.com.hk>
1549
1550         * tests/general/Makefile.am, tests/general/bug-141.out,
1551           tests/general/bug-141.xsl, tests/docs/Makefile.am,
1552           tests/general/bug-141.xml: added test case for
1553           Bug 13971 (libxml2 xpath.c bug, but tested here)
1554
1555 Fri Jan 16 22:15:34 HKT 2004 William Brack <wbrack@mmm.com.hk>
1556
1557         * libxslt/xsltutils.c: added a newline for any comment before
1558           the root element (Bug 130433)
1559         * libxslt/xslt.c: fixed problem with cdata-section-elements when
1560           default namespace is changed (Bug 130793)
1561         * tests/extensions/module.out, tests/general/bug-100.out: adjusted
1562           for newline after comment change above.
1563         * tests/general/Makefile.am, tests/general/bug-140.xsl,
1564           tests/general/Makefile.am, tests/docs/bug-140.xml: added test for
1565           cdata-section-elements problem.
1566
1567 Wed Jan 14 16:44:58 CET 2004 Daniel Veillard <daniel@veillard.com>
1568
1569         * python/libxsl.py: applied shared lib loading patch for OS X from
1570           Gianni Ceccarelli
1571
1572 Wed Jan 14 14:28:02 HKT 2004 William Brack <wbrack@mmm.com.hk>
1573
1574         * libexslt/math.c, libexslt/common.c: fixed problem,
1575           reported on the list by Markus Bayerlein, concerning
1576           math functions on nodesets generated with
1577           exslt:node-set
1578         * tests/exslt/math/max.3.xsl, tests/exslt/math/max.3.xml,
1579           tests/exslt/math/max.3.out, tests/exslt/math/Makefile.am:
1580           added test case for above.
1581
1582 Tue Jan 13 00:33:50 HKT 2004 William Brack <wbrack@mmm.com.hk>
1583
1584         * libxslt/transform.c: changed to assure comment which
1585           preceeds root node is output after DTD (Bug 130433)
1586         * test/exslt/common/node-set.4.*: added test case for
1587           Bug 130922
1588
1589 Mon Jan 12 12:51:45 HKT 2004 William Brack <wbrack@mmm.com.hk>
1590
1591         * doc/site.xsl: Changed logo spacing to avoid stacking
1592         * doc/*: rebuilt web pages
1593
1594 Sun Jan 11 20:10:09 MST 2004 John Fleck <jfleck@inkstain.net>
1595
1596         * doc/site.xsl
1597         * doc/w3c.png
1598         * doc/*
1599         Test William's new site.xsl improvements by adding the
1600         W3C logo icon, rebuild docs, and presto! It shows up
1601         everywhere!
1602
1603 Mon Jan 10 08:33:18 HKT 2004 William Brack <wbrack@mmm.com.hk>
1604
1605         * libxslt/transform.c: Refined wrapper code with large
1606           test case submitted by Norm Walsh. (Bug 130922)
1607
1608 Sun Jan 10 23:33:21 HKT 2004 William Brack <wbrack@mmm.com.hk>
1609
1610         * libxslt/transform.c: Added coding to create a xsltDocument
1611           wrapper for an RVT, in order to produce the applicable
1612           keys (Bug 130922)
1613
1614 Sat Jan  9 17:04:38 HKT 2004 William Brack <wbrack@mmm.com.hk>
1615
1616         * doc/search.xml, doc/search.templ, doc/Makefile.am,
1617           doc/search.php.inc: Added new facility to "autogen"
1618           the search script.  Fixed a few more problems with
1619           the API page generation.
1620         * doc/site.xsl, doc/api.xsl, doc/newapi.xsl: integrated
1621           the autogeneration of the php script.  Note that from
1622           this point doc/search.php will be include in the
1623           generic "Rebuilt docs".
1624         * doc/*: api docs rebuilt.
1625         
1626 Fri Jan  8 08:32:55 HKT 2004 William Brack <wbrack@mmm.com.hk>
1627
1628         * doc/site.xsl, doc/api.xsl, doc/newapi.xsl, doc/search.php:
1629           Further cleanup, fully implemented common routine for
1630           "generic page" within the docs.
1631         * doc/*: api docs rebuilt with enhanced scripts.
1632
1633 Thu Jan  8 06:45:04 MST 2004 John Fleck <jfleck@inkstain.net>
1634
1635         * doc/xslt.html, doc/bugs.html
1636         made link to bugzilla more useful
1637
1638 Wed Jan  7 20:12:14 HKT 2004 William Brack <wbrack@mmm.com.hk>
1639
1640         * doc/api.xsl, doc/site.xsl, doc/search.php: a little
1641           cleanup of scripts, assuring page tables are consistent.
1642         * doc/*: api docs rebuilt with enhanced scripts.
1643
1644 Tue Jan  6 23:38:47 HKT 2004 William Brack <wbrack@mmm.com.hk>
1645
1646         * configure.in: fixed Bug130593.
1647         * doc/apibuild.py: fixed a couple of sequence problems on
1648           references within APIxxx.html files, rebuild doc/* (and NEWS)
1649
1650 Sun Jan  4 19:06:59 MST 2004 John Fleck <jfleck@inkstain.net>
1651
1652         * doc/newapi.xsl: change background color of function
1653         declaration to improve readability
1654         * doc/*: rebuild docs with new stylesheet
1655
1656 Fri Jan  2 21:42:49 MST 2004 John Fleck <jfleck@inkstain.net>
1657
1658         * libxslt/transform.c: fix bad doc comment formatting on 
1659         xsltDebugSetDefaultTrace and xsltDebugGetDefaultTrace
1660         * doc/*: rebuild docs
1661
1662 Wed Dec 24 15:15:52 CET 2003 Daniel Veillard <daniel@veillard.com>
1663
1664         * configure.in doc/*: prepared release of libxslt-1.1.2
1665         * libxslt.spec.in doc/Makefile.am: some tweaking following the
1666           new EXSLT docs.
1667
1668 Mon Dec 22 20:33:08 HKT 2003 William Brack <wbrack@mmm.com.hk>
1669
1670         * libxlst/numbers.c: fixed xsl:number level="any" for Bug
1671           129057
1672
1673 Sun Dec 21 21:38:11 HKT 2003 William Brack <wbrack@mmm.com.hk>
1674
1675         * libxslt/numbers.c: added namespace comparison for
1676           xsl:number count function (Bug 129057)
1677
1678 Sun Dec 21 13:56:48 CET 2003 Daniel Veillard <daniel@veillard.com>
1679
1680         * tests/docs/Makefile.am tests/docs/bug-139.xml
1681           tests/general/Makefile.am tests/general/bug-139*: added
1682           test for entities parsing (Bug #129489)
1683
1684 Sun Dec 21 20:33:27 HKT 2003 William Brack <wbrack@mmm.com.hk>
1685
1686         * tests/docs/Makefile.am tests/docs/bug-138.xml
1687           tests/general/Makefile.am tests/general/bug-138*: added
1688           test for namespace problem (Bug #129624)
1689
1690 Sun Dec 21 13:17:05 CET 2003 Daniel Veillard <daniel@veillard.com>
1691
1692         * xsltproc.c: fixed #129327 make sure parser flags get transmitted to
1693           the transformation context
1694         * libxslt/documents.c libxslt/transform.c libxslt/xsltInternals.h 
1695           libxslt/xsltutils.c libxslt/xsltutils.h: add a new call
1696           xsltSetCtxtParseOptions() to update parsing options in document()
1697
1698 Sun Dec 21 12:51:12 CET 2003 Daniel Veillard <daniel@veillard.com>
1699
1700         * libxslt/keys.c: fixed second problem on #122483, namespace
1701           definitions must be propagated to keys.
1702         * tests/docs/Makefile.am tests/docs/bug-137.xml
1703           tests/general/Makefile.am tests/docs/bug-137*: added test
1704           to the regression for bug #122483
1705         
1706 Sun Dec 21 12:08:45 CET 2003 Daniel Veillard <daniel@veillard.com>
1707
1708         * libxslt/transform.c: added the cast needed to fix #129188 warning
1709
1710 Sat Dec 20 23:37:31 HKT 2003 William Brack <wbrack@mmm.com.hk>
1711
1712         * libexslt/transform.c: fixed Bug 129624 (erroneous output
1713           of namespaces)
1714
1715 Sat Dec 20 16:22:11 HKT 2003 William Brack <wbrack@mmm.com.hk>
1716
1717         * libexslt/date.c: fixed several routines to assure empty
1718           string returned (rather than a string object with a null
1719           string pointer) (Bug 129561)
1720
1721 Mon Dec 16 00:30:47 PST 2003 William Brack <wbrack@mmm.com.hk>
1722
1723         * doc/Makefile.am doc/site.xsl doc/api.xsl doc/newapi.xsl
1724           doc/xslt.html doc/apibuild.py doc/EXSLT doc/EXSLT/exslt.html:
1725           enhanced documentation to include exslt; rebuilt docs
1726           
1727 Mon Dec 15 20:33:52 MST 2003 John Fleck <jfleck@inkstain.net>
1728
1729         * libxslt/xsltutils.h
1730         * doc/*
1731         document XSLT_TRACE macro (sort of) and rebuild docs
1732
1733 Thu Dec 11 19:50:41 CET 2003 Igor Zlatkovic <igor@zlatkovic.com>
1734
1735         * win32/Makefile.mingw win32/configure.js: tried to fix mingw
1736           build, no success, it still works halfway.
1737
1738 Thu Dec 11 16:33:41 CET 2003 Igor Zlatkovic <igor@zlatkovic.com>
1739
1740         * win32/Makefile.* win32/configure.js libxslt/xsltexports.h
1741           libexslt/exsltexports.h libxslt/win32config.h: msvc and
1742           mingw compilation fixes.
1743
1744 Wed Dec 10 20:37:46 MST 2003 John Fleck <jfleck@inkstain.net>
1745
1746         * doc/xslt.html docs.html
1747         remove reference to gtk-doc
1748
1749 Wed Dec 10 17:20:27 CET 2003 Daniel Veillard <daniel@veillard.com>
1750
1751         * configure.in NEWS doc/*: updated the docs, made release 1.1.1
1752
1753 Wed Dec 10 16:13:38 CET 2003 Daniel Veillard <daniel@veillard.com>
1754
1755         * configure.in: upp'ed the dependancy to libxml2-2.6.3
1756         * libxslt/documents.c xsltproc/xsltproc.c: fixed #127473
1757           by using the new XInclude APIs provided by 2.6.3...
1758
1759 Mon Dec  8 23:34:32 HKT 2003 William Brack <wbrack@mmm.com.hk>
1760
1761         * libxslt/transform.c, libxslt/xslt.c: modified to assure
1762           XML_CDATA_SECTION_NODE's do not have xmlStringTextNoenc
1763           set into node name.  This modification arises from
1764           bug #128520, and avoids unnecessary work in libxml2.
1765           
1766 Mon Dec  1 16:41:27 CET 2003 Daniel Veillard <daniel@veillard.com>
1767
1768         * libxslt/*.h *.h.in: updated the metadata informations in the headers
1769         * doc/* doc/html/*: regenerated the docs.
1770
1771 Sun Nov 30 23:25:22 HKT 2003 William Brack <wbrack@mmm.com.hk>
1772
1773         * doc/Makefile.am: small further enhancement to makefile
1774         * doc/APIchunk[127].html, doc/libxslt-api.xml, doc/libxslt-refs.xml,
1775           doc/html/libxslt-transform.html: updated to reflect last change
1776           to transform.c
1777
1778 Sun Nov 30 22:44:07 HKT 2003 William Brack <wbrack@mmm.com.hk>
1779
1780         * doc/newapi.xsl, doc/api.xsl, doc/apibuild.py, doc/site.xsl,
1781           Makefile.am: adapted the libxml files for libxslt.
1782         * doc/API*.html, doc/html/*.html, doc/libxslt-api.xml,
1783           doc/libexslt-api.xml, doc/libxslt-refs.xml,
1784           win32/libxslt.def.src, win32/libexslt.def.src: regenerated
1785           the docs.
1786
1787 Sun Nov 30 18:48:27 HKT 2003 William Brack <wbrack@mmm.com.hk>
1788
1789         * libxslt/transform.c: change initialisation of external functions
1790           to take place in xsltNewTransformContext instead of in
1791           xsltApplyStylesheetInternal.  This fixes bug 122483, and should
1792           also fix problem reported on the mailing list on today's date.
1793
1794 Wed Nov 26 09:49:11 HKT 2003 William Brack <wbrack@mmm.com.hk>
1795
1796         * libxslt/imports.c, libxslt/xsltInternals.h: Changed to
1797           detect recursion in xslt:include (bug #127687).
1798         * tests/XSLTMark/reverser.out,
1799         * test/docbook/result/xhtml/gdp-handbook.xhtml: results changed
1800           because of fix of bug #127877 in libxml2 (quotes in text)
1801
1802 Mon Nov 24 07:32:38 HKT 2003 William Brack <wbrack@mmm.com.hk>
1803
1804         * libxslt/xslt.c, libxslt/imports.c, libxslt/parserInternals.h:
1805           Changed to detect recursion in xslt:import (bug #127687).
1806         * doc/libxslt-api.xml, python/libxsltclass.txt: regenerated to
1807           include change to xsltParseStylesheetImportedDoc parameters for
1808           above.
1809
1810 Sat Nov 22 13:04:59 CET 2003 Daniel Veillard <daniel@veillard.com>
1811
1812         * libxslt/keys.c libxslt/templates.c libxslt/transform.c
1813           libxslt/variables.c libxslt/xsltInternals.h libxslt/xsltutils.h:
1814           Applied patch from Mark Vadoc adding flexible trace debugging
1815           support to the library.
1816
1817 Sat Nov 22 00:53:47 HKT 2003 William Brack <wbrack@mmm.com.hk>
1818
1819         * libxslt/transform.c: fixed bug #127561 (xsl:element with a
1820           'computed' namespace attribute)
1821         * tests/docs/Makefile.am tests/docs/bug-136.xml
1822           tests/general/Makefile.am tests/docs/bug-136*: added tests
1823           to the regression for bug #127561
1824
1825 Fri Nov 21 18:17:32 HKT 2003 William Brack <wbrack@mmm.com.hk>
1826
1827         * libxslt/keys.c: small further enhancement, bug #127450
1828
1829 Thu Nov 20 17:26:57 CET 2003 Daniel Veillard <daniel@veillard.com>
1830
1831         * libxslt/keys.c: another problem reported by Oleg Paraschenko
1832           on the same code in #127450
1833         * tests/docs/Makefile.am tests/docs/bug-135.xml
1834           tests/general/Makefile.am tests/docs/bug-135*: added tests
1835           to the regression suite for bug #127450.
1836
1837 Thu Nov 20 10:59:48 CET 2003 Daniel Veillard <daniel@veillard.com>
1838
1839         * libxslt/keys.c: fixed an error from #120684 patch raised in
1840           #127450
1841         * tests/docs/Makefile.am tests/docs/bug-134.xml
1842           tests/general/Makefile.am tests/docs/bug-134*: added tests
1843           to the regression suite for bug #127450.
1844         
1845 Thu Nov 20 00:22:14 CET 2003 Daniel Veillard <daniel@veillard.com>
1846
1847         * libxslt/keys.c: fixed a bug in the keys selector parsing
1848           #120684 when | is in a predicate or a string.
1849         * tests/docs/Makefile.am tests/docs/bug-133.xml
1850           tests/general/Makefile.am tests/docs/bug-133*: added tests
1851           to the regression suite for bug #120684.
1852         * Makefile.am: don't package cvs temp files
1853         * doc/apibuild.py: update from libxml2 one
1854
1855 Tue Nov 18 13:42:12 HKT 2003 William Brack <wbrack@mmm.com.hk>
1856
1857         * libexslt/strings.c: fixed entity problem in exslt:tokenize
1858           uncovered by newapi.xsl
1859         * libxslt/transform.c,libxslt/pattern.c,libxslt/keys.c: changed
1860           to use IS_BLANK_CH for char compares (fixes warnings)
1861
1862 Fri Nov 14 23:59:08 CET 2003 Daniel Veillard <daniel@veillard.com>
1863
1864         * libxslt/preproc.c: applied fix from Bjorn Reese to close
1865           number formatting bug #126994
1866
1867 Fri Nov 14 18:44:50 CET 2003 Daniel Veillard <daniel@veillard.com>
1868
1869         * Makefile.am configure.in libexslt.pc.in libxslt.spec.in: adding
1870           libexslt.pc support
1871
1872 Thu Nov 13 11:54:36 CET 2003 Daniel Veillard <daniel@veillard.com>
1873
1874         * libxslt/attributes.c libxslt/documents.c libxslt/transform.c
1875           libxslt/variables.c libxslt/xsltInternals.h: applied Mark Vakoc
1876           patch to moves the control of the XSLT debugger into the transform
1877           context.
1878
1879 Tue Nov 12 18:17:24 HKT 2003 William Brack <wbrack@mmm.com.hk>
1880
1881         * libexslt/functions.c: applied patch for param visibility from
1882           Shaun McCance.  Changed variable scoping in accordance with
1883           Shaun's suggestions.  This fixed problem reported on the list
1884           by Bernd Lang
1885         * tests/exslt/functions/function.8.[xml,xsl,out], Makefile.am:
1886           regression test for above
1887         
1888 Sat Nov  8 13:27:12 CET 2003 Daniel Veillard <daniel@veillard.com>
1889
1890         * libexslt/libexslt.3: applied improvement patch from Jonathan Wakely
1891           describing the entry points.
1892
1893 Wed Nov  6 17:27:23 CET 2003 Igor Zlatkovic <igor@zlatkovic.com>
1894
1895         * win32/configure.js: fixed #122146
1896
1897 Wed Nov  5 12:25:34 CET 2003 Daniel Veillard <daniel@veillard.com>
1898
1899         * tests/multiple/Makefile.am: applied last fix from #125614
1900
1901 Tue Nov  4 19:08:53 PST 2003 William Brack <wbrack@mmm.com.hk>
1902
1903         Minor enhancements to eliminate compile/test warnings
1904         * libxslt/xsltconfig.h.in, libexstl/exsltconfig.h.in:
1905           changed macro ATTRIBUTE_UNUSED for gcc so that, if undefined,
1906           it's defined as __attribute__((unused))
1907         * python/libxslt.c: fixed ATTRIBUTE_UNUSED to appear after
1908           variable declaration
1909         * libxslt/preproc.c: minor change to get rid of unused var/code
1910           
1911 Tue Nov  4 14:21:06 CET 2003 Daniel Veillard <daniel@veillard.com>
1912
1913         * doc/* NEWS: preparing release 1.1.0
1914
1915 Tue Nov  4 14:04:58 CET 2003 Daniel Veillard <daniel@veillard.com>
1916
1917         * libxslt/preproc.c: fixing the Document element precompilation
1918           to avoid the problem raised in #125614
1919
1920 Tue Nov  4 01:08:17 PST 2003 William Brack <wbrack@mmm.com.hk>
1921
1922         * tests/multiple/out/letter*.orig: updated to reflect change
1923           to HTML output in libxml2 (formatting of <p>, bug #125093)
1924
1925 Sun Nov  2 09:07:32 PST 2003 William Brack <wbrack@mmm.com.hk>
1926
1927         * libxslt/xslt.c: fixed bug #124286 - detect invalid name on
1928           template
1929         
1930 Sun Nov  2 10:51:58 CET 2003 Daniel Veillard <daniel@veillard.com>
1931
1932         * Makefile.am configure.in libxslt.spec.in doc/libxslt-api.xml
1933           libxslt/xslt.h libxslt/xsltwin32config.h: some cleanup and trial
1934           for the upcoming 1.1.0 release
1935         * breakpoint/*: this release removes the deprecated breakpoint library
1936
1937 Sat Nov  1 17:04:27 PST 2003 William Brack <wbrack@mmm.com.hk>
1938
1939         * libxslt/transform.c, tests/general/bug-119.out: fixed
1940           bug #125502 and corrected expected test output
1941         * tests/general/bug-79.out: fixed broken test (bug #123328)
1942         * libxslt/pattern.c, libexslt/functions.c: minor change to
1943           eliminate compilation warning
1944           
1945 Sat Nov  1 22:36:30 CET 2003 Daniel Veillard <daniel@veillard.com>
1946
1947         * tests/REC/test-5.2-17.xsl tests/REC/test-5.2-18.xsl: fixing two
1948           broken tests (revealed by #125502)
1949
1950 Sat Nov  1 07:41:06 CET 2003 Daniel Veillard <daniel@veillard.com>
1951
1952         * libexslt/strings.c: fix bug #125265 about entities breaking
1953           exsl:tokenize and exsl:split
1954         * tests/exslt/strings/split.1.* tests/exslt/strings/tokenize.1.*:
1955           augmented the reression tests with the example from the bug report.
1956
1957 Fri Oct 31 20:26:04 CET 2003 Daniel Veillard <daniel@veillard.com>
1958
1959         * libxslt/preproc.c: fix bug #120828 make sure that xsl:sort is
1960           empty.
1961
1962 Fri Oct 31 15:53:45 CET 2003 Daniel Veillard <daniel@veillard.com>
1963
1964         * libxslt/documents.c libxslt/imports.c libxslt/xslt.c libxslt/xslt.h
1965           xsltproc/xsltproc.c: switch to use xmlReadfile instead of
1966           xmlParseFile, this avoid relying on global parser options, far
1967           far cleaner.
1968         * tests/XSLTMark/xslbench1.out tests/general/bug-90.out: fixes a
1969           slightly corrected output for CDATA and STYLE element save.
1970
1971 Tue Oct 28 15:30:54 CET 2003 Daniel Veillard <daniel@veillard.com>
1972
1973         * configure.in python/Makefile.am python/tests/Makefile.am: applied
1974           patch from Roumen Petrov for bug #124539 when building outside the
1975           source directory
1976         * libxslt/xsltutils.c: fixed the way to grab the line number from
1977           the document, use the predefiend libxml2 API which mate it work
1978           with both 2.5.x and 2.6.x
1979
1980 Mon Oct 27 08:57:43 HKT 2003 William Brack <wbrack@mmm.com.hk>
1981
1982         * libxslt/xslt.c: put in #undef for IS_BLANK macros to fix
1983           problem reported on the mailing list by Justin Fletcher
1984
1985 Fri Oct 24 00:49:05 CEST 2003 Daniel Veillard <daniel@veillard.com>
1986
1987         * configure.in libxslt.spec.in: doing some testing and raising
1988           the build requirement to 2.5.10 
1989         * libexslt/Makefile.am configure.in: applied patch from Graham Wilson
1990           for linking the exslt lib with the lib being build instead of the
1991           installed one
1992
1993 Thu Oct 23 15:48:39 HKT 2003 William Brack <wbrack@mmm.com.hk>
1994
1995         * libxslt/pattern.c: Fixed problem with cascaded predicates
1996           (more of bug 119946)
1997
1998 Thu Oct 23 15:37:26 HKT 2003 William Brack <wbrack@mmm.com.hk>
1999
2000         * restored earliest portion of ChangeLog (was corrupted)
2001
2002 Wed Oct 22 13:07:50 CEST 2003 Daniel Veillard <daniel@veillard.com>
2003
2004         * libxslt/xsltutils.[ch]: applied patch from Kasimier Buchcik
2005           for xsltGetDebuggerStatus and xsltSetDebuggerStatus
2006         * doc/libxslt-api.xml: regenerated the API
2007
2008 Sun Oct 19 23:32:23 CEST 2003 Daniel Veillard <daniel@veillard.com>
2009
2010         * configure.in: bump the libxml2 require to 2.6.0 which
2011           should ship for good real soon...
2012         * doc/Makefile.am: fix installation of HTML pages
2013         * doc/libxslt-api.xml: rebuilt
2014         * libxslt/xsltexports.h: cleanup
2015         * python/generator.py: ATTRIBUTE_UNUSED is after the parameter
2016         * xsltproc/xsltproc.c: applied Crutcher Dunnavant --load-trace patch 2
2017
2018 Fri Oct 17 18:25:42 HKT 2003 William Brack <wbrack@mmm.com.hk>
2019
2020         * libxslt/attributes.c: fixed bug 123822
2021
2022 Fri Oct 17 12:40:37 HKT 2003 William Brack <wbrack@mmm.com.hk>
2023
2024         * libxslt/pattern.c: fixed bug 119946
2025         * configure.in: enhanced for better devel (me) testing
2026
2027 Wed Oct 15 17:30:43 CEST 2003 Daniel Veillard <daniel@veillard.com>
2028
2029         * configure.in: applied a small patch from Troels Walsted Hansen
2030           for python libxml2 detection.
2031
2032 Sat Sep 27 18:42:57 PDT 2003 William Brack <wbrack@mmm.com.hk>
2033
2034         * libxslt/numbers.c, libxslt/extensions.c, libexslt/date.c,
2035           python/libxslt.c, xsltproc/xsltproc.c: minor cleanup for
2036           various compilation warnings (AIX as well as gcc)
2037
2038 Sat Sep 27 17:29:43 CEST 2003 Daniel Veillard <daniel@veillard.com>
2039
2040         * libexslt/saxon.c: applied patch from Brett Kail to implement
2041           saxon:line-number()
2042
2043 Thu Sep 25 11:46:40 CEST 2003 Daniel Veillard <daniel@veillard.com>
2044
2045         * libxslt/extensions.h libxslt/extra.h: fix some header paths
2046           as pointed by Steve Ball
2047
2048 Wed Sep 24 23:31:45 CEST 2003 Daniel Veillard <daniel@veillard.com>
2049
2050         * libxslt/extensions.c: applied patch from Karl Eichwalder
2051           apparently the xmlFree was introducting a memory error
2052           on x86_64, though not reproduced.
2053         * libxslt/transform.c: patch from Shaun McCance fixing a comment.
2054
2055 Thu Sep 18 11:32:20 CEST 2003 Daniel Veillard <daniel@veillard.com>
2056
2057         * python/libxslt.c: don't output errors to stdout by default
2058           use stderr instead.
2059
2060 Thu Sep 18 11:28:43 CEST 2003 Daniel Veillard <daniel@veillard.com>
2061
2062         * libxslt/functions.c libxslt/numbers.c: small fixes w.r.t.
2063           IS_XSLT_REAL_NODE change
2064         * python/Makefile.am Makefile.am: some makefile "distclean"
2065           target improvement from Graham Wilson
2066         * xsltproc/xsltproc.c: small fix from Alexey Efimov for options
2067           display.
2068
2069 Mon Sep 15 07:41:14 PDT 2003 William Brack <wbrack@mmm.com.hk>
2070
2071         * libxslt/xsltutils.h: Added XML_PI_NODE to the macro
2072           IS_XSLT_REAL_NODE, fixed bug 120644.
2073
2074 Sat Sep 13 02:04:13 CEST 2003 Daniel Veillard <daniel@veillard.com>
2075
2076         * xsltproc/xsltproc.c doc/xsltproc.1 doc/xsltproc.xml
2077           libxslt/xsltutils.h: removing the DocBook SGML support
2078
2079 Fri Sep 12 13:52:07 CEST 2003 Daniel Veillard <daniel@veillard.com>
2080
2081         * configure.in: preparing release libxslt-1.0.33
2082         * doc/*: updated and rebuilt the docs
2083         * doc/apibuild.py: small fixes for new tokens
2084
2085 Wed Sep 10 23:32:42 PDT 2003 William Brack <wbrack@mmm.com.hk>
2086
2087         * transform.c: enhanced previous fix to bug #120684, using
2088           excellent suggestion by Daniel
2089         * attributes.c: fixed bug #119583, merging attribute sets
2090           from imported stylesheets.
2091         * tests/docs/Makefile.am tests/docs/bug-131.xml
2092           tests/general/Makefile.am tests/docs/bug-131*: added tests
2093           to the regression suite for bug #120684.
2094           
2095 Sat Sep  6 09:57:03 PDT 2003 William Brack <wbrack@mmm.com.hk>
2096
2097         * pattern.c pattern.h imports.c: fixed bug 119946, caused by
2098           incorrect creation of "extra" variables when compiling
2099           templates on imported stylesheets.
2100         * tests/docs/Makefile.am tests/docs/bug-130.xml tests/docs/bug-130.doc
2101           tests/general/Makefile.am test/docs/bug-130*: added tests
2102           to the regression suite for this bug.
2103
2104
2105 Wed Sep  3 15:33:40 CEST 2003 Daniel Veillard <daniel@veillard.com>
2106
2107         * tests/xmlspec/*.html: tyny change HTML -> html DOCTYPE due to
2108           a libxml2 change
2109
2110 Tue Sep  2 18:22:46 PDT 2003 William Brack <wbrack@mmm.com.hk>
2111
2112         * transform.c: fixing bug #120684 on crash caused by text between
2113           apply-templates
2114
2115 Tue Sep  2 16:05:37 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com>
2116
2117         * libxslt/xsltexports.h libexslt/exsltexports.h: defined additional 
2118           macros which affect exports and added mingw section
2119
2120 Mon Sep  1 23:02:12 CEST 2003 Daniel Veillard <daniel@veillard.com>
2121
2122         * libxslt/function.c: patch from Mark Vadoc to allow compiling
2123           against libxml2 without XPointer supoort.
2124
2125 Fri Aug 29 12:28:12 CEST 2003 Daniel Veillard <daniel@veillard.com>
2126
2127         * libxslt/transform.c: fixing the bug #120971 on cdata-section-elements
2128           with namespaced names reported by Steve Hay
2129         * tests/docs/Makefile.am tests/docs/bug-129.*
2130           tests/general/Makefile.am tests/general/bug-129*: added the
2131           test to the regression suite for this bug.
2132
2133 Thu Aug 28 18:30:11 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com>
2134
2135         * libxslt/xsltexports.h libexslt/exsltexports.h: fixed typos reported by
2136           Mark Vakoc 
2137
2138 Wed Aug 27 12:07:13 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com>
2139
2140         * libxslt/*.h: realigned parameters after taint
2141
2142 Wed Aug 27 09:59:54 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com>
2143
2144         * libxslt/xsltexports.h libexslt/exsltexports.h: fixed defs for 
2145           Borland compiler, as reported by Eric Zurcher
2146
2147 Mon Aug 25 13:39:40 CEST 2003 Daniel Veillard <daniel@veillard.com>
2148
2149         * libxslt/Makefile.am libexslt/Makefile.am: add the new header so they
2150           get included in the distrib
2151
2152 Mon Aug 25 11:56:02 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com>
2153
2154         * libxslt/*.h libexslt/*.h: exportability taint of the headers.
2155         * libxslt/xsltexports.h libexslt/exsltexports.h: new files,
2156           contain the export defs.
2157
2158 Tue Aug 19 00:38:46 CEST 2003 Daniel Veillard <daniel@veillard.com>
2159
2160         * xsltproc/Makefile.am libxslt/libxslt.h libxslt/numbersInternals.h
2161           libexslt/*.c configure.in: applied patch from Mikhail Grushinskiy
2162           for compilation with MingW compiler on Windows.
2163
2164 Mon Aug 18 14:42:12 HKT 2003 William Brack <wbrack@mmm.com.hk>
2165
2166         * keys.c: enhanced xsltInitCtxtKey to take care of multiple
2167           instances of a key with the same namespace:name, reported
2168           on the mailing list by Ian Young.  Added regression test
2169           (bug-128).
2170
2171 Thu Aug 15 13:00:02 HKT 2003 William Brack <wbrack@mmm.com.hk>
2172
2173         * variables.c: fixed bug 119699 (missing error on shadowed
2174           variable)
2175         * autogen.sh: removed dependency on automake-1.4, updated
2176           links for fetching auto* tools
2177         * doc/Makefile.am: added check for automatic regeneration of
2178           win32/*.def.src when api xml files are updated.
2179
2180 Thu Aug 14 23:15:14 HKT 2003 William Brack <wbrack@mmm.com.hk>
2181
2182         * transform.c: fixed bug 114563 (params not passed when
2183           default template processed)
2184
2185 Thu Aug 14 22:04:37 HKT 2003 William Brack <wbrack@mmm.com.hk>
2186
2187         * xslt.c: fixed bug 119862 (missing param on ns error print)
2188
2189 Sun Aug 10 00:21:48 CEST 2003 Daniel Veillard <daniel@veillard.com>
2190
2191         * News configure.in: preparing libxslt-1.0.32 release
2192         * doc/* : updated the doc and rebuilt
2193
2194 Thu Aug  7 21:02:07 HKT 2003 William Brack <wbrack@mmm.com.hk>
2195
2196         * breakpoint/Makefile.am: removed ref to libxslt.la
2197         * numbers.c transform.c python/libxml_wrap.h python/types.c
2198           xlstproc/xsltproc.c: Minor cleanup of warning errors
2199
2200 Mon Aug  4 22:43:05 CEST 2003 Daniel Veillard <daniel@veillard.com>
2201
2202         * doc/libxslt-api.xml doc/* doc/html/*: revuilt the API and docs
2203
2204 Sun Aug  3 21:34:44 EDT 2003 Daniel Veillard <daniel@veillard.com>
2205
2206         * tests/docs/Makefile.am tests/docs/bug-127.*
2207           tests/general/Makefile.am tests/general/bug-127*: added the
2208           test from bug #118763 to the regression suite.
2209
2210 Sun Aug  3 17:40:13 EDT 2003 Daniel Veillard <daniel@veillard.com>
2211
2212         * xsltproc/xsltproc.c: minor change, avoid wasting CPU cycles
2213
2214 Sun Aug 3 21:05:07 HKT 2003 William Brack <wbrack@mmm.com.hk>
2215
2216         Minor cleanup of regression test general/bug-125
2217
2218 Sun Aug 3 19:46:42 HKT 2003 William Brack <wbrack@mmm.com.hk>
2219
2220         Fixed bug 116517 - handling of '{' and '}'
2221         * templates.c: added checks for escaping and balancing of
2222           curly brackets
2223         * tests/general/Makefile.am tests/docs/Makefile.am:
2224           Added test case (bug-126) to regression suite.
2225
2226 Sun Aug 3 15:50:51 HKT 2003 William Brack <wbrack@mmm.com.hk>
2227
2228         Fixed bug 117552 - sort with multiple keys
2229         * xsltutils.c: enhanced treatment of NaN when multiple sort
2230           keys are specified.
2231         * tests/general/Makefile.am tests/docs/Makefile.am:
2232           Added test case (bug-125) to regression suite.
2233           
2234 Sat Aug 2 09:55:38 HKT 2003 William Brack <wbrack@mmm.com.hk>
2235
2236         Fixing bug 118561 (IRIX MIPSPro compiler warnings)
2237         * transform.c, variables.c, xslt.c, xsltutils.c:
2238           removed some unused variables
2239   
2240 Thu Jul 31 20:33:12 HKT 2003 William Brack <wbrack@mmm.com.hk>
2241
2242         Fixing bug 118558 (Solaris 8 compiler warnings)
2243         * xslt.c: minor re-ordering of code
2244         * functions.c: added an explicit cast
2245         * number.c: added include for string.h
2246         * security.c: added an explicit cast
2247
2248 Tue Jul 29 12:43:17 HKT 2003 William Brack <wbrack@mmm.com.hk>
2249
2250         * libexslt/date.c test/exslt/data/seconds.1 : changed sign
2251           of date:seconds as previously posted to the mailing list
2252         * numbers.c: extensive modification to cater for UTF8 within
2253           the various routines.
2254
2255 Thu Jul 24 19:38:56 IST 2003 Daniel Veillard <daniel@veillard.com>
2256
2257         * libexslt/strings.c: applied patch from Shaun McCance to fix bug
2258           #117616 about EXST str:tokenize.
2259         * tests/exslt/strings/Makefile.am tests/exslt/strings/tokenize.3.*:
2260           added the test in the regression suite.
2261
2262 Wed Jul 23 21:57:39 IST 2003 Daniel Veillard <daniel@veillard.com>
2263
2264         * xsltproc/xsltproc.c: applying a patch based on #117377
2265           for --path option.
2266
2267 Mon Jul 21 20:28:11 IST 2003 Daniel Veillard <daniel@veillard.com>
2268
2269         * libxslt/transform.c: allow strip-space to support full namespaces
2270           using prefix:* , should fix #114287
2271         * tests/docs/Makefile.am tests/docs/bug-124.*
2272           tests/general/Makefile.am tests/general/bug-124*: added a
2273           test to the regression suite for this bug.
2274
2275 Mon Jul 21 20:09:57 IST 2003 Daniel Veillard <daniel@veillard.com>
2276
2277         * libxslt/tramsform.c: make xsl:copy on attribute a copy in case
2278           the attribute was already defined, should fix bug #113812
2279         * tests/docs/Makefile.am tests/docs/bug-123.*
2280           tests/general/Makefile.am tests/general/bug-123*: added the
2281           test to the regression suite.
2282
2283 Fri Jul 18 13:13:52 CEST 2003 Daniel Veillard <daniel@veillard.com>
2284
2285         * libexslt/strings.c: applied patch from Shaun McCance to implement
2286           exslt:split c.f. #117752
2287         * tests/exslt/strings/Makefile.am tests/exslt/strings/split.1.*:
2288           added the test to the regression suite.
2289
2290 Thu Jul 17 10:35:22 CEST 2003 Daniel Veillard <daniel@veillard.com>
2291
2292         * libxslt/numbers.c: quick fix for an HP-UX compilation problem,
2293           might require more attention could be an Unicode support breakage.
2294
2295 Wed Jul 16 10:46:35 CEST 2003 Daniel Veillard <daniel@veillard.com>
2296
2297         * libxslt/numbers.c libxslt/transform.c libxslt/transform.h
2298           libxslt/xsltInternals.h: optimize text node coalescing by 
2299           caching info about the last text node generated and doing
2300           fast alloc/copy of the text. Should fix #115273
2301
2302 Mon Jul 14 13:00:00 HKT 2003 William Brack <wbrack@mmm.com.hk>
2303
2304         * fixed bug 113520, incorrect result for date:seconds
2305           with change to type casting in libexslt/date.c
2306
2307 Sat Jul 12 20:35:28 HKT 2003 William Brack <wbrack@mmm.com.hk>
2308
2309         * fixed bug 114764: trouble with globals and RVT's
2310           with minor changes in variables.c and transform.c
2311           so that any global instantiated with an RVT gets
2312           uninitialized when the RVT is destroyed.
2313           
2314 Thu Jul 10 15:47:33 CEST 2003 Daniel Veillard <daniel@veillard.com>
2315
2316         * libxslt/transform.c: simple cast missing Peter Breitenlohner
2317         * breakpoint/Makefile.am: added deps to libxslt
2318         * tests/exslt/common/Makefile.am: integrated William Brack test
2319           in the regression suite
2320
2321 Wed Jul  9 21:27:43 HKT 2003 William Brack <wbrack@mmm.com.hk>
2322
2323         * fixed bug 114812, trouble with imported exslt functions
2324           added lookup function in libxslt/extension.c
2325           enhanced exsltInitFunc in libexslt/functions.c to take
2326           better care of imports
2327
2328 Wed Jul  9 12:19:34 CEST 2003 Daniel Veillard <daniel@veillard.com>
2329
2330         * python/generator.py python/libxslt-python-api.xml python/libxslt.c
2331           python/libxslt_wrap.h python/libxsltclass.txt: patch from
2332           Sean Treadway, adding Python bindings for extension element and
2333           some bindings cleanups.
2334         * python/tests/Makefile.am python/tests/extelem.py: also add an
2335           example/test.
2336
2337 Tue Jul  8 12:20:11 CEST 2003 Daniel Veillard <daniel@veillard.com>
2338
2339         * python/libxml_wrap.h: applied patch from #116943 which should
2340           fix the xsltSaveResultToFile python binding.
2341
2342 Mon Jul  7 11:03:18 CEST 2003 Daniel Veillard <daniel@veillard.com>
2343
2344         * INSTALL: removed an old reference to libxml2 >= 2.2.12
2345
2346 Sun Jul  6 23:57:35 CEST 2003 Daniel Veillard <daniel@veillard.com>
2347
2348         * configure.in: releasing 1.0.31
2349         * doc/*: update and rebuild of the docs
2350
2351 Sun Jul  6 18:31:56 CEST 2003 Daniel Veillard <daniel@veillard.com>
2352
2353         * libxslt/transform.c: fixing bug #115913 for xsl:copy with namespace
2354           nodes.
2355         * tests/docs/Makefile.am tests/docs/bug-122.*
2356           tests/general/Makefile.am tests/general/bug-122*: added the
2357           test to the regression suite.
2358         
2359 Sun Jul  6 18:09:13 CEST 2003 Daniel Veillard <daniel@veillard.com>
2360
2361         * libxslt/preproc.c: fix bug #115778 for attribute value template
2362           on xsl:sort order
2363
2364 Sun Jul  6 17:22:35 CEST 2003 Daniel Veillard <daniel@veillard.com>
2365
2366         * libxslt/documents.c libxslt/transform.c: applied patch from
2367           Keith Isdale to desactivate node numbering when running under
2368           the debugger.
2369
2370 Sun Jul  6 00:00:31 CEST 2003 Daniel Veillard <daniel@veillard.com>
2371
2372         * libxslt/security.c: fix the write checking code when
2373           the output filename does not parse as an URL bug #115402
2374
2375 Sun Jun 22 19:38:04 CEST 2003 Daniel Veillard <daniel@veillard.com>
2376
2377         * libxslt/Makefile.am: Albert Chin pointed out that trio.h and
2378           triodef.h were missing from the distribution
2379
2380 Fri Jun 13 16:53:33 CEST 2003 Daniel Veillard <daniel@veillard.com>
2381
2382         * libxslt.spec.in libexslt/Makefile.am libexslt/libexslt.3
2383           libxslt/Makefile.am libxslt/libxslt.3: Moved the man pages
2384           to section 3
2385         * libexslt/sets.c: applied patch from Peter Breitenlohner
2386         * doc/*: rebuilt the docs
2387         * tests/docbook/result//* tests/xmlspec/*.html: changes in
2388           generattion of &quot; as " in element content.
2389
2390 Sun Jun 08 22:57:13 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com>
2391
2392         * libxslt/transform.c: changed xsltChoose to ignore whitespace 
2393           which is a sibling of xsl:when
2394
2395 Sat May 31 17:18:21 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com>
2396
2397         * libxslt/xslt.c: fixed a possible crash when the document
2398           wasn't a proper stylesheet.
2399
2400 Tue May 20 12:14:12 CEST 2003 Daniel Veillard <daniel@veillard.com>
2401
2402         * libxslt/variables.c: fixes a 64bits cleanliness issue #113318
2403
2404 Sat May 17 13:25:32 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com>
2405
2406         * win32/defgen.xsl: new file, generates the export sources.
2407         * win32/*.def.src: these are now autogenerated, changes to these
2408           will not be logged anymore.
2409
2410 Fri May 16 13:22:31 EDT 2003 Daniel Veillard <daniel@veillard.com>
2411
2412         * tests/docs/Makefile.am tests/docs/bug-121.*
2413           tests/general/Makefile.am tests/general/bug-121*: added the
2414           example for bug #112904 in the regression tests, the bug fix is
2415           actually in libxml2
2416
2417 Thu May 15 16:26:34 EDT 2003 Daniel Veillard <daniel@veillard.com>
2418
2419         * xsltproc/xsltproc.c: fixing portability bug #113002 on HP-UX
2420         * configure.in libxslt.spec.in python/Makefile.am: cleanup
2421           of --with-python like for libxml2
2422
2423 Thu May 15 11:45:00 HKT 2003 William Brack <wbrack@mmm.com.hk>
2424
2425         * libxslt/xsltutils.c: fixing bug #112995, a problem with
2426           NaN within the sort element. Also added regression test.
2427
2428 Tue May 13 18:22:38 EDT 2003 Daniel Veillard <daniel@veillard.com>
2429
2430         * doc/Makefile.am: fixing bug #112803 , make sure to avoid
2431           network accesses when building
2432
2433 Sat May 10 14:19:14 EDT 2003 Daniel Veillard <daniel@veillard.com>
2434
2435         * libxslt/transform.c: fixed a segfault introduced with the RVT
2436           handling change, bug #112703 .
2437
2438 Sat May 10 13:05:21 EDT 2003 Daniel Veillard <daniel@veillard.com>
2439
2440         * libxslt/xslt.c: make sure stylesheet compilation errors
2441           forces a NULL stylesheet, fixes #112270
2442
2443 Sun May  4 17:41:23 CEST 2003 Daniel Veillard <daniel@veillard.com>
2444
2445         * NEWS configure.in : preparing release 1.0.30
2446         * doc/apibuild.py: backported a patch from libxml2
2447         * doc/*: updated and rebuilt the docs
2448
2449 Wed Apr 30 22:44:49 CEST 2003 Daniel Veillard <daniel@veillard.com>
2450
2451         * libxslt/transform.c libxslt/variables.c libxslt/xsltInternals.h:
2452           cleaning up Result Value Tree handling
2453         * libexslt/functions.c libexslt/strings.c: fixed a pair of
2454           implementations.
2455         * tests/exslt/strings/Makefile.am tests/exslt/strings/tokenize.2.*:
2456           added Mark Vakoc test combining for-each and exslt:tokenize
2457
2458 Wed Apr 30 15:23:33 CEST 2003 Daniel Veillard <daniel@veillard.com>
2459
2460         * libxslt/transform.c: fixing bug #111755 when a template is
2461           applied to an attribute
2462         * tests/docs/Makefile.am tests/docs/bug-119.*
2463           tests/general/Makefile.am tests/general/bug-119*: added the
2464           example in the regression tests for that bug.
2465
2466 Tue Apr 29 15:18:31 CEST 2003 Daniel Veillard <daniel@veillard.com>
2467
2468         * doc/Makefile.am doc/libxslt.xml: upgraded to the XML/XSLT toolchain
2469           for the HTML generation fixing #111799
2470         * doc/html/*.html doc/html/*.png: associated update
2471
2472 Sun Apr 27 18:00:12 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com>
2473
2474         * libxslt/variables.c: removed premature call to xsltFreeStackElem
2475         * win32/libxslty.def.src: added more exports
2476
2477 Sun Apr 27 12:46:31 CEST 2003 Daniel Veillard <daniel@veillard.com>
2478
2479         * NEWS doc/*.xsl doc/*.html: updated the web site, made the
2480           transition to XHTML1 added validity checking to the makefile rules.
2481
2482 Sat Apr 26 14:00:58 CEST 2003 Daniel Veillard <daniel@veillard.com>
2483
2484         * python/generator.py: fixed a problem in the generator where
2485           the way functions are remapped as methods on classes was
2486           not symetric and dependant on python internal hash order,
2487           as reported by Stéphane Bidoul
2488         * libexslt/strings.c: attempt at fixing an object type pbm
2489         * libxslt/triodef.h: update for OpenVMS from libxml2
2490
2491 Fri Apr 25 15:26:26 CEST 2003 Daniel Veillard <daniel@veillard.com>
2492
2493         * doc/Makefile.am doc/xsltproc.1 doc/xsltproc.xml: automated the
2494           generation of the man page
2495
2496 Wed Apr 23 23:27:44 CEST 2003 Daniel Veillard <daniel@veillard.com>
2497
2498         * libexslt/sets.c: fixed a bug introduced in the last commit
2499         * libxslt/transform.c: tried to fix #111437
2500         * tests/docbook/result/xtchunk/html/*.orig
2501           tests/multiple/out/*.orig: side effect of #111437 change.
2502
2503 Wed Apr 23 22:41:08 CEST 2003 Daniel Veillard <daniel@veillard.com>
2504
2505         * libexslt/strings.c: applied last patch for #110023 from 
2506           Mark Vakoc
2507         * libexslt/sets.c: fixed a memory leak when mixing one of the
2508           EXSLT set functions and a Result Value Tree
2509         * TODO: there are other bugs around in libexslt/sets.c in conjunction
2510           with Result Value Tree
2511
2512 Wed Apr 23 17:00:16 CEST 2003 Daniel Veillard <daniel@veillard.com>
2513
2514         *  libxslt/extensions.c: patch from Vasily Tchekalkin fixing
2515            bug #111420 about double initialization of extension contexts
2516
2517 Wed Apr 23 14:25:46 CEST 2003 Daniel Veillard <daniel@veillard.com>
2518
2519         * libxslt/transform.c: fix bug #110577 namespace in copy-of
2520           don't obbey the same rules as for literal reusl elements.
2521         * tests/docs/Makefile.am tests/docs/bug-118.*
2522           tests/general/Makefile.am tests/general/bug-118*: added the
2523           example in the regression tests for that bug.
2524         * libxslt/variables.c: fixed a bug introduced in fixing #110020
2525         * tests/docs/Makefile.am tests/docs/bug-11[67].*
2526           tests/general/Makefile.am tests/general/bug-11[67]*: added 2
2527           regression tests one still exposing a mem leak (Mark Vadoc).
2528
2529 Tue Apr 22 16:01:25 CEST 2003 Daniel Veillard <daniel@veillard.com>
2530
2531         * libxslt/pattern.c: fix a memory related segfault on a
2532           pattern compilation error #110189
2533
2534 Tue Apr 22 15:45:25 CEST 2003 Daniel Veillard <daniel@veillard.com>
2535
2536         * libxslt/variables.c: fixing bug #110020 on global parameter
2537           and variables mismatch
2538         * tests/reports/Makefile.am tests/reports/cmdlineparams.*: added
2539           the test to the regression suite
2540
2541 Mon Apr 21 12:22:31 CEST 2003 Daniel Veillard <daniel@veillard.com>
2542
2543         * libexslt/math.c: applied patch from Charles Bozeman fixing
2544           the math power function where args were inverted #110996
2545         * tests/exslt/math/Makefile.am tests/exslt/math/power.1.*:
2546           added the test to the regraession for #110996
2547         * libexslt/sets.c: avoid a problem with nodesets.
2548
2549 Wed Apr 14 18:10:21 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com>
2550
2551         * libxslt/win32config.h: added HAVE_MATH_H
2552           
2553 Wed Apr 13 14:04:15 CEST 2003 Igor Zlatkovic <igor@zlatkovic.com>
2554
2555         * win32/Makefile.msvc: fixed compilation with thread-enabled
2556           libxml
2557           
2558 Wed Apr  9 22:02:17 CEST 2003 Daniel Veillard <daniel@veillard.com>
2559
2560         * libexslt/strings.c: applied patch from Mark Vakoc fixing a problem
2561           with RTF in libexslt
2562
2563 Mon Apr  7 14:39:01 CEST 2003 Daniel Veillard <daniel@veillard.com>
2564
2565         * libxslt/keys.c libxslt/templates.c libxslt/transform.c
2566           libxslt/variables.c: Fixes bug #110023 reported by Mark Vakoc and
2567           other places where ctxt->document pointer may be used without 
2568           checking it agaisnt NULL.
2569         * tests/docs/Makefile.am tests/docs/bug-115.*
2570           tests/general/Makefile.am tests/general/bug-115*: added the
2571           example in the regression tests for that bug.
2572         * libxslt/trio.h libxslt/triodef.h: update of Trio from Bjorn Reese
2573
2574 Tue Apr  1 13:39:26 CEST 2003 Daniel Veillard <daniel@veillard.com>
2575
2576         * configure.in NEWS: preparing 1.0.29 release
2577         * libxslt/documents.c: generate the document order for document()
2578           loaded resources.
2579         * doc/*: updated and regenerated the docs
2580
2581 Tue Apr  1 11:28:01 CEST 2003 Daniel Veillard <daniel@veillard.com>
2582
2583         * libxslt/transform.c: fixed a namespace redundancy problem
2584           in xsl:element
2585         * tests/docs/Makefile.am tests/docs/bug-114.*
2586           tests/general/Makefile.am tests/general/bug-114*: added an
2587           example in the regression tests for that bug.
2588
2589 Fri Mar 28 12:19:35 CET 2003 Daniel Veillard <daniel@veillard.com>
2590
2591         * python/libxsl.py: fix bug #109395 as pointed out by Ben Phillips
2592           and avoid some warnings when loading the python modules on non
2593           Linux platforms.
2594         * libxslt/transform.c: fix a bug introduced in the document lookup
2595           and exhibited by the keys test.
2596
2597 Wed Mar 26 22:41:00 CET 2003 Daniel Veillard <daniel@veillard.com>
2598
2599         * tests/docs/Makefile.am tests/docs/bug-113.*
2600           tests/general/Makefile.am tests/general/bug-113*: added an
2601           example in the regression tests for bug #109160 fixed in libxml2
2602
2603 Wed Mar 26 21:43:30 CET 2003 Daniel Veillard <daniel@veillard.com>
2604
2605         * configure.in python/Makefile.am python/libxslt.c libxslt/xsltutils.c
2606           libxslt/trio.h libxslt/triodef.h: portability fixes from Albert Chin
2607         * python/libxslt.py: avoid RTLD_GLOBAL detection warning too
2608
2609 Wed Mar 26 19:08:55 CET 2003 Daniel Veillard <daniel@veillard.com>
2610
2611         * libxslt/transform.c: forgot to make one change related to
2612           Result Value Tree change, pointed out by Sebastian Rahtz
2613         * tests/docs/Makefile.am tests/docs/bug-112.*
2614           tests/general/Makefile.am tests/general/bug-112*: added an
2615           example in the regression tests that bug
2616
2617 Wed Mar 26 01:38:38 CET 2003 Daniel Veillard <daniel@veillard.com>
2618
2619         * libxslt/transform.c: second part of the patch fixing #108905
2620           performances problems, ask for computation of document order on
2621           the document transformed and avoid inefficiencies building large
2622           nodesets of unique nodes.
2623         * configure.in: fix a trouble with libtool in my debug environment.
2624
2625 Mon Mar 24 22:30:00 CET 2003 Daniel Veillard <daniel@veillard.com>
2626
2627         * libxslt/pattern.c libxslt/transform.c libxslt/variables.c:
2628           Result Value Tree are now generated with a document root node
2629           not an element, it's quite cleaner.
2630         * configure.in libxslt.spec.in NEWS: But this requires libxml2-2.5.5
2631           also prepared for libxslt-1.0.28 release
2632         * doc/*: updated and regenerated the docs
2633
2634 Mon Mar 24 15:01:07 CET 2003 Daniel Veillard <daniel@veillard.com>
2635
2636         * libxslt/pattern.c libxslt/transform.c libxslt/variables.c:
2637           Finally fixed bug #75813, processing or Result Value Tree 
2638           converted into node-sets should be a bit more sensible now.
2639         * tests/exslt/common/node-set.2.out: the associated fix in libxml2
2640           fixes this regression test, there is 4 nodes, not 3
2641         * tests/docs/Makefile.am tests/docs/bug-111.*
2642           tests/general/Makefile.am tests/general/bug-111*: added an
2643           example in the regression tests for bug #75813
2644         
2645 Sun Mar 23 13:09:17 CET 2003 Daniel Veillard <daniel@veillard.com>
2646
2647         * tests/docs/Makefile.am tests/docs/bug-110.*
2648           tests/general/Makefile.am tests/general/bug-110*: added an
2649           example in the regression tests for bug #108976 which is
2650           fixed in libxml2
2651
2652 Sat Mar 22 12:35:47 CET 2003 Daniel Veillard <daniel@veillard.com>
2653
2654         * tests/docs/Makefile.am tests/docs/bug-109.xml
2655           tests/general/Makefile.am tests/general/bug-109*: added an
2656           example in the regression tests for the invalid bug #108716
2657
2658 Sat Mar 22 12:01:24 CET 2003 Daniel Veillard <daniel@veillard.com>
2659
2660         * libxslt/variables.c: fixed bug #108633 reported by
2661           Jerome Pesenti about recursive global variables/param detections
2662         * tests/reports/Makefile.am tests/reports/rec*: added regression
2663           tests for the checking of recusion in global/local param/variables.
2664
2665 Fri Mar  7 16:08:24 CET 2003 Daniel Veillard <daniel@veillard.com>
2666
2667         * libxslt/numbers.c: valgrind pointed out an uninitialized
2668           variable use in format-number()
2669
2670 Fri Mar  7 15:27:56 CET 2003 Daniel Veillard <daniel@veillard.com>
2671
2672         * tests/docs/Makefile.am tests/docs/bug-108.xml
2673           tests/general/Makefile.am tests/general/bug-108*: added an
2674           example in the regression tests bug #107804 fixed in libxml2
2675
2676 Wed Mar  5 12:47:31 CET 2003 Daniel Veillard <daniel@veillard.com>
2677
2678         * libxslt/pattern.c: fixed bug #107591 node() in pattern
2679           matches should catch comments and PIs
2680         * tests/docs/Makefile.am tests/docs/bug-107.xml
2681           tests/general/Makefile.am tests/general/bug-107*: added an
2682           example in the regression tests for this case
2683
2684 Wed Feb 26 16:49:17 CET 2003 Daniel Veillard <daniel@veillard.com>
2685
2686         * tests/docs/Makefile.am tests/docs/bug-106.xml
2687           tests/general/Makefile.am tests/general/bug-106*: added the next
2688           example for bug #106788 from James Clark in the regression tests,
2689           the bug fix is actually in libxml2
2690
2691 Tue Feb 25 16:19:45 CET 2003 Daniel Veillard <daniel@veillard.com>
2692
2693         * configure.in doc/Makefile.am xsltproc/Makefile.am: some cleanup
2694           for Python checks, makefile cleanup, and convenience changes
2695
2696 Mon Feb 24 23:49:01 CET 2003 Daniel Veillard <daniel@veillard.com>
2697
2698         * xsltproc/xsltproc.c: had to comment out Igor last change
2699           since it made libxslt-1.0.27 depends on libxml2 newly 
2700           API extension which hasn't propagated yet :-(
2701
2702 Mon Feb 24 22:21:09 CET 2003 Daniel Veillard <daniel@veillard.com>
2703
2704         * configure.in: preparing release 1.0.27
2705         * doc/*: updated and rebuilt the docs
2706
2707 Mon Feb 24 19:43:15 CET 2003 Daniel Veillard <daniel@veillard.com>
2708
2709         * libxslt/namespaces.c: fixed #106554 for spurious xmlns:nsX=""
2710           generation
2711
2712 Sun Feb 23 14:52:57 CET 2003 Daniel Veillard <daniel@veillard.com>
2713
2714         * tests/docs/Makefile.am tests/docs/bug-105.xml
2715           tests/general/Makefile.am tests/general/bug-105*: added the
2716           example for bug #106788 from James Clark in the regression tests,
2717           the bug fix is actually in libxml2
2718
2719 Sun Feb 23 14:25:13 CET 2003 Daniel Veillard <daniel@veillard.com>
2720
2721         * libxslt/namespaces.c libxslt/transform.c: fixed bug #106789 from
2722           James Clark and a bit of cleanup
2723         * tests/docs/Makefile.am tests/docs/bug-104.xml
2724           tests/general/Makefile.am tests/general/bug-104*: added the
2725           example in the regression tests for this case
2726
2727 Fri Feb 21 17:07:59 CET 2003 Daniel Veillard <daniel@veillard.com>
2728
2729         * libxslt.spec.in: fixed RH#84801 wrong prereqs in the spec file
2730
2731 Wed Feb 19 18:51:06 CET 2003 Igor Zlatkovic <igor@zlatkovic.com>
2732
2733         * libxslt/functions.c libxslt/xslt.c: fixed bug 106251
2734
2735 Wed Feb 19 15:52:33 CET 2003 Igor Zlatkovic <igor@zlatkovic.com>
2736
2737         * xsltproc/xsltproc.c: obsoleted xmlNormalizeWindowsPath
2738         * win32/configure.js: included handling of the trio option
2739
2740 Mon Feb 10 17:34:32 CET 2003 Daniel Veillard <daniel@veillard.com>
2741
2742         * configure.in doc/*: preparing release 1.0.26
2743
2744 Fri Feb  7 15:47:20 CET 2003 Daniel Veillard <daniel@veillard.com>
2745
2746         * libxslt/functions.c: fixing another bug in document(), bug #105450
2747         * tests/documents/test_bad.result: Slight change to the output
2748
2749 Fri Feb  7 15:34:24 CET 2003 Daniel Veillard <daniel@veillard.com>
2750
2751         * libxslt/functions.c: fixing a segfault in document(), bug #105418
2752         * tests/documents/Makefile.am tests/documents/test_bad: add the
2753           specific test as suggested by Jean T Anderson
2754
2755 Fri Feb  7 14:18:40 CET 2003 Daniel Veillard <daniel@veillard.com>
2756
2757         * libxslt/extensions.c libxslt/keys.c libxslt/pattern.c
2758           libxslt/preproc.c libxslt/transform.c libxslt/variables.c
2759           libxslt/xslt.c: tried to fix 105387 and all similar cases
2760           in the library sources.
2761
2762 Wed Feb  5 16:04:10 CET 2003 Daniel Veillard <daniel@veillard.com>
2763
2764         * doc/* configure.in: preparing for release of 1.0.25
2765
2766 Wed Feb  5 00:07:43 CET 2003 Daniel Veillard <daniel@veillard.com>
2767
2768         * xsltproc/xsltproc.c: fixed bug #99623
2769
2770 Tue Feb  4 22:10:17 CET 2003 Daniel Veillard <daniel@veillard.com>
2771
2772         * libxslt/transform.c: fixing bug #105116 sometimes one need
2773           to generate a default namespace reset xmlns="" in the output
2774         * tests/docs/Makefile.am tests/docs/bug-103.xml
2775           tests/general/Makefile.am tests/general/bug-103*: added the
2776           example in the regression tests for this case
2777
2778 Tue Feb  4 18:39:35 CET 2003 Daniel Veillard <daniel@veillard.com>
2779
2780         * libxslt/pattern.c libxslt/transform.c: changed the way the
2781           root element of value tree are handled to fix bug #104123
2782
2783 Tue Feb  4 18:15:01 CET 2003 Daniel Veillard <daniel@veillard.com>
2784
2785         * README: change of policy w.r.t. mails
2786         * configure.in: small cleanup
2787         * libxslt/transform.c libxslt/xslt.c libxslt/variables.c: fixed
2788           a couple of bugs raised by Eric van der Vlist in #104114
2789         * tests/exslt/*/*.out: slight change to the tests
2790
2791 Tue Feb  4 17:18:54 CET 2003 Daniel Veillard <daniel@veillard.com>
2792
2793         * doc/xsltproc.1 doc/xsltproc.xml: fixing bug #104096, put
2794           emphasis on the fact that --docbook should not be used
2795           for XML.
2796
2797 Wed Jan 22 16:43:49 CET 2003 Daniel Veillard <daniel@veillard.com>
2798
2799         * python/libxslt.c: fixed a couple of return error #104150
2800           reported by Peter O'Shea 
2801
2802 Fri Jan 17 17:43:43 CET 2003 Daniel Veillard <daniel@veillard.com>
2803
2804         * xsltproc/xsltproc.c: fixed a double free of stylesheet
2805           when applied to a standalone stylesheet
2806
2807 Tue Jan 14 16:22:48 CET 2003 Daniel Veillard <daniel@veillard.com>
2808
2809         * configure.in: preparing release 2.0.24
2810         * libxslt.spec.in: small update
2811         * doc/*: updated the news, rebuilt the APIs descriptions
2812
2813 Tue Jan 14 14:23:47 CET 2003 Daniel Veillard <daniel@veillard.com>
2814
2815         * libxslt/functions.c: fixed #101502 by applying and cleaning up
2816           the associated patch from Daniel Stodden.
2817         * tests/documents/Makefile.am tests/documents/fragment*: added a
2818           specific test.
2819
2820 Mon Jan 13 23:25:59 CET 2003 Daniel Veillard <daniel@veillard.com>
2821
2822         * libxslt/extensions.c libxslt/transform.c: fixing bug #101602
2823           for extension modules init and shutdown callbacks, check that
2824           they are now called when needed.
2825         * python/libxsl.py python/libxslt-python-api.xml python/libxslt.c:
2826           started adding the extension module support at the Python level.
2827           Still a strange bug to hunt down left.
2828
2829 Sun Jan 12 23:56:18 CET 2003 Daniel Veillard <daniel@veillard.com>
2830
2831         * libxslt/attributes.c libxslt/xsltInternals.h libxslt/imports.c
2832           libxslt/xslt.c: fixed bug #101003 on attribute-sets value
2833           computation in the presence of imports
2834         * tests/docs/Makefile.am tests/docs/bug-102.xml
2835           tests/general/Makefile.am tests/general/bug-102*: added an
2836           example in the regression tests for this case
2837
2838 Fri Jan 10 10:34:23 CET 2003 Daniel Veillard <daniel@veillard.com>
2839
2840         * xsltproc/xsltproc.c: final touch to #102800 fix
2841
2842 Thu Jan  9 18:17:40 CET 2003 Daniel Veillard <daniel@veillard.com>
2843
2844         * xsltproc/xsltproc.c: tried to fix #102800 for good. Reenabled
2845           memory debug checking which got deactivated at some point ?!?
2846         * libexslt/date.c libxslt/attributes.c: fixing some memory leaks
2847         * libxslt/xsltutils.c: very small change on HTML indentation handling
2848
2849 Thu Jan  9 14:28:19 CET 2003 Daniel Veillard <daniel@veillard.com>
2850
2851         * tests/REC/test-8-1.xsl tests/REC/test-9.1-2.xsl 
2852           tests/general/bug-83.xsl tests/multiple/dict.xsl: added some
2853           exclude-result-prefixes to avoid extra namespace declaration being
2854           dumped following the fix for #102920 in libxml2
2855
2856 Wed Jan  8 12:33:47 CET 2003 Daniel Veillard <daniel@veillard.com>
2857
2858         * libxslt/transform.c: fixed a problem related to directory
2859           checking and creation raised by Craig Goss
2860
2861 Thu Jan  2 23:23:30 CET 2003 Daniel Veillard <daniel@veillard.com>
2862
2863         * libexslt/strings.c: applied patch from Jörg Walter to provide
2864           URI escaping and unescaping functions.
2865
2866 Thu Dec 26 15:43:31 CET 2002 Daniel Veillard <daniel@veillard.com>
2867
2868         * libexslt/strings.c: Alexey Efimov found a typo bug in
2869           exsltStrPaddingFunction()
2870
2871 Mon Dec 23 15:43:59 CET 2002 Daniel Veillard <daniel@veillard.com>
2872
2873         * python/libxslt.c: patch from Stéphane Bidoul for Python 2.1
2874
2875 Sun Dec 22 22:54:04 CET 2002 Daniel Veillard <daniel@veillard.com>
2876
2877         * vms/build_xslt.com libxslt/xsltconfig.h.in libxslt/xsltutils.c:
2878           applied patch from Craig A. Berry for the VMS port.
2879
2880 Wed Dec 18 15:41:21 CET 2002 Daniel Veillard <daniel@veillard.com>
2881
2882         * libxslt/xsltInternals.h: increase the max number of cascaded
2883           sort operations.
2884         * AUTHORS doc/* win32/*: updated Igor's mail and the Web page for
2885           the Windows binaries.
2886
2887 Mon Dec 16 19:31:16 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
2888
2889         * win32/libxslt.def.src: added more exports for Stephane Bidoul
2890         
2891 Fri Dec 13 14:50:12 CET 2002 Daniel Veillard <daniel@veillard.com>
2892
2893         * doc/apibuild.py doc/libexslt-api.xml doc/libxslt-api.xml: updated
2894           the apibuilder script, regenerated the APIs
2895
2896 Fri Dec 13 11:59:07 CET 2002 Daniel Veillard <daniel@veillard.com>
2897
2898         * libxslt/numbers.c: numbering should not traverse XInclude
2899           nodes left in the tree. Closes bug #101114 raised by
2900           Bernd Kuemmerlen
2901
2902 Thu Dec 12 01:17:09 CET 2002 Daniel Veillard <daniel@veillard.com>
2903
2904         * doc/apibuild.py: fixed a bug in merging public info from
2905           C modules.
2906         * win32/Makefile.msvc win32/configure.js: patch from Mark Vakoc
2907           the iconv option to configure.js didn't work, and 
2908           added zlib option needed when linking xsltproc statically
2909
2910 Wed Dec 11 19:18:45 CET 2002 Daniel Veillard <daniel@veillard.com>
2911
2912         * doc/Makefile.am doc/apibuild.py doc/libexslt-api.xml: added
2913           the generation of libexslt-api.xml
2914         * libexslt/exslt.h: small cleanup.
2915
2916 Wed Dec 11 18:45:09 CET 2002 Daniel Veillard <daniel@veillard.com>
2917
2918         * doc/Makefile.am doc/apibuild.py doc/libxslt-api.xml:
2919           copied over the apibuild.py from libxml2, adapted a bit and
2920           regenerated the API description in XML. Todo: libexslt-api.xml
2921         * libxslt/attributes.c libxslt/documents.c libxslt/extensions.c
2922           libxslt/imports.c libxslt/numbers.c libxslt/numbersInternals.h
2923           libxslt/pattern.c libxslt/preproc.c libxslt/security.c
2924           libxslt/templates.c libxslt/transform.c libxslt/transform.h
2925           libxslt/variables.c libxslt/xslt.c libxslt/xsltInternals.h
2926           libxslt/xsltutils.c libxslt/xsltutils.h: cleanup based on the
2927           report from the scripts.
2928         * libxslt.spec.in: make sure libxslt-api.xml ends up in the devel
2929           package
2930
2931 Thu Dec  5 18:05:44 CET 2002 Daniel Veillard <daniel@veillard.com>
2932
2933         * libxslt/transform.c: xsl:element generated superfluous xmlns
2934           declarations, closes bug #99905
2935         * tests/docs/Makefile.am tests/docs/bug-101.xml
2936           tests/general/Makefile.am tests/general/bug-101.*: added the
2937           example in the regression tests for this case
2938
2939 Wed Dec  4 18:12:24 CET 2002 Daniel Veillard <daniel@veillard.com>
2940
2941         * libxslt/xslt.c: Matt Sergeant reported a bug when having comments
2942           within an <xsl:text>
2943
2944 Mon Dec  2 17:19:38 CET 2002 Daniel Veillard <daniel@veillard.com>
2945
2946         * libxslt/extensions.c: applied patch from Josh Parsons fixing bug
2947           #100056
2948         * tests/docs/Makefile.am tests/docs/bug-100.xml
2949           tests/general/Makefile.am tests/general/bug-100.*: added the
2950           example in the regression tests for this case
2951         * tests/docs/Makefile.am tests/docs/bug-99.xml
2952           tests/general/Makefile.am tests/general/bug-99.*: this test
2953           covers an xsl:attribute namespace bug that Norm pointed out.
2954
2955 Thu Nov 28 17:52:21 CET 2002 Daniel Veillard <daniel@veillard.com>
2956
2957         * libxslt/xsltInternals.h libxslt/xsltutils.c libxslt/xsltutils.h
2958           win32/libxslt.def.src: applied another patch from Richard Jinks
2959           for the export of teh sorting routine and allowing per context
2960           sort.
2961
2962 Wed Nov 27 13:33:26 CET 2002 Daniel Veillard <daniel@veillard.com>
2963
2964         * libxslt/preproc.c libxslt/xsltInternals.h libxslt/xsltutils.c
2965           libxslt/xsltutils.h: Applied patch from Richard Jinks to allow
2966           redefining the sorting routine, plus a bit of tweaking of the
2967           interfaces.
2968
2969 Tue Nov 26 16:02:38 CET 2002 Daniel Veillard <daniel@veillard.com>
2970
2971         * doc/Makefile.am doc/parsedecl.py: fixed the API generation
2972           scripts.
2973         * doc/libxslt-api.xml doc/libxslt-refs.xml: regenerated
2974         * doc/html/*.html: updated too
2975         * python/libxsltclass.txt: updated too
2976
2977 Tue Nov 26 15:17:13 CET 2002 Daniel Veillard <daniel@veillard.com>
2978
2979         * libxslt/xsltutils.c libxslt/xsltutils.h: added the function
2980           xsltGetProfileInformation() to retrieve profiling informations
2981           from an XSLT transformation context. It returns it as an XML
2982           tree. Provided by Michael Rothwell this closes RFE #99527
2983
2984 Tue Nov 26 14:40:45 CET 2002 Daniel Veillard <daniel@veillard.com>
2985
2986         * libxslt/imports.c: apply patch from Daniel Stodden, a bug
2987           in xsltFindElemSpaceHandling() missing imported informations
2988         * tests/REC/stand-2.7-1.stand.out: this change slightly the result
2989           of this test.
2990
2991 Mon Nov 25 17:33:48 CET 2002 Daniel Veillard <daniel@veillard.com>
2992
2993         * libxslt/namespaces.c: fix for namespace generation on 
2994           attributes created with xsl:attribute
2995
2996 Mon Nov 25 17:30:02 CET 2002 Daniel Veillard <daniel@veillard.com>
2997
2998         * libxslt.spec.in configure.in: add a line in %changelog for releases
2999
3000 Mon Nov 25 14:57:53 CET 2002 Daniel Veillard <daniel@veillard.com>
3001
3002         * libxslt/transform.h: Kir Kolyshkin pointed out it lacked 
3003           xsltInternals.h reference.
3004
3005 Sun Nov 24 15:49:58 CET 2002 Daniel Veillard <daniel@veillard.com>
3006
3007         * python/tests/*.py: enable libxml2 memory debug before
3008           loading libxslt since libxslt initialization now includes
3009           EXSLT registration which initialize the libxml2 library and
3010           allocate memory
3011
3012 Sun Nov 24 13:58:48 CET 2002 Daniel Veillard <daniel@veillard.com>
3013
3014         * python/libxsl.py: updated with new version from Stéphane Bidoul
3015
3016 Sat Nov 23 22:49:08 CET 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
3017
3018         * win32/libxslt.def.src: exported new functions
3019
3020 Sat Nov 23 14:46:06 CET 2002 Daniel Veillard <daniel@veillard.com>
3021
3022         * libexslt/date.c: patch from Charles Bozeman fixing a memory
3023           leak in exsltDateDurationFunction pointed out by Bernard Brinkhus
3024         * python/tests/exslt.py: trouble with mem debug in that specific
3025           test...
3026
3027 Sat Nov 23 12:33:58 CET 2002 Daniel Veillard <daniel@veillard.com>
3028
3029         * libxslt/xsltInternals.h: Alexey Efimov reported a portability
3030           problem when compiling on HP-UX
3031
3032 Sat Nov 23 12:23:32 CET 2002 Daniel Veillard <daniel@veillard.com>
3033
3034         * python/generator.py python/libxslt.c: fixes for compiling
3035           without config.h
3036
3037 Thu Nov 21 18:51:29 CET 2002 Daniel Veillard <daniel@veillard.com>
3038
3039         * libxslt/transform.c: fixed bug #99168 select evaluating to
3040           a node list check
3041
3042 Thu Nov 21 15:12:33 CET 2002 Daniel Veillard <daniel@veillard.com>
3043
3044         * tests/documents/result.xhtml: the XHTML1 serialization change
3045           to libxml2 modifies slightly the result of that test.
3046
3047 Mon Nov 18 11:38:46 CET 2002 Daniel Veillard <daniel@veillard.com>
3048
3049         * configure.in: the python bindings requires libxml2 >= 2.4.25
3050           for the regexp stuff.
3051
3052 Mon Nov 18 10:09:06 CET 2002 Daniel Veillard <daniel@veillard.com>
3053
3054         * configure.in: similar patch to #98825 for --with-python
3055
3056 Sun Nov 17 22:06:59 CET 2002 Daniel Veillard <daniel@veillard.com>
3057
3058         * libxslt/variables.c: fix bug #98793 on clash of imported global
3059           variables.
3060         * tests/reports/tst-1.err: this changes the output of that test
3061
3062 Sun Nov 17 18:12:20 CET 2002 Daniel Veillard <daniel@veillard.com>
3063
3064         * configure.in: preparing 1.0.23
3065         * doc/*: rebuilding the docs
3066
3067 Sat Nov 16 23:23:41 CET 2002 Daniel Veillard <daniel@veillard.com>
3068
3069         * python/libxslt.c: make sure to register EXSLT for the bindings
3070         * python/tests/Makefile.am python/tests/exslt.py: add a specific test
3071         * xsltproc/xsltproc.c: minor cleanup
3072
3073 Fri Nov 15 12:35:57 CET 2002 Daniel Veillard <daniel@veillard.com>
3074
3075         * python/Makefile.am python/tests/Makefile.am: trying to fix #98518
3076           when building outside of the source tree
3077
3078 Thu Nov 14 21:39:37 CET 2002 Daniel Veillard <daniel@veillard.com>
3079
3080         * python/generator.py: xpathObjectRet() pertains to the libxml2
3081           module, add the namespace.
3082
3083 Thu Nov 14 18:48:00 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
3084
3085         * libxslt/win32config.h: cleanup
3086         * win32/Makefile.mingw: new file, integrated mingw in JScript configure
3087         * win32/Makefile.msvc: modified to allow mingw coexistence
3088         * win32/configure.js: integrated mingw
3089         * win32/Readme.txt: cleanup
3090         * xsltproc/xsltproc.c: allowed stdarg for mingw
3091
3092 Thu Nov 14 07:22:23 MST 2002 John Fleck <jfleck@inkstain.net>
3093
3094         * doc/xsltproc.1
3095         * doc/xsltproc.html - ran stylesheets to update man page
3096         and html with Daniel's fix to #95510
3097
3098 Thu Nov 14 15:10:13 CET 2002 Daniel Veillard <daniel@veillard.com>
3099
3100         * libxslt/transform.c: applied patch from Brian McCauley fixing #95493 
3101         * doc/xsltproc.xml: fixing #95510 missing description of --writesubtree
3102         * README: fix the bug page URL
3103
3104 Thu Nov 14 10:03:12 CET 2002 Daniel Veillard <daniel@veillard.com>
3105
3106         * libxslt/functions.c: make sure the fixup for key() reported
3107           by John Escott actually works.
3108         * tests/docs/Makefile.am tests/docs/bug-98.xml
3109           tests/general/Makefile.am tests/general/bug-98.*: added the
3110           example in the regression tests for this case
3111
3112 Wed Nov 13 10:35:46 CET 2002 Daniel Veillard <daniel@veillard.com>
3113
3114         * libxslt/pattern.c: fixes bug #97969 for @*[...] patterns
3115         * tests/docs/Makefile.am tests/docs/bug-97.xml
3116           tests/general/Makefile.am tests/general/bug-97.*: added the
3117           example in the regression tests for this case
3118         
3119 Tue Nov 12 22:35:47 CET 2002 Daniel Veillard <daniel@veillard.com>
3120
3121         * libxslt/transform.c: fixes bug #97950 for cdata-section-elements
3122           checks in recursive copies.
3123         * tests/docs/Makefile.am tests/docs/bug-96.xml
3124           tests/general/Makefile.am tests/general/bug-96.*: added the
3125           example in the regression tests for this case
3126
3127 Tue Nov 12 19:31:49 CET 2002 Daniel Veillard <daniel@veillard.com>
3128
3129         * libxslt/functions.c: autoconvert key() first arg to string,
3130           reported by John Escott
3131
3132 Tue Nov 12 13:40:47 CET 2002 Daniel Veillard <daniel@veillard.com>
3133
3134         * libxslt/transform.c: corner case handling of copying a CDATA node.
3135
3136 Fri Nov  8 18:12:46 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
3137
3138         * libxslt/win32config.h: retired xmlwin32version.h
3139
3140 Fri Nov  8 17:09:14 CET 2002 Daniel Veillard <daniel@veillard.com>
3141
3142         * Makefile.am libxslt.m4 libxslt.spec.in: integrated libxslt.m4
3143           written by Thomas Schraitle (RFE #96485)
3144
3145 Thu Nov  7 11:18:42 MST 2002 John Fleck <jfleck@inkstain.net>
3146
3147         * doc/xsltproc.xml
3148         * doc/xsltproc.1
3149         clarifying --catalog option and xsltproc's use of 
3150         XML_CATALOG_FILES and /etc/xml/catalog. fixes
3151         http://bugzilla.gnome.org/show_bug.cgi?id=97891
3152         
3153 Mon Nov  4 06:55:36 CET 2002 Daniel Veillard <daniel@veillard.com>
3154
3155         * xsltproc/xsltproc.c: remove the use of snprintf, and use
3156           libxml2 string API instead.
3157         * configure.in libxslt/xsltconfig.h.in libxslt/xsltutils.c:
3158           try to cope with architecture lacking some of the string functions,
3159           reuse the trio ones compiled in libxml2 , should close #97113
3160
3161 Wed Oct 23 17:06:24 CEST 2002 Daniel Veillard <daniel@veillard.com>
3162
3163         * Makefile.am libxslt.spec.in doc/Makefile.am: cleaned up
3164           the spec file and associated changes in the Makefiles.
3165
3166 Tue Oct 22 21:02:37 CEST 2002 Daniel Veillard <daniel@veillard.com>
3167
3168         * libxslt/pattern.c: Forgot to check a pointer, fixes bug #96495
3169
3170 Tue Oct 22 20:53:10 CEST 2002 Daniel Veillard <daniel@veillard.com>
3171
3172         * libxslt/keys.h: fixed include c.f. bug #96487
3173         * config.h.in:  Red Hat 8.0 induced change 
3174
3175 Mon Oct 21 20:56:31 CEST 2002 Daniel Veillard <daniel@veillard.com>
3176
3177         * libxslt/numbers.c libxslt/numbersInternals.h libxslt/xsltutils.[ch]:
3178           fixed bug #78501 when using a non ascii character for the
3179           number formatting grouping separator.
3180         * tests/docs/Makefile.am tests/docs/bug-95.xml
3181           tests/general/Makefile.am tests/general/bug-95.*: added the
3182           example in the regression tests for this case
3183         * libxslt/attributes.c: cleaning up a problem introduced in last
3184           patch
3185
3186 Mon Oct 21 09:31:55 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
3187
3188         * libxslt/attributes.c: fixed minor typo in a call to
3189           xmlHasNsProp
3190
3191 Sun Oct 20 23:20:37 CEST 2002 Daniel Veillard <daniel@veillard.com>
3192
3193         * python/types.c: fixed bugs when passing result value tree
3194           to Python functions.
3195
3196 Sun Oct 20 15:23:28 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
3197
3198         * libxslt/win32config.h: mapped vsnprintf to _vsnprintf for the
3199           MS runtime
3200         * xsltproc/xsltproc.c: mapped snprintf to _snprintf for the MS
3201           runtime
3202         
3203 Fri Oct 18 13:40:12 CEST 2002 Daniel Veillard <daniel@veillard.com>
3204
3205         * configure.in: preparing 1.0.22
3206         * doc/*: upated and rebuilt the docs
3207
3208 Thu Oct 17 16:32:44 CEST 2002 Daniel Veillard <daniel@veillard.com>
3209
3210         * libxslt/variables.c: fixed bug #86421 
3211         * tests/docs/Makefile.am tests/docs/bug-94.xml
3212           tests/general/Makefile.am tests/general/bug-94.*: added the
3213           example in the regression tests for this case
3214
3215 Thu Oct 17 15:50:04 CEST 2002 Daniel Veillard <daniel@veillard.com>
3216
3217         * xsltproc: added and tested the --path option to close #79638
3218
3219 Thu Oct 17 15:25:46 CEST 2002 Daniel Veillard <daniel@veillard.com>
3220
3221         * libxslt/attributes.c: fixing bug #95826 the attribute was reset
3222           with the inherited stylesheet value.
3223         * tests/docs/Makefile.am tests/docs/bug-93.xml
3224           tests/general/Makefile.am tests/general/bug-93-inc.*
3225           tests/general/bug-93.*: added the example in the regression
3226           tests for this case
3227         
3228 Tue Oct 15 18:02:37 CEST 2002 Daniel Veillard <daniel@veillard.com>
3229
3230         * libxslt/xsltInternals.h libxslt/xsltutils.[ch]: added the
3231           possibility to register a transformation context specific
3232           error handler, with xsltSetTransformErrorFunc() and provided
3233           a new routine xsltTransformError() to handle contextual errors,
3234           this should fix #94435
3235         * libxslt/*.c: modified all the code to use the context specific
3236           error handling, as a result xsltPrintErrorContext() is not called
3237           anymore except internally from xsltTransformError()
3238
3239 Tue Oct 15 14:52:23 CEST 2002 Daniel Veillard <daniel@veillard.com>
3240
3241         * libxslt/transform.c: closing #94933, any error will make
3242           the transformation abort with  no result.
3243         * tests/reports/tst-1.err tests/reports/tst-1.out 
3244           tests/reports/undefvar.err: this changed the regression tests
3245           output.
3246         * tests/exslt/date/difference.1.out tests/exslt/date/seconds.1.out:
3247           updated the result accordingly to the fixes done last month.
3248         * libxslt/namespaces.c: make sure to avoid duplicate namespace
3249           declarations in the result trees. May fix #93692 but it's unclear.
3250
3251 Tue Oct 15 12:45:42 CEST 2002 Daniel Veillard <daniel@veillard.com>
3252
3253         * xsltproc/xsltproc.c: added a --path option to provide the
3254           enhancement requested by #79638, first cut at it, untested
3255           yet.
3256
3257 Tue Oct 15 13:02:40 CEST 2002 Daniel Veillard <daniel@veillard.com>
3258
3259         * libxslt/xslt.c: seems the media-type attribute wasn't
3260           always correctly handled
3261
3262 Mon Oct 14 09:27:01 CEST 2002 Daniel Veillard <daniel@veillard.com>
3263
3264         * libxslt/transform.c: added URI escaping in case the resource 
3265           target computation of exslt:element failed. Should fix #81837
3266
3267 Tue Oct 15 12:42:25 CEST 2002 Daniel Veillard <daniel@veillard.com>
3268
3269         * README: updated the contact informations
3270
3271 Tue Oct 15 11:40:19 CEST 2002 Daniel Veillard <daniel@veillard.com>
3272
3273         * libxslt/pattern.c: fixed the behaviour of node() patter which
3274           didn't patch the one defined in XPath :-( . Closes bug #95793
3275         * tests/docs/Makefile.am tests/docs/bug-92.xml
3276           tests/general/Makefile.am tests/general/bug-92.*: added the
3277           example in the regression tests for this case
3278
3279 Mon Oct 14 12:29:53 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
3280
3281         * libxslt/win32config.h: remapped mkdir to _mkdir for MS runtime
3282         * win32/Makefile.msvc: added security.c to the build
3283         * win32/libxslt.def.src: exported functions from security.c
3284
3285 Thu Oct 10 18:41:56 CEST 2002 Daniel Veillard <daniel@veillard.com>
3286
3287         * xsltproc/xsltproc.c: added another option --writesubtree to allow
3288           documents to be written only to  a given subtree.
3289
3290 Thu Oct 10 17:16:52 CEST 2002 Daniel Veillard <daniel@veillard.com>
3291
3292         * libxslt/security.[ch] libxslt/Makefile.am: new module with
3293           runtime security checks, it will also check and do directory
3294           creation when allowed
3295         * libxslt/documents.c libxslt/imports.c libxslt/transform.c
3296           libxslt/xslt.c libxslt/xsltInternals.h: plug-in the new
3297           security infrastructure probes at file reading or file creation
3298         * xsltproc/xsltproc.c: plugged the security module there too,
3299           added the new options --nowrite and --nomkdir
3300         * doc/*: updated the man page and regenerated.
3301
3302 Wed Oct  9 18:37:56 CEST 2002 Daniel Veillard <daniel@veillard.com>
3303
3304         * doc/*: updated the doc XSLT to add the search, added the search
3305           page, fixed a link problem raised by Yves Pratter, regenerated
3306
3307 Wed Oct  9 14:27:17 CEST 2002 Daniel Veillard <daniel@veillard.com>
3308
3309         * doc/index.py: the indexer version of the XSLT part of the
3310           xmlsoft site + archives
3311
3312 Sun Sep 29 20:02:25 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
3313
3314         * win32/Makefile.msvc: introduced double-run compilation.
3315         * win32/configure.js: introduced double-run compilation.
3316
3317 Thu Sep 26 20:08:50 CEST 2002 Daniel Veillard <daniel@veillard.com>
3318
3319         * configure.in: preparing 1.0.21
3320         * doc/* : updated and regenerated the docs and web pages
3321
3322 Wed Sep 25 11:16:06 CEST 2002 Daniel Veillard <daniel@veillard.com>
3323
3324         * libxslt/transform.c: fixed a disable output escaping bug for
3325           HTML output introduced in 1.0.20 and raised by Mario Weilguni
3326         * tests/docs/Makefile.am tests/docs/bug-91.xml
3327           tests/general/Makefile.am tests/general/bug-91.*: added the
3328           example in the regression tests for this case
3329
3330 Tue Sep 24 20:33:08 MDT 2002 John Fleck <jfleck@inkstain.net>
3331
3332         * doc/xlst.html: changing link on ftp.gnome.org
3333
3334 Mon Sep 23 10:14:38 CEST 2002 Daniel Veillard <daniel@veillard.com>
3335
3336         * Makefile.am: set-up DIST_SUBDIRS to avoid the same problem Jacob
3337           reported for libxml2
3338
3339 Fri Sep 20 14:06:45 CEST 2002 Daniel Veillard <daniel@veillard.com>
3340
3341         * Makefile.am configure.in: trying to fix the same problem as
3342           #88412 by bypassing all the python subdir if python ain't detected
3343
3344 Fri Sep 20 10:55:03 CEST 2002 Daniel Veillard <daniel@veillard.com>
3345
3346         * libxslt/templates.c: fixed a problem reported by Mark Vakoc
3347
3348 Wed Sep 18 15:46:50 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
3349
3350         * libexslt/date.c: fixed the embedded '-' in the duration format 
3351           function
3352         * tests/.../difference.1.xml: added test cases which illustrated
3353           the above bug
3354
3355 Tue Sep 17 18:01:22 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
3356
3357         * libexslt/date.c: fixed date:difference() bugs, removed all
3358           type conversion warnings.
3359         * libxslt/xsltutils.c: removed unused local variable.
3360
3361 Sat Sep 14 16:17:51 MDT 2002 John Fleck <jfleck@inkstain.net>
3362
3363         * doc/xsltproc.html:
3364         oops, forgot to update the html version of the man page
3365
3366 Sat Sep 14 16:10:21 MDT 2002 John Fleck <jfleck@inkstain.net>
3367
3368         * doc/xsltproc.xml
3369         * doc/xsltproc.1
3370         * doc/xsltproc2.html
3371         Fixing erroneous mention of old --warnnet option (thanks to Jean
3372         T. Anderson for pointing this out)
3373
3374 Tue Sep 10 21:05:28 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
3375
3376         * win32/configure.js: added more readme info for the binary
3377           package.
3378         
3379 Mon Sep  9 14:07:06 CEST 2002 Daniel Veillard <daniel@veillard.com>
3380
3381         * libxslt/pattern.c: fixed a bug in match="node()" reported by
3382           Ben Ko
3383
3384 Mon Sep  9 14:06:25 CEST 2002 Daniel Veillard <daniel@veillard.com>
3385
3386         * libxslt.spec.in: fixes libary path for x86_64 AMD
3387
3388 Thu Sep  5 10:07:13 CEST 2002 Daniel Veillard <daniel@veillard.com>
3389
3390         * python/Makefile.am: applied patch from Christophe Merlet to
3391           reestablish DESTDIR
3392
3393 Thu Aug 29 21:26:30 CEST 2002 Daniel Veillard <daniel@veillard.com>
3394
3395         * libxslt/transform.c: re-applied the patch from Nathan Myers about
3396           a possible memory leak in case of error
3397
3398 Wed Aug 28 13:44:54 CEST 2002 Daniel Veillard <daniel@veillard.com>
3399
3400         * doc/Libxslt-Logo-180x168.gif doc/Libxslt-Logo-90x34.gif:
3401           nice logos generated by Marc Liyanage
3402         * doc/site.xsl *.html: changed the stylesheet to show the new
3403           logo and regenerated the pages
3404
3405 Sun Aug 25 17:01:40 CEST 2002 Daniel Veillard <daniel@veillard.com>
3406
3407         * python/libxslt-python-api.xml python/libxslt.c
3408           python/libxsltclass.txt python/tests/basic.py: applied a patch
3409           from Ralf Mattes providing style.saveResultToString()
3410
3411 Fri Aug 23 13:53:50 CEST 2002 Daniel Veillard <daniel@veillard.com>
3412
3413         * configure.in: preparing release 1.0.20
3414         * doc/*: updated and regenerated the docs
3415
3416 Wed Aug 21 21:27:29 CEST 2002 Daniel Veillard <daniel@veillard.com>
3417
3418         * libxslt/templates.c: fixed a bug w.r.t. namespace context when
3419           doing the evaluation of attribute value templates 
3420         * libxslt.spec.in python/Makefile.am: fixed some troubles
3421           with "make rpm"
3422
3423 Wed Aug 21 18:59:28 CEST 2002 Daniel Veillard <daniel@veillard.com>
3424
3425         * python/libxslt.c: fixed the parameter order when calling
3426           Python based extensions.
3427
3428 Wed Aug 21 13:48:07 CEST 2002 Daniel Veillard <daniel@veillard.com>
3429
3430         * libxslt/transform.c libxslt/xslt.c: fixed bug #89258 and a bit of
3431           cleanup.
3432         * tests/docs/Makefile.am tests/docs/bug-90.xml
3433           tests/general/Makefile.am tests/general/bug-90.*: added the
3434           example in the regression tests for this case
3435
3436 Tue Aug 20 16:40:48 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
3437
3438         * win32/Makefile.msvc: added the prefix location to the include
3439         and lib search path.
3440
3441 Mon Aug 19 15:03:11 CEST 2002 Daniel Veillard <daniel@veillard.com>
3442
3443         * libxslt/transform.c: found and fixed the small <xsl:choose>
3444           bug which was giving troubles to DocBook users (the test expression
3445           of <when> was evaluated in the namespace context of <choose> !)
3446
3447 2002-08-18  Havoc Pennington  <hp@pobox.com>
3448
3449         * autogen.sh: hardcode aclocal-1.4/automake-1.4 so that users with
3450         both automake 1.6 and 1.4 installed get the right automake. Means
3451         compilation from CVS will now require the latest automake 1.4
3452         release, or manually creating symlinks called "automake-1.4" and
3453         "aclocal-1.4"
3454
3455 Wed Aug 14 18:54:19 CEST 2002 Daniel Veillard <daniel@veillard.com>
3456
3457         * configure.in python/Makefile.am: AMD x86-64 induced changes from
3458           Frederic Crozat
3459
3460 Wed Aug 14 13:35:04 CEST 2002 Daniel Veillard <daniel@veillard.com>
3461
3462         * libxslt/functions.c: recovering to the old (somewhat) broken
3463           implementation of document('') when there is no base for the
3464           source document or it can't be realoaded (e.g. when the sytlesheet
3465           was loaded from a memory string). Matt Sergeant insisted on this
3466           one :-)
3467
3468 Tue Aug 13 11:21:44 CEST 2002 Daniel Veillard <daniel@veillard.com>
3469
3470         * libxslt/transform.c: applied another patch from Nathan Myers about
3471           a possible memory leak in case of error
3472
3473 Mon Aug 12 23:12:59 CEST 2002 Daniel Veillard <daniel@veillard.com>
3474
3475         * libxslt/transform.c: applied a patch from Nathan Myers about
3476           an erroneous free in case of error
3477
3478 Thu Aug  1 14:29:11 CEST 2002 Daniel Veillard <daniel@veillard.com>
3479
3480         * configure.in: upon suggestion of Marc-Andre Lemburg, make 
3481           the misdetection of libxml2 python bindings a warning only
3482
3483 Sun Jul 21 19:10:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
3484
3485         * xsltInternals.h/xslt.c/transform.c and pattern.c: fixed
3486           a bug reported by Gero Meissner (87230)
3487         * fixed a problem compiling python directory when multiple
3488           'make' jobs were executed (python/Makefile.am)
3489
3490 Wed Jul 17 19:58:36 CEST 2002 Daniel Veillard <daniel@veillard.com>
3491
3492         * libxslt/attributes.c: fixed a bug reported by Keith Isdale
3493           at the xsltdbg interface when encountering an empty attribute
3494           set.
3495
3496 Wed Jul 17 19:51:47 CEST 2002 Daniel Veillard <daniel@veillard.com>
3497
3498         * tests/* : the change in HTML meta encoding tag serialization
3499           affected some of the results
3500
3501 Thu Jul 11 22:04:30 CEST 2002 Daniel Veillard <daniel@veillard.com>
3502
3503         * doc/Makefile.am: adding doc/xsltproc.xml to the tarball
3504           to fix Red Hat bug #68614 
3505
3506 Wed Jul 10 21:28:11 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
3507         
3508         * win32/Makefile.msvc: Made the copy *.pdb in install succeed even
3509           if there is no *.pdb
3510         
3511 Sat Jul  6 22:00:08 CEST 2002 Daniel Veillard <daniel@veillard.com>
3512
3513         * configure.in: preparing 1.0.19
3514         * doc/* : rebuilt the docs
3515
3516 Sat Jul  6 17:51:14 CEST 2002 Daniel Veillard <daniel@veillard.com>
3517
3518         * libxslt/transform.c: fixed bug #83749 about namespace generated
3519           being invalid when they are inherited from the context.
3520
3521 Fri Jul  5 22:27:47 CEST 2002 Daniel Veillard <daniel@veillard.com>
3522
3523         * libxslt/transform.c: fixed bug #86753 on multiple identical
3524           attributes being generated, oops ...
3525         * tests/docs/Makefile.am tests/docs/bug-89.xml
3526           tests/general/Makefile.am tests/general/bug-89.*: added an
3527           example in the regression tests for this case
3528         
3529 Fri Jul  5 18:28:08 CEST 2002 Daniel Veillard <daniel@veillard.com>
3530
3531         * libxslt/preproc.c libxslt/transform.c: fixed bug #87279
3532         * tests/docs/Makefile.am tests/docs/bug-88.xml
3533           tests/general/Makefile.am tests/general/bug-88.*: added an
3534           example in the regression tests for this case
3535
3536 Fri Jul  5 16:30:02 CEST 2002 Daniel Veillard <daniel@veillard.com>
3537
3538         * libxslt/preproc.c libxslt/xsltutils.c: applied a patch from
3539           Ken Neighbors to implement/fix sorting orders
3540         * tests/docbook/result/*/gdp-handbook.* 
3541           tests/docbook/result/xtchunk/html/*.orig
3542           tests/general/bug-12-.out tests/general/bug-63.out:
3543           cleaned up the result of "make tests" following some changes
3544           in namespace axis order and serialization rules in libxml2
3545
3546 Thu Jul  4 16:53:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
3547
3548         * transform.c further enhancement for bug 84902 (another
3549           path), also cleaned up code slightly
3550
3551 Wed Jul  3 00:50:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
3552
3553         * transform.c: fixed bug 84902 - message with terminate=yes
3554           caused segfault
3555
3556 Tue Jul  2 00:02:53 CEST 2002 Daniel Veillard <daniel@veillard.com>
3557
3558         * tests/docs/Makefile.am tests/docs/bug-87.xml
3559           tests/general/Makefile.am tests/general/bug-87.*: added a
3560           example in the regression tests for a case where the XML
3561           default namespace was missing from the namespace axis
3562         * xsltproc/xsltproc.c: added the informations that parameter
3563           strings are expected to be UTF8
3564         * libxslt/attributes.c: fixes on attribute group implementation
3565
3566 Sat Jun 29 21:12:14 MDT 2002 John Fleck <jfleck@inkstain.net>
3567
3568         * doc/xsltproc.xml, doc/xsltproc.html/, doc/xsltproc.1
3569         updating docs to add reference to UTF-8 requirement for
3570         stringparam command line option
3571
3572 Wed Jun 19 13:43:00 CEST 2002 Daniel Veillard <daniel@veillard.com>
3573
3574         * libxslt/documents.c libxslt/functions.c libxslt/xsltInternals.h:
3575           fixed document('') as pointed by Eric van der Vlist
3576         * tests/docs/Makefile.am tests/docs/bug-86.xml
3577           tests/general/Makefile.am tests/general/bug-86.*: added the
3578           specific example in the regression tests
3579
3580 Sat Jun 15 15:44:58 CEST 2002 Daniel Veillard <daniel@veillard.com>
3581
3582         * libxslt/numbers.c libxslt/numbersInternals.h: applied a
3583           patch from Ken Neighbors fixing some format-number inconsistencies
3584         * tests/numbers/format-number.out tests/numbers/format-number.xml
3585           tests/numbers/format-number.xsl: the patch also included
3586           updates to the regression tests
3587
3588 Mon Jun 10 14:55:31 CEST 2002 Daniel Veillard <daniel@veillard.com>
3589
3590         * libxslt/numbers.c: patch from Richard Jinks t correct a bug in
3591           xsl:number level="multiple"
3592         * tests/docs/Makefile.am tests/docs/bug-84.xml
3593           tests/general/Makefile.am tests/general/bug-84.*: added a 
3594           specific example in the regression tests
3595
3596 Fri May 31 09:33:09 CEST 2002 Daniel Veillard <daniel@veillard.com>
3597
3598         * libexslt/dynamic.c: turned a function static
3599         * libxslt/win32config.h: applied patch from Mark Vadoc
3600
3601 Thu May 30 23:35:47 CEST 2002 Daniel Veillard <daniel@veillard.com>
3602
3603         * win32/Makefile.msvc libexslt/Makefile.am libexslt/date.c
3604           libexslt/dynamic.c libexslt/exslt.c libexslt/exslt.h: applied
3605           a patch from Mark Vakoc to implement the EXSLT
3606           object dyn:evaluate(string) extension function, and a small fix
3607           to date.c
3608
3609 Mon May 27 23:24:57 CEST 2002 Daniel Veillard <daniel@veillard.com>
3610
3611         * configure.in: preparing 1.0.18
3612         * doc/*: recompiled the API and web site
3613
3614 Mon May 27 19:14:46 CEST 2002 Daniel Veillard <daniel@veillard.com>
3615
3616         * libxslt/namespaces.c libxslt/transform.c: fix bug #81099 about
3617           duplicated namespace declarations, this might not be as generic as
3618           it should but works well for DocBook stylesheets
3619
3620 Sat May 25 12:07:45 CEST 2002 Daniel Veillard <daniel@veillard.com>
3621
3622         * libxslt.pc.in: fix bug #82970
3623
3624 Fri May 24 15:02:50 CEST 2002 Daniel Veillard <daniel@veillard.com>
3625
3626         * python/libxslt-python-api.xml python/libxslt.c 
3627           python/libxsltclass.txt : tried to fix #79105 by providing a 
3628           specific error registering routine.
3629
3630 Thu May 23 17:28:35 CEST 2002 Daniel Veillard <daniel@veillard.com>
3631
3632         * libxslt/xsltutils.[ch] : applied patch from Morus Walter
3633           adding xsltSaveResultToString()
3634         * doc/APIfiles.html doc/APIfunctions.html doc/libxslt-api.xml
3635           doc/libxslt-decl.txt doc/libxslt-refs.xml: this increased the
3636           API with the new function.
3637
3638 Wed May 22 11:50:36 CEST 2002 Daniel Veillard <daniel@veillard.com>
3639
3640         * libxslt/function.c: applied a patch from Richard Jinks
3641           to avoid a crash in element-available()
3642
3643 Tue May 21 19:38:20 CEST 2002 Daniel Veillard <daniel@veillard.com>
3644
3645         * libxslt.spec.in: applied patch from Geert Kloosterman to
3646           not miss gif and .png files in the RPM  documentation
3647
3648 Tue May 21 08:43:11 CEST 2002 Daniel Veillard <daniel@veillard.com>
3649
3650         * libexslt/libexslt.4: Applied patch for the EXSLT man page
3651           from Charles Bozeman
3652
3653 Sat May 18 10:01:38 CEST 2002 Daniel Veillard <daniel@veillard.com>
3654
3655         * libexslt/libexslt.4 libxslt/libxslt.4 libxslt/keys.c 
3656           libxslt/xsltconfig.h.in: applied a man page patch from 
3657           Christian Cornelssen and fixed a couple of issues he raised.
3658
3659 Thu May 16 19:38:24 CEST 2002 Daniel Veillard <daniel@veillard.com>
3660
3661         * xsltproc/xsltproc.c: moved the extension dump out of the loop
3662
3663 Thu May 16 19:31:35 CEST 2002 Daniel Veillard <daniel@veillard.com>
3664
3665         * libxslt/extensions.[ch]  xsltproc/xsltproc.c win32/libxslt.def.src:
3666           Applied Mark Vakoc patch to show registered extensions in xsltproc
3667         * doc/*: rebuilt the API, docs and website
3668         * python/libxsltclass.txt: this added an entry point
3669
3670 Wed May 15 00:20:10 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
3671
3672         * libxslt/xslt.c: xsl:include crash fix
3673         * libxslt/imports.c: xsl:include crash fix
3674         * libxslt/imports.h: xsl:include crash fix      
3675
3676 Wed May  9 01:39:14 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
3677
3678         * libexslt/exslt.h: fixed a typo _cplusplus -> __cplusplus
3679
3680 Thu May  2 11:08:22 CEST 2002 Daniel Veillard <daniel@veillard.com>
3681
3682         * xsltproc/xsltproc.c libxslt/xsltutils.c doc/xsltproc.xml:
3683           fixed some return code problems raised by Thomas Mauch
3684
3685 Tue Apr 30 18:06:14 CEST 2002 Daniel Veillard <daniel@veillard.com>
3686
3687         * libxslt/transform.c: don't allow adding an attribute to
3688           a document node
3689
3690 Mon Apr 29 19:00:22 CEST 2002 Daniel Veillard <daniel@veillard.com>
3691
3692         * configure.in libxslt/xsltwin32config.h: preparing 1.0.17
3693         * doc/*: rebuilt the docs.
3694
3695 Mon Apr 29 17:22:08 CEST 2002 Daniel Veillard <daniel@veillard.com>
3696
3697         * libxslt/variables.c: better attempt to fix the problem in
3698           xsltProcessUserParamInternal reported by Babak Vahedipour-Kunze
3699
3700 Sun Apr 28 17:53:23 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
3701
3702         * win32/dsp/*.dsp: Removed obsolete macros
3703         * win32/dsp/*.def: Updated export definitions
3704         
3705 Sun Apr 28 17:47:17 CEST 2002 Daniel Veillard <daniel@veillard.com>
3706
3707         * libxslt/variables.c: tried to fix a problem in
3708           xsltProcessUserParamInternal reported by Babak Vahedipour-Kunze
3709
3710 Fri Apr 26 08:15:30 CEST 2002 Daniel Veillard <daniel@veillard.com>
3711
3712         * libexslt/date.c: applied another patch from Charles Bozeman to
3713           enhance date/duration support
3714         * tests/exslt/date: added the associated set of regression tests
3715
3716 Thu Apr 25 08:18:57 CEST 2002 Daniel Veillard <daniel@veillard.com>
3717
3718         * libexslt/date.c: applied a patch from Charles Bozeman to add
3719           duration routines to the date exslt extensions.
3720
3721 Thu Apr 18 22:56:06 CEST 2002 Daniel Veillard <daniel@veillard.com>
3722
3723         * libexslt/exslt.h: extern "C" {  missing by Mark Vakoc
3724
3725 Tue Apr 17 23:16:54 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
3726
3727         * libexslt/date.c: fixed type inconsistencies, double->int
3728          and unsigned/signed mismatch warnings eliminated
3729
3730 Tue Apr 16 19:40:21 CEST 2002 Igor Zlatkovic <igor@stud.fh-frankfurt.de>
3731
3732         * win32/Makefile.msvc: XSLT debugger support fix
3733         * win32/configure.js: XSLT debugger support fix
3734         * libxslt/xsltconfig.h.in: XSLT debugger support fix
3735
3736 Mon Apr 15 19:27:31 CEST 2002 Daniel Veillard <daniel@veillard.com>
3737
3738         * configure.in: preparing 1.0.16
3739         * doc/*: updated and rebuilt the docs
3740
3741 Mon Apr 15 17:27:51 CEST 2002 Daniel Veillard <daniel@veillard.com>
3742
3743         * libxslt/attributes.c: removed a warning
3744         * libxslt/transform.c libxslt/transform.h win32/libxslt.def.src:
3745           added xsltRunStylesheetUser() API needed to fix #78546
3746         * xsltproc/xsltproc.c: second part of the fix #78546
3747
3748 Mon Apr 15 15:57:28 CEST 2002 Daniel Veillard <daniel@veillard.com>
3749
3750         * python/Makefile.am: fixing the equivalent of #75779
3751
3752 Mon Apr 15 14:00:12 CEST 2002 Daniel Veillard <daniel@veillard.com>
3753
3754         * libxslt/keys.c: fixed bug #78735
3755         * configure.in tests/Makefile.am tests/keys/*:
3756           added the tests in a separate directory
3757
3758 Mon Apr 15 00:01:07 CEST 2002 Daniel Veillard <daniel@veillard.com>
3759
3760         * tests/docs/Makefile.am tests/docs/bug-83.xml
3761           tests/general/Makefile.am tests/general/bug-83.*: added a 
3762           specific example for bug #78662 in the regression tests
3763         * tests/docbook/: this also changed a couple of DocBook results
3764         
3765 Sun Apr 14 15:32:23 CEST 2002 Daniel Veillard <daniel@veillard.com>
3766
3767         * configure.in: trying to kill #77827 IEEE conformance on alphas
3768         * libxslt/imports.c libxslt/transform.c libxslt/xslt.c: fixing
3769           bug #78211
3770         * tests/docs/Makefile.am tests/docs/bug-82.xml
3771           tests/general/Makefile.am tests/general/bug-82.*: added a 
3772           specific example for bug #78211 in the regression tests
3773
3774 Wed Apr 10 20:35:54 CEST 2002 Daniel Veillard <daniel@veillard.com>
3775
3776         * libxslt/pattern.c: applied patch from Mark Vakoc
3777
3778 Fri Mar 29 18:28:23 CET 2002 Daniel Veillard <daniel@veillard.com>
3779
3780         * tests/docs/Makefile.am tests/docs/bug-81.xml
3781           tests/general/Makefile.am tests/general/bug-81.*: added a 
3782           specific example for bug #76927 in the regression tests
3783         
3784 Wed Mar 27 10:03:11 CET 2002 Daniel Veillard <daniel@veillard.com>
3785
3786         * AUTHORS HACKING: Added Igor Zlatkovic as official maintainer
3787         * python/Makefile.am python/tests/Makefile.am: Albert Chin pointed
3788           that $(datadir) should be used for docs
3789
3790 Mon Mar 25 17:56:44 CET 2002 Daniel Veillard <daniel@veillard.com>
3791
3792         * configure.in: preparing 1.0.15
3793         * doc/*: updated and rebuilt
3794
3795 Mon Mar 25 17:11:42 CET 2002 Daniel Veillard <daniel@veillard.com>
3796
3797         * libxslt/attributes.c libxslt/attributes.h libxslt/pattern.c
3798           libxslt/xslt.c: Fix bug #76043 about cascading attribute sets
3799         * tests/docs/Makefile.am tests/docs/bug-80.xml
3800           tests/general/Makefile.am tests/general/bug-80.*: added a 
3801           specific example for bug #76043 in the regression tests
3802
3803 Fri Mar 22 19:26:47 CET 2002 Daniel Veillard <daniel@veillard.com>
3804
3805         * libxslt/pattern.c: Fixing bug #75902 error with @foo[..]
3806           steps which were not compiled
3807         * tests/docs/Makefile.am tests/docs/bug-79.xml
3808           tests/general/Makefile.am tests/general/bug-79.*: added a 
3809           specific example for bug #75902 in the regression tests
3810         
3811 Fri Mar 22 16:13:22 CET 2002 Daniel Veillard <daniel@veillard.com>
3812
3813         * libxslt/pattern.c: Fixing bug #75777 error with namespaced
3814           attribute match rules evaluation
3815         * tests/docs/Makefile.am tests/docs/bug-78.xml
3816           tests/general/Makefile.am tests/general/bug-78.*: added a 
3817           specific example for bug #75777 in the regression tests
3818         
3819 Thu Mar 21 17:19:56 CET 2002 Daniel Veillard <daniel@veillard.com>
3820
3821         * libxslt/transform.c: found another stupid bug by step by 
3822           step processing of the code
3823         * libxslt/pattern.c: idem, except that once stupid mistake
3824           ELEM vs NODE forced the templates to be stored in a list
3825           instead of a hash table, fixing this stupidity should
3826           again lead to a substantive improvement of processing speed.
3827           Like divide by 2 processing time for DocBook stylesheets.
3828
3829 Thu Mar 21 00:25:12 CET 2002 Daniel Veillard <daniel@veillard.com>
3830
3831         * libxslt/transform.c: fixing bug #75603
3832         * tests/docs/Makefile.am tests/docs/bug-77.xml
3833           tests/general/Makefile.am tests/general/bug-77.*: added a 
3834           specific example for bug #75603 in the regression tests
3835
3836 Wed Mar 20 17:49:43 CET 2002 Daniel Veillard <daniel@veillard.com>
3837
3838         * python/Makefile.am: Art Haas pointed a stupid error
3839
3840 Tue Mar 19 19:42:01 CET 2002 Daniel Veillard <daniel@veillard.com>
3841
3842         * Makefile.am tests/Makefile.am tests/*/Makefile.am
3843           tests/*/*/Makefile.am : added "make valgrind" targets
3844           to run the test suite under the debugger control
3845         * transform.c: valgrind spotted 2 bugs, one related to
3846           the ordering of the deallocation of the data associated to
3847           a transofrmation, the second in xsltCopyTree when the new
3848           node may have been coalesced with an adjacent text node.
3849           The regression tests now pass cleanly under testgrind.
3850
3851 Mon Mar 18 21:33:38 CET 2002 Daniel Veillard <daniel@veillard.com>
3852
3853         * python/Makefile.am: fixed a stupid bug
3854
3855 Mon Mar 18 20:45:27 CET 2002 Daniel Veillard <daniel@veillard.com>
3856
3857         * configure.in: preparing 1.0.14
3858         * doc/*: updated rebuilt
3859         * libxslt/*.c libexslt/*.c libxslt/libxslt.h libexslt/libexslt.h:
3860           implemented the IN_LIBXSLT and IN_LIBEXSLT mechanism discussed
3861           with the Windows maintainers
3862
3863 Mon Mar 18 16:22:46 CET 2002 Daniel Veillard <daniel@veillard.com>
3864
3865         * python/Makefile.am python/generator.py python/libxslt.c
3866           python/types.c python/tests/Makefile.am: applied the same kind of
3867           fixes to the Python Makefiels than to libxml2 ones. Updates
3868           and cleanups too.
3869
3870 Sat Mar 16 23:48:21 CET 2002 Daniel Veillard <daniel@veillard.com>
3871
3872         * libexslt/common.c libxslt/pattern.c  libxslt/transform.c
3873           libxslt/variables.c: chaing result tree values which may
3874           be deallocated and must not be kept in the template 
3875           pattern lookup cache. Thanks to Valgrin to allow finding
3876           the real problem in bug #74857
3877
3878 Wed Mar 13 15:17:51 CET 2002 Daniel Veillard <daniel@veillard.com>
3879
3880         * libxslt/*.h doc/* python/*: applied another cleanup comment
3881           diff from Heiko W. Rupp, regenerated the API and python
3882
3883 Wed Mar 13 13:41:19 CET 2002 Daniel Veillard <daniel@veillard.com>
3884
3885         * tests/docs/Makefile.am tests/docs/bug-76.xml
3886           tests/general/Makefile.am tests/general/bug-76.*: added a 
3887           home brewed test for path computation elmininating duplicate
3888           in result sets.
3889
3890 Sat Mar  9 11:53:39 CET 2002 Daniel Veillard <daniel@veillard.com>
3891
3892         * doc/Makefile.am: fixed a build problem in some environements
3893
3894 2002-03-08  jacob berkman  <jacob@ximian.com>
3895
3896         * python/Makefile.am (libxsltmodule_la_SOURCES): remove $(srcdir)
3897         as make will automatically look there for these files
3898
3899 Fri Mar  8 17:44:31 CET 2002 Daniel Veillard <daniel@veillard.com>
3900
3901         * configure.in libxslt/xsltwin32config.h: preparing release
3902           1.0.13
3903         * doc/*: updated and rebuilt the docs
3904         * python/libxslt.c: fixed a possible reentrancy problem
3905
3906 Fri Mar  8 14:51:59 CET 2002 Daniel Veillard <daniel@veillard.com>
3907
3908         * libxslt/pattern.c: Fixes the problems exposed by #73880
3909           those ought to be computed at stylesheet compile time, not
3910           at run-time, and the computation was wrong.
3911         * libxslt/transform.c: get rid of fake nodes coming from node-set
3912           transformations. At least if they are still produced they will
3913           become easy to spot as resulting document won't be well-formed.
3914
3915 Thu Mar  7 17:01:21 CET 2002 Daniel Veillard <daniel@veillard.com>
3916
3917         * libxslt/extensions.c: fixed bug #73791 related to extension
3918           function declared in included stylesheets
3919         * tests/exslt/functions/function.7.*: added specific test
3920
3921 Thu Mar  7 15:20:32 CET 2002 Daniel Veillard <daniel@veillard.com>
3922
3923         * tests/docs/Makefile.am tests/docs/bug-75.xml
3924           tests/general/Makefile.am tests/general/bug-75.*: added a 
3925           specific example for bug #72150 in the regression tests
3926
3927 Thu Mar  7 15:17:21 CET 2002 Daniel Veillard <daniel@veillard.com>
3928
3929         * configure.in xsltproc/xsltproc.c: fixed bug #71488 in a
3930           similar way as #71457
3931
3932 Thu Mar  7 09:41:59 CET 2002 Daniel Veillard <daniel@veillard.com>
3933
3934         * tests/xmlspec/REC-xml-20001006*.html tests/XSLTMark/xslbench1.out:
3935           some HTML meta encoding fixups resulting from fix in libxml2
3936
3937 Mon Mar  4 18:09:48 CET 2002 Daniel Veillard <daniel@veillard.com>
3938
3939         * libxslt/namespaces.c tests/general/bug-63.out: small fixups
3940           related to the XPath changes in fixing #61290
3941           
3942 Mon Mar  4 12:57:21 CET 2002 Daniel Veillard <daniel@veillard.com>
3943
3944         * libxslt/pattern.c: fixed bug #73363, bad tokenization of
3945           pattern
3946
3947 Mon Mar  4 12:01:34 CET 2002 Daniel Veillard <daniel@veillard.com>
3948
3949         * libexslt/date.c: patch from Charles Bozeman for the exslt date
3950           extension
3951         * configure.in tests/exslt/Makefile.am tests/exslt/date/*: added
3952           the associated regression test provided by Charles
3953
3954 Fri Mar  1 10:17:26 CET 2002 Daniel Veillard <daniel@veillard.com>
3955
3956         * libxslt/preproc.c: Fixed #73088 with the associated patch
3957
3958 Fri Mar  1 10:14:07 CET 2002 Daniel Veillard <daniel@veillard.com>
3959
3960         * xsltproc/xsltproc.c: similar to #72663 and #72658, don't memdump
3961           unless compiled explicitely with memory debugging switched on
3962         * TODO: refreshed a bit
3963
3964 Fri Feb 22 23:44:57 CET 2002 Daniel Veillard <daniel@veillard.com>
3965
3966         * python/generator.py python/libxslt.c: changes for the 'usual'
3967           setup.py to allow building a libxml2-python
3968           module based on the same code. The initialization is however
3969           different the 2 .so files fo libxml2 and libxslt are identical and
3970           they entry point initialize both libraries. this is done to avoid
3971           some possible nasty problem since the Python don't merge the maps
3972           of all shared modules.
3973         * python/libxsl.py: attempt to cope with the shared library loading
3974           problem when both modules are not merged.
3975
3976 Thu Feb 21 12:59:59 CET 2002 Daniel Veillard <daniel@veillard.com>
3977
3978         * doc/site.xml doc/xslt.html doc/python.html doc/*.html: added
3979           documentation for the wrappers and python modules.
3980
3981 Wed Feb 13 14:22:22 CET 2002 Daniel Veillard <daniel@veillard.com>
3982
3983         * tests/docs/Makefile.am tests/docs/bug-74.xml
3984           tests/general/Makefile.am tests/general/bug-74.*: added a 
3985           specific example for bug #71342 in the regression tests
3986         * tests/docbook/result/xhtml/gdp-handbook.xhtml: fixing
3987           #71342 changed one attribute serialization.
3988
3989 Tue Feb 12 15:08:38 CET 2002 Daniel Veillard <daniel@veillard.com>
3990
3991         * python/Makefile.am: trying to fix #71270 
3992
3993 Mon Feb 11 19:40:34 CET 2002 Daniel Veillard <daniel@veillard.com>
3994
3995         * python/*.py: removed tab used spaces
3996         * configure.in libxslt/xsltwin32config.h: preparing 1.0.12
3997         * doc/news.html doc/xslt.html: rebuild/updated
3998
3999 Mon Feb 11 16:34:37 CET 2002 Daniel Veillard <daniel@veillard.com>
4000
4001         * tests/docs/Makefile.am tests/docs/bug-73.xml
4002           tests/general/Makefile.am tests/general/bug-73.*: added a 
4003           specific example for bug #71181 in the regression tests
4004
4005 Mon Feb 11 16:22:36 CET 2002 Daniel Veillard <daniel@veillard.com>
4006
4007         * libxslt/pattern.c: fixed bug #71181 p/text() would not
4008           work. A bit of cleanup.
4009
4010 Mon Feb 11 15:01:42 CET 2002 Daniel Veillard <daniel@veillard.com>
4011
4012         * xslt-config: fixing Red Hat bug #59508
4013
4014 Mon Feb 11 14:27:25 CET 2002 Daniel Veillard <daniel@veillard.com>
4015
4016         * tests/docs/Makefile.am tests/docs/bug-72.xml
4017           tests/general/Makefile.am tests/general/bug-72.*: added a 
4018           specific example for bug #58444 in the regression tests
4019
4020 Mon Feb 11 14:13:07 CET 2002 Daniel Veillard <daniel@veillard.com>
4021
4022         * libxslt/transform.c: fixed bug #58444, was quite simpler
4023           than expected.
4024
4025 Mon Feb 11 13:27:42 CET 2002 Daniel Veillard <daniel@veillard.com>
4026
4027         * libxslt/xsltInternals.h libxslt/pattern.c: expected to have
4028           closed bug #70131, still wondering about the position() when
4029           the node is selected.
4030
4031 Mon Feb 11 10:45:27 CET 2002 Daniel Veillard <daniel@veillard.com>
4032
4033         * tests/docs/Makefile.am tests/docs/bug-71.xml
4034           tests/general/Makefile.am tests/general/bug-71.*: added a 
4035           specific example for Norm's bug in the regression tests
4036
4037 Sun Feb 10 22:08:51 CET 2002 Daniel Veillard <daniel@veillard.com>
4038
4039         * libxslt/attributes.c: fixed a bug reported by Norm
4040
4041 Sun Feb 10 20:25:28 CET 2002 Daniel Veillard <daniel@veillard.com>
4042
4043         * python/libxml.c : fixed a small warning.
4044         * doc/libxslt-api.xml doc/libxslt-decl.txt doc/libxslt-refs.xml
4045           python/libxsltclass.txt: rebuilt the APIs
4046
4047 Sun Feb 10 20:16:15 CET 2002 Daniel Veillard <daniel@veillard.com>
4048
4049         * libxslt/imports.c libxslt/numbers.c libxslt/pattern.c
4050           libxslt/pattern.h libxslt/transform.c libxslt/xslt.c
4051           libxslt/xsltInternals.h: adding extra run-time informations
4052           to make the stylesheet really read-only at run-time.
4053
4054 Sun Feb 10 16:21:09 CET 2002 Daniel Veillard <daniel@veillard.com>
4055
4056         * libxslt/transform.c: fixing bug #70281
4057
4058 Sun Feb 10 15:10:56 CET 2002 Daniel Veillard <daniel@veillard.com>
4059
4060         * libxslt/numbers.c: trying to fix #68759
4061
4062 Sat Feb  9 23:17:53 CET 2002 Daniel Veillard <daniel@veillard.com>
4063
4064         * python/Makefile.am: seems some version of automake didn't
4065           generate the dependancies right as Jacob found out. Add
4066           an extra dependancy rule.
4067
4068 Sat Feb  9 19:04:01 CET 2002 Daniel Veillard <daniel@veillard.com>
4069
4070         * configure.in libxslt.spec.in python/Makefile.am python/generator.py
4071           python/libxsl.py python/libxslt.c python/tests/Makefile.am:
4072           Fixed the python Makefiles, corrected a bug showing up on ia64,
4073           changed the name of the python internal module too
4074
4075 Fri Feb  8 17:01:10 CET 2002 Daniel Veillard <daniel@veillard.com>
4076
4077         * Copyright Makefile.am configure.in libxslt.spec.in: change the
4078           Licence to MIT Licence and release of 1.0.11
4079         * doc/FAQ.html doc/intro.html doc/libxslt-decl.txt doc/news.html 
4080           doc/xslt.html: updates of the docs accordingly
4081         * libxslt/xsltwin32config.h: numbering
4082         * python/generator.py python/libxml_wrap.h python/libxsltclass.txt
4083           python/libxslt-python-api.xml: cleanup the dependancies with
4084           libxml2
4085         * python/tests/extfunc.py: updated examples.
4086
4087 Thu Feb  7 23:21:18 CET 2002 Daniel Veillard <daniel@veillard.com>
4088
4089         * doc/libxslt-api.xml doc/libxslt-decl.txt doc/libxslt-refs.xml
4090           doc/parsedecl.py: fixup the script and rebuid the API
4091         * libxslt/extensions.h: cleanup
4092         * python/generator.py python/libxslt-python-api.xml python/libxslt.c
4093           python/libxsltclass.txt: provided accessors for a lot of the
4094           tructures involved in the transformation. Stylesheet and
4095           transformation python object don't free automatically the
4096           encapsulated object when deallocated.
4097         * python/tests/Makefile.am python/tests/basic.py
4098           python/tests/extfunc.py python/tests/pyxsltproc.py:
4099           updated the examples
4100
4101 Thu Feb  7 17:59:27 CET 2002 Daniel Veillard <daniel@veillard.com>
4102
4103         * xsltproc/xsltproc.c: small fix
4104         * Makefile.am: cleanup
4105         * python/tests/Makefile.am: avoid a problem with $(TESTS)
4106         * python/generator.py python/libxml_wrap.h python/libxsl.py
4107           python/libxslt.c python/libxsltclass.txt: augmented the
4108           wrappers
4109         * python/tests/pyxsltproc.py: rewrote xsltproc on top of the
4110           libxslt-python API to get an estimate of what is missing
4111
4112 Wed Feb  6 23:34:10 CET 2002 Daniel Veillard <daniel@veillard.com>
4113
4114         * python/libxsl.py python/libxslt-python-api.xml python/libxslt.c
4115           python/libxsltclass.txt: added libxslt_xsltCleanup() added parameters
4116           to libxslt_xsltApplyStylesheet() removed the memleaks left and
4117           fixed an import order.
4118         * python/tests/basic.py python/tests/extfunc.py: updated the tests
4119
4120 Wed Feb  6 19:46:09 CET 2002 Daniel Veillard <daniel@veillard.com>
4121
4122         * python/libxlst.c python/libxslt-python-api.xml 
4123           python/libxsltclass.txt: plugged the extension of the engine
4124           with python defined functions
4125         * python/tests/Makefile.am python/tests/extfunc.py: added a
4126           basic test, still a memleak, cleanup function needed.
4127
4128 Wed Feb  6 13:49:55 CET 2002 Daniel Veillard <daniel@veillard.com>
4129
4130         * libxslt.spec.in python/Makefile.am python/libxsl.py: the
4131           spec file will now build libxslt-python, fought with shared
4132           and other crazyness, seems to work now :-)
4133         * doc/libxslt-api.xml: regenerated
4134
4135 Wed Feb  6 11:29:31 CET 2002 Daniel Veillard <daniel@veillard.com>
4136
4137         * Makefile.am configure.in tests/Makefile.am tests/*/Makefile.am
4138           tests/*/*/Makefile.am: refactored make tests, make all now don't
4139           run the test suite
4140         * python/Makefile.am: added tests
4141         * python/tests/basic.py python/tests/Makefile.am: added the first
4142           basic test, memory debug included
4143
4144 Wed Feb  6 00:20:57 CET 2002 Daniel Veillard <daniel@veillard.com>
4145
4146         * configure.in python/Makefile.am: attempst to tweak to get
4147           full memory debug...
4148         * python/generator.py python/libxsl.py python/libxslt-python-api.xml
4149           python/libxslt.c python/libxslt_wrap.h python/libxsltclass.txt:
4150           the basic API starts to work
4151         * python/tests/test.*: first basic test
4152         * libxslt/xsltutils.c: fixed a comment
4153
4154 Tue Feb  5 17:35:00 CET 2002 Daniel Veillard <daniel@veillard.com>
4155
4156         * configure.in doc/Makefile.am: do not install outside of prefix,
4157           make sure the API get shipped.
4158
4159 Mon Feb  4 19:47:32 CET 2002 Daniel Veillard <daniel@veillard.com>
4160
4161         * libxslt/pattern.[ch] doc/libxslt-api.xml doc/libxslt-refs.xml:
4162           reactivated xsltMatchPattern() since this is really something
4163           one may want to have access to in an extension function.
4164         * Makefile.am configure.in python/Makefile.am python/generator.py
4165           python/libxml_wrap.h python/libxsl.py python/libxslt-python-api.xml
4166           python/libxslt.c python/libxslt_wrap.h python/libxsltclass.txt
4167           python/types.c: started working on the python bindings, borrowed
4168           most of the work done for libxml2, most of the generator code
4169           is similar. Commit at the point where this compiles cleanly and
4170           "import libxslt" doesn't yield any missing entry point.
4171
4172 Wed Jan 30 12:46:41 CET 2002 Daniel Veillard <daniel@veillard.com>
4173
4174         * libxslt/pattern.c: patch from Charles Bozeman to support
4175           child::* patterns.
4176
4177 Wed Jan 30 12:35:28 CET 2002 Daniel Veillard <daniel@veillard.com>
4178
4179         * libxslt/keys.c: Bob Stayton pointed out a problem when
4180           using unions in key match patterns.
4181         * tests/docs/Makefile.am tests/docs/bug-70.xml
4182           tests/general/Makefile.am tests/general/bug-70.*: added a 
4183           specific example in the regression tests
4184         
4185 Sun Jan 27 13:54:10 CET 2002 Daniel Veillard <daniel@veillard.com>
4186
4187         * libxslt/transform.c: avoid a problem with Sun's Workshop CC,
4188           closes bug #69809 submitted by Michael Kroell
4189
4190 Fri Jan 25 15:31:23 CET 2002 Daniel Veillard <daniel@veillard.com>
4191
4192         * xsltproc/xsltproc.c: added links to the Web site from usage()
4193
4194 Wed Jan 23 23:13:37 CET 2002 Daniel Veillard <daniel@veillard.com>
4195
4196         * doc/API*.html doc/parsedecl.py doc/*.xsl parsedecl.py: generated
4197           an index based on comments content similar to libxml2 one
4198           The code need more specific comments.
4199         * doc/*: rebuilt the web site with the new references
4200
4201 Mon Jan 21 09:53:45 CET 2002 Daniel Veillard <daniel@veillard.com>
4202
4203         * libxslt/functions.h: roll back the change after more analysis
4204           proper fix is to restore the definition of xmlXPathFuncLookupFunc
4205           int libxml2
4206
4207 Mon Jan 21 09:41:10 CET 2002 Daniel Veillard <daniel@veillard.com>
4208
4209         * libxslt/functions.h: fixed a proble  after some cleanup of libxml2
4210           includes.
4211
4212 Sun Jan 20 14:33:33 CET 2002 Daniel Veillard <daniel@veillard.com>
4213
4214         * xsltproc/xsltproc.c: Fixed RH bug #58124 due to an off-by-one
4215           error when parsing -o arguments.
4216
4217 Sun Jan 20 14:15:55 CET 2002 Daniel Veillard <daniel@veillard.com>
4218
4219         * doc/xsltproc.xml libxslt/xsltutils.c xsltproc/xsltproc.c:
4220           Fixed RH bug #57496, xsltproc was not returning error
4221           code on internal runtime errors. Should return 9 now.
4222
4223 Fri Jan 18 09:43:16 CET 2002 Daniel Veillard <daniel@veillard.com>
4224
4225         * libexslt/math.c: Charlie Bozeman provided the implementation
4226           for the EXSLT math other functions
4227
4228 Thu Jan 17 23:41:53 CET 2002 Daniel Veillard <daniel@veillard.com>
4229
4230         * libexslt/Makefile.am: jacob berkman pointed out that the
4231           Cygwin patch forgot to add libexslt.h to the tarball
4232
4233 Thu Jan 17 23:39:00 CET 2002 Daniel Veillard <daniel@veillard.com>
4234
4235         * libxslt/pattern.c: fixed I18N problemes in the template parser
4236           pointed out by Xavier Cazin
4237         * tests/docs/Makefile.am tests/docs/bug-69.xml
4238           tests/general/Makefile.am tests/general/bug-69.*: added a 
4239           specific example in the regression tests
4240
4241 Thu Jan 17 10:40:03 CET 2002 Daniel Veillard <daniel@veillard.com>
4242
4243         * Makefile.am libexslt/common.c libexslt/date.c libexslt/exslt.c
4244           libexslt/exslt.h libexslt/exsltconfig.h.in libexslt/functions.c
4245           libexslt/libexslt.h libexslt/math.c libexslt/saxon.c
4246           libexslt/sets.c libexslt/strings.c libxslt/libxslt.h
4247           libxslt/xslt.h libxslt/xsltconfig.h.in libxslt/xsltutils.c
4248           xsltproc/xsltproc.c: applied Robert Collins patch for 
4249           Cygwin support
4250
4251 Thu Jan 17 10:34:39 CET 2002 Daniel Veillard <daniel@veillard.com>
4252
4253         * xsltproc/Makefile.am configure.in: ugly way to keep
4254           the memory debugging active on my devel workstation
4255           by bypassing libtool completely
4256
4257 Tue Jan 15 12:00:18 CET 2002 Daniel Veillard <daniel@veillard.com>
4258
4259         * libxslt/templates.c: fixed bug #68751
4260         * tests/docs/Makefile.am tests/docs/bug-68.xml
4261           tests/general/Makefile.am tests/general/bug-68.*: added a 
4262           specific example in the regression tests
4263         
4264 Tue Jan 15 10:40:41 CET 2002 Daniel Veillard <daniel@veillard.com>
4265
4266         * libxslt/transform.c xsltproc/xsltproc.c: fixed a couple of
4267           small problems raised by Justin Fletcher
4268
4269 Mon Jan 14 18:35:18 CET 2002 Daniel Veillard <daniel@veillard.com>
4270
4271         * configure.in: releasing 1.0.10
4272         * doc/*: updating the docs for the release.
4273         * libxslt/namespaces.c libxslt/pattern.c libxslt/transform.c:
4274           seems I inadvertantly commited previously stuff from a failed
4275           attempt at fixing namespace nodes parents.
4276
4277 Mon Jan 14 12:20:33 CET 2002 Daniel Veillard <daniel@veillard.com>
4278
4279         * libxslt/numbers.c: the xsl:number implementation incorrectly
4280           cached the format string in some case. Fixes bug #65391
4281
4282 Mon Jan 14 10:35:27 CET 2002 Daniel Veillard <daniel@veillard.com>
4283
4284         * configure.in: fixed a couple of cut and paste errors in the
4285           math functions detection
4286         * libxslt.spec.in: added missing file entry for libxslt.pc
4287
4288 Tue Jan  8 21:04:17 MST 2002 John Fleck <jfleck@inkstain.net>
4289
4290         * doc/xsltproc.xml, doc/xsltproc.1, doc/xsltproc.html
4291         update xsltproc man page to add --stringparam option
4292
4293 Tue Jan  8 17:21:02 CET 2002 Daniel Veillard <daniel@veillard.com>
4294
4295         * xsltproc/xsltproc.c: added the --stringparam option
4296         * xsltproc/xsltproc.c: applied John Fleck's patch to correct
4297           the --novalid behaviour.
4298
4299 Tue Jan  8 13:51:08 CET 2002 Daniel Veillard <daniel@veillard.com>
4300
4301         * doc/site.xsl doc/*.html: added a DocBook section docbook.html
4302
4303 Tue Jan  8 12:51:15 CET 2002 Daniel Veillard <daniel@veillard.com>
4304
4305         * doc/*.html: updated gdome2 homepage
4306
4307 Sat Jan  5 19:32:17 CET 2002 Daniel Veillard <daniel@veillard.com>
4308
4309         * win32/dsp: Windows/MSVC project files update from Igor Zlatkovic
4310
4311 Fri Jan  4 22:13:40 MST 2002 John Fleck <jfleck@inkstain.net>
4312
4313         * doc/xsltproc.xml, xsltproc.1 - updating man page to reflect
4314         increased number of parameteres, changed license, cleaned up some
4315         places where it looked junky because of stylesheet issues
4316
4317 Fri Jan  4 15:50:25 CET 2002 Daniel Veillard <daniel@veillard.com>
4318
4319         * xsltproc/xsltproc.c: increased the max number of parameters
4320
4321 Thu Dec 20 14:54:27 CET 2001 Daniel Veillard <daniel@veillard.com>
4322
4323         * libxslt.pc.in configure.in: added pkg-config file from Rodrigo Moya
4324
4325 Thu Dec 20 14:49:39 CET 2001 Daniel Veillard <daniel@veillard.com>
4326
4327         * configure.in: applied albert portability patch
4328         * libxslt/libxslt.h libxslt/xslt.h libxslt/xsltconfig.h.in
4329          libxslt/xsltutils.c libxslt/xsltwin32config.h.in win32/dsp/libxslt.def:
4330          applied Igor patch for Windows
4331
4332 Tue Dec 11 15:27:15 CET 2001 Daniel Veillard <daniel@veillard.com>
4333
4334         * libxslt/xsltutils.c: fixed a problem with the debuuger interface.
4335
4336 Fri Dec  7 15:48:48 CET 2001 Daniel Veillard <daniel@veillard.com>
4337
4338         * configure.in: preparing 1.0.9
4339         * doc/*: updated and rebuild the doc
4340
4341 Thu Dec  6 14:57:56 CET 2001 Daniel Veillard <daniel@veillard.com>
4342
4343         * configure.in libexslt/Makefile.am: trying to fix the problem
4344           related to prelinking and libtools crazyness
4345
4346 Wed Dec  5 18:49:53 CET 2001 Daniel Veillard <daniel@veillard.com>
4347
4348         * libxslt/transform.c libxslt/variables.c: applied Keith Isdale
4349           patch for the debugger glue.
4350
4351 Wed Dec  5 18:43:45 CET 2001 Daniel Veillard <daniel@veillard.com>
4352
4353         * breakpoint/Makefile.am breakpoint/deprecated.c: replaced
4354           the whole module with just the entry points.
4355
4356 Fri Nov 30 18:59:50 CET 2001 Daniel Veillard <daniel@veillard.com>
4357
4358         * libxslt/transform.c: Nik Clayton found a bug introduced in
4359           1.0.8 when using doctypes for HTML output
4360
4361 Fri Nov 30 12:59:05 CET 2001 Daniel Veillard <daniel@veillard.com>
4362
4363         * libxslt/attributes.c libxslt/transform.c libxslt/xsltutils.c
4364           libxslt/xsltutils.h: revamped the mechanism to hook a debuger
4365           to use a callback setup function, deprecating libxsltbreakpoint
4366         * xsltproc/Makefile.am configure.in breakpoint/Makefile.am: removing
4367           dependancies on libxsltbreakpoint
4368
4369 Thu Nov 29 09:52:38 CET 2001 Daniel Veillard <daniel@veillard.com>
4370
4371         Build patch from  Peter Williams  <peterw@ximian.com>
4372         * breakpoint/Makefile.am (INCLUDES): meed $(top_builddir)/libxslt.
4373         * doc/Makefile.am ($(PAGES)): xslt.html and site.xsl live in
4374           $(srcdir), not the build directory.
4375
4376 Wed Nov 28 11:17:04 CET 2001 Daniel Veillard <daniel@veillard.com>
4377
4378         * doc/FAQ.html doc/site.xsl doc/*.html doc/Makefile.am: added an FAQ
4379
4380 Tue Nov 27 21:15:43 MST 2001 John Fleck <jfleck@inkstain.net>
4381
4382         * doc/xsltproc.xml, xsltproc.1, xsltproc.html - documenting new
4383         xsltproc return codes, per
4384         https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=56649 
4385
4386 Tue Nov 27 22:16:50 CET 2001 Daniel Veillard <daniel@veillard.com>
4387
4388         * libxslt/pattern.c: Marc Tardif provided a patch to use as
4389           much as 40 steps. A dynamic alloc would still be better
4390
4391 Mon Nov 26 21:45:07 CET 2001 Daniel Veillard <daniel@veillard.com>
4392
4393         * xsltproc/xsltproc.c: return useful code signaling error conditions
4394           closing #56649 (RH)
4395
4396 Mon Nov 26 13:14:14 CET 2001 Daniel Veillard <daniel@veillard.com>
4397
4398         * configure.in libxslt/xsltwin32config.h: preparing release of 1.0.8
4399
4400 Mon Nov 26 11:21:27 CET 2001 Daniel Veillard <daniel@veillard.com>
4401
4402         * libxslt/pattern.c: fixing bug #64044 reported by Gero Meißner,
4403           template matches compilation was failing to skip blanks bewteen
4404           consecutive predicates
4405
4406 Mon Nov 26 10:27:30 CET 2001 Daniel Veillard <daniel@veillard.com>
4407
4408         * Makefile.am configure.in breakpoint/Makefile.am libexslt/Makefile.am:
4409           updating Makefiles to fix the prelinking.
4410
4411 Sun Nov 25 15:52:38 CET 2001 Daniel Veillard <daniel@veillard.com>
4412
4413 * libxslt/transform.c: fixed a bug in the document extension
4414           element where the doctype infos were not taken into account.
4415
4416 Thu Nov 22 19:08:23 CET 2001 Daniel Veillard <daniel@veillard.com>
4417
4418         * libxslt/extra.c: fixed xsltDebug() to output with the normal
4419           error routines
4420         * tests/namespaces/*: updated the tests to separate stdout and
4421           stderr
4422         * libxslt/transform.c: increasing xsltMaxDepth to 5000
4423
4424 Thu Nov 22 12:09:56 CET 2001 Daniel Veillard <daniel@veillard.com>
4425
4426         * configure.in libexslt/Makefile.am: more Makefile fixups
4427
4428 Wed Nov 21 16:29:04 CET 2001 Daniel Veillard <daniel@veillard.com>
4429
4430         * configure.in libexslt/Makefile.am: trying to fix more Makefiles
4431           crapola
4432         * libxslt/transform.c: small fix.
4433
4434 Tue Nov 13 16:16:41 CET 2001 Daniel Veillard <daniel@veillard.com>
4435
4436         * vms/* Makefile.am: included OpenVMS port instructions from
4437           John A Fotheringham, integrated in the tar file.
4438
4439 Mon Nov 12 22:46:26 CET 2001 Daniel Veillard <daniel@veillard.com>
4440
4441         * win32/dsp/* xsltproc/xsltproc.c libxslt/transform.c: Patches
4442           from Igor for Windows
4443         * libxslt/xslt.h: try to fix the  LIBXSLT_PUBLIC mess
4444
4445 Sun Nov 11 21:15:05 CET 2001 Daniel Veillard <daniel@veillard.com>
4446
4447         * libxslt/transform.c: fixing bug #64298 reported by T. V. Raman
4448
4449 Sat Nov 10 14:01:44 CET 2001 Daniel Veillard <daniel@veillard.com>
4450
4451         * configure.in: preparing 1.0.7
4452         * libxslt.spec.in: cleanup similar to libxml2 one
4453         * breakpoint/*.[hc]: finished cleaning up contributed code
4454         * doc/*: updated and rebuilt the documentation
4455         * xsltproc/xsltproc.c: cleanup of the timing code
4456         * xsltproc/Makefile.am: auto* sucks
4457         * libxslt/transform.c: added a missing include
4458
4459 Mon Nov  5 14:29:26 CET 2001 Daniel Veillard <daniel@veillard.com>
4460
4461         * Makefile.am acconfig.h config.h.in configure.in 
4462           xsltproc/Makefile.am breakpoint/* libxslt/transform.[ch]
4463           libxslt/xsltconfig.h.in:  Applied Keith Isdale patch for
4464           the debugger support, make it the default, added the
4465           WITH_XSLT_DEBUGGER define to xsltconfig.h.in, small cleanups
4466
4467 Fri Nov  2 11:19:49 CET 2001 Daniel Veillard <daniel@veillard.com>
4468
4469         * libxslt/libxslt.h: make sure LIBXSLT_PUBLIC is defined
4470
4471 Thu Nov  1 15:15:39 CET 2001 Daniel Veillard <daniel@veillard.com>
4472
4473         * libxslt/xsltutils.c: handle indent=no when using an HTML
4474           output
4475         * tests/docbook/result/* tests/xmlspec/REC-xml-*.html: this
4476           modified the output of those test suites
4477
4478 Wed Oct 31 18:53:26 CET 2001 Daniel Veillard <daniel@veillard.com>
4479
4480         * xsltproc/xsltproc.c: cleanup, moved xsllNoNetExternalEntityLoader()
4481           to libxml and removed the --warnnet option
4482
4483 Tue Oct 30 19:32:08 CET 2001 Daniel Veillard <daniel@veillard.com>
4484
4485         * configure.in: applied patches from David Härdeman closing
4486           bug #62891
4487
4488 Tue Oct 30 15:25:19 CET 2001 Daniel Veillard <daniel@veillard.com>
4489
4490         * configure.in libxslt/xsltwin32config.h: preparing 1.0.6
4491         * libexslt/date.c: applied patch from Bruce Miller
4492         * doc/*: updated and rebuilt the docs
4493
4494 Fri Oct 26 14:12:14 CEST 2001 Daniel Veillard <daniel@veillard.com>
4495
4496         * win32/dsp/libexslt_a.dsp win32/dsp/libexslt_so.dsp
4497           win32/dsp/libxslt.def: updated with latest ZIP from Igor,
4498           made sure the .def is handled as binary
4499
4500 Fri Oct 26 11:37:01 CEST 2001 Daniel Veillard <daniel@veillard.com>
4501
4502         * win32/dsp/libxslt.def libxslt/xslt.h: applied Igor patches
4503           for Win32
4504         * doc/*.html doc/site.xsl: changed the site stylesheet a bit
4505
4506 Thu Oct 25 23:05:14 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
4507
4508         * libxslt/numbers.c: take NaN and infinity attributes of
4509           xsl:decimal-format into account. Closes #62577
4510
4511 Wed Oct 24 13:02:15 CEST 2001 Daniel Veillard <daniel@veillard.com>
4512
4513         * doc/*.html doc/site.xsl doc/Makefile.am: the web site
4514           is now extracted from the xslt.html flat file using
4515           the site stylesheet ... eat your own dogfood !
4516         * libxslt/transform.c libxslt/xsltutils.c: fixed the 
4517           HTML output to not generate a DOCTYPE if it should not
4518           i.e. no identifier nor version specified in the xsl:output
4519         * tests/multiple/out/*.orig tests/general/bug-11-.out 
4520           tests/general/bug-33-.out tests/general/bug-52.out
4521           tests/docbook/result/xtchunk/html/*.orig
4522           tests/docbook/result/html/gdp-handbook.html
4523           tests/XSLTMark/*.out: fixing xsl:output with method=html
4524           resulted in a number of small changes in the regression tests
4525           output
4526
4527 Fri Oct 19 16:46:06 CEST 2001 Daniel Veillard <daniel@veillard.com>
4528
4529         * libexslt/*.c libexslt/exsltconfig.h.in: moved the 
4530           config.h include out of exsltconfig.h since this header is
4531           exported and config.h is not.
4532
4533 Wed Oct 17 21:20:55 CEST 2001 Daniel Veillard <daniel@veillard.com>
4534
4535         * libxslt/attributes.c libxslt/extensions.c libxslt/preproc.c
4536           libxslt/transform.c libxslt/xsltutils.h: cleanup TODO into
4537           XSLT_TODO
4538
4539 Wed Oct 17 02:46:55 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
4540
4541         * libxslt/numbers.c: reworked internal representation of
4542           tokenized number format and parsing/tokenization. This fixes
4543           many bugs regarding separator and default tokens.
4544         * tests/REC/test-7.7-3.out: the fix changes the output of this
4545           test. It now complies to the XSLT spec (wow! ;o)
4546
4547 Tue Oct 16 11:25:15 CEST 2001 Daniel Veillard <daniel@veillard.com>
4548
4549         * xsltproc/Makefile.am configure.in config.h.in: trying to
4550           bypass libtool crazyness when compiling in my debug environment
4551         * libxslt/templates.c: fix a compilation problem due to recent
4552           libxml changes
4553
4554 Sun Oct 14 17:17:03 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
4555
4556         * libxslt/numbers.c tests/REC/test-7.7-4.out: implement initial
4557           non-alphanumeric token handling in number formatting.
4558
4559 Wed Oct 10 11:58:41 CEST 2001 Daniel Veillard <daniel@veillard.com>
4560
4561         * configure.in: releasing 1.0.5
4562         * doc/xslt.html doc/html/*: updated and rebuilt the docs
4563
4564 Wed Oct 10 00:10:01 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
4565
4566         * tests/REC/test-7.7-4.out: fixed a typo
4567         
4568 Tue Oct  9 22:59:00 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
4569
4570         * libexslt/saxon.c: fixed a typo and improved handling of
4571           non-XPath-expression arguments.
4572         * libexslt/strings.c: fixed a bug in tokenize: function was using
4573           tctxt->output instead of tctxt->document->doc.
4574         * libxslt/transform.c: fixed a bug in xsltDefaultProcessOneNode
4575           which was using variable "node" instead of "cur"
4576
4577 Tue Oct  9 19:51:48 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
4578
4579         * libxslt/extra.[ch]: removed older SAXON extensions
4580           implementations from Darren Graves.
4581         * libexslt/date.c: applied patch from Charlie Bozeman to fix
4582           a bug with time zone offset on Linux.
4583
4584 Tue Oct  9 13:02:46 CEST 2001 Daniel Veillard <daniel@veillard.com>
4585
4586         * libxslt/documents.c libxslt/extra.c libxslt/transform.[ch]:
4587           strip-space should also be applied to document imported
4588           at run-time.
4589
4590 Tue Oct  9 12:36:53 CEST 2001 Daniel Veillard <daniel@veillard.com>
4591
4592         * libxslt/imports.[ch] libxslt/transform.c libxslt/xslt.c:
4593           rewrote the way strip-space gets applied. Closes bugs #61962
4594         * tests/docs/Makefile.am tests/docs/bug-66.xml
4595           tests/general/Makefile.am tests/general/bug-66.*: added a 
4596           specific example in the regression tests
4597
4598 Mon Oct  8 11:27:52 CEST 2001 Daniel Veillard <daniel@veillard.com>
4599
4600         * libxslt/xslt.c: Fixing bug #61913
4601         * libxslt/transform.c: removing a small memleak when running with
4602           the profiler.
4603
4604 Sun Oct  7 18:53:34 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
4605
4606         * libexslt/saxon.c libexslt/Makefile.am libexslt/exslt.[ch]:
4607           added implementation of SAXON expression(), eval() and
4608           evaluate() functions.
4609           See http://saxon.sourceforge.net/saxon6.4.4/extensions.html
4610         * tests/extension/evaluate.xsl tests/extension/list.{xsl,out}:
4611           modified to use SAXON namespace (functions are not registered
4612           in the LibXSLT namespace)
4613         * tests/exslt/common/object-type.1.out: modified to take account
4614           of the new saxon:expression function
4615
4616 Sun Oct  7 13:15:33 CEST 2001 Daniel Veillard <daniel@veillard.com>
4617
4618         * libxslt/numbers.c: fixed bug #61070, number ANY formatting 
4619           should be faster too.
4620         * tests/docbook/result/xtchunk/html/* tests/xmlspec/REC-xml-20001006*.html:
4621           updated the result of the tests. A subtle bug unnnoticed yet
4622           in the XML Rec formatting got fixed.
4623
4624 Sat Oct  6 19:45:07 CEST 2001 Daniel Veillard <daniel@veillard.com>
4625
4626         * libxslt/numbers.c: trying to fix bug #61070, seems there
4627           is still a couple of problem left. And optimizations are
4628           certainly needed.
4629
4630 Sat Oct  6 15:10:16 CEST 2001 Daniel Veillard <daniel@veillard.com>
4631
4632         * libxslt/variables.c: fixing bug #61673 part II
4633         * tests/docs/Makefile.am tests/docs/bug-65.xml
4634           tests/general/Makefile.am tests/general/bug-65.*: added a 
4635           specific example in the regression tests
4636
4637 Sat Oct  6 12:41:37 CEST 2001 Daniel Veillard <daniel@veillard.com>
4638
4639         * libxslt/pattern.c: fixed bug #61627
4640         * tests/docs/Makefile.am tests/docs/bug-64.xml
4641           tests/general/Makefile.am tests/general/bug-64.*: added a 
4642           specific example in the regression tests
4643         * tests/docs/Makefile.am tests/docs/bug-63.xml
4644           tests/general/Makefile.am tests/general/bug-63.*: added a 
4645           specific example in the regression tests for bug #61291
4646           (fixed in libxml2 module)
4647         * tests/reports/Makefile.am tests/reports/undefvar.*: added
4648           a test for handling undefined variables
4649
4650 Thu Oct  4 15:49:57 CEST 2001 Daniel Veillard <daniel@veillard.com>
4651
4652         * configure.in xslt-config.in: trying to fix bug #60890
4653
4654 Thu Oct  4 15:28:25 CEST 2001 Daniel Veillard <daniel@veillard.com>
4655
4656         * configure.in: applied patch to close bug #60724
4657
4658 Tue Oct  2 21:38:23 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
4659
4660         * libexslt/date.c: applied patch from Charlie Bozeman that fixes
4661           a bug in DAY_IN_WEEK and implements the date:week-in-month function
4662
4663 Tue Oct  2 17:11:15 CEST 2001 Daniel Veillard <daniel@veillard.com>
4664
4665         * libxslt/extra.[ch] tests/extensions/list.*
4666           tests/extensions/evaluate.*: applied patch from Darren Graves
4667           adding support for Saxon's evaluate & expression extension functions
4668           http://users.iclway.co.uk/mhkay/saxon/saxon6.3/extensions.html
4669
4670 Mon Oct  1 17:18:32 CEST 2001 Daniel Veillard <daniel@veillard.com>
4671
4672         * libxslt/xsltwin32config.h.in win32/dsp/libexslt_*.dsp: applied
4673           patches from Igor for Windows.
4674
4675 Tue Sep 18 11:48:20 CEST 2001 Daniel Veillard <daniel@veillard.com>
4676
4677         * libxslt/xslt.c: fixed bug #60624
4678         * libxslt/xsltutils.c: improver the error context reporting
4679         * tests/reports/Makefile.am tests/reports/tst-2.*: added a
4680           specific regression test
4681         * xsltproc/xsltproc: free the stylesheet if it contained an error.
4682
4683 Mon Sep 17 14:45:48 CEST 2001 Daniel Veillard <daniel@veillard.com>
4684
4685         * libxslt/variables.c: fixed a problem with global var override
4686           being reported as an error.
4687         * tests/docs/Makefile.am tests/docs/bug-61.xml
4688           tests/general/Makefile.am tests/general/bug-61.*: added a 
4689           specific example in the regression tests
4690         * configure.in tests/Makefile.am tests/reports/*: adding a test
4691           to make sure redefinition of global variables in the same stylesheet
4692           are still reported
4693
4694 Sat Sep 15 17:32:16 CEST 2001 Daniel Veillard <daniel@veillard.com>
4695
4696         * libxslt/extra.c: okay the code from Norm is really non
4697           portable and break everywhere except on Sun and Linux
4698           platform. Compile it only on those targets.
4699
4700 Sat Sep 15 06:25:02 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
4701
4702         * libexslt/date.c: fixed some bugs (reported by Charles Bozeman
4703           and Justin Fletcher)
4704
4705 Fri Sep 14 15:22:30 CEST 2001 Daniel Veillard <daniel@veillard.com>
4706
4707         * libxslt/numbers.c: Fixing bug #60415 
4708         * tests/docs/Makefile.am tests/docs/bug-61.xml
4709           tests/general/Makefile.am tests/general/bug-61.*: added a 
4710           specific example in the regression tests
4711
4712 Fri Sep 14 12:42:22 CEST 2001 Daniel Veillard <daniel@veillard.com>
4713
4714         * tests/docbook/result/*: the change in libxml to output
4715           decimal charrefs instead of hexadecimal changed a lot of
4716           docbook results
4717
4718 Thu Sep 13 15:30:01 CEST 2001 Daniel Veillard <daniel@veillard.com>
4719
4720         * libxslt.spec.in doc/Makefile.am: install xsltproc man page
4721
4722 Wed Sep 12 21:09:53 CEST 2001 Daniel Veillard <daniel@veillard.com>
4723
4724         * configure.in: preparing for 1.0.4
4725         * doc/xslt.html doc/html/*: updated and regenerated docs
4726
4727 Wed Sep 12 18:10:33 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
4728
4729         * libexslt/date.c: fixed some compile warnings and disabled
4730           debugging by default.
4731
4732 Wed Sep 12 17:00:53 CEST 2001 Daniel Veillard <daniel@veillard.com>
4733
4734         * win32/dsp/libxslt.def libxslt/variables.[ch]: trying to
4735           incorporate comments from bug #59220
4736
4737 Wed Sep 12 05:51:32 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
4738
4739         * configure.in libexslt/date.c libexslt/Makefile.am
4740           libexslt/exslt.[ch] libexslt/.cvsignore: added implementation
4741           of the EXSLT - Dates and Times core functions.
4742           The exsltDateFormat* functions need to be reworked but it
4743           works like this, even if it's quite messy.
4744         * tests/exslt/strings/.cvsignore: added
4745
4746 Tue Sep 11 14:48:43 CEST 2001 Daniel Veillard <daniel@veillard.com>
4747
4748         * xsltproc/xsltproc.c: tell in usage that parameter strings
4749           need to be quoted 
4750
4751 Tue Sep 11 13:42:49 CEST 2001 Daniel Veillard <daniel@veillard.com>
4752
4753         * libxslt/Makefile.am libxslt/transform.c: trying to close
4754           bug #60304 on xsl:fallback usage
4755         * tests/docs/Makefile.am tests/docs/bug-60.xml
4756           tests/general/Makefile.am tests/general/bug-60.*: added a 
4757           specific example in the regression tests
4758
4759 Tue Sep 11 13:02:34 CEST 2001 Daniel Veillard <daniel@veillard.com>
4760
4761         * tests/documents/Makefile.am tests/documents/*: changed the
4762           test to use doc%5Ffile instead of doc%20file, this is 
4763           sufficient to preserve the test capacities while closing
4764           bug #60090
4765
4766 Tue Sep 11 12:33:03 CEST 2001 Daniel Veillard <daniel@veillard.com>
4767
4768         * libxslt/extra.c : close #59570 by simply not providing
4769           Norm's extension on FreeBSD.
4770         * tests/general tests/docs: added a couple of new entries
4771           in the testsuite
4772         * libexslt/strings.c: NULL initialized a local variable
4773           which was tested later on.
4774
4775 Mon Sep 10 22:52:44 CEST 2001 Daniel Veillard <daniel@veillard.com>
4776
4777         * libxslt/pattern.c tests/docbook/result/fo/*: applied fix from
4778           #60143 and rebuilt the FO test outputs
4779
4780 Mon Sep 10 19:38:54 CEST 2001 Daniel Veillard <daniel@veillard.com>
4781
4782         * libxslt/attributes.c libxslt/transform.c: fixed bug #59757
4783           on inheritance of attributes from multiple attributes-sets
4784
4785 Mon Sep  3 02:14:58 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
4786
4787         * libexslt/Makefile.am libexslt/exslt.[ch] libexslt/strings.c:
4788           added implementation of EXSLT - Strings.
4789           Currently implemented functins are str:tokenize, str:align
4790           str:concat and str:padding.
4791         * configure.in tests/exslt/Makefile.am
4792           tests/exslt/strings/Makefile.am
4793           tests/exslt/strings/tokenize.1.*: added a test for the
4794           str:tokenize function.
4795
4796 Fri Aug 31 13:51:53 CEST 2001 Daniel Veillard <daniel@veillard.com>
4797
4798         * libxslt/libxslt.4 libexslt/libexslt.4 libxslt/Makefile.am
4799           libexslt/Makefile.am: added man pages provided by Heiko Rupp
4800
4801 Wed Aug 29 21:23:54 MDT 2001 John Fleck <jfleck@inkstain.net>
4802
4803         * doc/tutorial/libxslttutorial.xml, libxslttutorial.html - update
4804         tutorial text to add references to global variables cleanups
4805
4806 Wed Aug 29 21:05:43 MDT 2001 John Fleck <jfleck@inkstain.net>
4807
4808         * doc/xsltproc.1 - added xsltproc man page (note: this has not
4809         been added into the build yet)
4810
4811 Wed Aug 29 22:58:58 CEST 2001 Daniel Veillard <daniel@veillard.com>
4812
4813         * doc/tutorial/libxslt_tutorial.c doc/tutorial/libxslttutorial.html
4814           doc/tutorial/libxslttutorial.xml: added global variables cleanups
4815           to the example.
4816         * tests/documents/Makefile.am: mjcox pointed to some missing files
4817
4818 Wed Aug 29 15:32:52 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
4819
4820         * libexslt/common.c: fixed a bug in exsltNodeSetFunction
4821
4822 Wed Aug 29 15:18:28 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
4823
4824         * libexslt/common.c: implemented version 3 of the exslt:node-set()
4825           function.
4826         * tests/exslt/common/Makefile.am
4827           tests/exslt/common/node-set.3.{xml,xsl,out}: added a test
4828
4829 Mon Aug 27 08:27:21 MDT 2001 John Fleck <jfleck@inkstain.net>
4830
4831         * adding doc/xsltproc.html - html generated from xsltproc.xml,
4832         update doc/xslt.html with link to xsltproc.html
4833
4834 Mon Aug 27 08:21:47 MDT 2001 John Fleck <jfleck@inkstain.net>
4835
4836         * adding doc/xsltproc.xml - user manual for xsltproc
4837         
4838 Sun Aug 26 20:52:02 CEST 2001 Daniel Veillard <daniel@veillard.com>
4839
4840         * libxslt/numbers.c libxslt/xslt.c: removed a couple of
4841           warning raised by the Windows compiler (Chris Poblete)
4842
4843 Fri Aug 24 01:15:24 CEST 2001 Daniel Veillard <daniel@veillard.com>
4844
4845         * libxslt/functions.h libxslt/preproc.c libxslt/transform.c:
4846           closed bugs #59212 and #59220
4847
4848 Thu Aug 23 23:18:44 CEST 2001 Daniel Veillard <daniel@veillard.com>
4849
4850         * config.h.in configure.in xsltproc/xsltproc.c: complete test
4851           of a DocBook XSLt transform with --nonet, need stat(), added
4852           checking in configure.
4853
4854 Thu Aug 23 17:37:40 CEST 2001 Daniel Veillard <daniel@veillard.com>
4855
4856         * xsltproc/xsltproc.c: catalog integration, cleanup with
4857           the --nonet option closing #59427
4858         * libxslt/xslt.c: removed a small memleak when using a 
4859           stylesheet PI
4860
4861 Tue Aug 21 13:17:19 CEST 2001 Daniel Veillard <daniel@veillard.com>
4862
4863         * //Makefile.am : fixed an error I propagated to nearly all
4864           Makefiles.am on Saturday
4865
4866 Tue Aug 21 13:10:03 CEST 2001 Daniel Veillard <daniel@veillard.com>
4867
4868         * libexslt/math.c libxslt/numbers.c: use xmlXPathIsNaN() and
4869           xmlXPathIsInf()
4870         * libxslt/pattern.c: tag a potential threading problem.
4871
4872 Tue Aug 21 11:18:45 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
4873
4874         * libxslt/numbers.c libexslt/math.c: Re-worked NaN and Inf
4875           support.
4876
4877 Sat Aug 18 15:57:46 CEST 2001 Daniel Veillard <daniel@veillard.com>
4878
4879         * //Makefile.am : fixed a number of small problems with
4880           Makefiles spotted by Albert Chin
4881
4882 Thu Aug 16 14:37:55 CEST 2001 Daniel Veillard <daniel@veillard.com>
4883
4884         * win32/dsp/libxslt.def: minimal changes to compile 1.0.2 on
4885           Windows/MSC
4886
4887 Thu Aug 16 12:58:11 CEST 2001 Daniel Veillard <daniel@veillard.com>
4888
4889         * libxslt/extensions.c: fixed a permutation of args to
4890           xsltPrintErrorContext()
4891
4892 Wed Aug 15 15:19:14 CEST 2001 Daniel Veillard <daniel@veillard.com>
4893
4894         * Makefile.am config.h.in configure.in libxslt/xsltwin32config.h:
4895           release of 1.0.2
4896         * tests/docs/Makefile.am libexslt/Makefile.am
4897           tests/documents/Makefile.am tests/general/Makefile.am
4898           xsltproc/Makefile.am: cleaning of Makefiles pointed out
4899           by make distcheck
4900
4901 Wed Aug 15 13:54:41 CEST 2001 Daniel Veillard <daniel@veillard.com>
4902
4903         * libxslt/functions.h libxslt/transform.c: a bit of cleanup
4904
4905 Wed Aug 15 12:06:43 CEST 2001 Daniel Veillard <daniel@veillard.com>
4906
4907         * libexslt/common.c libexslt/math.c libxslt/Makefile.am
4908           libxslt/libxslt.h libxslt/xsltconfig.h.in: cleanup of includes
4909           export xsltconfig.h at make install stage
4910
4911 Tue Aug 14 20:51:09 MDT 2001 John Fleck <jfleck@inkstain.net>
4912
4913         * doc/xslt.html updated xsltproc description with the many new
4914           command line options Daniel has added, cleaned up some spelling
4915
4916 Tue Aug 14 18:41:02 CEST 2001 Daniel Veillard <daniel@veillard.com>
4917
4918         * libxslt/extra.c libxslt/keys.c libxslt/templates.c 
4919           libxslt/transform.c libxslt/variables.c libxslt/xsltutils.c:
4920           serious changes on Result Value Trees and NodeSets
4921           w.r.t. deallocation and collect operations. Probably not
4922           100% clean (merge of allocated trees smells like a problem).
4923           Seems sufficient to close #58943 . Also check if XPath evaluations
4924           failed, and in this case stops the processing and avoid
4925           going further, goal is to not segfault on broken XSLT.
4926
4927 Tue Aug 14 15:32:08 CEST 2001 Daniel Veillard <daniel@veillard.com>
4928
4929         * libxslt/pattern.c libxslt/transform.c: trying to kill bug #58878,
4930           some associated serious cleanup in the pattern code.
4931         * tests/docbook/result/*: regenerated all the results for the
4932           docbook testsuite. Seems killing #58878 also changes the
4933           fo results seriously.
4934         * tests/docs/Makefile.am tests/docs/bug-5[56].xml 
4935           tests/general/Makefile.am tests/general/bug-5[56].*: added
4936           2 more tests
4937
4938 Tue Aug 14 05:01:30 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
4939
4940         * libxslt/xslt.c libxslt/xsltInternals.h libxslt/transform.c
4941           libxslt/extra.[ch] libxslt/extensions.c libxslt/preproc.[ch]:
4942           fixed compilation warnings due to recent changes to the extension
4943           framework.
4944         * libxslt/preproc.[ch] libexslt/common.c
4945           fixed the precomputation of *:document elements
4946         * libxslt/functions.h: fixed a compilation warning
4947
4948 Mon Aug 13 11:41:02 CEST 2001 Daniel Veillard <daniel@veillard.com>
4949
4950         * libxslt/xsltutils.c: applied fix suggested by Tom Moog
4951           for xsltTimeStamp() in bug report #58012
4952
4953 Sun Aug 12 21:53:13 CEST 2001 Daniel Veillard <daniel@veillard.com>
4954
4955         * libxslt/functions.c libxslt/keys.c libxslt/transform.c 
4956           libxslt/xsltutils.h: cleaned up the code w.r.t. handling
4957           of 'non-standard' libxml element like namespace nodes.
4958         * tests/docs/Makefile.am tests/docs/bug-54.xml
4959           tests/general/Makefile.am tests/general/bug-54.*: added a 
4960           specific example in the regression tests
4961
4962 Wed Aug  8 22:57:05 CEST 2001 Daniel Veillard <daniel@veillard.com>
4963
4964         * HACKING: added John Fleck right to commit in the doc subdir
4965
4966 Tue Aug  7 03:11:31 CEST 2001 Daniel Veillard <daniel@veillard.com>
4967
4968         * xsltproc/xsltproc.c: for heriting defaulted atts from the DTD
4969         * tests/docs/Makefile.am tests/docs/bug-52.xml tests/docs/bug-53.xml
4970           tests/general/Makefile.am tests/general/bug-52.*
4971           tests/general/bug-53.*: Added a few new tests for recently fixed
4972           stuff in libxml
4973         * tests/xmlspec/REC-xml-20001006-review.html
4974           tests/xmlspec/REC-xml-20001006.html: inheriting default attrs from
4975           DTD changed the result by adding extra attributes to the HTML output
4976
4977 2001-08-06  Peter Williams  <peterw@ximian.com>
4978
4979         * libexslt/Makefile.am, xsltproc/Makefile.am: Fixes for compiling
4980         when srcdir != builddir.
4981
4982 Sun Aug  5 09:37:14 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
4983
4984         * libxslt/extensions.[ch] libxslt/preproc.[ch] libxslt/transform.c
4985           libxslt/xslt.c libxslt/xsltInternals.h: modified extension framework
4986           to easify extension element precomputation.
4987         * libexslt/functions.c: uses the new framework and precomputes
4988           func:result elements.
4989
4990 Sat Aug  4 20:42:32 CEST 2001 Daniel Veillard <daniel@veillard.com>
4991
4992         * libxslt/transform.c: bug fix on output="text" from Nicolas Marsgui
4993
4994 Fri Aug  3 14:23:25 CEST 2001 Daniel Veillard <daniel@veillard.com>
4995
4996         * tests/general/bug-21-.out tests/general/bug-31-.out:
4997           this got fixed by libxml patches
4998         * win32/readme.msvc win32/dsp/* xsltproc/xsltproc.c
4999           Makefile.am libexslt/exslt.[ch] libexslt/exsltconfig.h.in
5000           libexslt/functions.c libexslt/math.c libxslt/win32config.h
5001           libxslt/xsltconfig.h.in libxslt/xsltutils.h
5002           libxslt/xsltwin32config.h libxslt/xsltwin32config.h.in:
5003           Applied Igor  Zlatkovic Win32 Facelift No.2 patch, and fixed
5004           a few things related to those changes.
5005
5006 Wed Aug  1 13:58:21 CEST 2001 Daniel Veillard <daniel@veillard.com>
5007
5008         * libxslt/xsltutils.c: well one need one \n after DOCTYPE
5009         * test//*/*.out: the output of some tests changed, looks better
5010           actually
5011
5012 Wed Aug  1 13:21:18 CEST 2001 Daniel Veillard <daniel@veillard.com>
5013
5014         * libxslt/xsltutils.c: avoid extra \n when serializing top
5015           text nodes.
5016
5017 Wed Aug  1 10:37:50 CEST 2001 Daniel Veillard <daniel@veillard.com>
5018
5019         * libxslt/extra.c: one more revision on Norm's localTime() function
5020
5021 Wed Aug  1 01:37:41 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
5022
5023         * libexslt/sets.c: fixed bugs in exsltTrailingFunction and
5024           exsltLeadingFunction when passing an empty node-set as the
5025           second argument
5026         * libxslt/functions.[ch]: gave priority to context-level functions
5027           over extension module functions. This allows a function declared
5028           with a func:function element to override an extension module
5029           function for example. This is a bit hackish...
5030         * tests/exslt/sets/{lead,trail}ing.1.out: fixed errors. The result
5031           values didn't conform to the expected values. This is a bug in
5032           the EXSLT official use cases.
5033
5034 Tue Jul 31 23:53:55 CEST 2001 Daniel Veillard <daniel@veillard.com>
5035
5036         * config.h.in configure.in libxslt/extra.c: tried to integrate
5037           Norm's implemntation of localTime()
5038
5039 Tue Jul 31 03:47:10 EDT 2001 Daniel Veillard <daniel@veillard.com>
5040
5041         * libxslt/extra.c: fixed a serious proble is node-set was called
5042           on a nodeset
5043         * tests//*/Makefile.am: fixed the rule to rebuild xsltproc
5044
5045 Lun Jul 30 05:47:43 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
5046
5047         * libexslt/functions.c: fixed memory leaks
5048         
5049 Sun Jul 29 08:37:59 EDT 2001 Daniel Veillard <daniel@veillard.com>
5050
5051         * libexslt/functions.c libxslt/extensions.[ch] libxslt/extensions.h
5052           libxslt/xslt.[hc] libxslt/xsltInternals.h xsltproc/xsltproc.c:
5053           more cleanup of the problems introduced with EXSLT, also closes
5054           bug #58180
5055
5056 Sat Jul 28 08:25:05 MDT 2001 John Fleck <jfleck@inkstain.net>
5057
5058         * doc/internals.html - general cleanup
5059
5060 Fri Jul 27 04:00:38 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
5061
5062         * configure.in tests/Makefile.am tests/exslt/*: added some tests
5063           to check EXSLT conformance
5064         * libexslt/sets.c: fixed a typo when registering has-same-node
5065
5066 Fri Jul 27 12:33:52 EDT 2001 Daniel Veillard <daniel@veillard.com>
5067
5068         * libxslt/extensions.c xsltproc/xsltproc.c: quick cleanup
5069           of memory allocations, raise a bug in the test suite, also
5070           need to be centralized as a single cleanup function.
5071
5072 Fri Jul 27 10:50:39 EDT 2001 Daniel Veillard <daniel@veillard.com>
5073
5074         * libxslt/transform.[ch]: applied changes from Tom Moog #58002
5075         * libexslt/functions.c libxslt/documents.c libxslt/extensions.c:
5076           Some cleanup, there is still a memory leak left and some warnings
5077           in libexslt.
5078
5079 Thu Jul 26 19:05:48 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
5080
5081         * libxslt/extensions.[ch] libxslt/functions.[ch] libxslt/preproc.c
5082           libxslt/transform.[ch] libxslt/variables.c libxslt/xslt.c 
5083           libxslt/xsltInternals.h: new extension framework.
5084           Added stylesheet module data, top-level and extension elements
5085           precomputing, global registration of top-level elements and 
5086           extension elements and functions.
5087           Extensions are no longer initialized from extension-element-prefixes
5088           declarations but when modules need the data.
5089           init/shutdown functions registered with xsltRegisterExtModule{,Full}
5090           only allocate and free module data, they shouldn't register the
5091           elements and functions any more.
5092         * libxslt/xsltutils.c: fixed a bug in xsltPrintErrorContext when
5093           @node wasn't NULL.
5094         * libxslt/xslt.c: fixed xsltPrecomputeStylesheetTop which allowed
5095           non-XSLT top-level elements before any xsl:import element.
5096         * libexslt/common.c libexslt/functions.c libexslt/math.c
5097           libexslt/sets.c: adapted to use the new extension framework.
5098         * libxslt/functions.c libxslt/extensions[ch] xsltproc/xsltproc.c:
5099           moved the test module from functions.c to extensions.[ch],
5100           modified it to use the new extension framework. Updated xsltproc
5101           to register the test module.
5102
5103 Thu Jul 26 10:20:19 EDT 2001 Daniel Veillard <daniel@veillard.com>
5104
5105         * libxslt/pattern.c: fixed an ugly problem with namespaces
5106           in templates compilation
5107         * tests/namespaces/tst4.*: added a specific testcase
5108         * libxslt/transform.c: reenabled debug
5109
5110 Tue Jul 24 17:45:22 CEST 2001 Daniel Veillard <daniel@veillard.com>
5111
5112         * configure.in libxslt.spec.in libxslt/xsltwin32config.h:
5113           releasing 1.0.1
5114         * doc/html/*.html: updated the docs.
5115         * xsltproc/xsltproc.c: activate line numbering unfortunately
5116           this works only with CVS, libxml2-2.4.1 is broken in this respect
5117
5118 Mon Jul 23 23:35:00 HKT 2001 William M. Brack <wbrack@mmm.com.hk>
5119
5120         * libxslt/documents.c enhancement to xsltFindDocument to
5121           cater for the Matt Sergeant patch
5122
5123 Mon Jul 23 09:32:27 MDT 2001 John Fleck <jfleck@inkstain.net>
5124
5125         * updating libxslt tutorial to include param support
5126
5127 Mon Jul 23 20:12:38 CEST 2001 Daniel Veillard <daniel@veillard.com>
5128
5129         * libexslt/math.c: small cleanup
5130         * libxslt/functions.c: patch to document('') from Matt Sergeant
5131         * libxslt/xsltInternals.h libxslt/xsltutils.[ch]: profiler on Windows
5132           c.f. bug #57464 from Tom Moog
5133
5134 2001-07-19  Darin Adler  <darin@bentspoon.com>
5135
5136         * configure.in: Add HTML_DIR definition.
5137         * xsltproc/.cvsignore: Ignore some generated files.
5138
5139 2001-07-18  Peter Williams  <peterw@ximian.com>
5140
5141         * xsltproc/Makefile.am (INCLUDES): Fix compiling when
5142         srcdir != builddir.
5143
5144 2001-07-17  Thomas Broyer <tbroyer@ltgt.net>
5145
5146         * libexslt/.cvsignore libexslt/Makefile.am libexslt/utils.[ch]
5147           libexslt/common.c libexslt/functions.c libexslt/math.c
5148           libexslt/sets.c: removed utils.[ch] as their content is
5149           integrated in libxml
5150         * libexslt/sets.c: uses the new libxml functions
5151         * libxslt/extra.[ch]: removed exsl:document
5152         * AUTHORS: added /me
5153
5154 2001-07-16  Thomas Broyer <tbroyer@ltgt.net>
5155
5156         * libexslt/.cvsignore: some more generated files to ignore
5157         * libexslt/Makefile.am: utils.h not installed anymore
5158         * libexslt/common.c libexslt/exslt.[ch] libexslt/functions.c
5159           libexslt/math.c libexslt/sets.c:
5160           changed function prefix from exsl* to exslt*
5161           {common.c,exslt.c} moved exsltLib{rary,exslt,xslt,xml}Version
5162           from common.c to exslt.c
5163           {common.c} removed exslNodeSetFunction, uses xsltFunctionNodeSet
5164           instead
5165         * libxslt/extra.c: fixed xsltFunctionNodeSet to accept
5166           XPATH_NODESET arguments in addition to XPATH_XSLT_TREE
5167         * xsltproc/xsltproc.c: updated to use the new function prefix
5168
5169 2001-07-15  Darin Adler  <darin@bentspoon.com>
5170
5171         * libxslt/.cvsignore:
5172         * tests/XSLTMark/.cvsignore:
5173         * tests/extensions/.cvsignore:
5174         * tests/xmlspec/.cvsignore:
5175         Some more generated files to ignore.
5176
5177 Mon Jul 16 14:26:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5178
5179         * Makefile.am configure.in libexslt/Makefile.am:
5180           Integration of libexslt in the build system
5181         * libxslt/Makefile.am libxslt/xsltproc.c libxslt/xsltutils.c
5182           xsltproc/Makefile.am xsltproc/xsltproc.c:
5183           Moved xsltproc to a separate directory, linked it to libexslt,
5184           and added exslt version reports to -V
5185         * tests/*/Makefile.am: updated the path to xsltproc
5186         * libexslt/common.c libexslt/exslt.h libexslt/exsltconfig.h.in
5187           libexslt/functions.c libexslt/math.c libexslt/sets.c: added
5188           versionning informations, some cleanup, and added documentation
5189           to a couple of exported functions
5190
5191 Sun Jul 15 15:27:47 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
5192
5193         * libexslt/Makefile.am: account for new source files
5194         * libexslt/.cvsignore: added
5195
5196 Sun Jul 15 05:02:50 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
5197
5198         * libexslt/exslt.[hc] libexslt/common.[hc] libexslt/functions.[hc]
5199           libexslt/math.[hc] libexslt/sets.[hc] libexslt/utils.[hc]:
5200           start implementing EXSLT
5201
5202 Sun Jul 15 16:01:55 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5203
5204         * libxslt/numbers.c libxslt/numbersInternals.h libxslt/preproc.c:
5205           trying to accept AVT for "format" in xsl:number
5206
5207 Fri Jul 13 16:57:08 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5208
5209         * win32/libxslt/libxslt.defs: trying to close #57460 by adding
5210           xsltProfileStylesheet
5211
5212 Thu Jul 12 21:31:06 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5213
5214         * libxslt/documents.c libxslt/extensions.c libxslt/extra.c
5215           libxslt/functions.c libxslt/imports.c libxslt/keys.c
5216           libxslt/namespaces.c libxslt/numbers.c libxslt/pattern.c
5217           libxslt/preproc.c libxslt/templates.c libxslt/transform.c
5218           libxslt/variables.c libxslt/xslt.c: provide context for
5219           error messages. Requires libxml head changes.
5220         * libxslt/xsltutils.c libxslt/xsltutils.h: fixed a --profile
5221           problem
5222
5223 Wed Jul 11 00:32:21 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5224
5225         * libexslt/Makefile.am: initial EXSLT framework
5226
5227 Tue Jul 10 18:03:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5228
5229         * configure.in libxslt/xsltwin32config.h: releaseing 1.0.0
5230         * win32/libxslt/libxslt.def: added another entry point
5231         * libxslt/transform.c: fixed a comment block
5232         * doc/xslt.html doc/html/*: updated and regenerated the docs
5233
5234 Tue Jul 10 17:25:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5235
5236         * win32/libxslt/libxslt.def: added missing functions
5237
5238 Tue Jul 10 16:48:43 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5239
5240         * FEATURES libxslt/xsltproc.c libxslt/transform.c
5241           libxslt/xsltInternals.h: added Embedding Stylesheets
5242         * tests/REC/Makefile.am tests/REC/stand-2.7-1.*: added the test
5243           from the REC about it
5244         * libxslt/transform.c libxslt/extra.[ch] libxslt/preproc.c:
5245           tried to accomodate the various (and changing) proprietary
5246           ways of implementing chunking.
5247         * tests/docbook/result/xtchunk/html: now output is generated in
5248           ISO-8859-1
5249
5250 Mon Jul  9 23:23:50 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5251
5252         * libxslt/xsltproc.c: small cleanup
5253         * libxslt/transform.c libxslt/xslt.c : patch from Michal Sajdak
5254           for cdata/text handling
5255
5256 Mon Jul  9 22:02:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5257
5258         * libxslt/xsltutils.c: small fix for xsl:message by Stephane GUIBOU
5259         * tests/documents/Makefile.am tests/documents/message.*: added
5260           a specific regression test
5261         * libxslt/transform.c: fixed an infinite loop
5262         * configure.in doc/Makefile.am: attempt to add --with-html-dir,
5263           this may work
5264
5265 Mon Jul  9 15:55:14 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5266
5267         * libxslt/transform.c libxslt/xslt.c libxslt/xsltInternals.h:
5268           fixed exclude-result-prefixes handling and how namespaces
5269           propagate from the stylesheet to the result in general, this
5270           is a serious cleanup.
5271         * tests/general/bug-3[67]-inc.xsl tests/general/bug-6-.xsl
5272           tests/general/itemschoose.out tests/namespaces/extra.xsl
5273           tests/REC/test-10-1.xsl tests/REC/test-10-2.xsl
5274           tests/REC/test-11.2-1.xsl tests/REC/test-11.2-2.xsl
5275           tests/REC/test-11.2-6.xsl tests/REC/test-15-1.xsl
5276           tests/REC/test-16.1-1.xsl tests/REC/test-16.1-2.xsl
5277           tests/REC/test-5.4-1.out tests/REC/test-5.4-2.out
5278           tests/REC/test-5.4-3.out tests/REC/test-5.4-4.out
5279           tests/REC/test-7.1.1-2.out tests/REC/test-7.1.1-2.xsl
5280           tests/REC/test-7.1.1-3.out tests/REC/test-7.1.1-3.xsl
5281           tests/REC/test-7.1.1.out tests/REC/test-7.1.3.xsl
5282           tests/REC/test-7.3.xsl tests/REC/test-7.4.xsl
5283           tests/REC/test-7.6.1-1.xsl tests/REC/test-7.6.1-2.xsl
5284           tests/REC/test-7.6.1-3.xsl tests/REC/test-7.6.2-1.xsl:
5285           fixed and rechecked all the tests where the namespace
5286           propagation was wrong either taht the rules were not applied
5287           correctly or that superfluous namespaces were declared in the
5288           stylesheets
5289
5290 Sun Jul  8 22:12:02 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5291
5292         * libxslt/extra.c libxslt/functions.c libxslt/transform.[ch]
5293           libxslt/variables.h: Norm pointed out that element-available()
5294           didn't work, implemented it
5295         * tests/extensions/Makefile.am tests/extensions/list.*: added
5296           a test for all registered xslt element, function and default
5297           extensions.
5298
5299 Sun Jul  8 20:44:25 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5300
5301         * tests/documents/Makefile.am 'tests/documents/doc file.xml'
5302           tests/documents/docfile.xml tests/documents/test.result
5303           tests/documents/test.xml tests/documents/test.xsl:
5304           added a test for URI-escaping on document() input
5305
5306 Sun Jul  8 16:34:07 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5307
5308         * tests/docs/Makefile.am tests/general/Makefile.am
5309           tests/general/bug-49-* tests/docs/bug-49-*
5310           tests/general/bug-50-* tests/docs/bug-50-*: added a
5311           couple of regression tests for bugs posted on the list
5312
5313 Sun Jul  8 15:40:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5314
5315         * libxslt/xsltproc.c: avoid generating CDATA node in document
5316           tree when parsed, force generation of text nodes instead.
5317
5318 Sun Jul  8 14:39:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5319
5320         * doc/extensions.html: fixed a number of typo found by Dan York
5321         * libxslt/xsltutils.c: improved the profiling ouput, added the
5322           average value too.
5323
5324 Sun Jul  8 00:01:21 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5325
5326         * libxslt/variables.c: tryingt to fix a problem raised by Norm
5327
5328 Sat Jul  7 23:19:09 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5329
5330         * config.h.in configure.in: added gettimeofday() check
5331         * libxslt/transform.c libxslt/xsltInternals.h libxslt/xsltutils.[ch]:
5332           profiling works option --profile (or --norman ;)
5333
5334 Sat Jul  7 18:58:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5335
5336         * libxslt/templates.c libxslt/transform.c libxslt/transform.h
5337           libxslt/variables.c: big cleanup on the way templates or 
5338           template fragments are processed, cleanup of stack building
5339         * tests/docs/Makefile.am tests/general/Makefile.am
5340           tests/general/bug-4[1-8]-* tests/docs/bug-4[1-8]-*: added a
5341           series of regression test for the variable/params lookups
5342         * libxslt/transform.c libxslt/xsltutils.[ch] libxslt/xsltproc.c:
5343           started working on profiling code, there is just invocation counting
5344           yet but the framework is in place.
5345
5346 Sat Jul  7 11:20:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5347
5348         * tests/docs/Makefile.am tests/general/Makefile.am
5349           tests/general/bug-40-* tests/docs/bug-40-*: added a specific
5350           regression test for the variable scope within templates problem
5351
5352 Sat Jul  7 17:05:00 HKT 2001 Wiliam Brack <wbrack@mmm.com.hk>
5353
5354         * xsltInternals.h variables.c transform.c:
5355           fixed problem with variable scope within templates
5356
5357 Fri Jul  6 17:42:06 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5358
5359         * doc/extensions.html doc/internals.html doc/xslt.html:
5360           added a documentation on writing libxslt extensions, and
5361           added links to the main page
5362         * libxslt/functions.c libxslt/xsltInternals.h
5363
5364 Fri Jul  6 14:30:00 HKT 2001 William Brack <wbrack@mmm.com.hk>
5365
5366         * cleaned up many comments and error messages
5367
5368 Fri Jul  6 01:43:51 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5369
5370         * configure.in libxslt/xsltwin32config.h: released 0.14.0
5371         * doc/xslt.html: added 0.14.0 release
5372
5373 Fri Jul  6 01:00:55 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5374
5375         * doc/html/*: rebuilt docs before release
5376         * libxslt/extensions.c: fixed a function doc header
5377
5378 Fri Jul  6 00:40:55 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5379
5380         * FEATURES: updated
5381         * libxslt/xslt.c libxslt/xsltInternals.h: added exclude-result-prefix
5382           support
5383         * tests/REC/Makefile.am tests/REC/test-7.1.1-[23]*: added a couple
5384           of specific tests
5385         * tests/xmlspec/REC-xml-20001006-review.html: seems this changed
5386           something there, not visually perceptible
5387
5388 Thu Jul  5 22:49:57 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5389
5390         * tests/docbook/result/: the change in libxml affected the
5391           output of the Docbook tests (of course it was detected on
5392           a DocBook example)
5393
5394 Thu Jul  5 15:11:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5395
5396         * FEATURES: updated
5397         * libxslt/transform.c: added cdata-section-elements
5398         * tests/REC/Makefile.am tests/REC/test-16.1-*: added 2 tests from
5399           the REC
5400
5401 Thu Jul  5 10:44:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5402
5403         * FEATURES: updated
5404         * libxslt/xsltutils.c: do not dump document for which there have
5405           been no generated content
5406         * tests/multiple/result.xml tests/namespaces/extra2.out: fixed
5407           test output accordingly
5408         * libxslt/transform.c libxslt/preproc.c: added xsl:fallback support
5409         * tests/REC/Makefile.am tests/REC/test-15-1.*: xsl:fallback test
5410         * tests/xmlspec/Makefile.am tests/docbook/Makefile.am: cleanups
5411
5412 Wed Jul  4 15:15:50 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5413
5414         * libxslt/extension.[ch] libxslt/extra.[ch] libxslt/xsltInternals.h
5415           libxslt/transform.c libxslt/functions.c: Added the extension API
5416           suggested by Thomas Broyer, this should allow implementation of
5417           EXSLT for example.
5418         * libxslt/extra.[ch]: added a fake xsltFunctionLocalTime() in Norm's
5419           CVS extension namespace to avoid complaints, some cleanup
5420         * configure.in tests/Makefile.am tests/extensions/*: added a test
5421           for new modules testing both elements and functions registration
5422
5423 Fri Jun 29 23:32:37 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5424
5425         * libxslt/pattern.c libxslt/preproc.c libxslt/transform.c
5426           libxslt/xslt.c libxslt/xsltutils.[ch]: added xsltGetQNameURI()
5427           and cleaned up the way URI for QNames were computed through
5428           the code, serious cleanup.
5429         * libxslt/xsltInternals.h libxslt/xslt.c: moved cdata-sections
5430           in their own hash table, implementation not yet finished.
5431
5432 Thu Jun 28 23:01:14 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5433
5434         * libxslt/keys.c libxslt/templates.c libxslt/transform.c
5435           libxslt/variables.c libxslt/xsltutils.c: hum seems I forgot
5436           to save/restore some XPath context, bug raised by
5437           Steve Cheng
5438
5439 Thu Jun 28 15:48:06 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5440
5441         * libxslt/xsltwin32config.h[.in]: added configuration/version
5442           informations for Windows/MSC
5443         * libxslt/libxslt.h libxslt/*.c: internal header to centralize
5444           includes switches
5445         * libxslt/Makefile.am: added libxslt.h and xsltwin32config.h[.in]
5446         * libxslt/*.[ch] libxslt/*.in: quite a bit of cleanup, especially
5447           the email addresses
5448         * AUTHORS: added William
5449
5450 Tue Jun 26 18:45:38 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5451
5452         * configure.in doc/xslt.html: releasing 0.13.0
5453         * doc/Makefile.am: don't index the win32 include
5454         * doc/html/*: rebuilt the docs
5455
5456 Mon Jun 25 15:30:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5457
5458         * libxslt/xsltproc.c: John Fleck found a typo in usage()
5459         * libxslt/xslt.c: avoid warning if version="1.1" is used
5460         * libxslt/transform.c: forgot to initialize cur->outputFile
5461         * libxslt/functions.c: DOCBOOK_XSL_HACK some versions of DocBook XSL
5462           use the vendor string to detect supporting chunking, this
5463           is a workaround to be considered in the list of decent XSLT
5464           processors <grin/>
5465
5466 Mon Jun 25 12:41:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5467
5468         * libxslt/transform.[ch] libxslt/xslt.c libxslt/xsltInternals.h:
5469           added a new interface xsltRunStylesheet() for a more flexible
5470           handling of the output and trying to adhere to xsl:document
5471           filename generation semantic if one knows the URL of the output,
5472           also add IObuf capacity and SAX for output but is currently not
5473           implemented.
5474         * libxslt/xsltproc.c: added a -o or --output filename argument
5475           to test xsltRunStylesheet() or provide a base when generating
5476           multiple outputs
5477         * tests/docbook/Makefile.am tests/docbook/result/xtchunk/html/*:
5478           updated tests to add DocBook xt:document based chunking
5479         * tests/multiple/Makefile.am: cleaned up the makefile a bit
5480         * tests/multiple/out/*.html: the new xt:document now generate
5481           the DOCTYPE if available as is the case for HTML
5482
5483 Mon Jun 25 08:45:00 HKT 2001 William Brack <wbrack@mmm.com.hk>
5484
5485         * Removed some redundant code in xsltDefaultProcessOneNode
5486           and revised the default processing of an attribute node
5487
5488 Sun Jun 24 14:40:00 HKT 2001 William Brack <wbrack@mmm.com.hk>
5489
5490         * Enhanced ApplyTemplates and ForEach to allow multiple
5491           documents within a nodelist.
5492         * Repaired small bug in xsltDocument function which caused
5493           a crash if invalid second argument was provided.
5494
5495 Sat Jun 23 15:44:00 MDT 2001 John Fleck <jfleck@inkstain.net>
5496
5497         * doc/tutorial/libxslttutorial.xml, libxslttutorial.html
5498           updating tutorial with explanation of xsltSave vs. xmlSave
5499           functions 
5500
5501 Sat Jun 23 19:04:27 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5502
5503         * test/docbook: updated to docbook-xsl-1.4, regenerated results
5504
5505 Sat Jun 23 15:32:25 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5506
5507         * Makefile.am libxslt/Makefile.am libxslt/numbers.c 
5508           libxslt/win32config.h libxslt/xsltconfig.h.in libxslt/xsltproc.c:
5509           Patches for Windows mostly contributed by Yon Derek
5510         * win32/libxslt/libxslt.def win32/libxslt/libxslt.dsw
5511           win32/libxslt/libxslt_so.dsp win32/libxslt/xsltproc.dsp:
5512           Project file for Mircrosoft C provided by Yon Derek
5513
5514 Sat Jun 23 14:20:01 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5515
5516         * libxslt/pattern.c: closing bug #56517, fixed a number of
5517           problems in the patterns compilations, priorities and debug
5518         * libxslt/transform.c: improved the template debug message
5519         * tests/docs/Makefile.am tests/general/Makefile.am
5520           tests/general/bug-39-* tests/docs/bug-39-*: added a specific
5521           regression test for #56517
5522
5523 Fri Jun 22 16:17:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5524
5525         * libxslt/xslt.c: avoid a stupid bug when compiling with
5526           libxml < 2.3.11 and without LIBXML_DEBUG_ENABLED
5527
5528 Fri Jun 22 00:11:18 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5529
5530         * libxslt/numbers.c: fix of a small bug
5531         * libxslt/transform.c libxslt/variables.c libxslt/xslt.c: cleanups
5532           while bug-hunting
5533
5534 Tue Jun 19 16:13:49 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5535
5536         * tests/docbook/Makefile.am: added XHTML and XSL FO to the
5537           regression tests
5538         * tests/docbook/xhtml/*: added XHTML stylesheets
5539         * tests/docbook/fo/*: added XSL FO stylesheets
5540         * tests/docbook/result/xhtml/*: added XHTML results
5541         * tests/docbook/result/fo/*: added XSL FO results
5542
5543 Tue Jun 19 00:20:32 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5544
5545         * HACKING: fixed, added William
5546
5547 Mon Jun 18 18:36:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5548
5549         * libxslt/xsltutils.c: forgot to flush in xsltSaveTo() in html and
5550           xml cases, and fixed text output to be recursive in text nodes
5551           lookups
5552
5553 Mon Jun 18 15:44:51 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5554
5555         * configure.in: patch from Tony Graham to cleanup libxml2 detection
5556
5557 Sun Jun 17 17:42:33 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5558
5559         * libxslt/xsltutils.[ch]: fixed xsltGetNsProp, i always forget
5560           'namespace' is a reserved C++ identifier
5561
5562 Sun Jun 17 17:08:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5563
5564         * doc/xslt.html: adding 0.12.0 release
5565
5566 Sun Jun 17 13:15:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5567
5568         * configure.in: preparing 0.12.0 release
5569         * libxslt/transform.c: a bit of cleanup on the XInclude defaults
5570         * libxslt/xsltconfig.h.in: added doc inline comment
5571         * libxslt/xslt.[ch] libxslt/xsltproc.c: added more version informations
5572           and enriched xsltproc --version to show them
5573         * doc/html/*.html: rebuilt the docs
5574         * doc/Makefile.am libxslt.spec.in: try to make sure John Fleck
5575           tutorial ends up in the tars and RPMs
5576
5577 Sat Jun 16 23:58:57 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5578
5579         * libxslt.spec.in: updated the descriptions
5580
5581 Sat Jun 16 23:26:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5582
5583         * libxslt/namespaces.[ch]: added a single namespace def copy
5584           operation xsltCopyNamespace(). cleaned up xsltCopyNamespaceList()
5585         * libxslt/transform.c: cleaned up xsltCopyNode to cope with
5586           any kind of input nodes.
5587         * libxslt/variables.c: checked and closed the last TODO about
5588           namespace propagation
5589         * tests/docs/Makefile.am tests/general/Makefile.am
5590           tests/general/bug-38-* tests/docs/bug-38-*: added a specific
5591           regression test for #56115 
5592
5593 Sat Jun 16 09:27:27 MDT 2001 John Fleck <jfleck@inkstain.net>
5594
5595         * updating tutorial: adding discussion of freeing memory, image
5596         files for callouts, link to xsltproc.c code
5597
5598 Sat Jun 16 15:23:43 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5599
5600         * libxslt/variables.c: bug #56267 was still not fixed, forgot
5601           to remove the old code
5602         * tests/general/bug-37-.xsl: wrong reference to 36 fixed, this does
5603           the test for good
5604
5605 Sat Jun 16 00:32:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5606
5607         * libxslt/variables.c: fixed bug #56267, namespaces must
5608           be propagated when evaluating local variables.
5609         * tests/docs/Makefile.am tests/general/Makefile.am
5610           tests/general/bug-37-* tests/docs/bug-37-*: added a specific
5611           regression test for #56267 
5612
5613 Fri Jun 15 18:29:29 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5614
5615         * libxslt/keys.c: avoid a possibility of an uninitialized variable
5616         * libxslt/documents.c libxslt/transform.[ch] libxslt/transform.h
5617           libxslt/xsltInternals.h libxslt/xsltproc.c: Implement Raphael Hertzog
5618           request to have xinclude processing done on document() if requested
5619
5620 Thu Jun 14 20:52:13 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5621
5622         * libxslt/Makefile.am: applied patch from Sander Vesik for -j2 
5623
5624 Thu Jun 14 10:07:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5625
5626         * libxslt/preproc.c: removed a warning on xsl:transform
5627         * tests/docs/Makefile.am tests/docs/array.xml tests/general/Makefile.am
5628           tests/general/array.out tests/general/array.xsl: added a new
5629           test fround in xsl-dev
5630
5631 Wed Jun 13 23:12:57 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5632
5633         * tests/docbook/result/html/*.html tests/XSLTMark/xslbench[12].out
5634           tests/xmlspec/REC-xml-20001006*.html: the changes to the HTML
5635           serializer of libxml impacted the result of some tests. Checked
5636           that the XML REC renders identically.
5637
5638 Mon Jun 11 07:19:06 MDT 2001 John Fleck <jfleck@inkstain.net>
5639
5640         * fixing embarassing typos in doc/tutorial/libxslttutorial.xml and 
5641         generated html
5642
5643 Tue Jun 12 07:42:35 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5644
5645         * libxslt/variables.c: fixed bug #55670, namespaces must
5646           be propagated when evaluating global variables.
5647         * tests/docs/Makefile.am tests/general/Makefile.am
5648           tests/general/bug-36-* tests/docs/bug-36-*: added a specific
5649           regression test for #55670 
5650
5651 Mon Jun 11 09:35:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5652
5653         * doc/xslt.html: linked to the tutorial
5654
5655 Sun Jun 10 19:36:31 MDT 2001 John Fleck <jfleck@inkstain.net>
5656
5657         * doc/tutorial/libxslt_tutorial.c,  libxslttutorial.html,
5658         libxslttutorial.xml 
5659         adding tutorial
5660
5661 Sun Jun 10 21:52:35 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5662
5663         * libxslt/transform.c: closed bug #55723, problem was due to
5664           a limitation of xsltGetNamespace() when the insertion point
5665           is the document.
5666         * tests/docs/Makefile.am tests/general/Makefile.am
5667           tests/general/bug-35-* tests/docs/bug-35-*: added a specific
5668           regression test for #55723 
5669
5670 Sun Jun 10 13:37:33 HKT 2001 William Brack <wbrack@mmm.com.hk>
5671
5672         * libxslt/transform.c: fixed problems with document() in
5673           xsltApplyTemplates and xsltForEach.  Cleaned up several
5674           error messages.
5675         * libxslt/keys.c: saved and restored ctxt->document within
5676           xsltInitKey to fix problem with keys when doc changed
5677         * libxslt/documents.[ch]: added new procedure xsltFindDocument
5678           needed when document() causes a change of doc within
5679           xsltApplyTemplates and xsltForEach
5680
5681 Thu Jun  7 21:31:46 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5682
5683         * libxslt/xsltutils.[ch]: closing bug #55683 required to add
5684           xsltGetNsProp()
5685         * libxslt/attributes.c libxslt/imports.c libxslt/namespaces.c
5686           libxslt/preproc.c libxslt/templates.c libxslt/xslt.c:
5687           Updated to use the new function
5688         * tests/XSLTMark/prettyprint.out tests/docbook/result/html/*.html:
5689           the fixes in the serialization of <pre> in HTML in libxml
5690           led to a number of changes in the output
5691
5692 Thu Jun  7 04:23:38 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5693
5694         * tests/docs/Makefile.am tests/general/Makefile.am
5695           tests/general/bug-32-* tests/docs/bug-32-*: added a specific
5696           regression test for #55722 
5697
5698 Wed Jun  6 09:48:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5699
5700         * doc/xslt.html: updated to ask to not send mail directly
5701         * tests/docs/Makefile.am tests/general/Makefile.am
5702           tests/general/bug-33-* tests/docs/bug-33-*: added a specific
5703           regression test for #55722 
5704
5705 Wed Jun  6 11:07:50 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5706
5707         * libxslt/pattern.c : trying to fix #55670
5708         * tests/XSLTMark/reverser.out : result of test changed when
5709           William fixed XPath
5710
5711 Sat Jun  2 06:52:12 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5712
5713         * doc/xslt.html: updated with 0.11.0
5714
5715 Fri Jun  1 11:30:49 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5716
5717         * configure.in libxslt.spec.in: released 0.11.0
5718
5719 Mon May 28 12:54:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5720
5721         * libxslt/transform.c: William M. Brack found a small bug
5722           when call-template didn't find the template.
5723
5724 Sat May 26 17:08:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5725
5726         * libxslt/transform.c: fixed handling of PI and comments
5727           (bug raised by Brent M Hendricks).
5728         * tests/docs/Makefile.am tests/general/Makefile.am
5729           tests/general/bug-31-* tests/docs/bug-31-*: added a specific
5730           regression test
5731
5732 Wed May 23 13:25:37 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5733
5734         * libxslt/xsltproc.c: added --xinclude in the option list,
5735           patch from Raphael Hertzog
5736         * test/docbook/Makefile.am: force at least the gdp-handbook.xml
5737           test in the normal testsuite
5738
5739 Wed May 23 00:05:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5740
5741         * libxslt/variables.c: Mark Vakoc found a bug in variable eval
5742           at the top template level 
5743         * tests/docs/Makefile.am tests/general/Makefile.am
5744           tests/general/bug-30-* tests/docs/bug-30-*: added a specific
5745           regression test
5746
5747 Tue May 22 18:52:30 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5748
5749         * libxslt/functions.c: fixed the document() bug reported by
5750           Stephane GUIBOUD-RIBAUD
5751         * tests/docs/Makefile.am tests/general/Makefile.am
5752           tests/general/bug-29-* tests/docs/bug-29-*: added a specific
5753           regression test
5754
5755 Tue May 22 15:09:02 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5756
5757         * configure.in libxslt/Makefile.am: fixed bug #54953
5758         * libxslt/attributes.c: cleanup pointed by Joe Orton
5759         * libxslt/xsltproc.c: added --catalogs to load catalogs from
5760           $SGML_CATALOG_FILES
5761         * libxslt/functions.c: cleanup unreached code
5762         * configure.in config.h.in libxslt/xsltproc.c: guarded the
5763           include with preprocessor definitions
5764
5765 Sun May 20 20:55:00 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5766
5767         * tests/documents/Makefile.am tests/general/Makefile.am
5768           tests/multiple/Makefile.am tests/namespaces/Makefile.am
5769           tests/numbers/Makefile.am tests/xmlspec/Makefile.am
5770           tests/REC/Makefile.am tests/REC1/Makefile.am tests/REC2/Makefile.am
5771           tests/XSLTMark/Makefile.am tests/docbook/Makefile.am
5772           configure.in: Makefiles cleanup from Joe Orton
5773
5774 Sun May 20 15:20:49 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5775
5776         * tests/docbook/result/html/external.html 
5777           tests/docbook/result/html/graphics.html
5778           tests/docbook/result/html/gtest.html
5779           tests/docbook/test/external.xml tests/docbook/test/subdoc.ent:
5780           Added a test from coolo for IDs in external parsed entities
5781           and fixed 2 outputs
5782
5783 Sat May 19 22:28:05 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5784
5785         * libxslt/xslt.[ch] libxslt/xsltconfig.h.in libxslt/xsltproc.c:
5786           added --version info to xsltproc closing #54952
5787
5788 Sat May 19 17:41:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5789
5790         * tests/documents/Makefile.am tests/general/Makefile.am 
5791           tests/multiple/Makefile.am tests/namespaces/Makefile.am 
5792           tests/numbers/Makefile.am tests/xmlspec/Makefile.am:
5793           Seems some of the changes I made for 0.9.0 Makefiles were
5794           not commited ...
5795
5796 Sat May 19 17:23:54 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5797
5798         * configure.in: preparing 0.10.0 release
5799         * doc/xslt.html: updated
5800         * doc/html/* : rebuilt the docs
5801
5802 Fri May 18 16:48:13 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5803
5804         * libxslt/xslt.c libxslt/variables.c libxslt/templates.c
5805           libxslt/keys.[ch] libxslt/functions.c: cleanups for ctxt->inst
5806           avoiding modifying stylesheet informations, and fixing
5807           document() when called from a global variable init
5808
5809 Thu May 17 17:24:35 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5810
5811         * libxslt/functions.c libxslt/transform.c libxslt/xsltInternals.h:
5812           add ctxt->inst to allow stylesheet element lookup (needed
5813           for document() fix)
5814         * libxslt/*.[ch]: generate docs for the structures and
5815           macros, general cleanup for docs
5816         * doc/html/*.html: regenerated all docs
5817
5818 Wed May 16 23:00:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5819
5820         * libxslt/extra.c libxslt/transform.c libxslt/variables.[ch]
5821           libxslt/xsltInternals.h: optimizations, cleanup of global
5822           variables handling
5823
5824 Wed May 16 12:29:17 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5825
5826         * libxslt/extensions.c libxslt/preproc.c libxslt/transform.c
5827           libxslt/variables.c: force the precompilation of XPath expressions
5828           at stylesheet compilation time
5829
5830 Tue May 15 14:34:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5831
5832         * libxslt/keys.c libxslt/transform.c: avoid some possibilities
5833           of crashes on debug
5834         * tests/REC/Makefile.am: be less verbose if things really go wrong
5835         * tests/docs/Makefile.am tests/general/Makefile.am
5836           tests/docs/bug-28-.xml tests/general/bug-28-.*: added bug-28 in
5837           the regression tests
5838
5839 Sat May 12 12:39:54 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5840
5841         * libxslt/transform.c libxslt/xsltutils.c: fixed the default
5842           detection method to generate HTML documents 
5843         * tests/REC/test-2.5-1.out tests/REC/test-8-1.out
5844           tests/REC/test-9.1-2.out tests/REC2/html.xml tests/XSLTMark/game.out
5845           tests/XSLTMark/html.out tests/XSLTMark/products.out
5846           tests/XSLTMark/xslbench1.out tests/XSLTMark/xslbench2.out
5847           tests/XSLTMark/xslbench3.out tests/general/bug-15-.out
5848           tests/general/bug-5-.out: updated a number of tests output
5849           accordingly
5850
5851 Sat May 12 09:43:10 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5852
5853         * libxslt/xsltproc.c: use LIBXML_DOCB_ENABLED, William M. Brack
5854
5855 Fri May 11 19:12:26 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5856
5857         * libxslt/templates.c libxslt/transform.c: fixed bug #54446
5858           about attribute being generated twice. Fixed a number of related
5859           bugs on attributes handling.
5860         * tests/REC/test-7.1.4.out: this changed an attribute generation
5861           order
5862         * tests/docs/bug-27-.xml tests/general/bug-27-.*: added test
5863
5864 Fri May 11 17:08:14 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5865
5866         * libxslt/templates.c: fixed bug #54451 on escaped curly brackets
5867         * tests/docs/bug-26-.xml tests/general/bug-26-.*: added test
5868
5869 Fri May 11 16:20:40 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5870
5871         * configure.in tests/XSLTMark/Makefile.am: try to handle gracefully
5872           the cases where perl is not in the path (nor in /usr/bin)
5873         * tests/docbook/result/html/gdp-handbook.html
5874           tests/docbook/result/html/kwrite.html
5875           tests/docbook/test/gdp-handbook.xml
5876           tests/docbook/test/kwrite.xml: commited a few more DocBook tests
5877
5878 Wed May  9 12:29:47 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5879
5880         * libxslt/xsltproc.c: added --nonet and --warnnet to catch
5881           cases where a network access is needed to load a DTD or entity
5882         * tests/docbook/Makefile.am: added --nonet
5883         * tests/docbook/test/classsynop.xml tests/docbook/test/docbook40.xml:
5884           fixed 2 tests as a result
5885
5886 Wed May  9 10:43:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5887
5888         * configure.in tests/docbook/Makefile.am tests/docbook/**/Makefile.am:
5889           try to remove the unneeded docbook Makefile stuff 
5890
5891 Tue May  8 16:18:19 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5892
5893         * doc/xslt.html: fixed a link error
5894         * libxslt/transform.c libxslt/xsltutils.c: fixed DOCTYPE generation
5895         * libxslt/xsltproc.c: cleaned up the --repeat loop
5896         * tests/documents/result.xhtml tests/xmlspec/REC-xml-20001006*.html:
5897           fixed the DOCTYPE in tests output
5898         * tests/docs/bug-25-.xml tests/doc/Makefile.am 
5899           tests/general/bug-25-.* tests/general/Makefile.am : added a new
5900           test case and fixed the EXTRA_DIST
5901
5902 Mon May  7 22:27:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5903
5904         * libxslt/extra.c: add more debug to xsltDebug
5905         * libxslt/transform.c: spent a few hours tracking down an ugly
5906           race like bug in xsltCopyTreeList() arghhh
5907         * libxslt/xsltproc.c: call xmlInitMemory() explictely
5908
5909 Mon May  7 11:38:54 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5910
5911         * doc/internals.html: more work done on the doc, mostly complete
5912           except the section on the XSLT stack and the extensions API
5913           since both still need more work.
5914
5915 Sun May  6 15:03:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5916
5917         * doc/internals.html doc/contexts.* doc/object.*: more work done
5918           on the doc
5919
5920 Sun May  6 00:18:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5921
5922         * doc/internals.html: more work done on the doc
5923
5924 Sat May  5 18:58:13 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
5925
5926         * libxslt/transform.c tests/XSLTMark/xslbench1.out: Another fix
5927           for the CDATA output
5928
5929 Sat May  5 18:09:15 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5930
5931         * libxslt/xslt.c: do not escape content of CDATA nodes on output
5932
5933 Sat May  5 17:52:52 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5934
5935         * doc/internals.html doc/node.fig doc/node.gif doc/processing.fig
5936           doc/processing.gif doc/stylesheet.fig doc/stylesheet.gif
5937           doc/templates.fig doc/templates.gif: started writing tye doc
5938           on how libxslt works.
5939
5940 Sat May  5 17:13:16 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
5941
5942         * libxslt/numbersInternals.h libxslt/numbers.c
5943           tests/numbers/format-number.out tests/XSLTMark/number.out:
5944           Patch from William Brack to bring format-number() more in alignment
5945           with the Java implementations.
5946
5947         * libxslt/xslt.c tests/XSLTMark/xslbench1.out: Do not remove CDATA
5948           from stylesheet
5949
5950 Fri May  4 20:10:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5951
5952         * tests/docbook/result/html/* tests/general/bug-11-.out 
5953           tests/multiple/result.xml tests/XSLTMark/*.out 
5954           libxslt/transform.c: all the PUBLIC and SYSTEM IDs
5955           were swapped
5956
5957 Fri May  4 19:09:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5958
5959         * libxslt/xsltproc.c: add a --docbook option if your libxml2
5960           has the SGML DocBook support compiled in.
5961
5962 Fri May  4 17:06:01 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5963
5964         * tests/general/bug-2[0-4].* tests/docs/bug-2[0-4].*: added more
5965           tests especially on sorting
5966         * test/xsltutils.c: oops multiple sorts was actually broken !!!
5967           this should fix it
5968
5969 Thu May  3 19:02:21 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5970
5971         * TODO configure.in libxslt.spec.in: getting ready for 0.9.0
5972           release
5973         * doc/html/* doc/xslt.html: updated and regenerated the docs
5974
5975 Thu May  3 17:56:55 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5976
5977         * xsltutils.[ch] transform.c: implemented multiple levels of
5978           sorting
5979         * test/REC/test-10-2.*: added a really small test for it
5980
5981 Wed May  2 14:04:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5982
5983         * libxslt/transform.c libxslt/xslt.c: fixed xsl:text processing
5984           there can be multiple text and CDATA child
5985
5986 Wed May  2 10:55:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5987
5988         * tests/multiple/makefile.am: fixing #54015
5989         * tests/XSLTMark/makefile.am tests/docbook/makefile.am: fixing #54014
5990           and a similar problem for the docbook tests
5991
5992 Mon Apr 30 22:31:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
5993
5994         * tests/general/bug-8-.out: fixed in libxml xpath
5995         * libxslt/templates.[ch] libxslt/pattern.c: fixed an namespace
5996           problem in predicates within a pattern. Spotted another
5997           potential namespace problem
5998
5999 Mon Apr 30 19:29:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6000
6001         * libxslt/preproc.c libxslt/xslt.c libxslt/xsltInternals.h
6002           libxslt/xsltproc.c: counting errors and warnings at compilation
6003           time. Stop processing in case of error.
6004         * tests/docs/bug-1[89]* tests/general/-1[89]* tests/general/inner.xsl:
6005           added more namespace related bug checks
6006
6007 Mon Apr 30 13:47:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6008
6009         * libxslt/preproc.c libxslt/variables.c: found the source of a
6010           memory leak with DocBook introduced this w.e.. bit of cleanup.
6011         * tests/docbook/result/html/*.html : regenerated the DocBook tests
6012           results.
6013
6014 Sun Apr 29 18:54:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6015
6016         * libxslt/variables.c: fixing bug #53769
6017         * tests/general tests/docs: added new examples from the
6018           bug reports to the regression tests, updated the Makefiles
6019
6020 Sun Apr 29 11:47:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6021
6022         * preproc.[ch] templates.[ch] variables.[ch] xslt.c xsltInternals.h
6023           attributes.c extensions.[ch]: moved all stylesheet precomputation
6024           at stylesheet loading time (stylesheet transform should be thread
6025           safe now), improved params and variables evaluations (but optim
6026           is not complete yet).
6027         * TODO: updated
6028
6029 Sat Apr 28 16:28:45 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6030
6031         * libxslt/xsltproc.c : changed the way --repeat works when
6032           used twice
6033
6034 Sat Apr 28 16:19:06 CEST 2001 Bjorn Reese <breese@users.sourceforge.net>
6035
6036         * libxslt/numbers.c libxslt/preproc.c tests/REC/test-7.7-3.out:
6037           fixed default formatting
6038
6039 Sat Apr 28 14:20:29 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6040
6041         * libxslt/preproc.c : fixed <xsl:sort/> bug reported by Ankh
6042         * libxslt/xsltproc.c : added an option to process HTML input
6043
6044 Thu Apr 26 21:13:59 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6045
6046         * libxslt/transform.c: Tony Gorski found a bug pointed by
6047           a compiler on Tandem
6048         * tests/documents/result.xhtml: this results in a small
6049           change in the output of this test
6050
6051 Thu Apr 26 16:33:36 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6052
6053         * test/general/bug-14*.* test/docs/bug-14*.xml: added testcase from
6054           bug #53689
6055
6056 Wed Apr 25 16:58:11 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6057
6058         * transform.c: fixed text and cdata handling in xsl:copy
6059         * xslt.c : avoid crashing on invalid xslt input
6060         * test/general/bug-*.* test/docs/bug-*.xml : added a number of
6061           bugs submitted to the regression tests
6062
6063 Wed Apr 25 12:42:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6064
6065         * libxslt/xsltproc.c : Renaud Chaillat provided a fix for #53535
6066
6067 Sun Apr 22 22:47:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6068
6069         * configure.in: updated to 0.8.0
6070
6071 Sun Apr 22 22:46:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6072
6073         * transform.c: fixed a bug introduced on handling #53401
6074
6075 Sun Apr 22 22:27:09 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6076
6077         * transform.c: fixed #53401
6078         * configure.in libxslt/*.c: allowed to suppress debug reporting
6079           functionalities but it brings not noticeable improvements
6080         * doc/xslt.html doc/html/*: updated and regenerated docs
6081
6082 Wed Apr 18 15:24:50 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6083
6084         * tests/general/bug-5-.out tests/multiple/out/*.orig
6085           tests/xmlspec/REC-xml-20001006*.html: fixed the test output
6086           following the libxml changes
6087
6088 Wed Apr 18 12:05:04 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6089
6090         * libxslt/functions.c: applied TOM's patch to key()
6091         * tests/XSLTMark/chart.out tests/XSLTMark/dbonerow.out
6092           tests/XSLTMark/prettyprint.out tests/multiple/out/*.html:
6093           small HTML output change 
6094
6095 Mon Apr 16 16:14:02 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6096
6097         * libxslt/functions.c libxslt/transform.c libxslt/xsltInternals.h:
6098           fixed current()
6099
6100 Tue Apr 17 10:10:56 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6101
6102         * libxslt/keys.c libxslt/preproc.c libxslt/templates.c
6103           libxslt/transform.c libxslt/variables.c libxslt/xsltInternals.h:
6104           fixed for the most part the namespace handling problem in XPath
6105           expression computations.
6106         * test/doc/ tests/general: added bug 5 and 6
6107
6108 Thu Apr 12 14:40:22 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6109
6110         * libxslt/xslt.c: applied William M. Brack patch fixing the
6111           template lack of support for priority
6112         * test/XSLTMark/*.out : this fixed anumber of problems in the
6113           XSLTMark output
6114
6115 Thu Apr 12 14:29:48 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6116
6117         * libxslt/functions.c: removed warning in unparsed-entity-uri()
6118           fixed a bug in generate-id()
6119         * libxslt/transform.c: fixed null list result errors
6120         * libxslt/transform.c libxslt/xsltutils.c: applied William M. Brack
6121           fixes for sorting semantic
6122
6123 Wed Apr 11 14:25:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6124
6125         * config.h.in configure.in libxslt/xsltconfig.h.in: added
6126           ansidecl.h test
6127         * libxslt/xsltproc.c : added --xinclude option
6128         * tests/XSLTMark/union.out : fixed the output
6129
6130 Tue Apr 10 20:05:00 CEST 2001 Fatih Demir <kabalak@gtranslator.org>
6131
6132         * .cvsignore & doc/.cvsignore: Added CVS ignore files.
6133
6134 Tue Apr 10 12:10:25 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6135
6136         * configure.in: released 0.7.0
6137         * tests/XSLTMark/Makefile.am: trying to solve some make distcheck
6138           problems
6139
6140 Sun Apr  8 11:42:03 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6141
6142         * libxslt/functions.c libxslt/keys.c libxslt/transform.c:
6143           some checking against NULL pointers
6144
6145 Mon Apr  2 17:00:39 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6146
6147         * configure.in tests/Makefile.am tests/XSLTMark/* tests/multiple:
6148           added the XSLTMark in the regression tests as well as multiple
6149           output test from Ankh
6150         * libxslt/functions.c libxslt/keys.c libxslt/transform.c
6151           libxslt/variables.c libxslt/xsltutils.c: applied William M. Brack
6152           patches and fixed a memory leak
6153         * tests/docbook/result/html/*.html : updated the results after
6154           William's patch
6155         * tests/xmlspec/REC-xml-20001006-review.html 
6156           tests/xmlspec/REC-xml-20001006.html: libxml now don't invent
6157           an HTML doctype when serializing HTML result, but adds the
6158           encoding in ALT
6159
6160 Thu Mar 29 10:24:42 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6161
6162         * libxslt/transform.c: applied fix to xsltApplyTemplates from
6163           William M. Brack
6164         * test/docbook/result/html/*.html: this change the output
6165         * tests/xmlspec/REC-xml-20001006-review.html 
6166           tests/xmlspec/REC-xml-20001006.html: this also fixed some of
6167           the reference anchors generated for the XML spec
6168
6169 Mon Mar 26 18:57:58 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6170
6171         * libxslt/attributes.c libxslt/extra.c libxslt/keys.c libxslt/numbers.c
6172           libxslt/templates.c libxslt/transform.c libxslt/xsltconfig.h.in
6173           libxslt/xsltutils.c: of course the way I defined
6174           UNUSED breaks on old gcc version. Try to be smart and
6175           also define it directly in xsltconfig.h
6176         * tests/xmlspec/Makefile.am: fixed the timing arg test
6177
6178 Sun Mar 25 22:07:34 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6179
6180         * libxslt/transform.[ch] libxslt/variables.[ch] libxslt/xsltproc.c:
6181           implemented command line parameter passing
6182         * tests/xmlspec/Makefile.am tests/xmlspec/REC-xml-20001006-review.html:
6183           tested it by passing show.diff.markup=1 to build the review version too
6184
6185 Sat Mar 24 19:35:42 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6186
6187         Huge cleanup, I switched to compile with
6188         -Wall -g -O -ansi -pedantic -W -Wunused -Wimplicit
6189         -Wreturn-type -Wswitch -Wcomment -Wtrigraphs -Wformat
6190         -Wchar-subscripts -Wuninitialized -Wparentheses -Wshadow
6191         -Wpointer-arith -Wcast-align -Wwrite-strings -Waggregate-return
6192         -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Winline
6193         * libxslt/attributes.c libxslt/extensions.c libxslt/extra.c
6194           libxslt/functions.c libxslt/keys.c libxslt/numbers.c
6195           libxslt/pattern.c libxslt/preproc.c libxslt/templates.c
6196           libxslt/transform.c libxslt/variables.c libxslt/xslt.c
6197           libxslt/xsltutils.c: basically made static unexported functions
6198           avoided name clashes and flagged unused parameters.
6199
6200 Thu Mar 22 22:52:48 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6201
6202         * configure.in: 0.6.0 yet another release
6203         * doc/xslt.html doc/html/*: updated the docs
6204
6205 Wed Mar 21 23:19:11 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6206
6207         * libxslt/xsltInternals.h libxslt/xslt.c libxslt/transform.c
6208           libxslt/templates.[ch] libxslt/preproc.c libxslt/extensions.[ch]
6209           extended xsltEvalStaticAttrValueTemplate and 
6210           xsltEvalAttrValueTemplate to support foreign namespaces,
6211           and fixed document()
6212
6213 Mon Mar 19 18:40:40 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6214
6215         * xsltutils.h: cleanup some garbage added last night
6216         * xsltInternals.h variables.c transform.c templates.[ch]
6217           preproc.c pattern.c keys.c: switched the whole XSLt processing
6218           to use XPath precompiled expressions and reusing them.
6219         * functions.c: some cleanup, seems people don't use 
6220           unparsed-entity-uri() the way it's supposed to be used
6221
6222 Mon Mar 19 01:08:05 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6223
6224         * libxslt/keys.c libxslt/templates.c libxslt/transform.c
6225           libxslt/variables.c libxslt/xsltutils.h: Changed to work
6226           with the new way XPath is interpreted. This doesn't yet
6227           take advantage of the separate parsing/evaluation phases
6228
6229 Wed Mar 14 15:51:36 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6230
6231         * libxslt/transform.c: robert@xsl.00008.org pointed out a
6232           problem in xsl:copy-of in case of attributes
6233         * tests/docs/Makefile.am tests/docs/bug-3-.xml
6234           tests/general/Makefile.am tests/general/bug-3-.*:
6235           added the test to the general regression suite
6236
6237 Wed Mar 14 14:21:45 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6238
6239         * libxslt/functions.c: applied and fixed ptittom@free.fr patch
6240           fixing some of the missing functionnalities in the XSLT
6241           functions implementations.
6242           
6243 Tue Mar 13 14:38:48 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6244
6245         * libxslt/Makefile.am: nick@debian.org forwarded a fix
6246
6247 Tue Mar 13 10:29:45 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6248
6249         * README.cvs-commits: added, pointing to HACKING
6250         * HACKING: added defines commit rules.
6251
6252 Mon Mar 12 14:43:20 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6253
6254         * libxslt/extra.c libxslt/variables.c: fixing compilation
6255           when libxml was compiled without debug support
6256
6257 Sat Mar 10 13:50:16 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6258
6259         * configure.in: time for 0.5.0
6260         * tests/docs/Makefile.am tests/general/Makefile.am: make sure the
6261           new test files are included in the distribution
6262         * doc/xslt.html : updated
6263         * doc/html/*.html: regenerated the docs
6264
6265 Thu Mar  8 02:34:52 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6266
6267         * tests/docbook/result/html/*.html: regenerated the HTML
6268           now that value-of an result tree don't include the fake root
6269
6270 Thu Mar  8 02:26:56 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6271
6272         * libxslt/transform.c libxslt/variables.c: removed a couple
6273           of possibly uninitialized var probs
6274         * tests/xmlspec/Makefile.am: run the processing without verbose
6275           avoid raising generated id differences.
6276
6277 Wed Mar  7 23:22:09 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6278
6279         * libxslt/preproc.c libxslt/xsltInternals.h: fixed a stylesheet
6280           reuse problem.
6281         * libxslt/transform.c: fixed a bug which exaplined why no
6282           optimization were resulting from preproc stuff
6283
6284 Wed Mar  7 21:51:52 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6285
6286         * libxslt/preproc.c libxslt/transform.c: a couple of nastyness
6287           w.r.t. value of tree result (and attributes within it) fixed.
6288         * tests/xmlspec/Makefile.am tests/xmlspec/REC-xml-20001006.html:
6289           Integrated the xmlspec to the test (i.e. diffed output for
6290           changes).
6291
6292 Wed Mar  7 18:01:07 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6293
6294         * imports.c transform.c xslt.c xsltInternals.h: fixed a
6295           strip-spaces problem
6296         * tests/docs/*.xml tests/general/*.[xsl,out]: added reported
6297           bugs to testsuite
6298
6299 Wed Mar  7 13:34:13 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6300
6301         * libxslt/transform.[ch]: finished integrating the current
6302           state of the preproc optimizations.
6303         * tests/xmlspec/diffspec.xsl: switched off diff printing
6304
6305 Wed Mar  7 12:46:09 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6306
6307         * libxslt/preproc.c libxslt/transform.c: started rolling in
6308           some of the optimizations.
6309
6310 Tue Mar  6 19:39:25 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6311
6312         * attributes.[ch] extra.[ch] preproc.c xsltInternals.h
6313           transform.[ch]: previous commit broke a lot of stuff, fixing
6314           and preparing for next step
6315
6316 Tue Mar  6 19:03:21 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6317
6318         * libxslt/preproc.[ch] Makefile.am templates.[ch] transform.[ch]
6319           xsltInternals.h: started working on optimizing stylesheet
6320           element parsing. Just builds the extra informations so far.
6321         * xsltutils.h: added a missing XPath decl
6322
6323 Tue Mar  6 09:52:13 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6324
6325         * libxslt/variables.c: William M. Brack found a serious bug
6326           with imports and global variables ...
6327
6328 Mon Mar  5 21:51:54 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6329
6330         * libxslt/pattern.[ch] libxslt/transform.c: added 
6331           xsltCleanupTemplates() to clean up state left after processing.
6332
6333 Sun Mar  4 19:03:27 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6334
6335         * libxslt/transform.c: applied patch from William M. Brack
6336           to support with-param in xsltApplyTemplates().
6337
6338 Sun Mar  4 17:53:13 CET 2001 Bjorn Reese <breese@users.sourceforge.net>
6339
6340         * libxslt/pattern.c: fixed the compilation of patterns which
6341           contains XPath NodeTypes. Handling of nested predicates.
6342
6343 Sat Mar  3 20:56:47 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6344
6345         * libxslt/transform.c: save ctxt->node after for-each
6346
6347 Thu Mar  1 18:16:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6348
6349         * configure.in libxslt.spec.in: updated to 0.4.0 and 2.3.3
6350         * doc/xslt.html: updated
6351
6352 Wed Feb 28 19:24:51 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6353
6354         * libxslt/extra.[ch] libxslt/transform.[ch] libxslt/xsltInternals.h:
6355           added xsltDocumentElem implementing multiple file output,
6356           including 1.1 xsl:document but yet untested.
6357
6358 Wed Feb 28 00:03:44 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6359
6360         * libxslt/extensions.c: fixed stoopid bug
6361         * libxslt/Makefile.am libxslt/extra.[ch]: added a new module
6362           carrying extensions to the specification. Added node-set()
6363           for existing saxon and xt namespaces and debug() in libxslt
6364           namespace (http://xmlsoft.org/XSLT/namespace)
6365         * libxslt/xsltutils.[ch] transform.c: moved xsltDebug to extra.c
6366           plus cleanup.
6367         * configure.in tests/Makefile.am tests/namespaces: added some
6368           namespaces tests, including a test calling the extra debugging
6369           function in libxslt namespace, worked first time !!!
6370
6371 Tue Feb 27 16:15:47 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6372
6373         * libxslt/xslt.c: extension prefix support for the full stylesheet
6374         * libxslt/transform.c libxslt/extensions.[ch]: more work should
6375           start working
6376
6377 Mon Feb 26 22:59:44 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6378
6379         * doc/xslt.html : cleaned up, added a bit more description on
6380           the API section.
6381
6382 Mon Feb 26 09:41:04 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6383
6384         * libxslt/Makefile.am libxslt/extensions.[ch]: started working
6385           on functions and element extensions. First on list will be
6386           a document element.
6387
6388 Sun Feb 25 06:52:14 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6389
6390         * configure.in libxslt.spec.in: releasing 0.3.0
6391         * doc/xslt.html: updated
6392         
6393 Sun Feb 25 05:28:30 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6394
6395         * configure.in tests/docbook/html : oops forgot to add
6396           the stylesheets themselves :-\
6397
6398 Sun Feb 25 04:51:33 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6399
6400         * configure.in tests/Makefile.am tests/docbook tree:
6401           added docbook XSL based test suite
6402
6403 Sat Feb 24 14:02:05 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6404
6405         * libxslt/xsltutils.c: reformat of messages
6406         * libxslt/xsltproc.c: removed memleak on --noout
6407         * libxslt/xsltInternals.h libxslt/variables.[ch] libxslt/transform.c:
6408           changed again the way parameter are evaluated before a
6409           call-template, seems to fix a few nasty bugs, memory alloc debug too
6410         
6411 Wed Feb 21 09:10:13 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6412
6413         * libxslt/transform.c libxslt/variables.c libxslt/xsltInternals.h:
6414           fixed the param evaluation problem in apply-template
6415         * libxslt/pattern.c: speed up seriously some context computation
6416         * libxslt/xsltInternals.h: preparing for extension support
6417           
6418 Mon Feb 19 19:34:59 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6419
6420         * libxslt/Makefile.am: small cleanup
6421         * libxslt/functions.c libxslt/transform.c libxslt/xsltInternals.h:
6422           fixed current() I hope
6423
6424 Mon Feb 19 18:05:47 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6425
6426         * libxslt/numbers.c libxslt/numbersInternals.h libxslt/xslt.c
6427           libxslt/pattern.[ch] libxslt/xsltInternals.h:  more work on
6428           support of namespaces, both in templates and in XPath subexpressions
6429
6430 Sun Feb 18 19:11:26 CET 2001 Bjorn Reese <breese@users.sourceforge.net>
6431
6432         * libxslt/xsltutils.c: xsltSortFunction uses Shell's sort
6433
6434 Sun Feb 18 17:13:00 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6435
6436         * libxslt/pattern.c: when precompiled pattern is ALL, predicate
6437           contextual info must be recomputed
6438
6439 Sun Feb 18 16:39:17 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6440
6441         * libxslt/xslt.h libxslt/transform.c: defined and exported xsltMaxDepth
6442         * libxslt/xsltproc.c : added --maxdepth
6443
6444 Sun Feb 18 15:44:33 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6445
6446
6447         * libxslt/xsltproc.c: added --novalid and --noout as well
6448           as options printing when no args
6449         * libxslt/variables.c libxslt/transform.c: trying to get rid
6450           if some variable/params addressing errors.
6451
6452 Sat Feb 17 14:27:47 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6453
6454         * FEATURES libxslt/attributes.c: fixed use-attribute-sets
6455         * libxslt/xsltutils.c: add carriage return to xsl:message when
6456           needed
6457
6458 Sat Feb 17 02:25:45 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6459
6460         * libxslt/functions.c: fixed a bug with generate-id()
6461
6462 Sat Feb 17 00:51:53 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6463
6464         * libxslt/xsltutils.c: started doing more useful stuff in
6465           xsltDebug
6466         * libxslt/transform.[ch] libxslt/variables.[ch] libxslt/templates.c
6467           libxslt/xsltInternals.h: changed the way variables/params
6468           are stored
6469         * libxslt/xsltproc.c: removed a pedantic warning
6470         * libxslt/variables.[ch]: found an ugly evaluation bug
6471
6472 Thu Feb 15 18:14:48 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6473
6474         * tests/REC/Makefile.am: updated
6475
6476 Thu Feb 15 17:40:28 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6477
6478         * libxlst/functions.c: fixed ID generation
6479         * doc/xslt.html doc/html/*.html: updated/regenerated the doc
6480
6481 Thu Feb 15 13:34:42 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6482
6483         * libxslt/numbers.c: removed a couple of memleaks
6484
6485 Thu Feb 15 12:41:44 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6486
6487         * libxslt/pattern.[ch]: exported pattern matching interfaces
6488           for numbers.c and future debug module
6489         * libxslt/numbers.c: updated to new interface, should avoid
6490           unnecessary recompilation of patterns.
6491         * libxslt/xsltutils.[ch]: cleanup
6492         * tests/REC/gmon.out: removed :-)
6493
6494 Wed Feb 14 19:13:33 CET 2001 Bjorn Reese <breese@users.sourceforge.net>
6495
6496         * libxslt/numbers.c: implemented level=any
6497         * libxslt/transform.c: corrected some default values
6498         * tests/REC/test-7.7-*.*: added
6499
6500 Wed Feb 14 18:07:25 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6501
6502         * libxslt/pattern.c: priorities were horribly broken, hope it's
6503           fixed
6504
6505 Wed Feb 14 15:39:06 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6506
6507         * FEATURES libxslt/imports.h libxslt/pattern.[ch]
6508           libxslt/xsltInternals.h libxslt/transform.[ch]
6509           libxslt/templates.c libxslt/xslt.c:
6510           Added apply-imports, keep a stack of running templates
6511         * libxslt/xsltutils.c: bugfixes, gather the output informations
6512           down the cascade
6513         * tests/xmlspec/Makefile.am tests/xmlspec/REC-xml-2e.xsl
6514           tests/xmlspec/diffspec.xsl tests/xmlspec/xmlspec.xsl: running
6515           the real set of transformation on XML-1.0 2e generages a near
6516           perfect HTML. Needs just more number fixes and implementation
6517           and an obscure problem in 3.3.3
6518
6519 Tue Feb 13 20:31:03 CET 2001 Bjorn Reese <breese@users.sourceforge.net>
6520
6521         * libxslt/pattern.c: added xsltMatchPattern()
6522         * libxslt/numbers.c: implemented "level=multiple" for xsl:number
6523
6524 Tue Feb 13 18:07:12 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6525
6526         * libxslt/transform.c libxslt/xsltproc.c: cleanup and debug
6527         * libxslt/xsltutils.[ch] : added a small debugging hook
6528
6529 Mon Feb 12 18:30:26 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6530
6531         * libxslt/FEATURES libxslt/transform.c: added support for
6532           disable-output-escaping in xsl:copy-of
6533         * xmlspec/Makefile.am libxslt/variables.c libxslt/transform.c:
6534           give more debugging info
6535
6536 Sun Feb 11 21:08:35 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6537
6538         * libxslt/documents.[ch] libxslt/functions.c libxslt/imports.c
6539           libxslt/xslt.c libxslt/xsltInternals.h: changed teh way to store
6540           Includes, more document changes
6541         * libxslt/xsltutils.c: fix the output of doctype and what is or
6542           is not HTML
6543         * tests/REC/*.out tests/REC2/html.xml : changed output accordingly
6544         * tests/Makefile.am tests/documents/* : added a new test from Stric
6545           exercising document() among other things
6546
6547 Sun Feb 11 17:24:03 CET 2001 Bjorn Reese <breese@users.sourceforge.net>
6548
6549         * FEATURES libxslt/transform.c libxslt/numbers.c: partial support
6550           for the level attribute for xsl:number
6551         * libxslt/numbers.c: internal restructuring
6552
6553 Fri Feb  9 15:49:19 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6554
6555         * libxslt/Makefile.am libxslt/documents.[ch]: added a new module
6556           to deal with documents
6557         * libxslt/functions.c: fixed document() to return the same set
6558           for teh same URL
6559         * libxslt/keys.[ch] libxslt/templates.c libxslt/transform.c
6560           libxslt/variables.c libxslt/xsltInternals.h: keys are really
6561           associated to loaded documents, not to the transformation
6562           context, made the change, this impacted a number of modules
6563
6564 Thu Feb  8 12:51:00 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6565
6566         * doc/libxslt.sgml doc/html/*.html: updated and rebuilt the doc list
6567
6568 Thu Feb  8 12:36:23 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6569
6570         * README configure.in libxslt.spec.in: bumped to 0.1.0, getting
6571           ready for the release
6572         * libxslt/keys.c libxslt/xslt.c: cleanup of uninitialized vars
6573         * tests/REC1/Makefile.am tests/REC/Makefile.am: the EXTRA list
6574           was not up to date
6575
6576 Thu Feb  8 12:09:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6577
6578         * FEATURES libxslt/xsltInternals.h libxslt/pattern.c libxslt/keys.c:
6579           added support for keys in patterns
6580         * tests/REC/test-12.2-2.*: added a specific testcase
6581
6582 Wed Feb  7 21:16:47 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6583
6584         * libxslt/functions.c FEATURES: started adding support for key()
6585         * tests/REC/test-12.2-1.*: first key test
6586
6587 Wed Feb  7 19:46:07 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6588
6589         * FEATURES: updated
6590         * libxslt/Makefile.am libxslt/keys.[ch] libxslt/xslt.c
6591           libxslt/transform.c libxslt/xsltInternals.h: started adding key
6592           support
6593         * libxslt/xsltutils.c: warning cleanup
6594         * libxslt/pattern.h: fixed soopid cut'n paste prob
6595
6596 Tue Feb  6 10:56:38 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6597
6598         * libxslt/transform.c libxslt/xslt.c: chased some reported
6599           unitinitialized variables.
6600
6601 Tue Feb  6 10:55:26 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6602
6603         * tests/numbers/Makefile.am: fixed the EXTRA stuff
6604
6605 Mon Feb  5 22:02:24 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6606
6607         * Copyright IPR Makefile.am: added some wording and a rewrite
6608           of the W3C IPR but without giving Copyright rights to W3C,
6609           should suit everybody
6610
6611 Mon Feb  5 18:58:17 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6612
6613         * FEATURES: updated, added mode support for templates
6614         * pattern.[ch] transform.c xslt.c xsltInternals.h: added mode
6615           support for templates
6616         * templates.c variables.c: simple fixes
6617         * xslt.c: added a separate DEBUG_BLANKS debug class disabled
6618         * xsltproc.c: added option -timing
6619         * xsltutils.c: seem I forgot to add encoding support in output...
6620         * configure.in tests/Makefile.am tests/xmlspec/*: added a test
6621           consisting of reformatting the XML REC with the xmlspec XSLT,
6622           heavy !
6623
6624 Mon Feb  5 18:43:37 CET 2001 Bjorn Reese <breese@users.sourceforge.net>
6625
6626         * FEATURES: updated
6627         * numbers.c: handles actual number formatting for both xsl:number
6628           and the format-number extension function.
6629         * function.c: formatting moved to numbers.c
6630         * transform.c: added xsl:number
6631         * xslt.c: minor memory leak removed
6632         * Makefile.am: added numbers.c and numbersInternals.h
6633
6634 Sat Feb  3 21:49:36 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6635
6636         * TODO: updated
6637         * doc/html/*.html updated
6638         * doc/libxslt.sgml: added new modules
6639         * libxslt/pattern.c: fix loop on hash clashes.
6640
6641 Sat Feb  3 16:13:35 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6642
6643         * FEATURES: updated
6644         * imports.c: bugfix
6645         * pattern.c: lots of changes to make most patterns work
6646         * templates.[ch]: added xsltEvalXPathPredicate() for predicate testing
6647         * transform.c: cleanup and attribute patterns testing
6648         * xslt.c: added xsltFreeStylesheetList() and now cleanup
6649           the imports
6650         * tests/REC/test-2.3* tests/REC/test-2.6.2*: more tests
6651         * tests/REC/test-5.2-*: 18 pattern tests from the spec, all should
6652           work now.
6653
6654 Fri Feb  2 11:15:24 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6655
6656         * FEATURES: updated
6657         * transform.c: added xsl:element support
6658         * namespaces.[ch]: added xsltGetSpecialNamespace()
6659         * attributes.c: added xsl:attribute namespace support.
6660
6661 Thu Feb  1 20:58:54 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6662
6663         * libxslt/Makefile.am libxslt/imports.[ch]: new module to
6664           implement import cascade lookups and traversal
6665         * libxslt/attributes.c libxslt/namespaces.c libxslt/pattern.[ch]
6666           libxslt/transform.c libxslt/xslt.c libxslt/xsltInternals.h:
6667           started coding the import cascade lookup in the places needed,
6668           probably incomplete.
6669
6670 Thu Feb  1 18:04:39 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6671
6672         * libxslt/xsltInternals.h libxslt/xslt.h: started implementing
6673           xsl:include and xsl:import, untested
6674
6675 Thu Feb  1 14:54:39 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6676
6677         * FEATURES: updated choose/when/otherwise added
6678         * libxslt/transform.c: plugged choose in
6679         * configure.in tests/Makefile.am tests/REC/Makefile.am
6680           tests/docs/Makefile.am tests/docs/items.xml tests/general/Makefile.am
6681           tests/general/itemschoose.*: started adding a more generic
6682           infrastructure for testing.
6683
6684 Thu Feb  1 05:36:28 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6685
6686         * tests/REC/test-11*: added more tests
6687         * libxslt/transform.c libxslt/variables.c: fixing bugs raised by
6688           said tests
6689
6690 Wed Jan 31 21:42:43 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6691
6692         * tests/REC/test-[9-10]*: added more tests
6693         * tests/REC2/html.xml libxslt/xsltutils.c libxslt/transform.c:
6694           fixed sorting
6695
6696 Wed Jan 31 19:25:38 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6697
6698         * tests/REC/test-[7-9]*: added more tests
6699         * libxslt/templates.c libxslt/transform.c libxslt/variables.c:
6700           fixing bugs raised by said tests, cleaned up the way ctxt->xpathctxt
6701           is allocated, overall cleanup.
6702
6703 Wed Jan 31 14:25:25 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6704
6705         * tests/REC/test-7.*: added more tests
6706         * libxslt/pattern.c libxslt/templates.c libxslt/transform.c:
6707           fixing bugs raised by said tests
6708
6709 Tue Jan 30 18:55:49 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6710
6711         * tests/REC/test-7.*: added more tests
6712         * libxslt/namespaces.[ch] libxslt/pattern.c libxslt/attributes.c
6713           libxslt/templates.c libxslt/transform.c libxslt/xslt.c: fixing bugs
6714           raised by said tests
6715
6716 Tue Jan 30 15:16:56 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6717
6718         * TODO: updated
6719         * configure.in tests/Makefile.am tests/REC/*: started adding
6720           some regression tests based from fragments of spec examples
6721         * libxslt/transform.c: fixed a problem on namespace generation
6722
6723 Mon Jan 29 18:40:23 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6724
6725         * FEATURES: updated
6726         * tests/numbers/Makefile.am tests/numbers/format-number.*
6727           tests/Makefile.am configure.in: added number formattting
6728           test from Bjorn
6729         * libxslt/attributes.[ch]: separated attribute support, started
6730           add support for attribute-sets
6731         * libxslt/functions.[ch]: update for number and formatting
6732           from Bjorn
6733         * libxslt/transform.c libxslt/xslt.c libxslt/xsltInternals.h:
6734           cleanups updates, etc ...
6735
6736 Mon Jan 29 00:53:25 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6737
6738         * FEATURES: updated
6739         * libxslt/transform.c: added copy-of support
6740         * libxslt/xsltutils.[ch]: added xsltDocumentSortFunction()
6741
6742 Sun Jan 28 21:45:23 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6743
6744         * FEATURES TODO: updates
6745         * libxslt/xsltutils.[ch] libxslt/xsltInternals.h libxslt/xsltutils.h:
6746           added xsl:message
6747
6748 Sun Jan 28 17:25:35 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6749
6750         * FEATURES TODO: updates
6751         * libxslt/namespaces.[ch] libxslt/templates.c libxslt/transform.c
6752           libxslt/xslt.c libxslt/xsltInternals.h: added support for
6753           namespace aliases and cleaned up the overall namespace related
6754           code. This materialize as a new module.
6755
6756 Sun Jan 28 08:41:10 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6757
6758         * configure.in libxslt.spec.in: changes needed for libxml2-devel
6759           changes
6760
6761 Sat Jan 27 11:00:20 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6762
6763         * libxslt.spec.in doc/xslt.html: updating doc and trying to add
6764           it to the RPM.
6765
6766 Fri Jan 26 22:29:34 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6767
6768         * Makefile.am configure.in doc/Makefile.am: added a doc subdir
6769           and the rules to generates the makefiles.
6770         * doc/libxslt.sgml doc/xslt.html: very first version of the manual
6771         * doc/html/*.html : autogenerated documentation
6772         * libxslt/xsltInternals.h: fixed a typedef wich was breaking gtk-doc
6773
6774 Fri Jan 26 21:48:25 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6775
6776         * libxslt/functions.c: xsltGenerateIdFunction() small patch
6777
6778 Thu Jan 25 19:36:45 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6779
6780         * FEATURES TODO README INSTALL: updated
6781         * libxslt/xslt.h: added URL and version/vendor :-)
6782         * libxslt/transform.c: fixed a problem in xsl:attribute, removed
6783           attempt to support older libxml2 version.
6784         * libxslt/variables.h libxslt/xsltInternals.h: update to structures
6785           and macros to add/register new document created by document()
6786         * libxslt/functions.c: implemented current(), unparsed-entity-uri()
6787           system-property(), element-available() and function-available().
6788           A crippled version of document() has been added too.
6789
6790 Thu Jan 25 12:13:04 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6791
6792         * functions.[ch]: Bjorn Reese <breese@mail1.stofanet.dk> provided
6793           number formatting !!!
6794         * acconfig.h config.h.in configure.in libxslt/Makefile.am
6795           tests/Makefile.am; added testing for mathematical functions,
6796           fixed make test(s)
6797         * FEATURES: updated
6798
6799 Wed Jan 24 16:59:05 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6800
6801         * libxslt/xsltInternals.h libxslt/pattern.c: fixed problems
6802           with non-named rules (*, ...) added accelerators
6803         * libxslt/templates.[ch]: added xsltEvalTemplateString()
6804           and xsltEvalAttrValueTemplate() high level functions
6805         * libxslt/transform.c: fixed the part where attributes
6806           had to be looked at as templates, added comment and
6807           PI generation
6808         * TODO FEATURES: updated to reflect the new state
6809
6810 Wed Jan 24 05:33:54 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6811
6812         * libxslt/functions.[ch] Makefile.am: added new module functions
6813           with templates for the XSLT functions.
6814         * libxslt/variables.h templates.c: added registrations of new
6815           functions when an XPath context is created
6816
6817 Tue Jan 23 17:24:26 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6818
6819         * tests/Makefile.am: cleanup
6820         * libxslt/pattern.c: should support most of the patterns now
6821           except ID/Key and maybe some namespace checks when having
6822           a default namespace
6823         * TODO: updated
6824
6825 Tue Jan 23 14:58:32 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6826
6827         * Makefile.am libxslt.spec.in tests/REC1/Makefile.am
6828           tests/REC2/Makefile.am: updated the makefiles and spec files to
6829           add tests, and the FEATURES file to the RPM
6830
6831 Mon Jan 22 23:35:57 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6832
6833         * Makefile.am libxslt.spec.in libxslt/Makefile.am tests/Makefile.am:
6834           prepared the Makefiles and spec files for a first release.
6835         * COPYING.LIB: added LGPL Licence
6836
6837 Mon Jan 22 22:36:43 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6838
6839         * libxslt/transform.c: applied cleanup patch from Bjorn Reese
6840           <breese@mail1.stofanet.dk>
6841
6842 Mon Jan 22 20:24:36 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6843
6844         * configure.in libxslt.spec.in: first try to get a spec file
6845
6846 Mon Jan 22 19:37:00 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6847
6848         * libxslt/xsltproc.c: avoid segfault when stylesheet is inproper
6849         * libxslt/transform.c: add support for "*" to strip and preserve
6850           space.
6851
6852 Mon Jan 22 15:30:19 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6853
6854         * TODO: updated
6855         * FEATURES: added with alist of what's in and what's not
6856         * libxslt/xslt.c: fixed top level Param and Variable stuff
6857
6858 Mon Jan 22 11:46:44 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6859
6860         * xsltproc.c: removed bug
6861         * tests/REC2/html.xml: added newline after doctype
6862         * libxslt/variables.[ch] libxslt/xsltInternals.h: added param
6863           support, result tree fragment support (requires just commited
6864           extensions to libxml2 XPath !!!)
6865         * transform.c: added call-template, with-param support
6866         * libxslt/pattern.[ch]: xsltFindTemplate() needed for call-template
6867         * TODO: updated, added a DONE section and started migrating stuff :-)
6868
6869 Sun Jan 21 12:03:16 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6870
6871         * Makefile.am tests/Makefile.am tests/REC1/Makefile.am
6872           tests/REC2/Makefile.am tests/REC2/html.xml: added tests target
6873           too, added the HTML output test
6874         * libxmls/xsltutils.c: added HTML output
6875         * libxslt/xslt.c: check version on literal result used as templates
6876         * libxslt/transform.c: fixed an error in VERSION number
6877         * libxslt/templates.c: make sure generated nodes have doc and
6878           parent properly set
6879
6880 Sat Jan 20 23:35:07 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6881
6882         * libxslt/Makefile.am libxslt/template.[ch]: added a template
6883           specific module. Added attribute value template, at least in
6884           one spot.
6885         * tests/REC2/Makefile.am tests/REC2/svg.xml: the SVG test from
6886           the spec now works too.
6887         * libxslt/variables.c: fixed the debug
6888         * libxslt/xslt.c: fixed an ugly uninitialized variable
6889         * libxslt/transform.c: now using attr template processing
6890
6891 Sat Jan 20 17:59:20 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6892
6893         * libxslt/transform.c libxslt/variables.[ch] libxslt/xslt.c
6894           libxslt/xsltInternals.h libxslt/xsltutils.h: changed a few
6895           structure to add an execution stack with variables. Tree
6896           valued variables still missing.
6897         * TODO: updated
6898
6899 Fri Jan 19 13:16:57 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6900
6901         * libxslt/xslt.c: check version on stylesheets
6902         * libxslt/xslt.c libxslt/xsltInternals.h libxslt/variables[.ch]:
6903           started adding variables interfaces and modules.
6904
6905 Thu Jan 18 16:08:38 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6906
6907         * libxslt/xslt.c: added support for disable-output-escaping
6908           will need libxml version > 20211
6909         * libxslt/transform.c: cleanup
6910         * libxslt/xsltutils.[ch]: added output functions
6911         * libxslt/xsltproc.c: reuse the output function
6912         * tests/REC2/Makefile.am tests/REC2/vrml.xml: added VRML output
6913           test
6914
6915 Wed Jan 17 21:03:01 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6916
6917         * libxslt/transform.c libxslt/xslt.c: avoiding some problems
6918           with blank node stripping when not allowed.
6919
6920 Wed Jan 17 20:15:40 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6921
6922         * libxslt/transform.c: modified apply-templates processing
6923           added select and sort support support.
6924
6925 Wed Jan 17 17:45:20 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6926
6927         * TODO: guess what, it's growing :-(
6928         * configure.in: setup hacking values when compiling in my
6929           own environment.
6930         * libxslt/transform.c libxslt/xsltutils.[hc]: added a first
6931           very rudimentary version of xsl:sort
6932
6933 Wed Jan 17 14:25:25 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6934
6935         * TODO: more stuff
6936         * libxslt/transform.c: context position and size in for-each
6937         * libxslt/xsltutils[ch] libxslt/makefile.am: added the util module
6938           and put Error and Debug routines
6939         * libxslt/xslt.c libxslt/transform.c libxslt/pattern.c: switched
6940           to use the Debug calls, cleanup
6941         * libxslt/xsltproc.c: added -v to enable debug printing
6942
6943 Tue Jan 16 17:17:17 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6944
6945         * TODO: started filling it :-(
6946         * libxslt/pattern.c: should now at least compile the full
6947           set of patterns authorized. Default priorities added.
6948         * libxslt/transform.c: a bit more work and cleanup.
6949
6950 Mon Jan 15 15:34:17 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6951
6952         * TODO: started adding in there :-(
6953
6954 Mon Jan 15 15:31:41 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6955
6956         * transform.c, xslt.c, xsltproc.c: lots of fixes, added
6957           support of xslt:if and xslt:attribute, need libxml2 interfaces
6958           present only in CVS.
6959
6960 Sat Jan 13 23:26:21 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6961
6962         * test/Makefile.am test/REC*/Makefile.am: added first test
6963         * libxslt/pattern.c libxslt/transform.c libxslt/xslt.c:
6964           cleanup of nodes at reading of stylesheet, added support
6965           for xsl:for-each and fixed a few recursion bugs
6966
6967 Fri Jan 12 22:33:07 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6968
6969         * pattern.c, xslt.c: removed debug
6970         * transform.c: added value-of, seems to handle the first
6971           REC example correctly
6972
6973 Fri Jan 12 18:34:01 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6974
6975         * transform.c, xsltproc.c: small fight with spaces and formatting
6976           may need a revisit later but looks pretty good right now.
6977
6978 Fri Jan 12 13:43:30 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6979
6980         * transform.c: basic processing in place
6981         * xsltInternals.h: exported one xslt.c function
6982
6983 Thu Jan 11 21:10:59 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6984
6985         * libxslt/transform.[ch] Makefile.am: started adding the
6986           transformation module
6987         * pattern.[ch] xslt.c: more work...
6988
6989 Thu Jan 11 14:02:03 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6990
6991         * libxslt/pattern.c: started adding xsltTestCompMatch()
6992
6993 Wed Jan 10 20:44:30 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6994
6995         * libxslt/pattern.c: more work on parsing selectors
6996
6997 Wed Jan 10 16:29:41 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
6998
6999         * libxslt/xslt*: completeted the structures
7000         * libxslt/pattern.[ch]: started adding code to precompile patterns
7001           and do the lookup
7002         * libxslt/makefile.am: added the new files
7003
7004 Mon Jan  8 19:55:18 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7005
7006         * libxslt/xslt.c : small cleanup
7007         * configure.in libxslt/xsltconfig.h.in: add memory debug and
7008           mechanism for compile-time options
7009
7010 Sun Jan  7 22:53:12 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7011
7012         * libxslt/xslt.[ch]: started parsing templates
7013
7014 Sun Jan  7 19:50:02 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7015
7016         * libxslt/xslt.[ch]: started parsing stylesheet xsl:stylesheet
7017
7018 Sun Jan  7 16:11:42 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7019
7020         * libxslt/xslt.[ch] libxslt/xsltInternals.h libxslt/xsltproc.c:
7021           very early coding
7022
7023 Sun Jan  7 15:10:54 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7024
7025         * configure.in Makefile.am AUTHORS NEWS autogen.sh config.h.in
7026           libxslt/Makefile.am tests/Makefile.am:
7027           Created the library framework, imported it into the GNOME CVS base
7028         * INSTALL: added a small instruction file.
7029
7030 Sun Jan  7 13:51:30 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7031
7032         * libxslt/xslt.[ch] libxslt/xsltInternals.h libxslt/xsltproc.c:
7033           first steps toward building the framework
7034
7035 Sun Jan  7 12:22:13 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7036
7037         * NOTES: added notes taken while reading the spec.
7038
7039 Fri Jan  5 11:34:12 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7040
7041         * test/REC1 test/REC2: added examples from the XSLT REC
7042
7043 Fri Jan  5 11:14:29 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
7044
7045         * README: basic informations
7046         * Changelog: created