History log of /external/libxml2/Makefile.am
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
fa23ac1a796877621a21b8470f2c491d995a5151 11-Oct-2014 Samuel Martin <s.martin49@gmail.com> Provide cmake module

* add libxml2-config.cmake.in template
* configure.ac: add libxml2-config.cmake.in to the configured file list
* Makefile.am: install libxml2-config.cmake under ${libdir}/cmake/libxml2

Signed-off-by: Samuel Martin <s.martin49@gmail.com>
/external/libxml2/Makefile.am
917e353f2b1f881bd80fe8905f13a728ee99848c 04-Mar-2014 Patrick Monnerat <pm@datasphere.ch> OS400: include in distribution tarball.
/external/libxml2/Makefile.am
742a0bbbcc3fc285833a406d53c5df96aceb51b3 11-Sep-2012 Daniel Veillard <veillard@redhat.com> Keep libxml2.syms when running "make distclean"
/external/libxml2/Makefile.am
1f01f49ba6abccc93a1779a05a33c3fb9c6efd4e 28-Aug-2012 Arfrever Frehtes Taifersar Arahesis <arfrever.fta@gmail.com> Handle ICU_LIBS as LIBADD, not LDFLAGS to prevent linking errors

For https://bugzilla.gnome.org/show_bug.cgi?id=677606
For https://bugs.gentoo.org/show_bug.cgi?id=417539

If libxml2-2.8.0 is built with --with-icu --with-python on a system that has an
older version of libxml2 installed, then during "make install", libxml2mod.so
gets relinked to the systemwide version of libxml2.so.2 instead of libxml2.so.2
from the build tree, and fails at runtime if symbol versions from the older
libxml2.so.2 are not available. This effectively makes it impossible to build a
libxml2-2.8.0 binary package on a system that does not already have
libxml2-2.8.0 installed.

Investigation by Rafał Mużyło and Arfrever Frehtes Taifersar Arahesis revealed
the cause of the problem to be that libxml2's configure was adding ICU_LIBS to
LDFLAGS instead of to LIBADD. This resulted in GNU libtool using the wrong
argument order in its relinking command that gets run during "make install".
/external/libxml2/Makefile.am
961b535c10c7d07d7919c58c1d0c6762b35503a1 03-Jul-2012 Akira TAGOH <akira@tagoh.org> Bug 676544 - fails to build with --without-sax1

Added some ifdef'd LIBXML_SAX1_ENABLED to make it buildable with
--without-sax1 configure option.
/external/libxml2/Makefile.am
3e031b7dae590bdd03084a5971d9f9e66fe5d50b 24-Aug-2012 Vojtech Fried <vfried@opentext.com> Switching XPath node sorting to Timsort

I use libxml xpath engine on quite large (and mostly "flat") xml files.
It seems that Shellsort, that is used in xmlXPathNodeSetSort is a
performance bottleneck for my case. I have read some posts about sorting
in libxml in the libxml archive, but I agree that qsort was not the way
to go. I experimented with Timsort instead and my results were good for
me. For about 10000 nodes, my test was about 5x faster with Timsort,
for 1000 nodes about 10% faster, for small data files, the difference
was not measurable.
* timsort.h: the algorithm, kept in a separate header
* xpath.c: plug in the new algorithm in xmlXPathNodeSetSort
* Makefile.am: add the header to the EXTRA_DIST
* doc/apibuild.py: avoid indexing the new header
/external/libxml2/Makefile.am
73f94c602c50f2ad158d5b5f4aac282ee764d8fe 24-Aug-2012 Daniel Veillard <veillard@redhat.com> Small cleanup for valgrind target
/external/libxml2/Makefile.am
ec4fc529b33af1d14ff5675546afbb4da341e765 17-Aug-2012 Daniel Richard G <oss@teragram.com> More updates and cleanups on autotools and Makefiles

Makefile.am, example/Makefile.am:

* Replaced the obsolete INCLUDES variable with AM_CPPFLAGS/AM_CFLAGS

acinclude.m4:

* autoupdate replaced AC_FD_CC with AS_MESSAGE_LOG_FD

autogen.sh:

* Added -Wall to the autoreconf invocation, which turned up a whole slew
of warnings that are fixed by this patch

configure.in:

* Most of the changes are due to autoupdate, with subsequent manual
tidying

* Note that autoupdate bumped the AC_PREREQ version from 2.59 to 2.68. If
you normally use an older version of Autoconf, and everything works fine
if you comment out that directive, feel free to bump down the version
accordingly.

* Ensure that #include directives in C fragments always have no whitespace
to the left of the '#' mark, as some preprocessors need that to be in
the first column

example/Makefile.am:

* Don't need DEPS

* Use plain LDADD instead of LDADDS; if all programs in this file need to
link against the same set of libraries, then this is all you need
/external/libxml2/Makefile.am
5706b6d8767e3c3f2e5b277b54e1af68035bc111 06-Aug-2012 Daniel Richard G <oss@teragram.com> Various "make distcheck" and portability fixups

Makefile.am:

* Don't use @VAR@, use $(VAR). Autoconf's AC_SUBST provides us the Make
variable, it allows overriding the value at the command line, and
(notably) it avoids a Make parse error in the libxml2_la_LDFLAGS
assignment when @MODULE_PLATFORM_LIBS@ is empty

* Changed how the THREADS_W32 mechanism switches the build between
testThreads.c and testThreadsWin32.c as appropriate; using AM_CONDITIONAL
allows this to work cleanly and plays well with dependencies

* testapi.c should be specified as BUILT_SOURCES

* Create symlinks to the test/ and result/ subdirs so that the runtests
target is usable in out-of-source-tree builds

* Don't do MAKEFLAGS+=--silent as this is not portable to non-GNU Makes

* Fixed incorrect find(1) syntax in the "cleanup" rule, and doing "rm -f"
instead of just "rm" is good form

* (DIST)CLEANFILES needed a bit more coverage to allow "make distcheck" to
pass

configure.in:

* Need AC_PROG_LN_S to create test/ and result/ symlinks in Makefile.am

* AC_LIBTOOL_WIN32_DLL and AM_PROG_LIBTOOL are obsolete; these have been
superceded by LT_INIT

* Don't rebuild docs by default, as this requires GNU Make (as
implemented)

* Check for uint32_t as some platforms don't provide it

* Check for some more functions, and undefine HAVE_MMAP if we don't also
HAVE_MUNMAP (one system I tested on actually needed this)

* Changed THREADS_W32 from a filename insert into an Automake conditional

* The "Copyright" file will not be in the current directory if builddir !=
srcdir

doc/Makefile.am:

* EXTRA_DIST cannot use wildcards when they refer to generated files; this
breaks dependencies. What I did was define EXTRA_DIST_wc, which uses GNU
Make $(wildcard) directives to build up a list of files, and EXTRA_DIST,
as a literal expansion of EXTRA_DIST_wc. I also added a new rule,
"check-extra-dist", to simplify checking that the two variables are
equivalent. (Note that this works only when builddir == srcdir)

(I can implement this differently if desired; this is just one way of
doing it)

* Don't define an "all" target; this steps on Automake's toes

* Fixed up the "libxml2-api.xml ..." rule by using $(wildcard) for
dependencies (as Make doesn't process the wildcards otherwise) and
qualifying appropriate files with $(srcdir)

(Note that $(srcdir) is not needed in the dependencies, thanks to VPATH,
which we can count on as this is GNU-Make-only code anyway)

doc/devhelp/Makefile.am:

* Qualified appropriate files with $(srcdir)

* Added an "uninstall-local" rule so that "make distcheck" passes

doc/examples/Makefile.am:

* Rather than use a wildcard that doesn't work, use a substitution that
most Make programs can handle

doc/examples/index.py:

* Do the same here

include/libxml/nanoftp.h:

* Some platforms (e.g. MSVC 6) already #define INVALID_SOCKET:

user@host:/cygdrive/c/Program Files/Microsoft Visual Studio/VC98/\
Include$ grep -R INVALID_SOCKET .
./WINSOCK.H:#define INVALID_SOCKET (SOCKET)(~0)
./WINSOCK2.H:#define INVALID_SOCKET (SOCKET)(~0)

include/libxml/xmlversion.h.in:

* Support ancient GCCs (I was actually able to build the library with 2.5
but for this bit)

python/Makefile.am:

* Expanded CLEANFILES to allow "make distcheck" to pass

python/tests/Makefile.am:

* Define CLEANFILES instead of a "clean" rule, and added tmp.xml to allow
"make distcheck" to pass

testRelax.c:

* Use HAVE_MMAP instead of the less explicit HAVE_SYS_MMAN_H (as some
systems have the header but not the function)

testSchemas.c:

* Use HAVE_MMAP instead of the less explicit HAVE_SYS_MMAN_H

testapi.c:

* Don't use putenv() if it's not available

threads.c:

* This fixes the following build error on Solaris 8:

libtool: compile: cc -DHAVE_CONFIG_H -I. -I./include -I./include \
-D_REENTRANT -D__EXTENSIONS__ -D_REENTRANT -Dsparc -Xa -mt -v \
-xarch=v9 -xcrossfile -xO5 -c threads.c -KPIC -DPIC -o threads.o
"threads.c", line 442: controlling expressions must have scalar type
"threads.c", line 512: controlling expressions must have scalar type
cc: acomp failed for threads.c
*** Error code 1

trio.c:

* Define isascii() if the system doesn't provide it

trio.h:

* The trio library's HAVE_CONFIG_H header is not the same as LibXML2's
HAVE_CONFIG_H header; this change is needed to avoid a double-inclusion

win32/configure.js:

* Added support for the LZMA compression option

win32/Makefile.{bcb,mingw,msvc}:

* Added appropriate bits to support WITH_LZMA=1

* Install the header files under $(INCPREFIX)\libxml2\libxml instead of
$(INCPREFIX)\libxml, to mirror the install location on Unix+Autotools

xml2-config.in:

* @MODULE_PLATFORM_LIBS@ (usually "-ldl") needs to be in there in order for
`xml2-config --libs` to provide a complete set of dependencies

xmllint.c:

* Use HAVE_MMAP instead of the less-explicit HAVE_SYS_MMAN_H
/external/libxml2/Makefile.am
187e52901b01bb6ced0a7b57de393ec256973e39 06-Aug-2012 Daniel Veillard <veillard@redhat.com> Fix make dist to include new private header files
/external/libxml2/Makefile.am
0de1f3114a167126e0f16daa7ff389f91a474914 18-Jul-2012 Daniel Veillard <veillard@redhat.com> first version of testlimits new test

Used to check behaviour on various parsing limits
/external/libxml2/Makefile.am
bca22f40c3b2b34169d8d2919dce4894d8eac1a4 11-Jul-2012 Daniel Veillard <veillard@redhat.com> Adding a new buf module for buffers

This also add converter functions between xmlBuf and xmlBuffer
* buf.c buf.h: the old xmlBuffer routines but modified for size_t
and using xmlBuf instead of xmlBuffer
* Makefile.am: add the 2 new files
* include/libxml/xmlerror.h: add an entry for the new module
* include/libxml/tree.h: expose the xmlBufPtr type but not the
structure which stay private
/external/libxml2/Makefile.am
c943f708f1853de4eb15e5a94cf0b35d108da87a 23-May-2012 Daniel Veillard <veillard@redhat.com> Release of libxml2-2.8.0

- Makefile.am: don't package .git
- configure.in : update to new release
- doc/xml.html: added the new release
- doc/* testapi.c: regenerated
/external/libxml2/Makefile.am
48f0f3f29f52244c9ea3437d2f3d407abd777a83 08-May-2012 Daniel Veillard <veillard@redhat.com> Fix "make tst" to grab lzma lib too
/external/libxml2/Makefile.am
adf5ec9496828b18e683fb23bd1e670824cfb6d0 26-Jan-2012 Daniel Veillard <veillard@redhat.com> Cleanups of lzma support

- fix inclusion of the separated file
- use namespaced name for the 4 non-static routines
- add padding after external structures included in-situ
- add new requirement to spec file
- general cleanup of code
/external/libxml2/Makefile.am
0755b66266753651e00200b4637d6304bf8fa2b8 19-Sep-2011 Anders F Bjorklund <afb@users.sourceforge.net> included xzlib in dist
/external/libxml2/Makefile.am
eae52617790eb77a9109390651ff808f53a4cddb 18-Sep-2011 Anders F Bjorklund <afb@users.sourceforge.net> add lzma compression support
/external/libxml2/Makefile.am
64b0d60c2872ed6c788dd245b92dea95c095b8a3 04-Nov-2010 Adrian Bunk <bunk@stusta.de> Switch from the obsolete mkinstalldirs to AC_PROG_MKDIR_P

This was obsoleted in 2005 so we should be safe.
But keep AC_PREREQ to 2.59 as it's still widely deployed.
/external/libxml2/Makefile.am
120a269976f4198e54cc7b848dd78fca81bb9179 10-Mar-2010 Roumen Petrov <bugtrack@roumenpetrov.info> Fix build with mingw

- include/libxml/xmlexports.h: restore export decoration otherwise
xsltproc and xmlsec crash
- libxml.h: define LIBXML_STATIC for static build
- configure.in: enable modules support for mingw* builds
- Makefile.am: flags for testdso if modules support enabled
/external/libxml2/Makefile.am
3157e51508574577a9381a09a85235aa909f3762 09-Mar-2010 Daniel Veillard <veillard@redhat.com> Upgrade some of the configure and autogen

Based on Roumen Petrov suggestions
/external/libxml2/Makefile.am
ec18c96008cf8f3b6b0b81ed8bfc2ccfe51d26e7 26-Aug-2009 Daniel Veillard <veillard@redhat.com> 558452 fight with reg test and error report

* relaxng.c: tiny fix and provide more context on some errors
* result/relaxng/558452_0* test/relaxng/558452*: add some regression
tests for the bugs
* Makefile.am runtest.c: fight with the fact streaming error messages
can differ due to missing node context
/external/libxml2/Makefile.am
2173b5cb30b5a0067790f11732f03189e3291b2a 24-Aug-2009 Daniel Veillard <veillard@redhat.com> 555833 always use rm -f in uninstall-local

* Makefile.am: so that make clean doesn't fail in some circumstances
/external/libxml2/Makefile.am
b0641a10a6165a882cbea762fc22d0e9eb1038e8 24-Aug-2009 Daniel Veillard <veillard@redhat.com> 584605 package VxWorks folder in the distribution

* Makefile.am: as Igor Novoseltsev pointed out this is missing from
the distro
/external/libxml2/Makefile.am
8ed1072c2d4dac0bc72a8d0ebff7ccc1b338f035 20-Aug-2009 Daniel Veillard <veillard@redhat.com> Add symbol versioning to libxml2 shared libs

* libxml2.syms: the symbols with history, going back to 2.4.30
* Makefile.am configure.in: linking flags detection and use
* parser.c tree.c valid.c xpointer.c: various cleanup of functions
which could be made static or simply discarded, not that many
/external/libxml2/Makefile.am
838682478cf89ddcbda294d9557c72813135fc7a 09-Jul-2009 Aleksey Sanin <aleksey@aleksey.com> Aleksey Sanin support for c14n 1.1

* c14n.c include/libxml/c14n.h: adds support for C14N 1.1,
new flags at the API level
* runtest.c Makefile.am testC14N.c xmllint.c: add support in CLI
tools and test binaries
* result/c14n/1-1-without-comments/* test/c14n/1-1-without-comments/*:
add a new batch of tests
/external/libxml2/Makefile.am
da3fee406da96c344d7b5f4e0631faee74f7e11d 01-Sep-2008 Daniel Veillard <veillard@src.gnome.org> Borland C fix from Moritz Both regenerate, workaround a problem for buffer

* trionan.c: Borland C fix from Moritz Both
* testapi.c: regenerate, workaround a problem for buffer testing
* xmlIO.c HTMLtree.c: new internal entry point to hide even better
xmlAllocOutputBufferInternal
* tree.c: harden the code around buffer allocation schemes
* parser.c: restore the warning when namespace names are not absolute
URIs
* runxmlconf.c: continue regression tests if we get the expected
number of errors
* Makefile.am: run the python tests on make check
* xmlsave.c: handle the HTML documents and trees
* python/libxml.c: convert python serialization to the xmlSave APIs
and avoid some horrible hacks
Daniel

svn path=/trunk/; revision=3790
/external/libxml2/Makefile.am
4cc67bb77eda0a4ced8b477477dc62c8c1096db9 29-Aug-2008 Daniel Veillard <veillard@src.gnome.org> patch from Robert Schwebel , allows to compile the example if configured

* doc/examples/reader3.c: patch from Robert Schwebel , allows to
compile the example if configured without output support fixes
#545582
* Makefile.am: add testrecurse to the make check tests
* HTMLparser.c: if the parser got a encoding argument it should be
used over what the meta specifies, patch fixing #536346
Daniel

svn path=/trunk/; revision=3785
/external/libxml2/Makefile.am
0161e638c697890020c410dbedec9bb516d0fe49 28-Aug-2008 Daniel Veillard <veillard@src.gnome.org> completely different fix for the recursion detection based on entity

* parser.c include/libxml/parser.h: completely different fix for
the recursion detection based on entity density, big cleanups
in the entity parsing code too
* result/*.sax*: the parser should not ask for used defined versions
of the predefined entities
* testrecurse.c: automatic test for entity recursion checks
* Makefile.am: added testrecurse
* test/recurse/lol* test/recurse/good*: a first set of tests for
the recursion
Daniel

svn path=/trunk/; revision=3783
/external/libxml2/Makefile.am
bfa5cf1ce70787f8d1b32cb1e13941dbcf9b6b03 27-Aug-2008 Daniel Veillard <veillard@src.gnome.org> add an --with-coverage configure option and a 'make cov' target based on

* configure.in Makefile.am: add an --with-coverage configure option
and a 'make cov' target based on gcc profiling and the lcov
tool. Currently at 68.9% coverage out of 'make check' and
runsuite executions.
* xmlreader.c: remove warnings due to C++ comments
Daniel

svn path=/trunk/; revision=3780
/external/libxml2/Makefile.am
bf9c1dad3a7d17f9207756a5b0e3a3efdba34c1b 26-Aug-2008 Daniel Veillard <veillard@src.gnome.org> add the testchar to 'make check' Volker Grabsch pointed out a typo

* Makefile.am: add the testchar to 'make check'
* xmlschemas.c: Volker Grabsch pointed out a typo
* xmlregexp.c: production [19] from XML Schemas regexps were a
mistake removed in version REC-xmlschema-2-20041028, Volker Grabsch
provided a patch to remove it
* test/schemas/regexp-char-ref_0.xml test/schemas/regexp-char-ref_0.xsd
test/schemas/regexp-char-ref_1.xsd result/schemas/regexp-char-ref_0_0
result/schemas/regexp-char-ref_1_0: Volker Grabsch also provided
regession tests for this
Daniel

svn path=/trunk/; revision=3776
/external/libxml2/Makefile.am
0765ae898b30833b9ea1ffab8dbb741fb67aea6d 08-Aug-2008 Daniel Veillard <veillard@src.gnome.org> adding a check-valgrind target Daniel

* makefile.am: adding a check-valgrind target
Daniel

svn path=/trunk/; revision=3770
/external/libxml2/Makefile.am
d330f18fbce0d08958dce08b221c66c19226bf5a 08-Aug-2008 Daniel Veillard <veillard@src.gnome.org> add the new test in 'make check' and update it to check subdictionaries

* Makefile.am testdict.c: add the new test in 'make check' and
update it to check subdictionaries processing.
Daniel

svn path=/trunk/; revision=3769
/external/libxml2/Makefile.am
d7af555327843a9938a913205ac703c13c225603 04-Aug-2008 Daniel Veillard <veillard@src.gnome.org> rewrite the URI parser to update to rfc3986 (from 2396) removed the error

* uri.c include/libxml/uri.h: rewrite the URI parser to update to
rfc3986 (from 2396)
* test/errors/webdav.xml result/errors/webdav.xml*: removed the
error test, 'DAV:' is a correct URI under 3986
* Makefile.am: small cleanup in make check
Daniel

svn path=/trunk/; revision=3763
/external/libxml2/Makefile.am
373345764b92c5959154ec233163a2a64a775863 31-Jul-2008 Daniel Veillard <veillard@src.gnome.org> added a skipped list, insert rmt-ns10-035 improve 'make check' clean up

* runxmlconf.c: added a skipped list, insert rmt-ns10-035
* Makefile.am: improve 'make check'
* include/libxml/xmlerror.h parser.c: clean up namespace errors
checking and reporting, errors when a document is labelled
as UTF-16 while it is parsed as UTF-8 and no encoding was given
explicitely.
* result/errors/webdav.xml.*: some warnings are no recategorized
as Namespace errors
Daniel

svn path=/trunk/; revision=3761
/external/libxml2/Makefile.am
051d52cb6166cb8d7064d185820366943177a561 29-Jul-2008 Daniel Veillard <veillard@src.gnome.org> fix a bug not detecting cross entity comments probably when comment

* parser.c: fix a bug not detecting cross entity comments probably
when comment parsing got optimized.
* Makefile.am: add make check
* runxmlconf.c: fix the log file name
Daniel

svn path=/trunk/; revision=3758
/external/libxml2/Makefile.am
7e5c3f481f5e8c8eb2b038cb24a9b3d77e3806ab 29-Jul-2008 Daniel Veillard <veillard@src.gnome.org> add a C program to run the W3C test suite, work in progress add a new

* runxmlconf.c Makefile.am: add a C program to run the W3C test
suite, work in progress
* xmllint.c: add a new option --oldxml10 to use the old parser
* parser.c: fix the XML_PARSE_OLD10 processing of the new option
and a bug in version parsing
Daniel

svn path=/trunk/; revision=3757
/external/libxml2/Makefile.am
34e3f641918086047dccc0992b639967e1ad9091 29-Jul-2008 Daniel Veillard <veillard@src.gnome.org> implement XML-1.0 5th edition, add parser option XML_PARSE_OLD10 to stick

* include/libxml/parser.h include/libxml/xmlerror.h parser.c:
implement XML-1.0 5th edition, add parser option XML_PARSE_OLD10
to stick to old behaviour
* testapi.c gentest.py: modified slightly and regenerated
* Makefile.am: add testchar
Daniel

svn path=/trunk/; revision=3755
/external/libxml2/Makefile.am
33fe28885c32238624a1bd78c865ddb51fac4059 10-Apr-2008 Daniel Veillard <veillard@src.gnome.org> extend the cleanup rule space cleanup Daniel

* Makefile.am: extend the cleanup rule
* xmlschemas.c: space cleanup
Daniel

svn path=/trunk/; revision=3737
/external/libxml2/Makefile.am
9ebb6322386d77acfb78f4068449956b44cdf81a 11-Jan-2008 Daniel Veillard <veillard@src.gnome.org> patches from John Carr to start cleaning up 'make diskcheck' problems c.f.

* check-relaxng-test-suite2.py check-relaxng-test-suite.py
Makefile.am python/tests/Makefile.am python/Makefile.am
check-xsddata-test-suite.py: patches from John Carr to
start cleaning up 'make diskcheck' problems c.f. #506228
Daniel

svn path=/trunk/; revision=3674
/external/libxml2/Makefile.am
cb4284e29641aa7dd990d42aba772b7f5c1ab50d 25-Apr-2007 Daniel Veillard <veillard@src.gnome.org> applied patch from Richard Jones to for the silent flag on valgrind when

* xstc/Makefile.am doc/examples/Makefile.am Makefile.am: applied
patch from Richard Jones to for the silent flag on valgrind
when doing "make valgrind"
* xmlregexp.c: raise a regexp error when '\' is misused to escape
a standard character.
Daniel

svn path=/trunk/; revision=3606
/external/libxml2/Makefile.am
fde5b0b9caf906e0a2f9774db45b138471566e81 12-Feb-2007 Daniel Veillard <veillard@src.gnome.org> small cleanup to avoid packaging .svn applied patch to avoid a problem in

* Makefile.am: small cleanup to avoid packaging .svn
* libxml.h threads.c parser.c: applied patch to avoid a problem
in concurrent threaded initialization fix from Ted Phelps
Daniel

svn path=/trunk/; revision=3582
/external/libxml2/Makefile.am
27759f2670b232cc35ee89f384f685d33c51c2e9 05-Dec-2005 Kasimier T. Buchcik <kbuchcik@src.gnome.org> Tiny change for 'make tests': raised the number of expected failures for

* Makefile.am: Tiny change for 'make tests': raised
the number of expected failures for James Clark's
XML Schema datatype tests from 10 to 11. The additional
reported error was agreed to be correct long time ago,
but we missed to adjust the message reported by
the testing script.
/external/libxml2/Makefile.am
355a023866e573462c65b2960491b1f5c6e3620b 22-Aug-2005 Daniel Veillard <veillard@src.gnome.org> added the first regression test suite set for the new expression support

* Makefile.am result/expr/base test/expr/base: added the first
regression test suite set for the new expression support
Daniel
/external/libxml2/Makefile.am
60faf528d87987b75f325a40223c23ba40360910 10-Aug-2005 Daniel Veillard <veillard@src.gnome.org> fixed bug #307377 about validation of choices in list values. added

* relaxng.c: fixed bug #307377 about validation of choices in
list values.
* test/relaxng/307377* result/relaxng/307377* Makefile.am runtest.c:
added examples to the regression tests, problem is that streaming
version gives slightly more informations.
Daniel
/external/libxml2/Makefile.am
c740a17f453f1b5de647c394362aa85c64c3003b 31-Jul-2005 Daniel Veillard <veillard@src.gnome.org> fixing the loop bug, fixing schematron text error rendering started

* schematron.c xmllint.c: fixing the loop bug, fixing schematron
text error rendering
* Makefile.am result/schematron/* test/schematron/zvon1*.sct:
started integrating within "make tests"
Daniel
/external/libxml2/Makefile.am
75e389d4e0ccd998d288387051e66a8f0b2af1b0 30-Jul-2005 Daniel Veillard <veillard@src.gnome.org> more cleanups based on sparse reports, added "make sparse" Daniel

* Makefile.am globals.c parserInternals.c xmlreader.c xmlunicode.c
xmlwriter.c: more cleanups based on sparse reports, added
"make sparse"
Daniel
/external/libxml2/Makefile.am
ed6c54971fdb7fa37c183b1a36c2e581c750984b 23-Jul-2005 Daniel Veillard <veillard@src.gnome.org> changed xmlPatterncompile signature to pass an int and not an enum since

* pattern.c include/libxml/pattern.h: changed xmlPatterncompile
signature to pass an int and not an enum since it can generate
ABI compat troubles.
* include/libxml/schematron.h schematron.c: adding the new
schematron code, work in progress lots to be left and needing
testing
* include/libxml/xmlversion.h.in include/libxml/xmlwin32version.h.in
Makefile.am configure.in: integration of schematron into the
build
* xpath.c include/libxml/xpath.h: adding flags to control compilation
options right now just XML_XPATH_CHECKNS.
Daniel
/external/libxml2/Makefile.am
e4aaae2640843b4e1453f57c62a64d70faf95edb 11-Jul-2005 Daniel Veillard <veillard@src.gnome.org> Late fixes just for the release, daniel
/external/libxml2/Makefile.am
78dfc9f0714e98121b2fe668b88698df8824d575 11-Jul-2005 Daniel Veillard <veillard@src.gnome.org> preparing release 2.6.20 removed a compilation problem Daniel

* Makefile.am NEWS configure.in doc/*: preparing release 2.6.20
* xmllint.c: removed a compilation problem
Daniel
/external/libxml2/Makefile.am
1f33c4d61f3cc9820643ef726b373ec3044bcac3 10-Jul-2005 Daniel Veillard <veillard@src.gnome.org> preparing to make testsuite releases along with code source releases fixed

* xstc/Makefile.am README README.tests Makefile.tests Makefile.am:
preparing to make testsuite releases along with code source releases
* gentest.py testapi.c: fixed a couple of problem introduced by
the new Schemas support for Readers
* xpath.c: fixed the XPath attribute:: bug #309580, #309864 in a crude
but simple way.
* xmlschemas.c include/libxml/tree.h: fixed a couple of problems
raised by the doc builder.
* doc/*: made rebuild
Daniel
/external/libxml2/Makefile.am
87b3046bc188fd6cea1aad083c6b79017ab70425 05-Jul-2005 Daniel Veillard <veillard@src.gnome.org> first steps toward a testsuite dist fixed bug #307870 Daniel

* Makefile.am: first steps toward a testsuite dist
* SAX2.c include/libxml/xmlerror.h: fixed bug #307870
Daniel
/external/libxml2/Makefile.am
f2e066ac2ab9991341699c7ee3b58793c3b5358b 30-Jun-2005 Daniel Veillard <veillard@src.gnome.org> complete, checking on other platforms is needed updated fix a bug raised

* runtest.c: complete, checking on other platforms is needed
* README: updated
* debugXML.c: fix a bug raised by bill on IRC
* relaxng.c: fix a leak in weird circumstances
* runsuite.c Makefile.am: standalone test tool agaisnt
the regression suites, work in progress
Daniel
/external/libxml2/Makefile.am
4a5a964c66f2cd9a67b4e2cb6617bfec8104094d 27-Jun-2005 Daniel Veillard <veillard@src.gnome.org> added SAXv2 regression tests apparently missing. added SAX1/SAX2 checks.

* result/*.sax2 MAkefile.am: added SAXv2 regression tests apparently
missing.
* runtest.c: added SAX1/SAX2 checks.
Daniel
/external/libxml2/Makefile.am
1b75c3bd69e93cdb2d6cbddfe34db28130157daf 26-Jun-2005 Daniel Veillard <veillard@src.gnome.org> avoid name glob in agruments as it matches the glob() routine. first steps

* include/libxml/valid.h valid.c: avoid name glob in agruments as
it matches the glob() routine.
* runtest.c Makefile.am: first steps toward a C regression test
framework.
Daniel
/external/libxml2/Makefile.am
dbfe05aff4d242e31fcd7621a4901a6fa10b988e 04-May-2005 Daniel Veillard <veillard@src.gnome.org> on linux/gcc use weak definitions to avoid linking with pthread library on

* Makefile.am configure.in threads.c: on linux/gcc use weak definitions
to avoid linking with pthread library on non-threaded environments.
* xpath.c: applied patch from Mark Vakoc w.r.t. a buggy namespace
list allocation.
Daniel
/external/libxml2/Makefile.am
b08d741dea67164f2cc6fcbde4a4c550f58feeb5 16-Mar-2005 William M. Brack <wbrack@src.gnome.org> added Makefile.am, missed in last commit
/external/libxml2/Makefile.am
25c90c589b256f0925f081198c1525134a491e31 02-Mar-2005 Daniel Veillard <veillard@src.gnome.org> try to fix a problem with valgrind. applied memory leak fix from Brent

* Makefile.am doc/examples/Makefile.am python/tests/Makefile.am
xstc/Makefile.am: try to fix a problem with valgrind.
* python/generator.py python/libxml.c python/tests/Makefile.am
python/tests/tstmem.py: applied memory leak fix from Brent Hendricks
c.f. bug #165349
Daniel
/external/libxml2/Makefile.am
a22da29921fc1f070084320428c2975e53acc184 12-Feb-2005 William M. Brack <wbrack@src.gnome.org> fixed xmlXIncludeParseFile to prevent overwriting XML_COMPLETE_ATTRS when

* xinclude.c: fixed xmlXIncludeParseFile to prevent
overwriting XML_COMPLETE_ATTRS when setting pctxt->loadsubset
(bug 166199)
* Makefile.am, python/tests/Makefile.am, xstc/Makefile.am: added
code to add $(top_builddir)/.libs to LD_LIBRARY_PATH whenever
PYTHONPATH is set, to assure new libxml2 routines are used.
/external/libxml2/Makefile.am
d4301aba26ab6d415be85a80b084bd91b3cfcc05 03-Feb-2005 Daniel Veillard <veillard@src.gnome.org> use the walker to test the patterns instead of the normal reader bug fixes

* Makefile.am: use the walker to test the patterns instead of
the normal reader
* pattern.c xmllint.c: bug fixes in the train including fixing the
stupid build break.
Daniel
/external/libxml2/Makefile.am
f9d169142dd652f5e077e1c2391facaa6bf40f4d 30-Jan-2005 Daniel Veillard <veillard@src.gnome.org> added first test for the patterns a few fixes Daniel

* Makefile.am configure.in result/pattern/simple
test/pattern/simple.*: added first test for the patterns
* pattern.c xmllint.c: a few fixes
Daniel
/external/libxml2/Makefile.am
48bc0622115f613ab87a872ec16f5705784397de 28-Jan-2005 Daniel Veillard <veillard@src.gnome.org> oops forgot to add the bakefile, Daniel
/external/libxml2/Makefile.am
2ae13382c389912f89d0df8ab4fcce376db6ae82 26-Jan-2005 Daniel Veillard <veillard@src.gnome.org> fixing the way testapi.c is generated, fixes bug #161386 fix a comment

* Makefile.am testapi.c doc/Makefile.am: fixing the way testapi.c
is generated, fixes bug #161386
* dict.c: fix a comment typo
* elfgcchack.h doc/*: regenerated
Daniel
/external/libxml2/Makefile.am
b8590d4c1a94b29fd55b7974ff2b77e135813c91 21-Jan-2005 Daniel Veillard <veillard@src.gnome.org> fixed bug #164556 where non-fatal errors stopped push parsing and

* parser.c: fixed bug #164556 where non-fatal errors stopped
push parsing and xmlreader.
* Makefile.am: fixup
* test/errors/webdav.xml result/errors/webdav*: adding regression
test for this problem.
Daniel
/external/libxml2/Makefile.am
a73f45b62d04b8d29fd52b8c544a4434e01fb349 11-Jan-2005 William M. Brack <wbrack@src.gnome.org> fixed dependency on python 2.3, also small improvement for cygwin (bug

* Makefile.am configure.in: fixed dependency on python 2.3,
also small improvement for cygwin (bug 163273)
/external/libxml2/Makefile.am
ce1648b124a9d8decd453185852b0927d311a3aa 04-Jan-2005 Daniel Veillard <veillard@src.gnome.org> applied DSO support patch 2 from Joel Reed Daniel

* Makefile.am config.h.in configure.in error.c libxml-2.0.pc.in
testModule.c testdso.c xml2-config.in xmllint.c xmlmodule.c
include/libxml/Makefile.am include/libxml/xmlerror.h
include/libxml/xmlmodule.h include/libxml/xmlversion.h.in
include/libxml/xmlwin32version.h.in: applied DSO support
patch 2 from Joel Reed
Daniel
/external/libxml2/Makefile.am
106cad66199aced3f7ae0e943ed7e740179c51eb 23-Dec-2004 William M. Brack <wbrack@src.gnome.org> enhanced for enabling build in a different directory. Added (optional)

* Makefile.am, gentest.py: enhanced for enabling build in
a different directory. Added (optional) param to gentest.py
to specify the source directory (bug #155468)
* doc/Makefile.am: changed destination of NEWS from (top_srcdir)
to (top_builddir) (bug #155468)
* python/Makefile.am, python/generator.py: enhanced for enabling
build in a different directory(bug #155468). Added (optional)
param to generator.py to specify the source directory. Added
a new table of functions which have possible "foreign" encodings
(e.g. UTF16), and code to use python 't' format instead of
'z' format (mostly solving bug #152286, but still need to
populate the table).
/external/libxml2/Makefile.am
aba37dffd7235c5f7d283ca2174c84b7b1332c5e 11-Nov-2004 Daniel Veillard <veillard@src.gnome.org> forgot a $(srcdir) stupid error wrong name #157976 Daniel

* Makefile.am: forgot a $(srcdir)
* encoding.c: stupid error wrong name #157976
Daniel
/external/libxml2/Makefile.am
d0cf7f6eea7331cc398c232d7879e4239d989e14 09-Nov-2004 Daniel Veillard <veillard@src.gnome.org> integrated in "make tests" added -q option, and more conditional features

* Makefile.am gentest.py testapi.c: integrated in "make tests"
added -q option, and more conditional features fixes
* catalog.c debugXML.c parser.c testThreads.c xmllint.c
xmlschemastypes.c xmlwriter.cinclude/libxml/catalog.h
include/libxml/debugXML.h: various compilation and conditional
cleanups.
* doc/*: regenerated
Daniel
/external/libxml2/Makefile.am
96f6fe9dfb4323464df5df28dc046caa5bca71be 04-Nov-2004 Daniel Veillard <veillard@src.gnome.org> gentest.py was missing from the EXTRA_DIST Daniel

* Makefile.am: gentest.py was missing from the EXTRA_DIST
Daniel
/external/libxml2/Makefile.am
36e5cd5064d3477a0500f6183d68b18b7493568a 02-Nov-2004 Daniel Veillard <veillard@src.gnome.org> adding xmlMemBlocks() work on generator of an automatic API regression

* xmlmemory.c include/libxml/xmlmemory.h: adding xmlMemBlocks()
* Makefile.am gentest.py testapi.c: work on generator of an
automatic API regression test tool.
* SAX2.c nanoftp.c parser.c parserInternals.c tree.c xmlIO.c
xmlstring.c: various API hardeing changes as a result of running
teh first set of automatic API regression tests.
* test/slashdot16.xml: apparently missing from CVS, commited it
Daniel
/external/libxml2/Makefile.am
03a53c34db279cbe4a305d58969beb1f26ff3d19 26-Oct-2004 Daniel Veillard <veillard@src.gnome.org> added checking for names values and dictionnaries generates a tons of

* debugXML.c include/libxml/xmlerror.h: added checking for names
values and dictionnaries generates a tons of errors
* SAX2.ccatalog.c parser.c relaxng.c tree.c xinclude.c xmlwriter.c
include/libxml/tree.h: fixing the errors in the regression tests
Daniel
/external/libxml2/Makefile.am
522780e74fb5482b6d4efb7e4944a80cdb7af709 24-Sep-2004 Daniel Veillard <veillard@src.gnome.org> fixed make valgrind xstc Daniel

* Makefile.am: fixed make valgrind xstc
Daniel
/external/libxml2/Makefile.am
7a5e0dd1fc73020a1093a30d2c7d5229190369ff 17-Sep-2004 Daniel Veillard <veillard@src.gnome.org> removed some extern before function code reported by Kjartan Maraas on IRC

* parser.c: removed some extern before function code reported by
Kjartan Maraas on IRC
* legacy.c: fixed compiling when configuring out the HTML parser
* Makefile.am: added a declaration for CVS_EXTRA_DIST
* HTMLparser.c: beginning of an attempt at cleaning up the construction
of the HTML parser data structures, current data generate a huge
amount of ELF relocations at loading time.
Daniel
/external/libxml2/Makefile.am
f31187d31be0303c3844186ec01cb8fc819addf5 06-Sep-2004 Daniel Veillard <veillard@src.gnome.org> integrated to "make valgrind", heavy ... weight 250MB of VM ! Daniel

* xstc/Makefile.am Makefile.am: integrated to "make valgrind",
heavy ... weight 250MB of VM !
Daniel
/external/libxml2/Makefile.am
cd4535f7a456faddea90c96f82e0db37cc0b8d62 06-Sep-2004 Daniel Veillard <veillard@src.gnome.org> Small fix on when to run xstc testsuite in make tests, daniel
/external/libxml2/Makefile.am
2cdd2f3a828d819d63fac949abd67d94d2e36b97 06-Sep-2004 Daniel Veillard <veillard@src.gnome.org> more cleanup in integrating the xstc testsuite Daniel

* xstc/Makefile.am xstc/xstc-to-python.xsl xstc/xstc.py Makefile.am:
more cleanup in integrating the xstc testsuite
Daniel
/external/libxml2/Makefile.am
b1da40c144565de4fe0331d0a048f8b9e7041557 06-Sep-2004 Daniel Veillard <veillard@src.gnome.org> starting to integrate the xstc suite in the normal regression tests Daniel

* Makefile.am configure.in xstc/.cvsignore xstc/Makefile.am:
starting to integrate the xstc suite in the normal regression
tests
Daniel
/external/libxml2/Makefile.am
0bff36ddf7ce32c9d742d54498d4a126e13dbee4 31-Aug-2004 Daniel Veillard <veillard@src.gnome.org> also produce a tar ball with just the sources added --path option and

* Makefile.am: also produce a tar ball with just the sources
* xmllint.c: added --path option and --load-trace options to
xmllint, RFE #147740 based on xsltproc versions
* doc/xmllint.* doc/*: updated the man page and rebuilt
Daniel
/external/libxml2/Makefile.am
f34a20e69dc675cd23d3eb558cad135ea280f472 31-Aug-2004 Daniel Veillard <veillard@src.gnome.org> "" is a valid hexbinary string dixit xmlschema-dev update the test. added

* xmlschemastypes.c: "" is a valid hexbinary string dixit xmlschema-dev
* result/schemas/hexbinary_0_1.err test/schemas/hexbinary_1.xml:
update the test.
* test/ns5 result//ns5*: added a test for the namespace bug fixed
in previous commit.
* Makefile.am: added a message in the regression tests
Daniel
/external/libxml2/Makefile.am
dab93ea749a541ed654752a0daa64f5dec32b094 20-Aug-2004 Daniel Veillard <veillard@src.gnome.org> a bit of cleanup and a extra variable for CVS dist Daniel

* Makefile.am configure.in: a bit of cleanup and a extra variable for
CVS dist
Daniel
/external/libxml2/Makefile.am
c14c3892a2b39b4684a1f69b8465a38556604caf 16-Aug-2004 Daniel Veillard <veillard@src.gnome.org> added help for new set shell command added parser option to not generate

* debugXML.c: added help for new set shell command
* xinclude.c xmllint.c xmlreader.c include/libxml/parser.h:
added parser option to not generate XInclude start/end nodes,
added a specific option to xmllint to test it fixes #130769
* Makefile.am: regression test the new feature
* doc/xmllint.1 doc/xmllint.xml: updated man page to document option.
Daniel
/external/libxml2/Makefile.am
29b1748205897f727696b62fdba333efc9671440 16-Aug-2004 Daniel Veillard <veillard@src.gnome.org> small typo pointed out by Mike Hommey slightly improved the --c14n

* xmlIO.c: small typo pointed out by Mike Hommey
* doc/xmllint.xml, xmllint.html, xmllint.1: slightly improved
the --c14n description, c.f. #144675 .
* nanohttp.c nanoftp.c: applied a first simple patch from
Mike Hommey for $no_proxy, c.f. #133470
* parserInternals.c include/libxml/parserInternals.h
include/libxml/xmlerror.h: cleanup to avoid 'error' identifier
in includes #
* parser.c SAX2.c debugXML.c include/libxml/parser.h:
first version of the inplementation of parsing within
the context of a node in the tree #142359, new function
xmlParseInNodeContext(), added support at the xmllint --shell
level as the "set" function
* test/scripts/set* result/scripts/* Makefile.am: extended
the script based regression tests to instrument the new function.
Daniel
/external/libxml2/Makefile.am
1f8658a76f155c460604fd295e7e66828c054ade 14-Aug-2004 Daniel Veillard <veillard@src.gnome.org> Dodji pointed out a bug in xmlGetNodePath() applied patch from Albert Chin

* tree.c: Dodji pointed out a bug in xmlGetNodePath()
* xmlcatalog.c: applied patch from Albert Chin to add a
--no-super-update option to xmlcatalog see #145461
and another patch also from Albert Chin to not crash
on -sgml --del without args see #145462
* Makefile.am: applied another patch from Albert Chin to
fix a problem with diff on Solaris #145511
* xmlstring.c: fix xmlCheckUTF8() according to the suggestion
in bug #148115
* python/libxml.py: apply fix from Marc-Antoine Parent about
the errors in libxml(2).py on the node wrapper #135547
Daniel
/external/libxml2/Makefile.am
da3b29a5c42437d194207eb39c9da8ebd9aefefd 14-Aug-2004 Daniel Veillard <veillard@src.gnome.org> added a dumb rule to able to compile tst.c when people submit a sample

* Makefile.am: added a dumb rule to able to compile tst.c
when people submit a sample test program
* xmlschemas.c: applied small patch from Eric Haszlakiewicz
to document xmlSchemasSetValidErrors() limitations, #141827
* error.c: Add information in generic and structured error
setter functions that this need to be done per thread #144308
* xmlsave.c: fixed bug whith missing NOTATION(s) serialization
bug #144162
* doc/xmllint.xml: typo fix #144840
Daniel
/external/libxml2/Makefile.am
d392ba7ef1508f796c6de44455a3747a583e0a56 04-Aug-2004 Daniel Veillard <veillard@src.gnome.org> applied a patch from Gerrit P. Haase to get python bindings on Cygwin

* Makefile.am config.h.in configure.in python/Makefile.am:
applied a patch from Gerrit P. Haase to get python bindings
on Cygwin
Daniel
/external/libxml2/Makefile.am
1826d0a71beb2687d275c7e4075a24c769c8ca9f 21-Jul-2004 William M. Brack <wbrack@src.gnome.org> put in an auto* check for the path to perl (if it exists), and modified

* configure.in, Makefile.am: put in an auto* check for the
path to perl (if it exists), and modified make Timingtests
to use that path instead of just executing the dbgenattr.pl
script (bug 148056)
/external/libxml2/Makefile.am
e9449c5d29d87b1dc51de7784ed947ae1e3da831 11-Jul-2004 William M. Brack <wbrack@src.gnome.org> added an encoding "special comment" to avoid warning message in python2.3

* python/drv_libxml.py: added an encoding "special comment" to avoid
warning message in python2.3 (bug 146889)
* Makefile.am, python/Makefile.am, python/tests/Makefile.am: small
change to make "make tests" a little quieter (MAKEFLAGS+=--silent)
* xpath.c: enhanced to take advantage of current libxslt handling
of tmpRVT. Fixes bug 145547.
/external/libxml2/Makefile.am
45cb0f41e457439d508f03a19d7a6c98d9803d9f 05-Jul-2004 Daniel Veillard <veillard@src.gnome.org> releasing 2.6.11, updated and regenerated the docs Daniel

* configure.in doc/*: releasing 2.6.11, updated and regenerated the
docs
Daniel
/external/libxml2/Makefile.am
a2351322c89608d09ce1a99e5eccd62d00c79890 27-Jun-2004 Daniel Veillard <veillard@src.gnome.org> hack based on Arjan van de Ven suggestion to reduce ELF footprint and

* elfgcchack.h doc/elfgcchack.xsl libxml.h: hack based on Arjan van de
Ven suggestion to reduce ELF footprint and generated code. Based on
aliasing of libraries function to generate direct call instead of
indirect ones
* doc/libxml2-api.xml doc/Makefile.am doc/apibuild.py: added automatic
generation of elfgcchack.h based on the API description, extended
the API description to show the conditionals configuration flags
required for symbols.
* nanohttp.c parser.c xmlsave.c include/libxml/*.h: lot of cleanup
* doc/*: regenerated the docs.
Daniel
/external/libxml2/Makefile.am
f20fbf70b2d0c37482c189c9c52887cc7cf91d37 25-Jun-2004 William M. Brack <wbrack@src.gnome.org> fixed a problem when base path was "./xxx" 5 test results changed by

* uri.c: fixed a problem when base path was "./xxx"
* result/XInclude/*: 5 test results changed by above.
* Makefile.am: fixed a couple of spots where a new
result file used different flags that the testing one.
/external/libxml2/Makefile.am
4a14fb8fa27c0e954fcc78be4de4a6e82de400dc 14-Jun-2004 Daniel Veillard <veillard@src.gnome.org> fix from Steve Ball and update of the comment. William pointed out that

* xmlreader.c: fix from Steve Ball and update of the comment.
* Makefile.am result/errors/*.str: William pointed out that
the streaming error checking part wasn't streaming, fixing
Daniel
/external/libxml2/Makefile.am
0df3bc3f287898e13a743d939b1d36f81be8f0fb 08-Jun-2004 Daniel Veillard <veillard@src.gnome.org> fixed a serious problem when substituing entities using the Reader, the

* parser.c xmlreader.c include/libxml/parser.h: fixed a serious
problem when substituing entities using the Reader, the entities
content might be freed and if rereferenced would crash
* Makefile.am test/* result/*: added a new test case and a new
test operation for the reader with substitution of entities.
Daniel
/external/libxml2/Makefile.am
6d38c750b71f9d5f379b0abdccd01533f494d1ed 10-May-2004 Daniel Veillard <veillard@src.gnome.org> applied patch from Ed Davis to allow "make tests" to work with Python 1.5

* Makefile.am python/tests/Makefile.am python/tests/tstLastError.py:
applied patch from Ed Davis to allow "make tests" to work
with Python 1.5
Daniel
/external/libxml2/Makefile.am
a90de5ef9634e81b39d67fdc4ba0f4492c7fd68b 09-May-2004 Daniel Veillard <veillard@src.gnome.org> fix for a pedantic make check without make all request Daniel

* Makefile.am: fix for a pedantic make check without make all request
Daniel
/external/libxml2/Makefile.am
a0c48addfc8aaba3394fb7e06a4b3039214d48d1 16-Apr-2004 William M. Brack <wbrack@src.gnome.org> fixed problem with detecting external dtd encoding (bug 135229). minor

* parser.c: fixed problem with detecting external dtd
encoding (bug 135229).
* Makefile.am: minor change to test label
/external/libxml2/Makefile.am
67f8b1cd960d809819342ada338444ed24739a55 09-Apr-2004 Daniel Veillard <veillard@src.gnome.org> adding xml:id draft support adding 4 first regression tests Daniel

* SAX2.c include/libxml/tree.h: adding xml:id draft support
* Makefile.am test/xmlid/id_tst* result/xmlid/id_tst*: adding
4 first regression tests
Daniel
/external/libxml2/Makefile.am
f580674366ad854ac0ebafca5113376fa6efad91 31-Mar-2004 William M. Brack <wbrack@src.gnome.org> added PYTHONPATH to python tests for Schemas and RelaxNG added testfile

* Makefile.am: added PYTHONPATH to python tests for Schemas
and RelaxNG
* test/xsdtest/xsdtestsuite.xml: added testfile for
SchemasPythonTests
/external/libxml2/Makefile.am
252004df14b680d40c29e2ab479660162e15431e 23-Mar-2004 Daniel Veillard <veillard@src.gnome.org> preparing 2.6.8 release, updated and rebuilt the docs. use valgring fro

* configure.in doc/* News: preparing 2.6.8 release, updated and rebuilt
the docs.
* Makefile.am: use valgring fro the new Python based regression tests
Daniel
/external/libxml2/Makefile.am
6dc91962d072fd434fec4673e9e4f2201a99df86 22-Mar-2004 Daniel Veillard <veillard@src.gnome.org> remove a memory leak on schemas type facets. reduce verbosity incorporated

* relaxng.c: remove a memory leak on schemas type facets.
* check-relaxng-test-suite.py check-relaxng-test-suite2.py
check-xsddata-test-suite.py: reduce verbosity
* configure.in Makefile.am: incorporated the Python regressions
tests for Relax-NG and Schemas Datatype to "make tests"
Daniel
/external/libxml2/Makefile.am
1a8741c89826194fc1c7923bff981cb11c79621a 04-Mar-2004 Daniel Veillard <veillard@src.gnome.org> commiting the new xmlsave module before the actuall big code change.

* Makefile.am tree.c xmlsave.c include/libxml/xmlsave.h: commiting
the new xmlsave module before the actuall big code change.
Daniel
/external/libxml2/Makefile.am
33a773ffba763847fcd81f58a3d7b31ab65166e8 26-Feb-2004 Daniel Veillard <veillard@src.gnome.org> patch for cross-compilation to Windows from Christophe de VIENNE. Daniel

* Makefile.am: patch for cross-compilation to Windows from
Christophe de VIENNE.
Daniel
/external/libxml2/Makefile.am
c74859e03fbc032ed14e245f2323aec7279e9b6f 26-Feb-2004 Daniel Veillard <veillard@src.gnome.org> applied patch from Charles Bozeman to nit use the system xmllint. Daniel

* Makefile.am: applied patch from Charles Bozeman to nit use
the system xmllint.
Daniel
/external/libxml2/Makefile.am
06d2524e8069c7ab0626d03910ac29484741f811 25-Feb-2004 Daniel Veillard <veillard@src.gnome.org> applied a cleanup patch from Peter Breitenlohner removed a doc build

* Makefile.am catalog.c configure.in: applied a cleanup patch
from Peter Breitenlohner
* tree.c: removed a doc build warning by fixing a param comment
* doc/* : rebuilt the docs
Daniel
/external/libxml2/Makefile.am
522bc60ea9232d42e978c651a7f7f9e76e969fe6 21-Feb-2004 Daniel Veillard <veillard@src.gnome.org> added "relaxng" option to the debugging shell some regression tests for

* debugXML.c: added "relaxng" option to the debugging shell
* Makefile.am test/errors/* result/errors/*: some regression tests
for some error tests cases.
Daniel
/external/libxml2/Makefile.am
4773df2a58be83e1b9b1b55840371acf37386820 23-Jan-2004 Daniel Veillard <veillard@src.gnome.org> added io1.c an example ox xmlIO usage and io1.res test result, fixed a

* doc/examples/*: added io1.c an example ox xmlIO usage and io1.res
test result, fixed a awful lot of memory leaks showing up in
testWriter.c, changed the examples and the Makefiles to test
memory leaks.
* xmlwriter.c: fixed a memory leak
* Makefile.am: run the doc/examples regression tests as part of
make tests
* xpath.c include/libxml/xpath.h: added xmlXPathCtxtCompile() to
compile an XPath expression within a context, currently the goal
is to be able to reuse the XSLT stylesheet dictionnary, but this
opens the door to others possible optimizations.
* dict.c include/libxml/dict.h: added xmlDictCreateSub() which allows
to build a new dictionnary based on another read-only dictionnary.
This is needed for XSLT to keep the stylesheet dictionnary read-only
while being able to reuse the strings for the transformation
dictionnary.
* xinclude.c: fixed a dictionnar reference counting problem occuring
when document parsing failed.
* testSAX.c: adding option --repeat for timing 100times the parsing
* doc/* : rebuilt all the docs
Daniel
/external/libxml2/Makefile.am
a2e844a3b3503367a4418187e77ccc977f186909 06-Jan-2004 William M. Brack <wbrack@src.gnome.org> moved string and UTF8 routines out of parser.c and encoding.c into a new

* encoding.c, parser.c, xmlstring.c, Makefile.am,
include/libxml/Makefile.am, include/libxml/catalog.c,
include/libxml/chvalid.h, include/libxml/encoding.h,
include/libxml/parser.h, include/libxml/relaxng.h,
include/libxml/tree.h, include/libxml/xmlwriter.h,
include/libxml/xmlstring.h:
moved string and UTF8 routines out of parser.c and encoding.c
into a new module xmlstring.c with include file
include/libxml/xmlstring.h mostly using patches from Reid
Spencer. Since xmlChar now defined in xmlstring.h, several
include files needed to have a #include added for safety.
* doc/apibuild.py: added some additional sorting for various
references displayed in the APIxxx.html files. Rebuilt the
docs, and also added new file for xmlstring module.
* configure.in: small addition to help my testing; no effect on
normal usage.
* doc/search.php: added $_GET[query] so that persistent globals
can be disabled (for recent versions of PHP)
/external/libxml2/Makefile.am
6984e6d3cca0fa24a237e95e6d83592dbfed8128 09-Dec-2003 Daniel Veillard <veillard@src.gnome.org> another patch from Kenneth Haley for Mingw, c.f. #128787 Daniel

* configure.in Makefile.am: another patch from Kenneth Haley
for Mingw, c.f. #128787
Daniel
/external/libxml2/Makefile.am
e74d2e1cb85b184b327c1b41d2b1c2dfbcc653d7 09-Dec-2003 Daniel Veillard <veillard@src.gnome.org> augmented the XInclude API to be able to pass XML parser flags down to the

* xinclude.c xmllint.c xmlreader.c include/libxml/xinclude.h
include/libxml/xmlerror.h: augmented the XInclude API
to be able to pass XML parser flags down to the Inclusion
process. Also resynchronized with the Last Call W3C Working
Draft 10 November 2003 for the xpointer attribute.
* Makefile.am test/XInclude/docs/nodes[23].xml
result/XInclude/*: augmented the tests for the new namespace and
testing the xpointer attribute, changed the way error messages
are tested
* doc/*: regenerated the documentation
Daniel
/external/libxml2/Makefile.am
b3de70c28294f6c7f7ef8ec0033fb302b0dfbe26 02-Dec-2003 Daniel Veillard <veillard@src.gnome.org> adding the pattern node selection code. Inheried in part from libxslt but

* pattern.c include/libxml/pattern.h: adding the pattern node
selection code. Inheried in part from libxslt but smaller.
* Makefile.am configure.in include/libxml/xmlversion.h.in:
integrated the pattern module, made it a configure time option
* xmllint.c: added --pattern to test when doing --stream
Daniel
/external/libxml2/Makefile.am
1a79241a3cac6a8e37de886f5764de2509ebc8e3 19-Nov-2003 Daniel Veillard <veillard@src.gnome.org> do not package cvs versioning temp files. more cleanup, slightly improved

* Makefile.am: do not package cvs versioning temp files.
* doc/apibuild.py doc/libxml2-api.xml doc/newapi.xsl: more cleanup,
slightly improved the API xml format, fixed a lot of small
rendering problems
* doc/html/libxml*.html: rebuilt
Daniel
/external/libxml2/Makefile.am
fe9fc792ed75c3af076f230bc3c787d701e80fdc 05-Nov-2003 Daniel Veillard <veillard@src.gnome.org> apply fix from Karl Eichwalder for script path Daniel

* Makefile.am: apply fix from Karl Eichwalder for script path
Daniel
/external/libxml2/Makefile.am
7899c5c5d67055e6a4c6b3d4be74fa72a6145e27 03-Nov-2003 Daniel Veillard <veillard@src.gnome.org> adding XInclude support to the reader interface. Lot of testing of the

* xinclude.c xmlreader.c include/libxml/xinclude.h: adding XInclude
support to the reader interface. Lot of testing of the walker,
various bug fixes.
* xmllint.c: added --walker and made sure --xinclude --stream --debug
works as expected
* Makefile.am result/dtd11.rdr result/ent6.rdr test/dtd11 test/ent6
result/XInclude/*.rdr: added regression tests for the walker and
XInclude xmlReader support, had to slightly change a couple of tests
because the walker can't distinguish <foo/> from <foo></foo>
Daniel
/external/libxml2/Makefile.am
72b9e29edfee9b1cea5c544848b81766c07f1dfa 28-Oct-2003 Daniel Veillard <veillard@src.gnome.org> cleanup fixing bug #125653 sometimes the error handlers can get a parser

* Makefile.am: cleanup
* error.c valid.c include/libxml/xmlerror.h: fixing bug #125653
sometimes the error handlers can get a parser context on DTD
errors, and sometime they don't. So be very careful when trying
to grab those informations.
Daniel
/external/libxml2/Makefile.am
1d211e227372e5ed75a69fbad5f50d185d0af936 21-Oct-2003 Daniel Veillard <veillard@src.gnome.org> added the xmlWriter module contributed by Alfred Mickautsch added room for

* configure.in xmlwriter.c Makefile.am include/libxml/xmlwriter.h
include/libxml/Makefile.am include/libxml/xmlversion.h.in:
added the xmlWriter module contributed by Alfred Mickautsch
* include/libxml/tree.h: added room for line and extra information
* xmlreader.c python/tests/reader6.py: bugfixing some problem some
of them introduced in September
* win32/libxml2.def.src doc/libxml2-api.xml: regenerated the API
Daniel
/external/libxml2/Makefile.am
198c1bfc1cd2cc031410e4be4e5faebed45c557c 20-Oct-2003 Daniel Veillard <veillard@src.gnome.org> removing xmldwalk module since it got merged with the xmlreader. cleanup

* Makefile.am configure.in xmldwalk.c xmlreader.c
include/libxml/Makefile.am include/libxml/xmldwalk.h
include/libxml/xmlversion.h.in: removing xmldwalk module
since it got merged with the xmlreader.
* parser.c: cleanup
* win32/libxml2.def.src python/libxml2class.txt doc/libxml2-api.xml:
rebuilt the API
* python/tests/Makefile.am python/tests/reader7.py
python/tests/walker.py: adding regression testing for the
new xmlreader APIs, new APIs for reader creation, including
makeing reader "walker" operating on preparsed document trees.
Daniel
/external/libxml2/Makefile.am
903cd385c3dcb91c8c68df065eaa51973b5154c7 13-Oct-2003 Daniel Veillard <veillard@src.gnome.org> small fix from Bjorn Reese Daniel

* Makefile.am: small fix from Bjorn Reese
Daniel
/external/libxml2/Makefile.am
68aca051a61608e6cbbd2d36263e4470008e64f5 11-Oct-2003 William M. Brack <wbrack@src.gnome.org> new files for a different method for doing range validation of character

* genChRange.py, chvalid.def, chvalid.c, include/libxml/chvalid.h:
new files for a different method for doing range validation
of character data.
* Makefile.am, parserInternals.c, include/libxml/Makefile.am,
include/libxml/parserInternals.h: modified for new range method.
* catalog.c: small enhance for warning message (using one
of the new range routines)
/external/libxml2/Makefile.am
d0c9c32f64c09c699c54dc9ffb8558c297f9e08e 10-Oct-2003 Daniel Veillard <veillard@src.gnome.org> cleanup fix a funny typo converted the Schemas code to the new error

* Makefile.am: cleanup
* encoding.c: fix a funny typo
* error.c xmlschemas.c xmlschemastypes.c include/libxml/xmlerror.h:
converted the Schemas code to the new error handling. PITA,
still need to check output from regression tests.
Daniel
/external/libxml2/Makefile.am
f403d298c3dfa831777a4b2d961a66a84666ddc3 05-Oct-2003 Daniel Veillard <veillard@src.gnome.org> more code cleanup, especially around error messages, the HTML parser has

* HTMLparser.c Makefile.am legacy.c parser.c parserInternals.c
include/libxml/xmlerror.h: more code cleanup, especially around
error messages, the HTML parser has now been upgraded to the new
handling.
* result/HTML/*: a few changes in the resulting error messages
Daniel
/external/libxml2/Makefile.am
1ae42d653ecb4db096d08e9b25e47e4260b39cf6 04-Oct-2003 Daniel Veillard <veillard@src.gnome.org> integrated the xmlDocWalker API given by Alfred Mickautsch, and providing

* Makefile.am configure.in xmldwalk.c include/libxml/Makefile.am
include/libxml/xmldwalk.h include/libxml/xmlversion.h.in:
integrated the xmlDocWalker API given by Alfred Mickautsch,
and providing an xmlReader like API but working on a xmlDocPtr.
Daniel
/external/libxml2/Makefile.am
bb5ababa28c37f2507715386d096c8bf4b2ee065 04-Oct-2003 Daniel Veillard <veillard@src.gnome.org> more cleanup in make tests more work in the transition to the new error

* Makefile.am: more cleanup in make tests
* error.c valid.c parser.c include/libxml/xmlerror.h: more work
in the transition to the new error reporting strategy.
* python/tests/reader2.py result/VC/* result/valid/*:
few changes in the strings generated by the validation output
Daniel
/external/libxml2/Makefile.am
2b8c4a151bb6bf91c10541b0593218bca5b3d5ce 03-Oct-2003 Daniel Veillard <veillard@src.gnome.org> changed 'make tests' to use a concise output, scrolling to see where thing

* Makefile.am: changed 'make tests' to use a concise output,
scrolling to see where thing broke wasn't pleasant
* configure.in: some beta4 preparation, but not ready yet
* error.c globals.c include/libxml/globals.h include/libxml/xmlerror.h:
new error handling code, last error informations are stored
in the parsing context or a global variable, new APIs to
handle the xmlErrorPtr type.
* parser.c parserInternals.c valid.c : started migrating to the
new error handling code, it's a royal pain.
* include/libxml/parser.h include/libxml/parserInternals.h:
moved the definition of xmlNewParserCtxt()
* parser.c: small potential buffer access problem in push code
provided by Justin Fletcher
* result/*.sax result/VC/PENesting* result/namespaces/*
result/valid/*.err: some error messages were sligthly changed.
Daniel
/external/libxml2/Makefile.am
73b013fc1758c3c3afb54c00ade42b529fc4c77d 30-Sep-2003 Daniel Veillard <veillard@src.gnome.org> added a new configure option --with-push, some cleanups, chased code size

* HTMLparser.c Makefile.am configure.in legacy.c parser.c
parserInternals.c testHTML.c xmllint.c include/libxml/HTMLparser.h
include/libxml/parser.h include/libxml/parserInternals.h
include/libxml/xmlversion.h.in: added a new configure
option --with-push, some cleanups, chased code size anomalies.
Now a library configured --with-minimum is around 150KB,
sounds good enough.
Daniel
/external/libxml2/Makefile.am
0643112b6a0ad2a52d2ae7edde8ee9e107fa21f1 30-Sep-2003 AEST 2003 Malcolm Tredinnick <malcolm@commsecure.com.au> New file for building against uninstalled libxml2 builds. Support the


Tue Sep 30 12:31:00 AEST 2003 Malcolm Tredinnick <malcolm@commsecure.com.au>

* libxml-2.0-uninstalled.pc.in: New file for building against
uninstalled libxml2 builds.
* configure.in, Makefile.am: Support the *-uninstalled.pc file.
/external/libxml2/Makefile.am
8127390f0332ddf545fe59e406996deaedfee964 30-Sep-2003 Daniel Veillard <veillard@src.gnome.org> added 2 new configure option: --with-reader --with-sax1 to allow removing

* Makefile.am SAX.c SAX2.c configure.in globals.c parser.c
parserInternals.c testReader.c testSAX.c xmlIO.c xmllint.c
xmlreader.c example/gjobread.c include/libxml/xmlversion.h.in:
added 2 new configure option: --with-reader --with-sax1
to allow removing the reader or non-xmlReadxxx() interfaces.
Daniel
/external/libxml2/Makefile.am
4432df239b7aba6bff86c838e0be11d08f283b76 28-Sep-2003 Daniel Veillard <veillard@src.gnome.org> cleanup, creating a new legacy.c module, made sure make tests ran in

* Makefile.am: cleanup, creating a new legacy.c module,
made sure make tests ran in reduced conditions
* SAX.c SAX2.c configure.in entities.c globals.c parser.c
parserInternals.c tree.c valid.c xlink.c xmlIO.c xmlcatalog.c
xmlmemory.c xpath.c xmlmemory.c include/libxml/xmlversion.h.in:
increased the modularization, allow to configure out
validation code and legacy code, added a configuration
option --with-minimum compiling only the mandatory code
which then shrink to 200KB.
Daniel
/external/libxml2/Makefile.am
e96a2a4bf040ec93f83d9c33f8ae4ac3f1e512e9 24-Sep-2003 Daniel Veillard <veillard@src.gnome.org> adding repeated parsing and validating tests make the new DOM tree

* Makefile.am: adding repeated parsing and validating tests
* SAX2.c parser.c tree.c include/libxml/parser.h: make the new
DOM tree building interfaces use the dictionary from the
parsing context to build the element and attributes names
as well as formatting spaces and short text nodes
* include/libxml/dict.h dict.c: added some reference counting
for xmlDictPtr because they can be shared by documents and
a parser context.
* xmlreader.c: a bit of cleanup, remove the specific tree freeing
functions and use the standard ones now.
* xmllint.c: add --nodict
* python/libxml.c: fix a stupid bug so that ns() works on
attribute nodes.
Daniel
/external/libxml2/Makefile.am
d9e9c9d8f337dbef399a8bfdbc0329b719e52aaf 19-Sep-2003 Daniel Veillard <veillard@src.gnome.org> fixing namespace DTD validations the output of defaulted namespaces is

* SAX2.c: fixing namespace DTD validations
* result/valid/ns2.xml result/valid/ns.xml: the output of defaulted
namespaces is slightly different now.
* Makefile.am: report the memory used in Timingtests (as well as time)
Daniel
/external/libxml2/Makefile.am
5335055ef698595d4a4b7e4613fd057a45166849 18-Sep-2003 Daniel Veillard <veillard@src.gnome.org> add streaming on memory regression tests, found bad bugs in the reader

* Makefile.am: add streaming on memory regression tests, found
bad bugs in the reader interface
* xmlreader.c: fixing bugs w.r.t. very large names, and special
condition in end of file.
* xmlIO.c tree.c include/libxml/tree.h include/libxml/xmlIO.h:
adding immutable buffers, and parser input based on those,
but this should not be used (yet) for general parsing
* parser.c: added a comment about using immutable buffers for
general parsing.
* result/bigname.xml.rdr result/bigname2.xml.rdr: fixing the
output of the regression tests
* xmllint.c: using the immutable buffers when streaming on
mmaped file (--stream --memory)
Daniel
/external/libxml2/Makefile.am
f6bc7c249e4e4a4189bedb5ef756c980491d08d8 18-Sep-2003 Daniel Veillard <veillard@src.gnome.org> add a Timingtests target to check bad behaviour from the streaming engine

* Makefile.am: add a Timingtests target to check bad behaviour
from the streaming engine
* dbgen.pl dbgenattr.pl: perl script to generate big instances
* xmlreader.c: fix a bad behaviour on large buffer inputs
Daniel
/external/libxml2/Makefile.am
81514ba47868793ad27ed344294f48d6a2d3ced9 17-Sep-2003 Daniel Veillard <veillard@src.gnome.org> do string allocations in large pools, allowing to find if a string pertain

* dict.c include/libxml/dict.h: do string allocations in large
pools, allowing to find if a string pertain to a dict quickly
* xmllint.c: fix --stream --repeat --timing
* Makefile.am: the testThreads run output should be seen.
Daniel
/external/libxml2/Makefile.am
8a44e59d67bdff87e3e28851ce780f33425407f8 15-Sep-2003 Daniel Veillard <veillard@src.gnome.org> starting work on reusing the parser dictionary for the element and

* SAX2.c include/libxml/parser.h: starting work on reusing the
parser dictionary for the element and attribute tag names.
Add pools for Element and Attributes in the parser context,
which should help speeding up the reader.
* Makefile.am result/*.rdr : adding non-python reader regression
tests.
Daniel
/external/libxml2/Makefile.am
877a7bd6a35fae1dddb88bfb7af838ed8c369498 13-Sep-2003 Daniel Veillard <veillard@src.gnome.org> removing the broken pseudo SGML DocBook parser code. Daniel

* Makefile.am DOCBparser.c parserInternals.c testDocbook.c
xmllint.c doc/xmllint.xml doc/xmllint.1: removing the
broken pseudo SGML DocBook parser code.
Daniel
/external/libxml2/Makefile.am
3b7840cd6c714dbe444726625c27f03c4770b4be 12-Sep-2003 Daniel Veillard <veillard@src.gnome.org> adding namespace checkings while making sure they still parse as

* parser.c parserInternals.c tree.c include/libxml/parser.h
include/libxml/xmlerror.h: adding namespace checkings
while making sure they still parse as wellformed documents.
Add an nsWellFormed status report to the context, and
provide new appropriate error codes.
* Makefile.am result/namespaces/* test/namespaces/*: add
specific regression testing for the new namespace support
* test/att5 result/noent/att5 result/att5 result/att5.sax:
add more coverage for the attribute parsing and normalization
code.
Daniel
/external/libxml2/Makefile.am
07cb8226c097ce3d8db934a07025c62803ad1f64 10-Sep-2003 Daniel Veillard <veillard@src.gnome.org> Time to commit 3 days of work rewriting the parser internal,
fixing bugs and migrating to SAX2 interface by default. There
is some work letf TODO, like namespace validation and attributes
normalization (this break C14N right now)
* Makefile.am: fixed the test rules
* include/libxml/SAX2.h include/libxml/parser.h
include/libxml/parserInternals.h SAX2.c parser.c
parserInternals.c: changing the parser, migrating to SAX2,
adding new interface to switch back to SAX1 or initialize a
SAX block for v1 or v2. Most of the namespace work is done
below SAX, as well as attribute defaulting
* globals.c: changed initialization of the default SAX handlers
* hash.c tree.c include/libxml/hash.h: added QName specific handling
* xmlIO.c: small fix
* xmllint.c testSAX.c: provide a --sax1 switch to test the old
version code path
* result/p3p result/p3p.sax result/noent/p3p test/p3p: the new code
pointed out a typo in a very old test namespace
Daniel
/external/libxml2/Makefile.am
4b1577f14adf070259221726083c6e2106afb201 03-Sep-2003 Daniel Veillard <veillard@src.gnome.org> removing the SAXresults tree, keeping result in the same tree, added

* Makefile.am results/*.sax SAXResult/*: removing the SAXresults
tree, keeping result in the same tree, added SAXtests to the
default "make tests"
Daniel
/external/libxml2/Makefile.am
1af9a41f24deb04ababc4075de0005bd75f320f6 21-Aug-2003 Daniel Veillard <veillard@src.gnome.org> Adding new version of the SAX interface, it's not there yet, currently

* Makefile.am SAX2.c include/libxml/Makefile.am include/libxml/SAX2.h:
Adding new version of the SAX interface, it's not there yet,
currently just preparing the work
* globals.c parser.c SAX.c include/libxml/SAX.h
include/libxml/globals.h include/libxml/parser.h: doing some
refactoring of the SAXv1 interfaces, obsoleting a bunch of them
while keeping functionalities, preparing SAX2 integration.
* dict.c: small cleanup.
Daniel
/external/libxml2/Makefile.am
2fdbd32d514c8b9d166a80564aca3426ec9cfdb2 18-Aug-2003 Daniel Veillard <veillard@src.gnome.org> new dictionary module to keep a single instance of the names used by the

* dict.c include/libxml/dict.h Makefile.am include/libxml/Makefile.am:
new dictionary module to keep a single instance of the names used
by the parser
* DOCBparser.c HTMLparser.c parser.c parserInternals.c valid.c:
switched all parsers to use the dictionary internally
* include/libxml/HTMLparser.h include/libxml/parser.h
include/libxml/parserInternals.h include/libxml/valid.h:
Some of the interfaces changed as a result to receive or return
"const xmlChar *" instead of "xmlChar *", this is either
insignificant from an user point of view or when the returning
value changed, those function are really parser internal methods
that no user code should really change
* doc/libxml2-api.xml doc/html/*: the API interface changed and
the docs were regenerated
Daniel
/external/libxml2/Makefile.am
1638a47a884b089825e26459081e137483b7d454 14-Aug-2003 Daniel Veillard <veillard@src.gnome.org> Applied patch from Mikhail Grushinskiy for mingw compiler on Windows.

* Makefile.am configure.in example/Makefile.am libxml.h nanoftp.c
nanohttp.c xmllint.c: Applied patch from Mikhail Grushinskiy for
mingw compiler on Windows.
Daniel
/external/libxml2/Makefile.am
de0a0a5a2584c25c85dbf0d0172371d7cd3e959f 24-Apr-2003 Daniel Veillard <veillard@src.gnome.org> make sure the OOM code don't get in the way of the builds automatic update

* Makefile.am doc/apibuild.py: make sure the OOM code don't
get in the way of the builds
* doc/libxml2-api.xml python/libxml2class.txt: automatic update
Daniel
/external/libxml2/Makefile.am
a76fe5ca11ebf9e9322dfcf7728dc55077086d43 24-Apr-2003 Daniel Veillard <veillard@src.gnome.org> integrated the Out Of Memory test from Havoc Pennington #109368 a lot of

* Makefile.am testOOM.c testOOMlib.[ch] : integrated the Out Of
Memory test from Havoc Pennington #109368
* SAX.c parser.c parserInternals.c tree.c uri.c valid.c
xmlmemory.c xmlreader.c xmlregexp.c include/libxml/tree.h
include/libxml/parser.h: a lot of memory allocation cleanups
based on the results of the OOM testing
* check-relaxng-test-suite2.py: seems I forgot to commit the
script.
Daniel
/external/libxml2/Makefile.am
3e59fc52d52a7e07a9dbf214893d90c965b53c1c 18-Apr-2003 Daniel Veillard <veillard@src.gnome.org> added support for large file, tested with a 3+GB instance, and some

* libxml.h include/libxml/parser.h parser.c xmlIO.c DOCBparser.c:
added support for large file, tested with a 3+GB instance,
and some cleanup.
* catalog.c: added a TODO
* Makefile.am: added some "make tests" comments
Daniel
/external/libxml2/Makefile.am
f4e5576f8f34362b6bec9396ab073fac839dfb22 16-Apr-2003 Daniel Veillard <veillard@src.gnome.org> implemented streaming of RelaxNG (when possible) on top of the xmlReader

* relaxng.c xmlreader.c xmllint.c include/libxml/relaxng.h
include/libxml/xmlreader.h: implemented streaming of
RelaxNG (when possible) on top of the xmlReader interface,
provided it as xmllint --stream --relaxng .rng .xml
This seems to mostly work.
* Makefile.am: updated to test RelaxNG streaming
Daniel
/external/libxml2/Makefile.am
580ced8ee28ecd99374da9383897678e4ba6c358 21-Mar-2003 Daniel Veillard <veillard@src.gnome.org> fixed Red Hat bug #86118 use libxml2.spec instead of libxml.spec fixed

* configure.in Makefile.am: fixed Red Hat bug #86118 use libxml2.spec
instead of libxml.spec
* relaxng.c: fixed some of the error reporting excessive
verbosity
* catalog.c debugXML.c valid.c xmlreader.c xmlschemas.c xpath.c
xmlschemastypes.c: removed some warnings from gcc
* doc/libxml2-api.xml: rebuilt
Daniel
/external/libxml2/Makefile.am
5add868b2e79a304c8d99be57bc446f94798af84 10-Mar-2003 Daniel Veillard <veillard@src.gnome.org> stop generating wrong result file with * in name fixing the include bug

* Makefile.am: stop generating wrong result file with * in name
* relaxng.c: fixing the include bug raised by Sebastian Rahtz
* result/relaxng/demo* test/relaxng/demo: added the tests from
Sebastian reproducing the problem.
Daniel
/external/libxml2/Makefile.am
2e9b165f9e0d15e6c1bef9953376377d0301fe5a 19-Feb-2003 Daniel Veillard <veillard@src.gnome.org> patched to have shared libraries for Python regression tests and static

* Makefile.am configure.in: patched to have shared libraries
for Python regression tests and static binaries for gdb debug
in my development environment
* relaxng.c: more bugfixes
found 373 test schemas: 296 success 77 failures
found 529 test instances: 516 success 8 failures
* result/relaxng/*: updated the results
Daniel
/external/libxml2/Makefile.am
869fb32050e8e89c0c4848087970a58df9966f51 10-Feb-2003 Daniel Veillard <veillard@src.gnome.org> Adding the 2 check python scripts for RelaxNG and XInclude, Daniel
/external/libxml2/Makefile.am
231d791fc4d9bec385a726a7d556cb62b777614b 09-Feb-2003 Daniel Veillard <veillard@src.gnome.org> fixes a libtool problem on AMD 64bits builds found the validation problem

* libxml.spec.in: fixes a libtool problem on AMD 64bits builds
* relaxng.c: found the validation problem I had with interleave
when not covering all remaining siblings
* Makefile.am test.relaxng/* result/relaxng/*: augmented the
testsuite and check the RNG schemas against the RNG schemas
given in appendix A
Daniel
/external/libxml2/Makefile.am
71531f33450f9a809eab050104e55c84b77b2a9e 05-Feb-2003 Daniel Veillard <veillard@src.gnome.org> comments cleanups use xmllint for doing the RelaxNG tests preparing 2.5.2

* HTMLparser.c tree.c xmlIO.c: comments cleanups
* Makefile.am: use xmllint for doing the RelaxNG tests
* configure.in: preparing 2.5.2 made schemas support default to
on instead of off
* relaxng.c: removed the verbosity
* xmllint.c: added --relaxng option
* python/generator.py python/libxml_wrap.h: prepared the integration
of the new RelaxNG module and schemas
* result/relaxng/*: less verbose output
Daniel
/external/libxml2/Makefile.am
d41f4f488864d962a42239eb4526729a2dadc685 29-Jan-2003 Daniel Veillard <veillard@src.gnome.org> more work on Relax-NG, implementing externalRef augmented/updated the

* relaxng.c: more work on Relax-NG, implementing externalRef
* test/relaxng/* result/relaxng/*: augmented/updated the
regression tests
* Makefile.am: cleanup to Relaxtests target
Daniel
/external/libxml2/Makefile.am
6eadf63ca646866fde6e4df8720e4bdced351a42 23-Jan-2003 Daniel Veillard <veillard@src.gnome.org> First commit of the new Relax-NG validation code, not generally useful

* Makefile.am configure.in relaxng.c include/libxml/relaxng.h:
First commit of the new Relax-NG validation code, not generally
useful yet.
* test/relaxng/* result/relaxng/*: current state of the regression
tests
Daniel
/external/libxml2/Makefile.am
e1ca50330b59d32b228ad9c05a874a96cef9748f 09-Dec-2002 Daniel Veillard <veillard@src.gnome.org> Adding a new set of APIs based on the C# TextXmlReader API but converted

* Makefile.am xmlreader.c include/libxml/Makefile.am
include/libxml/xmlreader.h: Adding a new set of APIs based on
the C# TextXmlReader API but converted to C. Allow to parse
in constant memory usage, far simpler to program and explain
than the SAX like APIs, unfinished but working.
* testReader.c: test program
Daniel
/external/libxml2/Makefile.am
66651aa8a04735c0f425f247b3ae8d8003195b16 15-Nov-2002 Daniel Veillard <veillard@src.gnome.org> trying to fix bug #98517 about building outside the source tree fixed the

* Makefile.am python/Makefile.am python/tests/Makefile.am:
trying to fix bug #98517 about building outside the source tree
* doc/xml.html doc/FAQ.html: fixed the link to libiconv #94585
Daniel
/external/libxml2/Makefile.am
91ad879819be91f62c7879caf0e516ec68a5239d 04-Nov-2002 Daniel Veillard <veillard@src.gnome.org> switched the order of a couple of includes to fix bugs #97100 Daniel

* Makefile.am: switched the order of a couple of includes
to fix bugs #97100
Daniel
/external/libxml2/Makefile.am
366a915f86cabf43a7c054a5290d5f4c3aaacf55 23-Oct-2002 Daniel Veillard <veillard@src.gnome.org> serious cleanup of the spec file and associated changes in the Makefiles.

* Makefile.am config.h.in libxml.spec.in doc/Makefile.am:
serious cleanup of the spec file and associated changes
in the Makefiles.
* valid.c: try to remove some warnings on x86_64
Daniel
/external/libxml2/Makefile.am
63186735fc02d893435843efad1ac432debe021f 15-Oct-2002 Daniel Veillard <veillard@src.gnome.org> use test -f instead of test -e since Solaris /bin/sh misses it, reported

* Makefile.am: use test -f instead of test -e since Solaris /bin/sh
misses it, reported by Peter Bray.
Daniel
/external/libxml2/Makefile.am
7233615a61a3636d8354e4e62b5c041f5fe0cbaf 21-Sep-2002 Daniel Veillard <veillard@src.gnome.org> fixed a breakage raised by Jacob Daniel

* Makefile.am: fixed a breakage raised by Jacob
Daniel
/external/libxml2/Makefile.am
40b11344a8adc87c9a0246592b92d4b9c001a138 20-Sep-2002 Daniel Veillard <veillard@src.gnome.org> trying to fix #88412 by bypassing all the python subdir if python ain't

* Makefile.am configure.in: trying to fix #88412 by bypassing
all the python subdir if python ain't detected
daniel
/external/libxml2/Makefile.am
23e73571f8f6918e4ea7be3506ee5bd24ee86c52 19-Sep-2002 Daniel Veillard <veillard@src.gnome.org> made configuring with regexps/automata/unicode the default but without

* Makefile.am configure.in include/libxml/xmlversion.h.in:
made configuring with regexps/automata/unicode the default
but without schemas ATM
* testRegexp.c valid.c xmlregexp.c include/libxml/xmlregexp.h:
fixed the regexp based DTD validation performance and memory
problem by switching to a compact form for determinist regexps
and detecting the determinism property in the process. Seems
as fast as the old DTD validation specific engine :-) despite
the regexp built and compaction process.
Daniel
/external/libxml2/Makefile.am
e3b7d9a165a62236c7d3443d48fb3dca86589d72 14-Aug-2002 Daniel Veillard <veillard@src.gnome.org> quick but apparently working implementation of xi:fallback, should close

* xinclude.c: quick but apparently working implementation of
xi:fallback, should close bug #89684
* Makefile.am test/XInclude/docs/fallback.xml
result/XInclude/fallback.xml: added a basic test for fallback,
and run with --nowarning to avoid a spurious warning
* configure.in: applied patch from Frederic Crozat for python
bindings on AMD 64bits machines.
Daniel
/external/libxml2/Makefile.am
fdc9156a753e839386d9f82b7a962f9779de862c 01-Jul-2002 Daniel Veillard <veillard@src.gnome.org> applied patch from Richard Jinks for the namespace axis + fixed a memory

* xpath.c: applied patch from Richard Jinks for the namespace
axis + fixed a memory error.
* parser.c parserInternals.c: applied patches from Peter Jacobi
removing ctxt->token for good.
* xmlschemas.c xmlschemastypes.c: fixed a few memory leaks
popped out by the regression tests.
* Makefile.am: patch for threads makefile from Gary Pennington
Daniel
/external/libxml2/Makefile.am
f8cb6dda89d3866c796c8cfb2ba377d12822bf24 04-Jun-2002 Aleksey Sanin <aleksey@src.gnome.org> added merlin-c14n-two.tar.gz tests for c14n/exc-c14n and slightly modified

* result/c14n/exc-without-comments/merlin-c14n-two-*
result/c14n/without-comments/merlin-c14n-two-*
test/c14n/exc-without-comments/merlin-c14n-two-*
test/c14n/without-comments/merlin-c14n-two-*
testC14N.c Makefile.am: added merlin-c14n-two.tar.gz tests for
c14n/exc-c14n and slightly modified test script to handle
these test cases
* c14n.c: fixed bugs for complicated nodes set (namespace
without node and others from merlin-c14n-two.tar.gz)
* include/libxml/xpathInternals.h win32/dsp/libxml2.def.src
win32/libxml2.def.src: "opened" xmlXPathNodeSetFreeNs() function
for xmlsec performance patch
* xpath.c: fixed self::node() for namespaces and attributes
/external/libxml2/Makefile.am
c57f9c12100ecea40faadaceb02899e9a5792571 31-May-2002 Aleksey Sanin <aleksey@src.gnome.org> Makefile.am: updated c14n tests suite
c14n.c: performance improvement for previous c14n patch
/external/libxml2/Makefile.am
508a1019a64a3b63214ca48712cc5ae3d0415718 31-May-2002 Aleksey Sanin <aleksey@src.gnome.org> C14N tests integrated into LibXML2 test suite

* Makefile.am result/c14n/* test/c14n/*: C14N tests integrated
into LibXML2 test suite
/external/libxml2/Makefile.am
49d5af8c0fd16d697f8774724be883def42d3fc5 23-May-2002 Daniel Veillard <veillard@src.gnome.org> Merijn Broeren pointed out a problem when compiling with trio and schemas.

* Makefile.am: Merijn Broeren pointed out a problem when compiling
with trio and schemas.
Daniel
/external/libxml2/Makefile.am
88c5891a25c1151a89f021e915d9efb7e58bfbf7 23-Apr-2002 Daniel Veillard <veillard@src.gnome.org> more work on Schemas updated the test list Daniel

* Makefile.am xmlschemas.c xmlschemastypes.c: more work on Schemas
* test/schemas result/schemas: updated the test list
Daniel
/external/libxml2/Makefile.am
decd64d645e0ff292bc3c6d04f8a61faf5946155 18-Apr-2002 Daniel Veillard <veillard@src.gnome.org> more Schemas work added more tests coming from the spec. Daniel

* Makefile.am xmlschemas.c: more Schemas work
* test/schemas/* result/schemas/*: added more tests coming
from the spec.
Daniel
/external/libxml2/Makefile.am
6231e845599329d10400e5f8ef9245e1434b4bf7 18-Apr-2002 Daniel Veillard <veillard@src.gnome.org> fixed & serialization bug introduced in 2.4.20 this changes a few things

* HTMLtree.c: fixed & serialization bug introduced in 2.4.20
* result/HTML/*: this changes a few things in the results
Daniel
/external/libxml2/Makefile.am
8651f5365c182ce5c52fe1cdc2b9d72b2ecc34e2 17-Apr-2002 Daniel Veillard <veillard@src.gnome.org> a bit of work on Schemas try to make it more useful changed the Schemas

* xmlschemas.c xmlschemastypes.c include/libxml/xmlschemas.h:
a bit of work on Schemas
* testSchemas.c: try to make it more useful
* test/schemas/* result/schemas/* Makefile.am: changed the
Schemas regression test procedure, started adding a few samples
Daniel
/external/libxml2/Makefile.am
4255d504151db75c17f85192ce74f45dd2d65533 16-Apr-2002 Daniel Veillard <veillard@src.gnome.org> merged the current state of XML Schemas implementation, it is not

* Makefile.am TODO_SCHEMAS configure.in genUnicode.py testAutomata.c
testRegexp.c testSchemas.c xmlregexp.c xmlschemas.c xmlschemastypes.c
xmlunicode.c include/libxml/Makefile.am
include/libxml/schemasInternals.h include/libxml/xmlautomata.h
include/libxml/xmlregexp.h include/libxml/xmlschemas.h
include/libxml/xmlschemastypes.h include/libxml/xmlunicode.h
include/libxml/xmlversion.h.in : merged the current state of
XML Schemas implementation, it is not configured in by default,
a specific --schemas configure option has been added.
* test/automata test/regexp test/schemas Makefile.am
result/automata result/regexp result/schemas:
merged automata/regexp/schemas regression tests
Daniel
/external/libxml2/Makefile.am
4b3a84ffcfc9791bbb04f443ef4198f563b4e80b 19-Mar-2002 Daniel Veillard <veillard@src.gnome.org> adding "make valgrind" running the full regression tests (except python

* Makefile.am: adding "make valgrind" running the full regression
tests (except python ones) under Valgrind (using valgrind -q
which was kindly added by the author).
* valid.c: stupid bug pinpointed by Valgrind, the regression tests
passes cleanly now except an obcure floating point initialization
raised in log10() in one XPath regression test ???
* tree.c: edited some comments to close #75244
Daniel
/external/libxml2/Makefile.am
e915b2d423f00add4abd968390e96edcf5d7e6a4 06-Mar-2002 Daniel Veillard <veillard@src.gnome.org> Fixed bug #72570 moved the libxml man page to section 3 Daniel

* Makefile.am libxml.3 libxml.4 libxml.spec.in: Fixed bug #72570
moved the libxml man page to section 3
Daniel
/external/libxml2/Makefile.am
044fc6b7476798cbb95277b4905e5111d7c2775d 04-Mar-2002 Daniel Veillard <veillard@src.gnome.org> fixing #61290 "namespace nodes have no parent" long standing divergence

* xpath.c: fixing #61290 "namespace nodes have no parent"
long standing divergence from the XPath REC. NodeSets
simply hold a copy of namespace nodes and those node ->next
points to the parent (which may not be the node carrying the
definition).
* include/libxml/xpath.h: flagged but didn't added a possible
speedup
* DOCBparser.c HTMLparser.c: removed some warnings from push
parser due to new state being added.
* tree.c: new fix from Boris Erdmann
* configure.in c14n.c include/libxml/c14n.h testC14N.c: added
the XML Canonalization support from Aleksey Sanin
Daniel
/external/libxml2/Makefile.am
55253e21f0f41f03afb4842f560a852658077a89 18-Feb-2002 Daniel Veillard <veillard@src.gnome.org> fixed the test script after some discussion on the semantic of

* check-xml-test-suite.py: fixed the test script after some discussion
on the semantic of TYPE="error"
* Makefile.am: added the script to the distrib
Daniel
/external/libxml2/Makefile.am
0ba59239d92a0ea82d6515f15cc0723a61ef7400 10-Feb-2002 Daniel Veillard <veillard@src.gnome.org> Tentatively fixed #69655 , make compiling with -Wredundant-decls clean.

* HTMLtree.c Makefile.am build_glob.py configure.in debugXML.c
globals.c parser.c threads.c tree.c valid.c xmlmemory.c
xpath.c xpointer.c include/libxml/globals.h include/libxml/parser.h
include/libxml/parserInternals.h include/libxml/tree.h
include/libxml/xmlmemory.h include/libxml/xpathInternals.h:
Tentatively fixed #69655 , make compiling with -Wredundant-decls
clean.
* python/libxml.c: fixed a warning.
Daniel
/external/libxml2/Makefile.am
07be19bb1e73b86bdd1014eb1d9f84cb7d08e9fa 08-Feb-2002 Daniel Veillard <veillard@src.gnome.org> applied patch from Andris Pavenis for binary name suffixes Daniel

* Makefile.am: applied patch from Andris Pavenis for binary
name suffixes
Daniel
/external/libxml2/Makefile.am
c575b997d85d4791d852ad43e175d47a64cf8b3c 08-Feb-2002 Daniel Veillard <veillard@src.gnome.org> Changed to the MIT Licence updated the doc accordingly preparing 2.4.14

* Copyright Makefile.am README configure.in libxml.spec.in:
Changed to the MIT Licence
* doc/FAQ.html doc/catalog.html doc/intro.html doc/xml.html
doc/xmlio.html: updated the doc accordingly
* include/libxml/xmlwin32version.h configure.in: preparing
2.4.14 release
* python/generator.py python/libxml.c python/libxml2-python-api.xml
python/libxml2class.txt python/libxml_wrap.h python/types.c:
fixed the const xmlChar * wrapper and generator, XPath extension
functions now use the context as first argument
* python/tests/tstxpath.py python/tests/xpath.py
python/tests/xpathext.py: Updated the tests accordingly
* tree.c: fixed bug #70067
Daniel
/external/libxml2/Makefile.am
7db3871bf58553461563241db0fffe71bf611c5e 07-Feb-2002 Daniel Veillard <veillard@src.gnome.org> cleanup always use stdout if output is NULL don't close filedescriptors

* Makefile.am: cleanup
* debugXML.c: always use stdout if output is NULL
* xmlIO.c: don't close filedescriptors passed to outputBuffers
* python/Makefile.am python/generator.py python/libxml2class.txt
python/libxml_wrap.h python/types.c: augmented the number of bindings
handling FILE * and XPath contexts
* python/tests/Makefile.am: avoid a stupid problem due to the
use of TEST.
Daniel
/external/libxml2/Makefile.am
c3e39448e5af3896b90f40df2339d9f4b468eb88 01-Feb-2002 Daniel Veillard <veillard@src.gnome.org> Jacob sent a patch to allow building from tarfile. Daniel

* python/Makefile.am: Jacob sent a patch to allow building from
tarfile.
Daniel
/external/libxml2/Makefile.am
f1d0e6be57b76cf4fb8a7c0612ea5e71cce5c5c2 01-Feb-2002 Daniel Veillard <veillard@src.gnome.org> inserted the python wrappers build, I hope this won't be too unportable

* python/Makefile.am python/libxml.c configure.in Makefile.am:
inserted the python wrappers build, I hope this won't be too
unportable
Daniel
/external/libxml2/Makefile.am
3606581dcd45fbabfa95ce3565918d0c7e407633 24-Jan-2002 Daniel Veillard <veillard@src.gnome.org> another set of patches from Anthony Jones for copy operations cleanup and

* valid.c tree.c entities.c: another set of patches from
Anthony Jones for copy operations cleanup and robustness
Daniel
/external/libxml2/Makefile.am
610064716fa55ff1dfefb367f57600efd19196af 21-Jan-2002 Daniel Veillard <veillard@src.gnome.org> added an XML description of the API, moved the script generating it here.

* Makefile.am doc/Makefile.am doc/libxml2-api.xml doc/parsedecl.py:
added an XML description of the API, moved the script generating
it here. Added a "make api" target
Daniel
/external/libxml2/Makefile.am
026d29f41e252619bcc5655865c9548642cd93f7 19-Jan-2002 Bjorn Reese <breese@src.gnome.org> Upgraded to trio baseline 1.6
/external/libxml2/Makefile.am
314cfa083ce59d6e3ffa5d19397b3a9c8ee1f657 14-Jan-2002 Daniel Veillard <veillard@src.gnome.org> patch from Anthony Jones for hash.c allocation size trying to work around

* hash.c: patch from Anthony Jones for hash.c allocation size
* Makefile.am: trying to work around Yet Another Libtool Madness
and build the 2.4.13 release finally ...
daniel
/external/libxml2/Makefile.am
db0eb8df5a13ef5dcf228519682d41cfe5f8700b 13-Jan-2002 Daniel Veillard <veillard@src.gnome.org> applied Serguei Narojnyi's patch to add native thread support on the Win32

* threads.c: applied Serguei Narojnyi's patch to add native
thread support on the Win32 platform
* testThreadsWin32.c Makefile.am: added the test program also
from Serguei, Win32 specific
* include/win32config.h include/libxml/xmlwin32version.h.in:
added patch from Igor for the Windows thread specific defines.
Daniel
/external/libxml2/Makefile.am
d3b08826fce113f4b057959256cd0b59fd4cd254 05-Dec-2001 Daniel Veillard <veillard@src.gnome.org> integrated Eric Lavigne (sp???) contribution to build libxml2 on MacOS

* configure.in libxml.h parser.c testThreads.c macos/: integrated
Eric Lavigne (sp???) contribution to build libxml2 on MacOS using
CodeWarrior.
Daniel
/external/libxml2/Makefile.am
8e3943cbabf23a7c97af785f11cca328e6ddf9f9 12-Nov-2001 Daniel Veillard <veillard@src.gnome.org> update from Igor for Windows Daniel

* win32/dsp/* include/libxml/xmlwin32version.h.in: update
from Igor for Windows
Daniel
/external/libxml2/Makefile.am
0135a3902d81299ee5ed2f91565a630f43614992 10-Nov-2001 Daniel Veillard <veillard@src.gnome.org> 2.4.10 release, Daniel.
/external/libxml2/Makefile.am
03f848d8869f61be2e3f7bbe3abeb1b50cf86704 07-Nov-2001 Daniel Veillard <veillard@src.gnome.org> Weiqi Gao pointed out that xmlcatalog migh need the history libraries

* Makefile.am: Weiqi Gao pointed out that xmlcatalog
migh need the history libraries
Daniel
/external/libxml2/Makefile.am
c853b32f9d51c8ee842c04ffd73af3e36aa58714 06-Nov-2001 Daniel Veillard <veillard@src.gnome.org> releasing 2.4.9 fixing catalog breakages fixed more problems in catalog

* configure.in include/libxml/xmlwin32version.h: releasing 2.4.9
fixing catalog breakages
* Makefile.am catalog.c result/catalogs/catal
result/catalogs/mycatalog.* test/catalogs/catal*:
fixed more problems in catalog support, added more regression tests
for both XML and SGML catalog handling
Daniel
/external/libxml2/Makefile.am
ad661b9effa896cd55f3589683fda8a7b6bba121 05-Nov-2001 Daniel Veillard <veillard@src.gnome.org> confexecdir and confexec_DATA were defined twice pointed out by Karl

* Makefile.am: confexecdir and confexec_DATA were defined twice
pointed out by Karl Eichwalder
Daniel
/external/libxml2/Makefile.am
8bdb91dd5c6c6c89cd1668ba78b1048239ca6ca6 31-Oct-2001 Daniel Veillard <veillard@src.gnome.org> cleanup cleanup too added xmlNoNetExternalEntityLoader() from xsltproc

* Makefile.am: cleanup
* threads.c: cleanup too
* xmlIO.c include/libxml/xmlIO.h: added xmlNoNetExternalEntityLoader()
from xsltproc
* include/libxml/tree.h include/libxml/parser.h: trying to break a
dependancy loop.
Daniel
/external/libxml2/Makefile.am
52dcab3999cc9c480b275bc3ddf66dbb66f92d68 30-Oct-2001 Daniel Veillard <veillard@src.gnome.org> preparing 2.4.7 switched to the latest xmllint manual page from John

* configure.in: preparing 2.4.7
* Makefile.am doc/Makefile.am: switched to the latest xmllint
manual page from John
* doc/*: updated the doc and rebuilt the generated pages
Daniel
/external/libxml2/Makefile.am
89cad536e3e38002bfc931acfa2e0645d4b08a51 22-Oct-2001 Daniel Veillard <veillard@src.gnome.org> added entities testing to the Thread test make the test reasonable fix the

* test/threads/*: added entities testing to the Thread test
* testThreads.c: make the test reasonable
* DOCBparser.c: fix the DTD public and system ID
* xmllint.c: added --sgml for SGML DocBook importing
* Makefile.am: added Docbtests target
Daniel
/external/libxml2/Makefile.am
ab7488efa556f86d18c253b80e7b3591e255546a 17-Oct-2001 Daniel Veillard <veillard@src.gnome.org> fixed some bugs in CFLAGS passing. added a specific threaded test case

* configure.in: fixed some bugs in CFLAGS passing.
* test/threads Makefile.am testThreads.c: added a specific
threaded test case (really nasty, guaranteed).
Daniel
/external/libxml2/Makefile.am
d0463560300f1d8b3e41d70c3728ed84fdc8dd30 13-Oct-2001 Daniel Veillard <veillard@src.gnome.org> Applied the last patches from Gary, cleanup, activated threading all user

* include/libxml/SAX.h include/libxml/globals.h include/libxml/parser.h
include/libxml/parserInternals.h include/libxml/tree.h
include/libxml/xmlerror.h HTMLparser.c SAX.c error.c globals.c
nanoftp.c nanohttp.c parser.c parserInternals.c testDocbook.c
testHTML.c testSAX.c tree.c uri.c xlink.c xmlmemory.c:
Applied the last patches from Gary, cleanup, activated threading
all user accessible global variables are now handled in globals.[ch]
Still a bit rought but make tests passes with either
--with-threads defined at configure time or not.
* Makefile.am example/Makefile.am: added globals.[ch] and threads
linking options
Daniel
/external/libxml2/Makefile.am
b847864fc2f7151c81e57d02ca3b523dc5d8cf72 12-Oct-2001 Daniel Veillard <veillard@src.gnome.org> started integrating the core of the thread support not activated yet but

* Makefile.am include/libxml/Makefile.am
include/libxml/globals.h globals.c include/libxml/threads.h
threads.c build_glob.py global.data xmlcatalog.c acconfig.h
configure.in: started integrating the core of the thread support
not activated yet but half integrated. The code should still
compile and work anyway.
Daniel
/external/libxml2/Makefile.am
1a123613d320b52850b9d8c7c4c4b824505cdeff 19-Sep-2001 Daniel Veillard <veillard@src.gnome.org> PISSED !!! DO NOT COMMIT DIRECTLY IF NOT ALLOWED PERSONALLY
* Makefile.am libxml.spec.in: backing up non-documented changes
commited without review or aproval by Jens Finke <jens@gnome.org>
* HACKING: made 100% clear that no commit should be done directly
Daniel
/external/libxml2/Makefile.am
de8c8af992494bbf2e2b0fa63f70c7dd8482964c 19-Sep-2001 CEST 2001 Jens Finke <jens@gnome.org> Don't copy libxml.spec, it's already included due to listing in

Wed Sep 19 08:42:20 CEST 2001 Jens Finke <jens@gnome.org>

* Makfefile.am (dist-hook): Don't copy libxml.spec, it's already
included due to listing in EXTRA_DIST.

* libxml.spec.in: Updated.
/external/libxml2/Makefile.am
5eb9dea8be2fcf18fee419ee740b09e405a61efd 07-Sep-2001 Daniel Veillard <veillard@src.gnome.org> Need $(ICONV_LIBS) in libxml2_la_LIBADD Daniel

* Makefile.am: Need $(ICONV_LIBS) in libxml2_la_LIBADD
Daniel
/external/libxml2/Makefile.am
9f7b84bb07ab4f748ba981a38c7566cd48af60fa 23-Aug-2001 Daniel Veillard <veillard@src.gnome.org> preparing for a 2.4.3 release even if it may not be ready yet redirected

* Makefile.am configure.in include/libxml/xmlwin32version.h:
preparing for a 2.4.3 release even if it may not be ready yet
* catalog.c parser.c xmlIO.c include/libxml/catalog.h: redirected
all file parsing lookup to go through the entity resolver, add
to add an API to bypass it (needed to load catalogs themselves),
some cleanup on the catalog code too.
* nanoftp.c: small cleanup
* doc/catalog.html: small update
Daniel
/external/libxml2/Makefile.am
cda969218bdda1d3dd8d3c4417f3dc100d076024 21-Aug-2001 Daniel Veillard <veillard@src.gnome.org> more work on the XML catalog support. small cleanup seems using list as a

* Makefile.am catalog.c xmlcatalog.c include/libxml/catalog.h:
more work on the XML catalog support.
* parser.c include/libxml/parser.h: small cleanup seems using
list as a public parameter name can give portability troubles
* trionan.c trionan.h xpath.c include/libxml/trionan.h
include/libxml/xpath.h include/libxml/Makefile.am: removed
trionan from the libxml API, added xmlXPathIsInf and xmlXPathIsNaN
wrappers
Daniel
/external/libxml2/Makefile.am
450296070e14629141738fbb34b9a0ad13af1f02 21-Aug-2001 Bjorn Reese <breese@src.gnome.org> Re-worked NaN and Inf support
/external/libxml2/Makefile.am
344cee76a675e83ff159ffc02b009f304569ceda 20-Aug-2001 Daniel Veillard <veillard@src.gnome.org> renaming testCatalog as xmlcatalog, making it an installed app adding a

* Makefile.am xmlcatalog.c libxml.spec.in: renaming
testCatalog as xmlcatalog, making it an installed app
adding a shell, and preparing it to be a /etc/xml/catalog
management tool, though not ready yet
* catalog.c include/libxml/catalog.h: adding support for
XML Catalogs http://www.oasis-open.org/committees/entity/
not finished, there is some interesting tradeoffs and a
few open questions left.
Daniel
/external/libxml2/Makefile.am
50f3437111a6428b4852740e83db4848b0b09a97 03-Aug-2001 Daniel Veillard <veillard@src.gnome.org> applied Win32 Facelift No.2 patches from Igor Zlatkovic for Windows/MSC

* DOCBparser.c Makefile.am nanohttp.c parser.c testHTML.c
testSAX.c xmlIO.c xmllint.c include/win32config.h
include/libxml/xmlversion.h.in include/libxml/xmlwin32version.h
include/libxml/xmlwin32version.h.in win32/README.MSDev
win32/dsp/*: applied Win32 Facelift No.2 patches from
Igor Zlatkovic for Windows/MSC
Daniel
/external/libxml2/Makefile.am
5e2dace1ca6fbb023d1ce848d4e98deefbbfec31 18-Jul-2001 Daniel Veillard <veillard@src.gnome.org> Cleanup, cleanup .. removed libxml softlink for good cleanup to get 100%

Cleanup, cleanup ..
* configure.in Makefile.am: removed libxml softlink for good
* include/libxml/*.h *.c doc/Makefile.am: cleanup to get
100% coverage by gtk-doc
Daniel
/external/libxml2/Makefile.am
b8c9be9718103b0ad6f074d75fb91e5b0bf2d8e6 09-Jul-2001 Daniel Veillard <veillard@src.gnome.org> fixed XML Base computation which was broken added a base function to the

* tree.c: fixed XML Base computation which was broken
* debugXML.c: added a base function to the shell
* Makefile.am result/scripts/* test/scripts/*: added scripts
based regression tests, and adding 2 XML Base tests
Daniel
/external/libxml2/Makefile.am
f524d6e1d98f6bde5c3b5d2496302d12d61b3933 06-Jul-2001 Daniel Veillard <veillard@src.gnome.org> released 2.3.14 Daniel

* Makefile.am configure.in include/libxml/xmlwin32version.h:
released 2.3.14
Daniel
/external/libxml2/Makefile.am
6e90d19693bd16634f8b1e9deac65711f9d8b21e 03-Jul-2001 Daniel Veillard <veillard@src.gnome.org> - example/Makefile.am: fixed the include path to add srcdir/include
- Makefile.am configure.in: fix from Albert Chin for iconv detection
and some cleanup
Daniel
/external/libxml2/Makefile.am
770447311ea514b8d0036cab18ed62be38e5dcea 29-Jun-2001 Daniel Veillard <veillard@src.gnome.org> xmlStrstr args are both const small cleanup reformated, fixed problems if

* include/libxml/parser.h parser.c: xmlStrstr args are both const
* xpath.c: small cleanup
* xmlGetNsList: reformated, fixed problems if used on Entities
Daniel
/external/libxml2/Makefile.am
b37ecd0e51908bc9922fa37d1ec0aaaf9dc9d8e8 28-Jun-2001 Daniel Veillard <veillard@src.gnome.org> - configure.in include/libxml/xmlwin32version.h: released 2.3.13
- Makefile.am example/Makefile.am: workaround automake generating
erroneous deps
Daniel
/external/libxml2/Makefile.am
3e5bb8e54e1132cc3814be122bd711ee59232241 27-Jun-2001 Daniel Veillard <veillard@src.gnome.org> - Makefile.am: added --push regression tests
- parserInternals.c: the XML parser segfaulted in --push mode
Daniel
/external/libxml2/Makefile.am
07385fd77f2a6f4c990ad72d554937a50ea29ae9 23-Jun-2001 Daniel Veillard <veillard@src.gnome.org> fixed make distcheck and rebuilding the rpms Daniel

* include/Makefile.am include/libxml/Makefile.am: fixed make
distcheck and rebuilding the rpms
Daniel
/external/libxml2/Makefile.am
017b108fcf16dbce05ca7ebd75763f3d888abb5f 21-Jun-2001 Daniel Veillard <veillard@src.gnome.org> - Makefile.am: cleanup when --without-debug is specified
- xinclude.c xpath.c xpathInternals.h xpointer.c: cleanup
w.r.t. --without-debug and other include points
- catalog.h testCatalog.c: a bit of cleanup and prepare for XML
Catalogs
- configure.in entities.h tree.h HTMLparser.c: removed
--without-corba, made the _private field mandatory
Daniel
/external/libxml2/Makefile.am
3739b98927385a2042a4a5b1373cf96737db6e51 19-Jun-2001 Daniel Veillard <veillard@src.gnome.org> Kjartan Maraas provided a small patch to add xml2-config.in to EXTRA_DIST

* Makefile.am: Kjartan Maraas provided a small patch to
add xml2-config.in to EXTRA_DIST
Daniel
/external/libxml2/Makefile.am
96ed5832c7433bc2f4e57b1d5283da835f67a824 16-Jun-2001 Daniel Veillard <veillard@src.gnome.org> - Makefile.am example/Makefile.am: Laszlo PETER provided a fix
when using -liconv
- TODO: updated
Daniel
/external/libxml2/Makefile.am
6278fb5b30821c9edc7b4304619944d2f50a932b 25-May-2001 Daniel Veillard <veillard@src.gnome.org> - Makefile.am include/Makefile.am: small change to have
include/libxml rebuilt if working from CVS.
- uri.c: applied another patch from Carl Douglas for URI escaping,
this should close bug #51876
Daniel
/external/libxml2/Makefile.am
a737459bc41f3f4558d814889f0981e2aee4b97f 10-May-2001 Daniel Veillard <veillard@src.gnome.org> - Makefile.am xmlversion.h.in configure.in include/Makefile.am:
integrating catalogs
- catalog.[ch] testCatalog.c: adding a small catalo API
(only SGML catalog support).
- parser.c: restaured xmlKeepBlanksDefault(0) API
Daniel
/external/libxml2/Makefile.am
4de4d3bf2d601e2f14713905f956f59005bcde6a 07-May-2001 Daniel Veillard <veillard@src.gnome.org> - valid.c: warn when indeterminist content model is detected
- result/VC/ElementValid8: this adds a message
- Makefile.am: add --novalid for VCM tests
- parserInternals.c: added a call to Init memory
Daniel
/external/libxml2/Makefile.am
357c960e4035ee2fb40d0072bb7bde4533be76f8 03-May-2001 Daniel Veillard <veillard@src.gnome.org> - xpath.c result/XPath/expr/floats : clarified and cleanup
printing of abnormal floats in tests.
Daniel
/external/libxml2/Makefile.am
2a0d2e6b14a336b611c99563e192cda0b9af619e 02-May-2001 Daniel Veillard <veillard@src.gnome.org> fixed a error introduced in Makefile.am, daniel
/external/libxml2/Makefile.am
7150a0385cbe74e20734620ab7bddf2c10843836 02-May-2001 Daniel Veillard <veillard@src.gnome.org> - configure.in Makefile.am: make the inclusion of the trio
modules in the library conditional
Daniel
/external/libxml2/Makefile.am
eae522a0d8aa9f830d2e447f29b504030dbb6bbd 23-Apr-2001 Daniel Veillard <veillard@src.gnome.org> Time to work on helping the Gnome Doc project, first step is reintegrating
the SGML DocBook parser in libxml2 distrib:
- DOCBparser.c DOCBparser.h testDocbook.c configure.in Makefile.am
xmlversion.h.in: started (re)integrating the DocBook SGML parser.
- SAX.[ch]: cleanup and updates for DocBook
- debugXML.c parser.h tree.[ch] valid.c xpath.c: small macro or
ex SGML identifier changes
- valid.c: removed a static unused function.
Daniel
/external/libxml2/Makefile.am
de57c61c9dff4af4ae767033dc1c6291cf774cb1 23-Apr-2001 Daniel Veillard <veillard@src.gnome.org> - HTMLtree.c: applied change for Paul Sponagl on script saving
- Makefile.am: the warning about entity title.xml are normal.
Daniel
/external/libxml2/Makefile.am
393df01cac24c7344ddcdc3b6968f893790c5e67 22-Apr-2001 Daniel Veillard <veillard@src.gnome.org> Finally pushing 2.3.7 out:
- configure.in: release of 2.3.7
- Makefile.am: fixing make distcheck
Daniel
/external/libxml2/Makefile.am
dab4cb37d8fceb7457c40effc1ae43559221610b 20-Apr-2001 Daniel Veillard <veillard@src.gnome.org> Geez, this one was painful ! I still need to handle entities references
for the validation step but I have a clean way to add this without touching
the algorithm:
- valid.[ch] tree.h: worked *hard* to get non-determinist content
validation without using an ugly NFA -> DFA algo in the source.
Made a specific algorithm easier to maintain, using a single
stack and without recursion.
- Makefile.am test/VCM/*.xml: added more tests to "make Validtests"
- hash.c: made the growing routine static
- tree.h parser.c: added the parent information to an
xmlElementContent node.
Daniel
/external/libxml2/Makefile.am
2d90de4b16e94af00bb4f8d3068d2687746d8992 16-Apr-2001 Daniel Veillard <veillard@src.gnome.org> - xmlversion.h.in win32config.h win32/libxml2/*: applied
Igor Zlatkovic patches for MSC compilation and added his
updates
Daniel
/external/libxml2/Makefile.am
92ad210417f318c8f0142fd0aee8d2893d83b8e8 27-Mar-2001 Daniel Veillard <veillard@src.gnome.org> Spring cleanup ...: - configure.in Makefile.am config.h.in

Spring cleanup ...:
- configure.in Makefile.am config.h.in xmlversion.h.in: detect if
we need string functions
- trio.[ch] strio.[ch]: embedded the Trio-0.23 string functions
to be able to use them where needed. Applied some changes
to reduce name linking pollution and compile in only what's
needed.
- HTMLtree.c debugXML.c entities.c error.c nanoftp.c valid.c
xlink.c xmlversion.h.in xpath.c: got rid of the #ifdef
for the string manipulation functions
- xmlmemory.[ch]: removed DEBUG_MEMORY_FREED and added it automatically
to the free() function of xmlmemory.c
- entities.c HTMLtree.c parserInternals.c tree.c uri.c valid.c
xinclude.c xmlIO.c xpath.c xpointer.c: removed the MEM_CLEANUP
usage.
Daniel
/external/libxml2/Makefile.am
146c9120ca81307e9cff8fa9bf3d056314934467 22-Mar-2001 Daniel Veillard <veillard@src.gnome.org> - parser.c: fixed a reported bug in NOTATION parsing
- uri.c: accepted but not fixed bug 51876, added TODO
- Makefile.am: fixed bug 51876
Daniel
/external/libxml2/Makefile.am
9e7160d45a18bfa26d708e22ba991f7670d0128b 19-Mar-2001 Daniel Veillard <veillard@src.gnome.org> Completely changed the way the XPath evaluation is done, likely to break
stuff like libxslt right now:
- Makefile.am: detect XPath memleaks in regreson tests
- error.c: fixed and error w.r.t. error reporting still using
stderr
- hash.c: added new line at end of file
- tree.h: minor cleanup
- xpath.[ch] xpointer.[ch]: Major changes ! Separated XPath
expression parsing from evaluation, resulted in a number of
changes internally, and in XPointer. Likely to break stuff
using xpathInternals.h but should remain binary compatible,
new interfaces will be added.
Daniel
/external/libxml2/Makefile.am
6c831207f88bd4c6e8f430465b37406f0b064fce 07-Mar-2001 Daniel Veillard <veillard@src.gnome.org> Seems there is still bugs hiding, someone has some flytox ?
- Makefile.am: Martin Baulig suggested to add -lm
- tree.c: found another bug in xmlNodeGetContent()
Daniel
/external/libxml2/Makefile.am
e1dc0114ac95b4d86c61a05169a3d8eb80fccff3 03-Mar-2001 Bjorn Reese <breese@src.gnome.org> xmlXPathNodeCollectAndTest fixed (by William Brack)
xmlXPathFormatNumber added
xmlXPathNodeSetSort changed
/external/libxml2/Makefile.am
3473f88a7abdf4e585e267288fb77e898c580d2b 23-Feb-2001 Owen Taylor <otaylor@src.gnome.org> Revert directory structure changes
/external/libxml2/Makefile.am
64636e7f6e97729eae365801ab13632492bf0b14 23-Feb-2001 CET 2001 Tomasz K�oczko <kloczek@pld.org.pl> moved to libxml directory - this allow simplify automake/autoconf. Now

Thu Feb 23 02:03:56 CET 2001 Tomasz K�oczko <kloczek@pld.org.pl>

* *.c *.h libxml files: moved to libxml directory - this allow
simplify automake/autoconf. Now isn't neccessary hack on
am/ac level for make and remove libxml symlink (modified for this
also configure.in and main Makefile.am). Now automake abilities
are used in best way (like in many other projects with libraries).
* include/win32config.h: moved to libxml directory (now include
directory isn't neccessary).
* Makefile.am, examples/Makefile.am, libxml/Makefile.am:
added empty DEFS and in INCLUDES rest only -I$(top_builddir) -
this allow minimize parameters count passed to libtool script
(now compilation is also slyghtly more quiet).
* configure.in: simplifies libzdetestion - prepare separated
variables for keep libz name and path to libz header files isn't
realy neccessary (if someone have libz installed in non standard
prefix path to header files ald library can be passed as:
$ CFALGS="-I</libz.h/path>" LDFLAGS="-L</libz/path>" ./configure
* autogen.sh: check now for libxml/entities.h.

After above building libxml pass correctly and also pass
"make install DESTDIR=</install/prefix>" from tar ball generated by
"make dist". Seems ac/am reorganization is finished. This changes
not touches any other things on *.{c,h} files level.
/external/libxml2/Makefile.am
e0c3a62c91499f34b99e8304d07a61bd9d516ca8 19-Feb-2001 Daniel Veillard <veillard@src.gnome.org> - Makefile.am valid.c list.[ch]: Gary Pennington provided a
better handling of ID/IDREF and the list modules associated
- configure.in: small CFLAGS cleanup
Daniel
/external/libxml2/Makefile.am
b6e7fdbac64423e63474fbb4b95770209f280797 02-Feb-2001 Daniel Veillard <veillard@src.gnome.org> Rewrite/cleanup/tests of URI normalization:
- uri.c: rewrite of xmlNormalizeURIPath from Paul D. Smith
- test/URI/smith.uri result/URI/smith.uri Makefile.am:
added the new tests for URI normalization
- testURI.c: fixed stoopid bugs
- result/VC/OneID3 result/VC/UniqueElementTypeDeclaration:
the URI in the error messages are now properly normalized
Daniel
/external/libxml2/Makefile.am
2f913b747095019acc1df88bfa643e8e67fbc612 31-Jan-2001 Daniel Veillard <veillard@src.gnome.org> Fixes inherited from XSLT testing:
- xpath.c result/XPath/tests/chaptersbase
result/XPath/tests/simplebase: fixed XPath node()
- tree.c: small fix in xmlNewNs()
- Makefile.am: removed extraneous xml2Conf.sh rule
Daniel
/external/libxml2/Makefile.am
b42042b57d7417d9b1966ec32de9f226a5c14444 28-Jan-2001 Daniel Veillard <veillard@src.gnome.org> Renamed the library to libxml2 and made the changes needed to have
libxml-devel and libxml2-devel to coexist:
- Makefile.am configure.in libxml.spec.in example/Makefile.am:
Changed the library name, in order to get libxml-devel and
libxml2-devel to coexist on a single system
- xml-config.1 xml-config.in xmlConf.sh.in: renamed
- xml2-config.1 xml2-config.in xml2Conf.sh.in: new files
Daniel
/external/libxml2/Makefile.am
ee0a4660b00c676b5f7e6697d6338ff68382adcf 27-Jan-2001 Daniel Veillard <veillard@src.gnome.org> - Makefile.am configure.in libxml-2.0.pc.in: started working on getting
libxml2-devel installable in // as libxml-devel.
Daniel
/external/libxml2/Makefile.am
8e199906802c79c9abd4690d8fd52c145134e31f 25-Jan-2001 Daniel Veillard <veillard@src.gnome.org> Some packaging cleanup:
- Makefile.am doc/Makefile.am libxml.spec.in: painful work to get
the HTML doc to go into the -devel RPM ...
- aclocal.m4 config.h.in: some updates due to auto* magic
Daniel
/external/libxml2/Makefile.am
48177c22d709ddfa33228b9a3653afa866e17bbf 23-Jan-2001 Daniel Veillard <veillard@src.gnome.org> Fixed a problem with EXTRA_DiST, Daniel.
/external/libxml2/Makefile.am
b83ba408b1fd76f5224c287be3d2e3a85e8b8820 22-Jan-2001 Daniel Veillard <veillard@src.gnome.org> took me nearly 2 years to find the way to not build in SUBDIRS before
the current dir. Did I said previously how I hate auto* (but still love
it when it works :-)
Daniel
/external/libxml2/Makefile.am
ccc86a75a8a03c3b0b3b0b2ef2b7995990f6553c 17-Jan-2001 Daniel Veillard <veillard@src.gnome.org> Updated to include all Win32 makefiles, daniel
/external/libxml2/Makefile.am
167bd5315136a91a82d14cebe37d359b938c8c5c 06-Jan-2001 Daniel Veillard <veillard@src.gnome.org> Old but effective optimization patch:
- parser.c parserInternals.c: applied Bjorn Reese optimization patch
Daniel
/external/libxml2/Makefile.am
a6d8eb6256e4b4165976318a0f058b7c51330564 27-Dec-2000 Daniel Veillard <veillard@src.gnome.org> Finally had a bit of time to resynch both trees:
- HTMLparser.[ch]: added a way to avoid adding automatically
omitted tags. htmlHandleOmittedElem() allows to change the
default handling.
- tree.[ch] xmllint.c: added xmlDocDumpFormatMemory() and
xmlDocDumpFormatMemoryEnc(), uses memory functions for output
of xmllint too when using --memory flag, added a memory test
suite at the Makefile level.
- xpathInternals.h xpath.[ch] xpointer.c: fixed problems
with namespace use when encountering QNames in XPath evalation,
added xmlns() scheme in XPointer.
- nanoftp.c : incorporated a fix
- parser.c xmlIO.c: fixed problems raised with encoding when using
the memory I/O
- parserInternals.c: closed bug 25934 reported by
torsten.landschoff@innominate.de
- TODO: updated
Daniel
/external/libxml2/Makefile.am
ce6e98d693ffc5cb469e79b12377af928638fb6f 25-Nov-2000 Daniel Veillard <veillard@src.gnome.org> Big OpenVMS patch: - nanohttp.c parser.[ch] tree.[ch] xmlIO.[ch] xmllint.c

Big OpenVMS patch:
- nanohttp.c parser.[ch] tree.[ch] xmlIO.[ch] xmllint.c xpath.c
parserInternals.h vms/build_libxml.com vms/config.vms Makefile.am:
integrated a set of OpenVMS changes from Howard Taylor
<Howard.Taylor@pacoast.com>
Daniel
/external/libxml2/Makefile.am
0d2340cd636c50db813505905c13636bf3d72a40 15-Nov-2000 Elliot Lee <sopwith@src.gnome.org> Make the .m4 file install properly (Makefile.am) Ignore some files.



Make the .m4 file install properly (Makefile.am)
Ignore some files.
/external/libxml2/Makefile.am
bf43275dd1e31ee7542c37f1f7ce21e0ee9218ee 12-Nov-2000 Daniel Veillard <veillard@src.gnome.org> Bug fixes new Xinclude tests:
- nanoftp.c: fixed gcc 2.95 new warnings
- SAX.c: fixed a stupid bug
- tree.c: fixed a formatting problem when round-tripping
from/to memory
- xinclude.c: chased memleak, fixed a base problem
- xpointer.c: added xmlXPtrBuildRangeNodeList(), finished ?
xmlXPtrBuildNodeList()
- TODO: updated
- Makefile.am test/XInclude/docs test/XInclude/ents result/XInclude:
adding a first small set of regression tests for XInclude
Daniel
/external/libxml2/Makefile.am
9e8bfae59a087a938a810a5527023b1e7b0e15b3 06-Nov-2000 Daniel Veillard <veillard@src.gnome.org> XInclude and other stuff while travelling. Contributed patches:
- tree.[ch] xinclude.[ch] xmllint.c configure.in valid.c
debugXML.c xmlversion.h.in: Started adding XInclude support,
this is a new xmllint option
- tree.c xpath.c: applied TOM patches for XPath
- xpointer.c: fixed a couple of errors.
- uri.c: added an escaping function needed for xinclude
- testXPath.c hash.c HTMLtree.c: minor cleanups raised by
new warning from RH70 gcc's version
Daniel
/external/libxml2/Makefile.am
a4964b75003d138d4643ab03e3e116a8453f8308 31-Oct-2000 Daniel Veillard <veillard@src.gnome.org> - HTMLparser.c: fixed loop on invalid char in scripts
- parser.c: update to description of xmlIOParseDTD()
- libxml.m4 xmlversion.h.in: changes contributed by
Michael Schmeing <m.schmeing@internet-factory.de>
- configure.in: preparing for 2.2.7
- Makefile.am: trying to avoid config.h and acconfig.h
being included in the distrib
- rebuilt the docs
- configure.in: released 2.2.7
Daniel
/external/libxml2/Makefile.am
52afe800ace426d98ef98f742cabbbf08c7d83e3 22-Oct-2000 Daniel Veillard <veillard@src.gnome.org> Started working on the hash table module integration, fixed a bug:
- entities.[ch] xpath.[ch] hash.[ch] debugXML.c tree.h: added/hacked
hash tables from Bjorn Reese <breese@mail1.stofanet.dk>. Switched
XPath functions and XML entities table to them. More to come...
- xmlIO.c: fixed libxml closing FILEs it didn't open.
Daniel
/external/libxml2/Makefile.am
c2df4cde4e9e364fe2f06f053b3fa9d5d3129386 13-Oct-2000 Daniel Veillard <veillard@src.gnome.org> Going forward in XPointer implementation:
- testXPath.c xpath.[ch]: moved some debug functions to xpath core
- xpointer.c: implemented string-range() at least a good first version
- test/XPath/docs/str test/XPath/xptr/strrange
result/XPath/xptr/strrange: the string-range() tests
Daniel
/external/libxml2/Makefile.am
47c024516e02df38ea81831560fe2debe92a36fc 11-Oct-2000 Daniel Veillard <veillard@src.gnome.org> Added a man page for xml-config Fredrik Hallenberg <hallon@lysator.liu.se>, Daniel.
/external/libxml2/Makefile.am
c8df0aaf9f8912e66c4d5050dd2e1df1a3f482b2 11-Oct-2000 Daniel Veillard <veillard@src.gnome.org> Added XPointer: - configure.in Makefile.am include/makefile.am: adding

Added XPointer:
- configure.in Makefile.am include/makefile.am: adding XPointer
and XPtrtests target
- xpointer.[ch] : new files for XPointer support
- test/XPath/xptr result/XPath/xptr: added XPointer testsuite and
more XPath tests
Daniel
/external/libxml2/Makefile.am
e8282edd458d59aa20d48db57ec0025f0db34079 11-Oct-2000 Daniel Veillard <veillard@src.gnome.org> More work toward 2.2.5, integrated a number of patches
- configure.in Makefile.am win32config.h.in: trying to cleanup
make distcheck .... huh ...
- include/Makefile.am include/win32config.h: new directory
for includes
- win32/Makefile.mingw win32/README.MSDev win32/libxml2/libxml2.dsp
updated teh makefiles and instructions for WIN32
- xpath.c: small fixes
- test/XPath/ results/XPath: updated the testcases and results
- HTMLparser.c nanohttp.c testXPath.c: incorporated provided or
suggested patches
- valid.c: fixed an ID bug
Daniel
/external/libxml2/Makefile.am
b71379b796214f382b025ccf63cefe0419cd4e9d 09-Oct-2000 Daniel Veillard <veillard@src.gnome.org> - moved xml-error.h to xmlerror.h: seems this allowed to bypass
the automake bug where wrong dependancies were generated.
- xpath.[ch]: worked on XPointer
Daniel
/external/libxml2/Makefile.am
7e99c63be0c76e8456e69c7619f3979f97153c23 06-Oct-2000 Daniel Veillard <veillard@src.gnome.org> Tried to build libxml2-2.2.5
Automake is a fucking piece of ugly shit full of tricks and without
any kind of sensible documentation or logic :-(((((((((
Daniel, pissed !
/external/libxml2/Makefile.am
f09e7e35de098cc017eaeabc5d7127fba6057445 01-Oct-2000 Daniel Veillard <veillard@src.gnome.org> XPath fixes and cleanup, 2 general bug fixes:
- xpath.[ch] : fixed some serious XPath Predicate evaluation
problems
- Makefile.am : added XPath regression tests to normal tests
- uri.c: fixed a problem with local paths, cleanup
- parser.c: fixed a problem with large CData sections
Daniel
/external/libxml2/Makefile.am
1b478d113c89a7b1b9cacce61d4d23ef0587a718 30-Sep-2000 Martin Baulig <martin@src.gnome.org> Use the correct pkg-config syntax
(the pkg-config that comes with the RedHat 7.0 glib-gtkbeta RPM
and not the one from pkgconfig.sourceforge.net which is old).
/external/libxml2/Makefile.am
dd7d1f6d79eeb145c0e560c0262126c64f583b00 30-Sep-2000 Martin Baulig <baulig@suse.de> Provide pkg-config script.

2000-09-30 Martin Baulig <baulig@suse.de>

* libxml-2.0.pc.in: Provide pkg-config script.

* configure.in: Create the libxml-2.0.pc script from the
libxml-2.0.pc.in templates.
* Makefile.am (pkgconfig_DATA): Install the libxml-2.0.pc
script in `$(libexecdir)/pkgconfig'.
/external/libxml2/Makefile.am
46057e141c1b02adbf28dfaf000995cb523fc06b 24-Sep-2000 Daniel Veillard <veillard@src.gnome.org> Various contribs: - xpath.c: patch for normalize-string()

Various contribs:
- xpath.c: patch for normalize-string() substring-before(),
substring-after() and translate() functions from Bjorn Reese
<breese@mail1.stofanet.dk>
- libxml.m4 Makefile.am: added libxml.m4 from Debian ?
Fredrik Hallenberg <hallon@lysator.liu.se>
- TODO: updated
Daniel
/external/libxml2/Makefile.am
b1059e2f8840a85d43c8ee8d2d40e8dbba360aee 16-Sep-2000 Daniel Veillard <veillard@src.gnome.org> Finally commiting work done on the plane, major cleanup,
spread some serious anti bitrot all over the place:
- parserInternals.c parserInternals.h parser.c Makefile.am:
created a new module parserInternals.c, moved most of the
code shared by the various parsers there, as well as
deprecated code from parser.c. More cleanup of parser.c
- uri.c: fixed a problem when URI is NULL
- valid.c: speedup when looking for an attribute declaration
Daniel
/external/libxml2/Makefile.am
90e1131a60b5db4ae851e8d1c9b339adfcf0c537 05-Sep-2000 Daniel Veillard <veillard@src.gnome.org> - uri.c: applied Wayne Davidson patch
- Makefile.in test/URI/uri.data result/URI/uri.data: updated URI tests
Daniel
/external/libxml2/Makefile.am
98a7916ba1495b3d8e07cc782b1a677c96788696 04-Sep-2000 Daniel Veillard <veillard@src.gnome.org> URI work cleanup and regresssion tests,
- uri.c testUri.c: applied Wayne Davidson patches
- test/URI/uri.data result/URI/uri.data: first set of tests/results
- Makefile.in: added URItest and included thenin "make tests"
Daniel
/external/libxml2/Makefile.am
2f2bf417f841ae7196324fff052ca7fea65cfa97 20-Aug-2000 Daniel Veillard <veillard@src.gnome.org> Small cleanups, updates, Daniel
/external/libxml2/Makefile.am
979e55e889454b11b022a87ba0aa5974cdcef2a5 19-Aug-2000 Daniel Veillard <veillard@src.gnome.org> Added man pages, Daniel
/external/libxml2/Makefile.am
87b953957305fc1ece066efa60df5c7844183439 12-Aug-2000 Daniel Veillard <veillard@src.gnome.org> Large sync between my W3C base and Gnome's one:

- parser.[ch]: added xmlGetFeaturesList() xmlGetFeature() and xmlAddFeature()
- tree.[ch]: added xmlAddChildList()
- xmllint.c: MAP_FAILED macro test
- parser.h: added xmlParseCtxtExternalEntity()
- valid.c: applied bug fixes removed warning
- tree.c: added CDATA block to elements content
- testSAX.c: cleanup of output
- testHTML.c: added SAX testing
- encoding.c: better error recovery
- SAX.c, parser.c: fixed one of the external entity processing of the OASis testsuite
- Makefile.am: added HTML SAX regression tests
- configure.in: bumped to 2.2.2
- test/HTML/ result/HTML: added a few of HTML tests, and added the SAX results

Daniel
/external/libxml2/Makefile.am
be803967dbecb5534c7c7fbc1a17157ba43366b5 29-Jun-2000 Daniel Veillard <veillard@src.gnome.org> - Large resync between W3C and Gnome tree
- configure.in: 2.1.0 prerelease
- example/Makefile.am example/gjobread.c tree.h: work on
libxml1 libxml2 convergence.
- nanoftp, nanohttp.c: fixed stalled connections probs
- HTMLtree.c SAX.c : support for attribute without values in
HTML for andersca
- valid.c: Fixed most validation + namespace problems
- HTMLparser.c: start document callback for andersca
- debugXML.c xpath.c: lots of XPath fixups from Picdar Technology
- parser.h, SAX.c: serious speed improvement for large
CDATA blocks
- encoding.[ch] xmlIO.[ch]: Improved seriously saving to
different encoding
- config.h.in parser.c xmllint.c: added xmlCheckVersion()
and the LIBXML_TEST_VERSION macro
Daniel
/external/libxml2/Makefile.am
361d845de0f06c1d52668c8df489ec8e4071a768 03-Apr-2000 Daniel Veillard <veillard@src.gnome.org> Work done on the plane, ready to release libxml2-2.0.0, Daniel
/external/libxml2/Makefile.am
ec30341c5c9d88ff5f1c23908707aee83c287612 24-Mar-2000 Daniel Veillard <veillard@src.gnome.org> uri.c uri.h: finished the escaping handling, the base support and the URI
path normalization.
Makefile.am: added instructions to generate testURI
TODO: updated
doc/xml.html, doc/smallfootonly.gif doc/w3c.png: updated,
added links and icons for W3C and Gnome
Daniel
/external/libxml2/Makefile.am
3dd82e7c2aaa36628cb6e6096af69eda097d6e09 20-Mar-2000 Daniel Veillard <veillard@src.gnome.org> - TODO: updated - xmlmemory.[ch] : added xmlMemSetup() and xmlMemGet() to

- TODO: updated
- xmlmemory.[ch] : added xmlMemSetup() and xmlMemGet() to override
libxml default allocation function with another set (like gmalloc/gfree).
- Makefile.am, uri.c, uri.h: added a set of functions to do exact (litteraly
copied from the RFC 2396 productions) parsing and handling of URI.
Daniel
/external/libxml2/Makefile.am
83a30e7a16c341aa8fa7538b86d5308f39071716 02-Mar-2000 Daniel Veillard <veillard@src.gnome.org> Fixed #6766 and satrted working on white space handling, Daniel
/external/libxml2/Makefile.am
ae7cb7fefb46cb047764f2e9075ecff5bee8d746 03-Feb-2000 Tomasz Kłoczko <kloczek@src.gnome.org> - added "libxml_la_LIBADD = @Z_LIBS@" to link libxml with proper libraries
list.
/external/libxml2/Makefile.am
f3be931a2eae49a97a4b4f2b351bdf7e26d14910 28-Jan-2000 James Henstridge <james@daa.com.au> include <netinet/in.h> for IPPROTO_TCP.

2000-01-29 James Henstridge <james@daa.com.au>

* nanoftp.c: include <netinet/in.h> for IPPROTO_TCP.

* Makefile.am: added nanoftp.[ch] to the build.
/external/libxml2/Makefile.am
9ec78f716affad16a750ea2c658867c9969d1f29 05-Jan-2000 Daniel Veillard <veillard@src.gnome.org> Released 1.8.3, Daniel
/external/libxml2/Makefile.am
71b656e06707c733ab02c5bf9bd2754cea678562 05-Jan-2000 Daniel Veillard <veillard@src.gnome.org> - added xmlRemoveID() and xmlRemoveRef()
- added check and handling when possibly removing an ID
- fixed some entities problems
- added xmlParseTryOrFinish()
- changed the way struct aredeclared to allow gtk-doc to expose those
- closed #4960
- fixes to libs detection from Albert Chin-A-Young
- preparing 1.8.3 release
Daniel
/external/libxml2/Makefile.am
437b87b8cc1970608f7172a98187f2a2eb04179a 03-Jan-2000 Daniel Veillard <veillard@src.gnome.org> fixed configure and Makefile to use readline in tester if available
rebuilt and updated the doc,
Daniel
/external/libxml2/Makefile.am
10a2c6532a409760cf46b70dba7b8d09617d75e3 12-Dec-1999 Daniel Veillard <veillard@src.gnome.org> Large commit of changes done while travelling to XML'99
- cleanups on memory use and parsers
- start of Link interfaces HTML and XLink
- rebuild the doc
- released as 1.8.0
Daniel
/external/libxml2/Makefile.am
294cbca511657df4b7afa49550b855d9c4a6b1f6 03-Dec-1999 Daniel Veillard <veillard@src.gnome.org> Closing #3908 and #3937 and a memory leak in the SAX API
added SAX.h mostly useful for the doc generation
Regenerated all the docs,
Daniel
/external/libxml2/Makefile.am
3500838f65e6eda8e943c620d5eb9da3109e3766 25-Oct-1999 Daniel Veillard <veillard@src.gnome.org> BUG FIXED #2784 HTML parsing/output improvements Rebuilt, updated the docs

BUG FIXED #2784
HTML parsing/output improvements
Rebuilt, updated the docs
Improvement of regression scripts, make testall should look clean
Released as 1.7.4
/external/libxml2/Makefile.am
7c1206fc060fd4260f7c6f003c32fbbea3e542fd 14-Oct-1999 Daniel Veillard <veillard@src.gnome.org> Revamped HTML parsing, lots of bug fixes for HTML stuff,
Added xmlValidGetValidElements and xmlValidGetPotentialChildren,
Completed and cleaned up the tests,
Added doc for new modules gnome-xml-xmlmemory.html and gnome-xml-nanohttp.html,
Daniel
/external/libxml2/Makefile.am
6077d03d0ee4774446e30a1b4017e9fffa020923 09-Oct-1999 Daniel Veillard <veillard@src.gnome.org> Various small bugfixes, Daniel.
/external/libxml2/Makefile.am
ca8484739b39c6d6c3a25bd4a38dadbfa1128e99 24-Sep-1999 Elliot Lee <sopwith@src.gnome.org> Make 'dist-hook' targets, which copy the .spec file into $(distdir),



Make 'dist-hook' targets, which copy the .spec file into $(distdir), depend upon the
.spec file, so that the .spec file will be regenerated when a previously-compiled tree
is 'dist'd with a new version number.
/external/libxml2/Makefile.am
7f7d1119afb072466b0a74293b6898025d6641db 22-Sep-1999 Daniel Veillard <veillard@src.gnome.org> Ready for 1.7.0, major changes, nanohttp, cleanup, binary compat with 1.4,
etc... See Changelog, Daniel.
/external/libxml2/Makefile.am
6db3cb0b532d9d3154f338ccc4c3fe9a0021db1f 04-Sep-1999 CEST 1999 Timur Bakeyev <mc@bat.ru> prepend all the test* calls with $(top_builddir) - to make 'check' works,


Sat Sep 4 22:20:07 CEST 1999 Timur Bakeyev <mc@bat.ru>

* Makefile.am: prepend all the test* calls with $(top_builddir) -
to make 'check' works, when builddir != srcdir.
/external/libxml2/Makefile.am
6454aec23de4875fb66fd735618858c9b0b2a008 03-Sep-1999 Daniel Veillard <veillard@src.gnome.org> Added memory debug wrappers, killed all detected memory leaks, Daniel
/external/libxml2/Makefile.am
56316b09e4b8cef72d704e10266b24cbe64a76b4 23-Aug-1999 Elliot Lee <sopwith@src.gnome.org> add xmlConf.sh to CLEANFILES.



add xmlConf.sh to CLEANFILES.
/external/libxml2/Makefile.am
b556eb58649b0f59d55acd6a99e56ed1bf4c97e5 15-Aug-1999 Daniel Veillard <veillard@src.gnome.org> Corrected xmlConf.sh missing in distrib, Daniel
/external/libxml2/Makefile.am
b05deb7f5fa01da1cbc54f65199eff1c5421ec00 10-Aug-1999 Daniel Veillard <veillard@src.gnome.org> Huge commit: 1.5.0, XML validation, Xpath, bugfixes, examples .... Daniel
/external/libxml2/Makefile.am
e2d034d3b56287f93a815147eff0f4e707b64774 27-Jul-1999 Daniel Veillard <veillard@src.gnome.org> Bunch of updates, progressive parsing, updates on HTML, XPAth and docs, Daniel
/external/libxml2/Makefile.am
15b75af8fa3e253010917c3493d502e39a4dfd45 26-Jul-1999 Daniel Veillard <veillard@src.gnome.org> Just adds 'const' to a couple of important parameters, patch from
Michael Meeks <michael@oasis.edenproject.org>, Daniel.
/external/libxml2/Makefile.am
1566d3a91b50e08f8bd928da5a06d9c53a99747f 15-Jul-1999 Daniel Veillard <veillard@src.gnome.org> Added XPath code (http://www.w3.org/TR/xpath), updated HTML support and docs, Daniel
/external/libxml2/Makefile.am
be9e595a415d7d08b1f6ac48b1ce4a2315e2d56a 12-Jul-1999 Daniel Veillard <veillard@src.gnome.org> Fixed bug #1638, daniel
/external/libxml2/Makefile.am
3166ab1a1443bbffc43ed760ed078bafa4ba5e46 11-Jul-1999 Daniel Veillard <veillard@src.gnome.org> Added the Makefile for example subdir containing gjobread, Daniel.
/external/libxml2/Makefile.am
82150d8a992e118970dc9067043bd2908ea061aa 07-Jul-1999 Daniel Veillard <veillard@src.gnome.org> HTML parsing, output is now correct, added HTMLtests target and testcases, Daniel
/external/libxml2/Makefile.am
5233ffc8d302dae0527dea16541a1f4aaa98ee79 07-Jul-1999 Daniel Veillard <veillard@src.gnome.org> Restore binary compat, more HTML stuff, allow stdin input, Daniel.
/external/libxml2/Makefile.am
be70ff7162ea612ceb3afeb9be1b1c07a5a3e4d1 05-Jul-1999 Daniel Veillard <veillard@src.gnome.org> Closing reported bugs: 617 1591 1592, adding an HTML parser, Daniel
/external/libxml2/Makefile.am
14fff064e570ed836a5243a0ed82eca5fae4845a 22-Jun-1999 Daniel Veillard <veillard@src.gnome.org> Big changes, seems that 1.2.0 wasn't commited, here is 1.3.0, Daniel
/external/libxml2/Makefile.am
011b63cb2034476017dde1d4ad5a6aea43b94066 02-Jun-1999 Daniel Veillard <veillard@src.gnome.org> Release of libxml-1.1, Daniel.
/external/libxml2/Makefile.am
87c83bd3346b5ee5a740072c4c201faf2ade2472 02-Apr-1999 Daniel Veillard <veillard@src.gnome.org> Added test and result to EXTRA_DIST, Daniel
/external/libxml2/Makefile.am
a86c23e3a170bdae8b84618adff31b0a9eafd168 05-Mar-1999 Raja R Harinath <harinath@src.gnome.org> Alias for `tests' target. This will cause `make check' to do the right

* Makefile.am (check-local): Alias for `tests' target. This will
cause `make check' to do the right thing.
(tests): Don't run tests in srcdir. Also, replaced calls to
basename with a `sed' "equivalent".
/external/libxml2/Makefile.am
d109e37b003bb6bc0ec7200ec00da4ced1023848 05-Mar-1999 Daniel Veillard <veillard@src.gnome.org> Moved error.h to xml-error.h, associated fixed and updates, Daniel
/external/libxml2/Makefile.am
55a992728b92afd3012329f8a77dbaf090b0ff4a 25-Feb-1999 Daniel Veillard <veillard@src.gnome.org> Toward 1.0.0, added docs to the packages, Daniel.
/external/libxml2/Makefile.am
35925478d126676b7f9a0c51d17e2a1c79253df2 25-Feb-1999 Daniel Veillard <veillard@src.gnome.org> Added parserInternals.h to Makefile.am and the generated HTML docs, Daniel.
/external/libxml2/Makefile.am
63dc42c681d00a87cebbd726d4858d7d0080341c 21-Feb-1999 Michael Fulbright <drmike@src.gnome.org> Made spec file autogenerate, tweaked it also

Dr Mike <drmike@redhat.com>
/external/libxml2/Makefile.am
a4b4430a11ff3fb7452a2fd4233e7c5c1fc3ea8a 16-Feb-1999 Daniel Veillard <veillard@src.gnome.org> gain a couple of minor changes on Makefiles, Daniel.
/external/libxml2/Makefile.am
1164e752e6cdb62e27ff2eb74be070959b279931 16-Feb-1999 Daniel Veillard <veillard@src.gnome.org> Upgrade to 0.99.8 cleanup of spec and makefiles to include doc, Daniel.
/external/libxml2/Makefile.am
19b858c4e80e26900f3c65de609cbf766c054127 06-Feb-1999 Daniel Veillard <veillard@src.gnome.org> *** empty log message ***
/external/libxml2/Makefile.am
39a1f9a3a736c66a1ca491f4c4b339f573bd3f39 17-Jan-1999 Daniel Veillard <veillard@src.gnome.org> Speed, conformance testing, more parsing, general improvements, Daniel.
/external/libxml2/Makefile.am
4f7148917a24a9c41e57e6f472837070df536320 16-Jan-1999 Martin Baulig <martin@src.gnome.org> Add the spec file to EXTRA_DIST.
/external/libxml2/Makefile.am
52a735b386e1e0e7893374b7bb7a9e3163d9083e 28-Oct-1998 Arturo Espinosa <unammx@src.gnome.org> Small Makefile fix -mig
/external/libxml2/Makefile.am
baf4cd58dfa91bf45377717c51c2a574cb4904b3 27-Oct-1998 Daniel Veillard <veillard@src.gnome.org> Added debugging code, a bit of parser cleanup, Daniel
/external/libxml2/Makefile.am
891e404a09324b6ae2dcb4307526b452a7a673bb 19-Oct-1998 Daniel Veillard <veillard@src.gnome.org> Added the UTF-8, UTF-16 and ISO Lat 1 conversion routines, not yet used, Daniel.
/external/libxml2/Makefile.am
27fb07571f36754d86a3bced312a094953da98e7 17-Oct-1998 Daniel Veillard <veillard@src.gnome.org> Corbaization of the document structures, Daniel.
/external/libxml2/Makefile.am
a6e1d12ac2f8984b7ecb1983f8c928cefe3c991e 04-Oct-1998 Daniel Veillard <veillard@src.gnome.org> Added xml-config.in and the related changes, Daniel.
/external/libxml2/Makefile.am
60681bd36c91c85cd59c0b88b28bc60eeb29740f 30-Sep-1998 Miguel de Icaza <miguel@nuclecu.unam.mx> Use '?' to separate the sed commands as ',' is used when people pass

1998-09-30 Miguel de Icaza <miguel@nuclecu.unam.mx>

* Makefile.am: Use '?' to separate the sed
commands as ',' is used when people pass -Wl,something.
/external/libxml2/Makefile.am
52965fa2bc52dfe68084ff1ddb10cec170faa26f 24-Sep-1998 Arturo Espinosa <unammx@src.gnome.org> include error.h
/external/libxml2/Makefile.am
15fe6e72733a49dd9469aeedc5082eafdfe1a733 07-Sep-1998 Arturo Espinosa <unammx@src.gnome.org> Added gnome-config support to gnome-xml module
/external/libxml2/Makefile.am
c19653dcd006a4609e2f6f6a7bd9490a1671130d 14-Aug-1998 Tom Tromey <tromey@cygnus.com> New macro. (xmlinc_HEADERS): Renamed from include_HEADERS.

Thu Aug 13 19:02:34 1998 Tom Tromey <tromey@cygnus.com>

* Makefile.am (xmlincdir): New macro.
(xmlinc_HEADERS): Renamed from include_HEADERS.
/external/libxml2/Makefile.am
260a68fd34302f352aa8f4c2f2901cefa3e1d2f7 13-Aug-1998 Daniel Veillard <veillard@src.gnome.org> Release 0.2, 80% rewrite, nothing left intact ... Daniel
/external/libxml2/Makefile.am
0dc897e92856985388e561eea21b97bc35a19cc8 26-Jul-1998 Daniel Veillard <veillard@src.gnome.org> *** empty log message ***
/external/libxml2/Makefile.am
01791d57d650e546a915522e57c079157a5bb395 24-Jul-1998 Daniel Veillard <veillard@src.gnome.org> Added the XML code developped at W3C, Daniel.
/external/libxml2/Makefile.am