1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-10-23 01:52:48 +03:00

Makefile/doc maintenance:

- doc/Makefile.am: fixed make rebuild in doc
- doc/html/*.html: rebuilt the docs
Daniel
This commit is contained in:
Daniel Veillard
2001-01-27 17:50:22 +00:00
parent f37927f9a0
commit 5eb0594f83
6 changed files with 917 additions and 900 deletions

View File

@@ -1,3 +1,8 @@
Sat Jan 27 18:49:02 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* doc/Makefile.am: fixed make rebuild in doc
* doc/html/*.html: rebuilt the docs
Fri Jan 26 10:30:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> Fri Jan 26 10:30:58 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* tree.c: patch from Bjorn Reese on xmlBufferCCat * tree.c: patch from Bjorn Reese on xmlBufferCCat

40
aclocal.m4 vendored
View File

@@ -620,31 +620,35 @@ esac
]) ])
# AC_LIBLTDL_CONVENIENCE[(dir)] - sets LIBLTDL to the link flags for # AC_LIBLTDL_CONVENIENCE[(dir)] - sets LIBLTDL to the link flags for
# the libltdl convenience library, adds --enable-ltdl-convenience to # the libltdl convenience library and INCLTDL to the include flags for
# the configure arguments. Note that LIBLTDL is not AC_SUBSTed, nor # the libltdl header and adds --enable-ltdl-convenience to the
# is AC_CONFIG_SUBDIRS called. If DIR is not provided, it is assumed # configure arguments. Note that LIBLTDL and INCLTDL are not
# to be `${top_builddir}/libltdl'. Make sure you start DIR with # AC_SUBSTed, nor is AC_CONFIG_SUBDIRS called. If DIR is not
# '${top_builddir}/' (note the single quotes!) if your package is not # provided, it is assumed to be `libltdl'. LIBLTDL will be prefixed
# flat, and, if you're not using automake, define top_builddir as # with '${top_builddir}/' and INCLTDL will be prefixed with
# appropriate in the Makefiles. # '${top_srcdir}/' (note the single quotes!). If your package is not
# flat and you're not using automake, define top_builddir and
# top_srcdir appropriately in the Makefiles.
AC_DEFUN(AC_LIBLTDL_CONVENIENCE, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_DEFUN(AC_LIBLTDL_CONVENIENCE, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
case "$enable_ltdl_convenience" in case "$enable_ltdl_convenience" in
no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;; no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;;
"") enable_ltdl_convenience=yes "") enable_ltdl_convenience=yes
ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;; ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;;
esac esac
LIBLTDL=ifelse($#,1,$1,['${top_builddir}/libltdl'])/libltdlc.la LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdlc.la
INCLTDL=ifelse($#,1,-I$1,['-I${top_builddir}/libltdl']) INCLTDL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl'])
]) ])
# AC_LIBLTDL_INSTALLABLE[(dir)] - sets LIBLTDL to the link flags for # AC_LIBLTDL_INSTALLABLE[(dir)] - sets LIBLTDL to the link flags for
# the libltdl installable library, and adds --enable-ltdl-install to # the libltdl installable library and INCLTDL to the include flags for
# the configure arguments. Note that LIBLTDL is not AC_SUBSTed, nor # the libltdl header and adds --enable-ltdl-install to the configure
# is AC_CONFIG_SUBDIRS called. If DIR is not provided, it is assumed # arguments. Note that LIBLTDL and INCLTDL are not AC_SUBSTed, nor is
# to be `${top_builddir}/libltdl'. Make sure you start DIR with # AC_CONFIG_SUBDIRS called. If DIR is not provided and an installed
# '${top_builddir}/' (note the single quotes!) if your package is not # libltdl is not found, it is assumed to be `libltdl'. LIBLTDL will
# flat, and, if you're not using automake, define top_builddir as # be prefixed with '${top_builddir}/' and INCLTDL will be prefixed
# appropriate in the Makefiles. # with '${top_srcdir}/' (note the single quotes!). If your package is
# not flat and you're not using automake, define top_builddir and
# top_srcdir appropriately in the Makefiles.
# In the future, this macro may have to be called after AC_PROG_LIBTOOL. # In the future, this macro may have to be called after AC_PROG_LIBTOOL.
AC_DEFUN(AC_LIBLTDL_INSTALLABLE, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl AC_DEFUN(AC_LIBLTDL_INSTALLABLE, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
AC_CHECK_LIB(ltdl, main, AC_CHECK_LIB(ltdl, main,
@@ -657,8 +661,8 @@ AC_DEFUN(AC_LIBLTDL_INSTALLABLE, [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
]) ])
if test x"$enable_ltdl_install" = x"yes"; then if test x"$enable_ltdl_install" = x"yes"; then
ac_configure_args="$ac_configure_args --enable-ltdl-install" ac_configure_args="$ac_configure_args --enable-ltdl-install"
LIBLTDL=ifelse($#,1,$1,['${top_builddir}/libltdl'])/libltdl.la LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdl.la
INCLTDL=ifelse($#,1,-I$1,['-I${top_builddir}/libltdl']) INCLTDL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl'])
else else
ac_configure_args="$ac_configure_args --enable-ltdl-install=no" ac_configure_args="$ac_configure_args --enable-ltdl-install=no"
LIBLTDL="-lltdl" LIBLTDL="-lltdl"

View File

@@ -20,37 +20,37 @@ scan:
@(if [ -L $(DOC_SOURCE_DIR)/libxml ] ; then rm -f $(DOC_SOURCE_DIR)/libxml ; fi) @(if [ -L $(DOC_SOURCE_DIR)/libxml ] ; then rm -f $(DOC_SOURCE_DIR)/libxml ; fi)
@(if [ -L $(DOC_SOURCE_DIR)/include ] ; then rm -f $(DOC_SOURCE_DIR)/include ; fi) @(if [ -L $(DOC_SOURCE_DIR)/include ] ; then rm -f $(DOC_SOURCE_DIR)/include ; fi)
@(if [ -L $(DOC_SOURCE_DIR)/include/libxml ] ; then rm -f $(DOC_SOURCE_DIR)/include/libxml ; fi) @(if [ -L $(DOC_SOURCE_DIR)/include/libxml ] ; then rm -f $(DOC_SOURCE_DIR)/include/libxml ; fi)
gtkdoc-scan --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="acconfig.h config.h" gtkdoc-scan --module=libxml --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="acconfig.h config.h"
templates: scan templates: scan
gtkdoc-mktmpl --module=$(DOC_MODULE) gtkdoc-mktmpl --module=libxml
sgml: sgml:
gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) gtkdoc-mkdb --module=libxml --source-dir=$(DOC_SOURCE_DIR)
html: html:
if ! test -d html ; then mkdir html ; fi if ! test -d html ; then mkdir html ; fi
-cd html && gtkdoc-mkhtml $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE) -cd html && gtkdoc-mkhtml libxml ../$(DOC_MAIN_SGML_FILE)
clean-local: clean-local:
rm -f *~ *.bak *.hierarchy *.signals *-unused.txt rm -f *~ *.bak *.hierarchy *.signals *-unused.txt
maintainer-clean-local: clean maintainer-clean-local: clean
rm -rf sgml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt rm -rf sgml html libxml-decl-list.txt libxml-decl.txt
gnome-xml-decl-list.txt : templates libxml-decl-list.txt : templates
gnome-xml-sections.txt : scan libxml-sections.txt : scan
cp gnome-xml-decl-list.txt gnome-xml-sections.txt cp libxml-decl-list.txt libxml-sections.txt
rebuild: gnome-xml-sections.txt templates sgml html rebuild: libxml-sections.txt templates sgml html
install-data-local: install-data-local:
$(mkinstalldirs) $(DESTDIR)$(TARGET_DIR) $(mkinstalldirs) $(DESTDIR)$(TARGET_DIR)
-@INSTALL@ -m 0644 $(srcdir)/xml.html $(srcdir)/encoding.html $(srcdir)/FAQ.html $(srcdir)/structure.gif $(srcdir)/DOM.gif $(DESTDIR)$(TARGET_DIR) -@INSTALL@ -m 0644 $(srcdir)/xml.html $(srcdir)/encoding.html $(srcdir)/FAQ.html $(srcdir)/structure.gif $(srcdir)/DOM.gif $(DESTDIR)$(TARGET_DIR)
-@INSTALL@ -m 0644 $(srcdir)/html/*.html $(DESTDIR)$(TARGET_DIR) -@INSTALL@ -m 0644 $(srcdir)/html/*.html $(DESTDIR)$(TARGET_DIR)
-@INSTALL@ -m 0644 $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR) -@INSTALL@ -m 0644 $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR)
-(cd $(DESTDIR); gtkdoc-fixxref --module=$(DOC_MODULE) --html-dir=$(HTML_DIR)) -(cd $(DESTDIR); gtkdoc-fixxref --module=libxml --html-dir=$(HTML_DIR))
dist-hook: dist-hook:
(cd $(srcdir) ; tar cvf - *.html *.gif html/*.html html/*.sgml) | (cd $(distdir); tar xf -) (cd $(srcdir) ; tar cvf - *.html *.gif html/*.html html/*.sgml) | (cd $(distdir); tar xf -)

View File

@@ -116,97 +116,97 @@ HREF="libxml-lib.html"
><DL ><DL
><DT ><DT
><A ><A
HREF="gnome-xml-parser.html" HREF="libxml-parser.html"
>parser</A >parser</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-sax.html" HREF="libxml-sax.html"
>SAX</A >SAX</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-tree.html" HREF="libxml-tree.html"
>tree</A >tree</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-entities.html" HREF="libxml-entities.html"
>entities</A >entities</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-valid.html" HREF="libxml-valid.html"
>valid</A >valid</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-uri.html" HREF="libxml-uri.html"
>uri</A >uri</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-htmlparser.html" HREF="libxml-htmlparser.html"
>HTMLparser</A >HTMLparser</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-htmltree.html" HREF="libxml-htmltree.html"
>HTMLtree</A >HTMLtree</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-xpath.html" HREF="libxml-xpath.html"
>xpath</A >xpath</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-xpathinternals.html" HREF="libxml-xpathinternals.html"
>xpathInternals</A >xpathInternals</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-xpointer.html" HREF="libxml-xpointer.html"
>xpointer</A >xpointer</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-xinclude.html" HREF="libxml-xinclude.html"
>xinclude</A >xinclude</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-nanohttp.html" HREF="libxml-nanohttp.html"
>nanohttp</A >nanohttp</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-nanoftp.html" HREF="libxml-nanoftp.html"
>nanoftp</A >nanoftp</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-xmlio.html" HREF="libxml-xmlio.html"
>xmlIO</A >xmlIO</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-parserinternals.html" HREF="libxml-parserinternals.html"
>parserInternals</A >parserInternals</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-encoding.html" HREF="libxml-encoding.html"
>encoding</A >encoding</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-debugxml.html" HREF="libxml-debugxml.html"
>debugXML</A >debugXML</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-xmlmemory.html" HREF="libxml-xmlmemory.html"
>xmlmemory</A >xmlmemory</A
> &#8212; </DT > &#8212; </DT
></DL ></DL

File diff suppressed because it is too large Load Diff

View File

@@ -13,7 +13,7 @@ TITLE="Libxml Programming Notes"
HREF="libxml-notes.html"><LINK HREF="libxml-notes.html"><LINK
REL="NEXT" REL="NEXT"
TITLE="parser" TITLE="parser"
HREF="gnome-xml-parser.html"></HEAD HREF="libxml-parser.html"></HEAD
><BODY ><BODY
BGCOLOR="#FFFFFF" BGCOLOR="#FFFFFF"
TEXT="#000000" TEXT="#000000"
@@ -89,7 +89,7 @@ WIDTH="25%"
BGCOLOR="#C00000" BGCOLOR="#C00000"
ALIGN="right" ALIGN="right"
><A ><A
HREF="gnome-xml-parser.html" HREF="libxml-parser.html"
><FONT ><FONT
COLOR="#FFFFFF" COLOR="#FFFFFF"
SIZE="3" SIZE="3"
@@ -117,97 +117,97 @@ CLASS="TOC"
></DT ></DT
><DT ><DT
><A ><A
HREF="gnome-xml-parser.html" HREF="libxml-parser.html"
>parser</A >parser</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-sax.html" HREF="libxml-sax.html"
>SAX</A >SAX</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-tree.html" HREF="libxml-tree.html"
>tree</A >tree</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-entities.html" HREF="libxml-entities.html"
>entities</A >entities</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-valid.html" HREF="libxml-valid.html"
>valid</A >valid</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-uri.html" HREF="libxml-uri.html"
>uri</A >uri</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-htmlparser.html" HREF="libxml-htmlparser.html"
>HTMLparser</A >HTMLparser</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-htmltree.html" HREF="libxml-htmltree.html"
>HTMLtree</A >HTMLtree</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-xpath.html" HREF="libxml-xpath.html"
>xpath</A >xpath</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-xpathinternals.html" HREF="libxml-xpathinternals.html"
>xpathInternals</A >xpathInternals</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-xpointer.html" HREF="libxml-xpointer.html"
>xpointer</A >xpointer</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-xinclude.html" HREF="libxml-xinclude.html"
>xinclude</A >xinclude</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-nanohttp.html" HREF="libxml-nanohttp.html"
>nanohttp</A >nanohttp</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-nanoftp.html" HREF="libxml-nanoftp.html"
>nanoftp</A >nanoftp</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-xmlio.html" HREF="libxml-xmlio.html"
>xmlIO</A >xmlIO</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-parserinternals.html" HREF="libxml-parserinternals.html"
>parserInternals</A >parserInternals</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-encoding.html" HREF="libxml-encoding.html"
>encoding</A >encoding</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-debugxml.html" HREF="libxml-debugxml.html"
>debugXML</A >debugXML</A
> &#8212; </DT > &#8212; </DT
><DT ><DT
><A ><A
HREF="gnome-xml-xmlmemory.html" HREF="libxml-xmlmemory.html"
>xmlmemory</A >xmlmemory</A
> &#8212; </DT > &#8212; </DT
></DL ></DL
@@ -277,7 +277,7 @@ WIDTH="25%"
BGCOLOR="#C00000" BGCOLOR="#C00000"
ALIGN="right" ALIGN="right"
><A ><A
HREF="gnome-xml-parser.html" HREF="libxml-parser.html"
><FONT ><FONT
COLOR="#FFFFFF" COLOR="#FFFFFF"
SIZE="3" SIZE="3"