History log of /external/libxml2/doc/Makefile.am
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
4d7a32959b49dda1b2ba9aea83e5d5886014ac25 23-Nov-2012 Roumen Petrov <bugtrack@roumenpetrov.info> rebuild docs:Makefile.am
/external/libxml2/doc/Makefile.am
878ec9db9df09b22322906bc5fc61537391070e4 07-Sep-2012 Daniel Richard <oss@teragram.com> Second round of cleanups for LibXML2 docs/examples

configure.am:

* Explicitly disallow --enable-rebuild-docs when builddir != srcdir, per
what you said about needing to build docs with an in-source build

doc/Makefile.am:

* Ensure that xmlversion.h is in the source tree before running
apibuild.py, to avoid generating an incomplete libxml2-api.xml

* Update the .PHONY target (forgot to do this earlier)

doc/devhelp/Makefile.am:

* Wrap the doc-generating rule in an "if REBUILD_DOCS" conditional so it
doesn't cause trouble for regular users

* Added a handy-dandy "rebuild" target

doc/examples/index.py:

* NOTE: You need to run this script to regenerate the files it creates,
and then commit the newly-updated files! The generated files currently
in git master (e.g. doc/examples/Makefile.am) are out of date even
before this patch!

* index.html really needs to be in EXTRA_DIST

* Wrap the doc-generating rules in an "if REBUILD_DOCS" conditional,
because they shouldn't be active otherwise
/external/libxml2/doc/Makefile.am
6842ee810e8ab60fa71d1569bbc91cc392d12a7c 17-Aug-2012 Daniel Richard G <oss@teragram.com> More cleanups to the documentation part of libxml2

doc/Makefile.am:

* Build what's in doc/ before doc/devhelp/, as the dependency graph flows
that way

* Add "--path $(srcdir)" so that xsltproc can find DTDs in srcdir

* Replaced $(top_srcdir)/doc with an equivalent $(srcdir)

* Qualified libxml2-api.xml with $(srcdir) as it's always generated there

* Rewrote the dependencies for libxml2-api.xml so that xmlversion.h
doesn't throw everything off

doc/devhelp/Makefile.am:

* Use Automake constructs to install the HTML files instead of an
install-data-local rule

* Reorganized the file a bit (hello whitespace!)

* EXTRA_DIST doesn't need to list so many files now that dist_devhelp_DATA
is being used

* Only print "Rebuilding devhelp files" if rebuilding is actually
occurring

doc/examples/index.py:

* Make the "this file is auto-generated" banner more prominent

* Autotools updates: Use AM_CPPFLAGS/AM_CFLAGS instead of INCLUDES

* Got rid of DEPS as it's not needed (Automake already sees the dependency
on libxml2.la by way of LDADD(S))

* Replaced LDADDS with LDADD, which is applied to all programs listed
in the file. Since all the test programs have the same link
dependencies, this way is more concise yet equivalent.

* Remove the *.tmp files via "make clean" instead of having the test
programs do it themselves (more on this later)

* Invoke index.py in srcdir, as it pretty much needs to run there

* Restructured the index.html rule so that only the xmllint invocation is
allowed to fail

* Use $(MKDIR_P) instead of $(mkinstalldirs), $(VAR) instead of @VAR@

* Remove symlinks for test?.xml in an out-of-source build

* Sort lists for neatness

* Better formatting for EXTRA_DIST and noinst_PROGRAMS variables

* Simplified the Automake bits printed for each program: *_LDFLAGS doesn't
need to be specified as it's empty anyway, *_DEPENDENCIES is redundant,
*_LDADD isn't needed due to the global LDADD

* Added a bit that symlinks in test?.xml from srcdir in out-of-source
builds. This allows the reader4 test to read these files in the current
directory, which ensures that the output always looks the same (i.e.
does not contain references to srcdir)

* Don't hide the test program invocation (or else it's hard to tell which
test failed), and don't use superfluous parentheses

* NOTE: If you check in these changes, be sure to run this script and also
check in the updated files that it generates!

doc/examples/*.c:

* Updated the test: lines so that

+ "&&" is used to separate commands instead of ";" so that errors are
not masked

+ reference files are qualified with $(srcdir)/

+ no "rm" takes place -- these are a problem because (1) if a test
fails, it's useful to have the output file ready for inspection; (2)
the "rm" invocation masks a potential non-zero exit status from diff

(This is why I added the CLEANFILES line above)

doc/examples/io1.res:

* Updated this ref file so that the test passes. (This is correct, right?)

doc/examples/reader4.res:

* Changed this back to its original form, as the symlinking of test?.xml
means this file no longer has to contain path prefixes on the filenames

doc/examples/testWriter.c:

* Changed the output filenames to *.tmp instead of *.res, partly for
consistency, partly to not have to add special cases to CLEANFILES

doc/examples/xpath1.c:

* Removed the "./" prefix on the test invocation, which is redundant as
index.py already adds one
/external/libxml2/doc/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/doc/Makefile.am
dde64081f9440b898cd856fad99bd8b7ede6b39a 23-Mar-2011 Daniel Veillard <veillard@redhat.com> Improve documentation a bit
/external/libxml2/doc/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/doc/Makefile.am
4dd115c197f4d1978014290f62f81467bf88e25f 23-Sep-2009 Daniel Veillard <veillard@redhat.com> Adding symbols.xml to EXTRA_DIST
/external/libxml2/doc/Makefile.am
f447ab8f97830c06f24eb589ecaabc69001e3e78 24-Aug-2009 Daniel Veillard <veillard@redhat.com> Regenerated API and symbols

* doc/Makefile.am: make the check for symbols pbm a make api failure
* doc/symbols.xml: added xmlXIncludeProcessTreeFlagsData
* doc//* elfgcchack.h libxml2.syms testapi.c: regenerated
/external/libxml2/doc/Makefile.am
f609d745b15d16ddc6a951ebcf4431a98e27dfc4 21-Aug-2009 Daniel Veillard <veillard@redhat.com> Autoregenerate libxml2.syms automated checkings

* doc/symbols.xml: the source for all exported symbols
* doc/checkapisym.xsl: used to check libxml2-api.xml against exported
symbols
* doc/syms.xsl: stylesheet regenerating libxml2.syms from symbols.xml
* doc/Makefile.am libxml2.syms: add the new rules and the generated
version
/external/libxml2/doc/Makefile.am
9a15b30c7075393c080760998fdbc4349fcecadf 07-Aug-2009 Daniel Veillard <veillard@redhat.com> Fix Solaris binary links, cleanups

* doc/*.html doc/site.xsl doc/xml.html: Dagobert Michelsen pointed out
that binaries build for Solaris now live in OpenCSW
/external/libxml2/doc/Makefile.am
b40744e3e4ce6faafb314625e2bbf64dfdedd334 17-Oct-2008 Daniel Veillard <veillard@src.gnome.org> patch from Adrian Bunk which adds --disable-rebuild-docs to avoid

* configure.in doc/Makefile.am: patch from Adrian Bunk which
adds --disable-rebuild-docs to avoid rebuilding them
daniel

svn path=/trunk/; revision=3801
/external/libxml2/doc/Makefile.am
d4e39ae2c117b06da7bee059f744b1409d5d9323 28-Oct-2005 Daniel Veillard <veillard@src.gnome.org> cleanup from Albert Chin html/index.sgml doesn't exist anymore Daniel

* config.h.in configure.in vms/config.vms macos/src/config-mac.h:
cleanup from Albert Chin
* doc/Makefile.am: html/index.sgml doesn't exist anymore
Daniel
/external/libxml2/doc/Makefile.am
602434dee543b1d7a0473881469032a05e43106e 12-Sep-2005 Daniel Veillard <veillard@src.gnome.org> damn XML_FEATURE_UNICODE clashes with Expat headers rename to XML_WITH_ to

* include/libxml/parser.h parser.c xmllint.c: damn XML_FEATURE_UNICODE
clashes with Expat headers rename to XML_WITH_ to fix bug #316053.
* doc/Makefile.am: build devhelp before the examples.
* doc/*: regenerated the API
Daniel
/external/libxml2/doc/Makefile.am
99b78502b649a03a00b0ec83288a2e7216da7a17 12-Sep-2005 Daniel Veillard <veillard@src.gnome.org> started work needed to generate devhelp content, not too hard based on the

* configure.in doc/Makefile.am doc/apibuild.py doc/libxml2-api.xml
doc/devhelp/*: started work needed to generate devhelp content,
not too hard based on the existing format and extractor.
Daniel
/external/libxml2/doc/Makefile.am
e92bf5d6f4c0024264d83f1d2f6d50ac8e58419c 04-Feb-2005 Daniel Veillard <veillard@src.gnome.org> fixed one internal function applied patch from Joel Reed regenerated

* xmlschemas.c: fixed one internal function
* doc/Makefile.am doc/wiki.xsl: applied patch from Joel Reed
* testapi.c doc/libxml2-api.xml doc/libxml2-refs.xml: regenerated
daniel
/external/libxml2/doc/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/doc/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/doc/Makefile.am
5a9c1fdd407b9771bac3dec266645603828e4fa4 17-Dec-2004 William M. Brack <wbrack@src.gnome.org> changed maintainer-clean dependency with suggestion from Crispin Flowerday

* doc/Makefile.am: changed maintainer-clean dependency with
suggestion from Crispin Flowerday (bug #157634)
* debugXML.c: fixed crash when ATTRIBUTE or DOCUMENT nodes
were specified with debugDumpNode (bug #160621)
/external/libxml2/doc/Makefile.am
06500c8aa660aeb6ae964c7a840e21b928f906c3 07-Sep-2004 Daniel Veillard <veillard@src.gnome.org> some cleanup checking for xmllint and xsltproc in configure.in, fixed make

* configure.in doc/Makefile.am xstc/Makefile.am: some cleanup
checking for xmllint and xsltproc in configure.in, fixed
make dist w.r.t. the new xstc subdir.
* doc/*: rebuilt
Daniel
/external/libxml2/doc/Makefile.am
eebd633b916b99bd1f0e6e038afdc1d933eeef60 26-Aug-2004 Daniel Veillard <veillard@src.gnome.org> remove a warning on Solaris fix a crashing bug #151111 Daniel

* parser.c: remove a warning on Solaris
* xmlschemastype.c: fix a crashing bug #151111
Daniel
/external/libxml2/doc/Makefile.am
01fa6156e51259229470f40619af93e915b4bc94 29-Jun-2004 Daniel Veillard <veillard@src.gnome.org> applied Schemas patches from Kasimier Buchcik, there is still one open

* xmlschemas.c xmlschemastypes.c include/libxml/xmlerror.h
include/libxml/schemasInternals.h include/libxml/xmlschemastypes.h:
applied Schemas patches from Kasimier Buchcik, there is still
one open issue about referencing freed memory.
* test/schemas/* result/schemas/*: updated with new tests from
Kasimier
Daniel
/external/libxml2/doc/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/doc/Makefile.am
fc97906edfc501278820fdcd3fc05efcbded1538 04-Mar-2004 Daniel Veillard <veillard@src.gnome.org> paalied patch from Julio M. Merino Vidal fixing bug #134751 to fix

* configure.in doc/Makefile.am include/libxml/Makefile.am:
paalied patch from Julio M. Merino Vidal fixing bug #134751
to fix --with-html-dir option.
* doc/*: rebuilt fully the docs
* doc/html/libxml-xmlsave.html: new file from new header.
Daniel
/external/libxml2/doc/Makefile.am
cafe885168fd2322dd0b0845a6910a60d08e03f6 21-Dec-2003 William M. Brack <wbrack@src.gnome.org> applied fixes to allow build from 'outside' directory (Bug 129172)

* python/Makefile.am, python/tests/Makefile.am,
doc/Makefile.am: applied fixes to allow build from
'outside' directory (Bug 129172)
/external/libxml2/doc/Makefile.am
323268f00dab8a730c3b2a8616dde92379507dd5 10-Dec-2003 Daniel Veillard <veillard@src.gnome.org> Fixed a reference to a removed file, Daniel
/external/libxml2/doc/Makefile.am
1d913863130a17a638db69c2c50f89e5b0d4aae4 21-Nov-2003 Daniel Veillard <veillard@src.gnome.org> applied patch from Robert Stepanek to start import os schemas support,

* xmlschemas.c: applied patch from Robert Stepanek to start
import os schemas support, cleaned up stuff and the patch.
* test/schemas/import0_0.* result/schemas/import0_0_0*: added test
to regression, fixed a few regressions too.
Daniel
/external/libxml2/doc/Makefile.am
e8ba84ef7e8ce95a9e12517402f2b8c99792e407 18-Nov-2003 Daniel Veillard <veillard@src.gnome.org> cleaned up the build process to remove all remains from the old gtk-doc

* doc/Makefile.am doc/*.xsl doc/*.html doc/apibuild.py: cleaned up
the build process to remove all remains from the old gtk-doc
inherited, libxml2-refs.xml is now generated by apibuild.py, the
stylesheets have been improved, and the API*html now generated
are XHTML1 valid too
Daniel
/external/libxml2/doc/Makefile.am
2925c0a0f4ccd9390f73cea230cb96f39c3fbc9f 17-Nov-2003 Daniel Veillard <veillard@src.gnome.org> improvement of the stylesheets, fixed a API generation problem, switched

* doc/Makefile.am doc/apibuild.py doc/libxml2-api.xml doc/newapi.xsl:
improvement of the stylesheets, fixed a API generation problem,
switched the stylesheet and Makefile to build the HTML output.
* doc/html/*.html: complete update, ditched some old files, might
introduce some breakage...
Daniel
/external/libxml2/doc/Makefile.am
2ad1dfffa032025ec70de5b4af878e9b092c79f3 15-Nov-2003 William M. Brack <wbrack@src.gnome.org> rebuilt the generated pages (again), manually restored doc/html/index.html

* doc/Makefile.am doc/*.html doc/html/*.html: rebuilt the
generated pages (again), manually restored doc/html/index.html
and manually edited generated file doc/gnome-xml.xml to put
in appropriate headings.
* doc/docdescr.doc: new file to describe details of the
document generation (helps my memory for the next time)
* genChRanges.py,chvalid.c,include/libxml/chvalid.h: minor
enhancement to please the automatic documentation generation.
/external/libxml2/doc/Makefile.am
d8cf90610c63a695d948245cc4e22890e2c063be 11-Nov-2003 Daniel Veillard <veillard@src.gnome.org> less verbose on difference cleanup fixed xmlCleanupParser() doc work on

* check-xinclude-test-suite.py: less verbose on difference
* libxml.spec.in: cleanup
* parser.c: fixed xmlCleanupParser() doc
* doc/Makefile.am doc/apibuild.py doc/libxml2-api.xml
doc/examples/Makefile.am doc/examples/example1.c
doc/examples/examples.xml doc/examples/index.py
doc/examples/test1.xml: work on adding C examples and
generating automated information about those. examples.xml
is autogenerated describing the examples.
* example/Makefile.am: cleanup
Daniel
/external/libxml2/doc/Makefile.am
929714b707a2d793cd78b033bfacb56fbaea3e36 22-Oct-2003 Daniel Veillard <veillard@src.gnome.org> applied patch from Alfred Mickautsch fixing #125180 Daniel

* xmlwriter.c: applied patch from Alfred Mickautsch fixing #125180
Daniel
/external/libxml2/doc/Makefile.am
fc60fc200974947e1f42f1e12c178dd1afc0ddd1 19-Oct-2003 William M. Brack <wbrack@src.gnome.org> enhanced the installation of tutorial files to avoid installing CVS

* doc/Makefile.am: enhanced the installation of tutorial files
to avoid installing CVS subdirectories (bug 122943)
/external/libxml2/doc/Makefile.am
fc8dc355dac40605e66a7e8722db5077f03076f3 18-Oct-2003 Daniel Veillard <veillard@src.gnome.org> added new APIs for creating reader from sources or reusing a reader with a

* xmlreader.c include/libxml/xmlreader.h: added new APIs
for creating reader from sources or reusing a reader with
a new source, like the xmlReadxx and xmlCtxtReadxxx
* win32/libxml2.def.src doc/libxml2-api.xml doc/apibuild.py
doc/Makefile.am: regenerated the APIs
* doc/xml.html: applied a patch from Stefan Kost for namesapce docs
Daniel
/external/libxml2/doc/Makefile.am
4aede2e66b88ad782b506341c6ea40554456a8b4 17-Oct-2003 Daniel Veillard <veillard@src.gnome.org> remove the warning for startDocument(), as it is used by glade (or

* legacy.c: remove the warning for startDocument(), as it is used by
glade (or glade-python)
* parser.c relaxng.c xmlschemastypes.c: fixed an assorted set of
invalid accesses found by running some Python based regression
tests under valgrind. There is still a few leaks reported by the
relaxng regressions which need some attention.
* doc/Makefile.am: fixed a make install problem c.f. #124539
* include/libxml/parserInternals.h: addition of xmlParserMaxDepth
patch from crutcher
Daniel
/external/libxml2/doc/Makefile.am
3f47950374151ce5ddd7f5a404d47409602c0db3 01-Sep-2003 William M. Brack <wbrack@src.gnome.org> new file added, giving some description of the documentation generation

* doc/README.docs, doc/Makefile.am: new file added,
giving some description of the documentation generation process
* doc/search.php: fixed problem with upper case on filenames
/external/libxml2/doc/Makefile.am
7a82165d2e28e39326eae0e49242bd59d06752e9 15-Aug-2003 William M. Brack <wbrack@src.gnome.org> Minor changes to comments, etc. for improving documentation generation

* encoding.c, threads.c, include/libxml/HTMLparser.h,
doc/libxml2-api.xml: Minor changes to comments, etc. for
improving documentation generation
* doc/Makefile.am: further adjustment to auto-generation of
win32/libxml2.def.src
/external/libxml2/doc/Makefile.am
ccf9e39d977db2f14d2bc152392ad87c90c3feda 13-Aug-2003 William M. Brack <wbrack@src.gnome.org> Removed dependency from libxml2.def.src

* doc/Makefile.am: Removed dependency from libxml2.def.src
/external/libxml2/doc/Makefile.am
476cd96411afbf77efa9f9b29ae1fe597978895a 13-Aug-2003 William M. Brack <wbrack@src.gnome.org> took away the requirement for automake-1.4, changed the messages for

* autogen.sh: took away the requirement for automake-1.4,
changed the messages for getting auto* tools to current
gnu pages.
* configure.in, configure: added check for Linux Dec alpha
requiring -ieee flag, fixed test for ipv6
* trionan.c: fixed problem for compiling on Linux Dec alpha
using native compiler
* doc/Makefile.am: implemented regeneration of win32/libxml2.def.src
whenever libxml2-api.xml is changed.
/external/libxml2/doc/Makefile.am
d7cec926292b83b46af271285b0a305e99f66cd0 13-Jun-2003 Daniel Veillard <veillard@src.gnome.org> reverted back patch for #113521, due to #115104 and while fixing #115101 .

* doc/Makefile.am doc/html/*: reverted back patch for #113521,
due to #115104 and while fixing #115101 . HTML URLs must not
be version dependant.
Daniel
/external/libxml2/doc/Makefile.am
a37aab845c29de6c8292ffd502f6719da60efca0 09-Jun-2003 Daniel Veillard <veillard@src.gnome.org> applied a patch from Gman for building docs applied a patch from Gary

* doc/*: applied a patch from Gman for building docs
* valid.c xmllint.c include/libxml/valid.h: applied a patch from
Gary Pennington to provide an allocator for xmlValidCtxt
* xmlreader.c: applied patch from Jacek Konieczny fixing bug
#113580 about data not being passed immediately.
Daniel
/external/libxml2/doc/Makefile.am
e8b09e40f7ece62231641a0607e6b777db17f0d7 14-May-2003 Daniel Veillard <veillard@src.gnome.org> added --nonet option fixing #112803 by adding --nonet when calling

* xmllint.c doc/xmllint.xml: added --nonet option
* doc/Makefile.am: fixing #112803 by adding --nonet when calling
xsltproc or xmllint
* doc/xmllint.xml doc/xmllint.1: also added --schema doc and
rebuilt
* HTMLparser.c: cleaned up the HTML parser context build when
using an URL
Daniel
/external/libxml2/doc/Makefile.am
93d95255e58d727fb69683646ec085d424bc34e7 29-Apr-2003 Daniel Veillard <veillard@src.gnome.org> Added informations about xml2-config in the FAQ, Daniel
/external/libxml2/doc/Makefile.am
d433046ae52b0488a9fad77d2045c0139b8cada8 29-Apr-2003 Daniel Veillard <veillard@src.gnome.org> fixing a function comment switching to the XML/XSLT doc generation closing

* xmlschemas.c doc/libxml2-api.xml: fixing a function comment
* doc/Makefile.am doc/apibuild.py doc/gnome-xml.sgml: switching
to the XML/XSLT doc generation closing #111799
* doc/html/*: complete update of the HTML results
Daniel
/external/libxml2/doc/Makefile.am
1177ca42ab07e6a835b0a9a9218822b62caca3e4 27-Apr-2003 Daniel Veillard <veillard@src.gnome.org> updated the web site separated developers from common pages, made the

* NEWS doc/*.xsl doc/*.html: updated the web site separated
developers from common pages, made the transition to XHTML1,
added validity checking to the makefile rules.
Daniel
/external/libxml2/doc/Makefile.am
fd5834100f04c45aabea43d20787df7e838414d5 25-Apr-2003 Daniel Veillard <veillard@src.gnome.org> automated the generation of the man page based on xsltproc and a

* doc/Makefile.am doc/xmlcatalog.1 doc/xmlcatalog_man.xml
doc/xmllint.1 doc/xmllint.xml: automated the generation of the
man page based on xsltproc and a stylesheet PI in the XML.
Daniel
/external/libxml2/doc/Makefile.am
aec635690a8aefbe632cccd177eb9157d4b18793 23-Mar-2003 Daniel Veillard <veillard@src.gnome.org> Rebuilt the docs, Daniel
/external/libxml2/doc/Makefile.am
b4d30b63603e84980fe5493e02cb400a9588c8a1 16-Mar-2003 Daniel Veillard <veillard@src.gnome.org> Added automatic generation of an XSA description, Daniel
/external/libxml2/doc/Makefile.am
8ba1741abd991f8ab885f9fe1cecb69cf259f84f 01-Jan-2003 Daniel Veillard <veillard@src.gnome.org> generate the NEWS file from doc/news.html and a stylesheet Daniel

* NEWS doc/Makefile.am doc/news.xsl: generate the NEWS file
from doc/news.html and a stylesheet
Daniel
/external/libxml2/doc/Makefile.am
a9b66d00b5fbae2381f59c0be4d8c7b8e3c16cf7 11-Dec-2002 Daniel Veillard <veillard@src.gnome.org> new API building Python script, does the C parsing directly, generates a

* doc/apibuild.py doc/libxml2-api.xml doc/Makefile.am: new API
building Python script, does the C parsing directly, generates
a better API description including structure fieds defs and
enums. Still a couple of bugs, but good enough for the python
wrappers now.
* DOCBparser.c SAX.c nanohttp.c parser.c parserInternals.c tree.c
valid.c xmlIO.c xmlmemory.c xmlreader.c xmlregexp.c xmlschemas.c
include/libxml/schemasInternals.h include/libxml/tree.h: more
cleanup based on the python analysis script reports.
* libxml.spec.in: make sure the API XML description is part of the
devel package.
Daniel
/external/libxml2/doc/Makefile.am
80d7b901771962ca1ebded6bcbb6c0559663642a 23-Nov-2002 Daniel Veillard <veillard@src.gnome.org> Jan Rafaj pointed a bug in the Makefile. Daniel

* doc/Makefile.am: Jan Rafaj pointed a bug in the Makefile.
Daniel
/external/libxml2/doc/Makefile.am
f9c4cad243374ec6a56cb5bfccc962fa8074f0c2 22-Nov-2002 Daniel Veillard <veillard@src.gnome.org> preparing 2.4.28 some cleanup updated the news and regenerated. Daniel

* configure.in: preparing 2.4.28
* libxml.spec.in doc/Makefile.am: some cleanup
* doc/*: updated the news and regenerated.
Daniel
/external/libxml2/doc/Makefile.am
817e70b6ac0446d9abb6b832963c3473e71b640c 19-Nov-2002 Daniel Veillard <veillard@src.gnome.org> repair some problem if gtk-doc fail or such patch for Solaris on new

* doc/Makefile.am: repair some problem if gtk-doc fail or such
* configure.in: patch for Solaris on new autoconf closes #98880
* doc/parsedecl.py: repair the frigging API building script,
did I say that python xmllib sucks ?
* doc/libxml2-api.xml doc/libxml2-refs.xml: regenerated, reordering
and some comment are no more truncated.
Daniel
/external/libxml2/doc/Makefile.am
dad3f680e504b25b3bfd30a411adb55b4d0efe09 17-Nov-2002 Daniel Veillard <veillard@src.gnome.org> preparing release 2.4.27 updated and rebuilt the docs try to make sure the

* configure.in: preparing release 2.4.27
* doc/* : updated and rebuilt the docs
* doc/Makefile.am libxml.spec.in: try to make sure the tutorial
and all the docs are actually packaged and in the final RPMs
* parser.c parserInternals.c include/libxml/parser.h: restore
xmllint --recover feature.
Daniel
/external/libxml2/doc/Makefile.am
7ae91bcd9e94946a7be41290cb67ffc9c2cf0a9f 08-Nov-2002 Igor Zlatkovic <igor@src.gnome.org> retired xmlwin32version.h
/external/libxml2/doc/Makefile.am
2afc5c510b974dd91232df5131fd71653cc1bf4e 23-Oct-2002 Daniel Veillard <veillard@src.gnome.org> Rebuilt te docs, oops, daniel
/external/libxml2/doc/Makefile.am
595978c978070456dac57acff4dcfd9039af0ce4 09-Oct-2002 Daniel Veillard <veillard@src.gnome.org> make the link to search a local reference, daniel
/external/libxml2/doc/Makefile.am
e16b57406a96297a6ce39e509e06511c3c8a200e 26-Sep-2002 Daniel Veillard <veillard@src.gnome.org> preparing release of 2.4.25 updated and regenerated teh docs and web

* configure.in include/libxml/xmlwin32version.h: preparing release
of 2.4.25
* doc/*: updated and regenerated teh docs and web pages.
Daniel
/external/libxml2/doc/Makefile.am
bd9afb529069415baf1f32d907f035de19dae788 26-Sep-2002 Daniel Veillard <veillard@src.gnome.org> improving some documentation comments found and fixed a mem leak with

* tree.c: improving some documentation comments
* xmlregexp.c: found and fixed a mem leak with python regression tests
* doc/*: rebuilt the doc and the API XML file including the
xmlregexp.h xmlautomata.h and xmlunicode.h headers
* python/generator.py python/libxml2class.txt python/libxml_wrap.h
python/types.c: added access to the XML Schemas regexps from
python
* python/tests/Makefile.am python/tests/regexp.py: added a
simple regexp bindings test
Daniel
/external/libxml2/doc/Makefile.am
06944e2141fdce9043ba7bda5fc51e9e9fc4280a 11-Jul-2002 Daniel Veillard <veillard@src.gnome.org> fixing Red Hat bug #68614 by adding the doc/xmlcatalog_man.xml to the

* doc/Makefile.am: fixing Red Hat bug #68614 by adding the
doc/xmlcatalog_man.xml to the source distribution
Daniel
/external/libxml2/doc/Makefile.am
fc57b41cb14a9920fa73cbb9fa1e495047970f2b 29-Apr-2002 Daniel Veillard <veillard@src.gnome.org> preparing 2.4.21 raised a too low limit rebuilt the docs Daniel

* configure.in include/libxml/xmlwin32version.h: preparing 2.4.21
* valid.c: raised a too low limit
* doc/*: rebuilt the docs
Daniel
/external/libxml2/doc/Makefile.am
f5a457a3ac384dc8b32d9123c88f5afba14dc8ba 07-Mar-2002 Daniel Veillard <veillard@src.gnome.org> Fixed #73408 missing images are now copied on install and part of the

* libxml.spec.in doc/Makefile.am: Fixed #73408 missing images
are now copied on install and part of the -devel RPM
Daniel
/external/libxml2/doc/Makefile.am
5f4b5999b4eeda2ca68e6d9f54a3c534a8474b38 20-Feb-2002 Daniel Veillard <veillard@src.gnome.org> preparing 2.4.16 updated and rebuilt the docs, rebuilt the API and web

* configure.in include/libxml/xmlwin32version.h: preparing 2.4.16
* doc/* python/libxml2class.txt: updated and rebuilt the docs,
rebuilt the API and web site
* xpath.c: fixed #71978 portability bugs
Daniel
/external/libxml2/doc/Makefile.am
f85925628ac8b50c0a5339fccd861aedf46c2f00 23-Jan-2002 Daniel Veillard <veillard@src.gnome.org> generated an alphabetic index based on comments content rebuilt the web

* doc/APIchunk*.html doc/parsedecl.py doc/api.xsl: generated
an alphabetic index based on comments content
* doc/*: rebuilt the web site with the new references
Daniel
/external/libxml2/doc/Makefile.am
3bf65bea7d5dba63099cf1cf8a01cfa29dcf1766 23-Jan-2002 Daniel Veillard <veillard@src.gnome.org> updated the python extractor to generate cross-references, and

* doc/api.xsl doc/APIconstructors.html doc/APIfiles.html
doc/APIfunctions.html doc/APIsymbols.html doc/libxml2-refs.xml
doc/parsedecl.py doc/Makefile.am: updated the python extractor
to generate cross-references, and added/updated the stylesheets
to generate and link API indexes. The generic keyword index
is not done yet.
* doc/*.html: regenerated all the usual docs too
Daniel
/external/libxml2/doc/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/doc/Makefile.am
963d2ae41574066f9b44bcae610dd280c1e57dd8 20-Jan-2002 Daniel Veillard <veillard@src.gnome.org> cleanup patch from Anthony Jones fix the headers to avoid in make scan

* SAX.c: cleanup patch from Anthony Jones
* doc/Makefile.am: fix the headers to avoid in make scan
* parserInternals.c xpath.c include/libxml/*.h: cleanup of the
includes, * vs Ptr and general cleanup
* parsedecl.py: first version of a script to extract the
module interfaces, the goal will be to provide .decl or XML
specification of the interfaces to build wrappers.
Daniel
/external/libxml2/doc/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/doc/Makefile.am
7b602b421ea8bf202a093b55500754ba89053ead 08-Jan-2002 Daniel Veillard <veillard@src.gnome.org> renamed XML.html output page into XMLinfo.html. Close bug #66951 and

* doc/*.html doc/site.xsl doc/Makefile: renamed XML.html
output page into XMLinfo.html. Close bug #66951 and
raised by Robert Collins too.
Daniel
/external/libxml2/doc/Makefile.am
cebb136120be44dca91c7d37ca4870f73dd9c28c 02-Jan-2002 Daniel Veillard <veillard@src.gnome.org> should fix #67674 and avoid troubles if xsltproc is not available or fails

* doc/Makefile.am: should fix #67674 and avoid troubles if
xsltproc is not available or fails in the prefix provided
Daniel
/external/libxml2/doc/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/doc/Makefile.am
b8cfbd12680cbd28c9eaafea2642b8f1cbd52a48 25-Oct-2001 Daniel Veillard <veillard@src.gnome.org> Finished reintegrating the docs and unifying the look, may still
need a couple of pointers but looks fine now. valid.html si now
merged in xmldtd.html. Overall cleanup, Daniel
/external/libxml2/doc/Makefile.am
c948420a0c6a46578a23da66ce837e112937251d 24-Oct-2001 Daniel Veillard <veillard@src.gnome.org> now autogenerate the web site from the main HTML document. Daniel

* doc/site.xsl doc/*.html doc/Makefile.am: now autogenerate
the web site from the main HTML document.
Daniel
/external/libxml2/doc/Makefile.am
98fed37a39614c98f1a9c2688d693d8c6a97720a 13-Sep-2001 Daniel Veillard <veillard@src.gnome.org> dohh generated the wrong include path :-( re-dohh forgot the new manpage

* libxml-2.0.pc.in: dohh generated the wrong include path :-(
* doc/Makefile.am libxml.spec.in: re-dohh forgot the new manpage :-(
Daniel
/external/libxml2/doc/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/doc/Makefile.am
c5d64345cf19bfd72418eb0a837869b0462e9130 24-Jun-2001 Daniel Veillard <veillard@src.gnome.org> Summer's cleanup, a really big one:
* AUTHORS: added William and Bjorn
* include/libxml/*.h *.c README doc/*.html etc.: changed old email to
daniel@veillard.com hopefully I won't have to do this again
* doc/Makefile.am doc/html/*.html: cleanup makefile, checked that
docs can be rebuilt cleanly now
* include/libxml/xml*version.h*: removed include/libxml/xmlversion.h
from CVs it's generated, added include/libxml/xmlwin32version.h
also generated but which should change far less frequently.
* catalog.c nanoftp.c: made sure to include libxml.h not
libxml/xmlversion.h directly
* include/libxml/*.h: include xmlwin32version.h instead of xmlversion.h
when compiling on WIN32 and MSC
Daniel
/external/libxml2/doc/Makefile.am
0a6c358bf31776d112e410197f3cc65b316ce71f 14-Mar-2001 Daniel Veillard <veillard@src.gnome.org> - doc/Makefile.am configure.in: yearke@eng.buffalo.edu suggested
a fix for --with-html-dir= configure support. I hope it won't
break rpm generation
Daniel
/external/libxml2/doc/Makefile.am
5eb0594f8352265ad7b2c975bf3ceaa8c547824f 27-Jan-2001 Daniel Veillard <veillard@src.gnome.org> Makefile/doc maintenance:
- doc/Makefile.am: fixed make rebuild in doc
- doc/html/*.html: rebuilt the docs
Daniel
/external/libxml2/doc/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/doc/Makefile.am
b732a0eafcd5659ed58f32828d91e07b420a8779 15-Oct-2000 Daniel Veillard <veillard@src.gnome.org> Rebuilt docs for 2.2.5, added XPointer, Daniel
/external/libxml2/doc/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/doc/Makefile.am
04698d9e1c56467007fcbb9472e5db67cf5938f5 17-Sep-2000 Daniel Veillard <veillard@src.gnome.org> New set of cleanups, released 2.2.3:
- SAX.c debugXML.c parser.c parserInternals.c tree.c valid.c xpath.c:
removed a few warnings in pedantic mode ...
- parserInternals.c parser.c: moved encoding switching function
to parserInternals.c
- configure.in, doc/Makefile.am libxml.spec.in: released 2.2.3
Daniel
/external/libxml2/doc/Makefile.am
979e55e889454b11b022a87ba0aa5974cdcef2a5 19-Aug-2000 Daniel Veillard <veillard@src.gnome.org> Added man pages, Daniel
/external/libxml2/doc/Makefile.am
af743793c8026f1aa7abf452875650884db7520e 01-Jul-2000 Daniel Veillard <veillard@src.gnome.org> Added an FAQ, Daniel.
/external/libxml2/doc/Makefile.am
5d211f4c7a150e45a301cec55426a7ed7edb7f50 07-Apr-2000 Daniel Veillard <veillard@src.gnome.org> libxml2 prerelease ?
- xmlIO cleanup, xmlRegisterInputCallbacks() for new input method
- fixed xmlPrevSibling and xmlNextSibling
- TODO: updated
- doc/* : updated/regenerated
Daniel
/external/libxml2/doc/Makefile.am
72bd1001e2293e2e8b0b1d90867fb60c1ab42f78 04-Sep-1999 CEST 1999 Timur Bakeyev <mc@bat.ru> replaced "install -d " with "mkinstalldirs" - not all invocations of


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

* doc/Makefile.am: replaced "install -d " with "mkinstalldirs" -
not all invocations of install understand -d.
/external/libxml2/doc/Makefile.am
15012ae15d4d336b10d7e4e845e7786a80af4dd9 10-Jul-1999 Tomasz Kłoczko <kloczek@src.gnome.org> - fix which allow "make install DESTDIR=</install/prefix>".


- fix which allow "make install DESTDIR=</install/prefix>".
/external/libxml2/doc/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/doc/Makefile.am
55a992728b92afd3012329f8a77dbaf090b0ff4a 25-Feb-1999 Daniel Veillard <veillard@src.gnome.org> Toward 1.0.0, added docs to the packages, Daniel.
/external/libxml2/doc/Makefile.am
1e346af5e4b3d46e521d349890a60253bc696597 22-Feb-1999 Daniel Veillard <veillard@src.gnome.org> Serious upgrade of internal subset support, setup for gtk-doc, Daniel
/external/libxml2/doc/Makefile.am
a4b4430a11ff3fb7452a2fd4233e7c5c1fc3ea8a 16-Feb-1999 Daniel Veillard <veillard@src.gnome.org> gain a couple of minor changes on Makefiles, Daniel.
/external/libxml2/doc/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/doc/Makefile.am
19b858c4e80e26900f3c65de609cbf766c054127 06-Feb-1999 Daniel Veillard <veillard@src.gnome.org> *** empty log message ***
/external/libxml2/doc/Makefile.am