mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
Consolidate man pages
Move xml2-config.1 into doc directory. Remove outdated libxml.3.
This commit is contained in:
parent
41a1943057
commit
61b78b0aa6
@ -603,7 +603,7 @@ if(LIBXML2_WITH_PYTHON)
|
|||||||
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libxml2.py DESTINATION ${LIBXML2_PYTHON_INSTALL_DIR} COMPONENT runtime)
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libxml2.py DESTINATION ${LIBXML2_PYTHON_INSTALL_DIR} COMPONENT runtime)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
install(FILES libxml.3 DESTINATION ${CMAKE_INSTALL_MANDIR}/man3 COMPONENT documentation)
|
install(FILES doc/xml2-config.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1 COMPONENT documentation)
|
||||||
install(FILES doc/xmlcatalog.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1 COMPONENT documentation)
|
install(FILES doc/xmlcatalog.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1 COMPONENT documentation)
|
||||||
install(FILES doc/xmllint.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1 COMPONENT documentation)
|
install(FILES doc/xmllint.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1 COMPONENT documentation)
|
||||||
install(DIRECTORY doc/ DESTINATION ${CMAKE_INSTALL_DATADIR}/doc/libxml2 COMPONENT documentation PATTERN Makefile.* EXCLUDE)
|
install(DIRECTORY doc/ DESTINATION ${CMAKE_INSTALL_DATADIR}/doc/libxml2 COMPONENT documentation PATTERN Makefile.* EXCLUDE)
|
||||||
|
@ -58,8 +58,6 @@ DEPS = $(top_builddir)/libxml2.la
|
|||||||
LDADDS = $(top_builddir)/libxml2.la
|
LDADDS = $(top_builddir)/libxml2.la
|
||||||
|
|
||||||
|
|
||||||
man_MANS = xml2-config.1 libxml.3
|
|
||||||
|
|
||||||
m4datadir = $(datadir)/aclocal
|
m4datadir = $(datadir)/aclocal
|
||||||
m4data_DATA = libxml.m4
|
m4data_DATA = libxml.m4
|
||||||
|
|
||||||
@ -1250,7 +1248,7 @@ EXTRA_DIST = xml2-config.in xml2Conf.sh.in libxml.spec.in libxml2.spec \
|
|||||||
check-relaxng-test-suite.py check-relaxng-test-suite2.py \
|
check-relaxng-test-suite.py check-relaxng-test-suite2.py \
|
||||||
check-xsddata-test-suite.py check-xinclude-test-suite.py \
|
check-xsddata-test-suite.py check-xinclude-test-suite.py \
|
||||||
example/Makefile.am example/gjobread.c example/gjobs.xml \
|
example/Makefile.am example/gjobread.c example/gjobs.xml \
|
||||||
$(man_MANS) libxml-2.0.pc.in libxml-2.0-uninstalled.pc.in \
|
libxml-2.0.pc.in libxml-2.0-uninstalled.pc.in \
|
||||||
libxml2-config.cmake.in autogen.sh \
|
libxml2-config.cmake.in autogen.sh \
|
||||||
trionan.c trionan.h triostr.c triostr.h trio.c trio.h \
|
trionan.c trionan.h triostr.c triostr.h trio.c trio.h \
|
||||||
triop.h triodef.h libxml.h xzlib.h buf.h \
|
triop.h triodef.h libxml.h xzlib.h buf.h \
|
||||||
|
@ -54,7 +54,7 @@ nobase_dist_doc_DATA = \
|
|||||||
xmlcatalog.html \
|
xmlcatalog.html \
|
||||||
xmllint.html
|
xmllint.html
|
||||||
|
|
||||||
dist_man_MANS = xmllint.1 xmlcatalog.1
|
dist_man_MANS = xml2-config.1 xmllint.1 xmlcatalog.1
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
apibuild.py \
|
apibuild.py \
|
||||||
|
71
libxml.3
71
libxml.3
@ -1,71 +0,0 @@
|
|||||||
.TH libxml 3 "12 April 2000"
|
|
||||||
.SH NAME
|
|
||||||
libxml \- library used to parse XML files
|
|
||||||
.SH DESCRIPTION
|
|
||||||
The
|
|
||||||
.I libxml
|
|
||||||
library is used to parse XML files.
|
|
||||||
Its internal document representation is as close as possible to the
|
|
||||||
.I DOM
|
|
||||||
(Document Object Model) interface,
|
|
||||||
an API for accessing XML or HTML structured documents.
|
|
||||||
.LP
|
|
||||||
The
|
|
||||||
.I libxml
|
|
||||||
library also has a
|
|
||||||
.IR SAX -like
|
|
||||||
interface,
|
|
||||||
which is designed to be compatible with
|
|
||||||
.IR expat (1).
|
|
||||||
NOTE:
|
|
||||||
.IR SAX ,
|
|
||||||
the Simple API for XML,
|
|
||||||
is a standard interface for event-based XML parsing,
|
|
||||||
developed collaboratively by the members of the XML-DEV mailing list,
|
|
||||||
currently hosted by OASIS.
|
|
||||||
The
|
|
||||||
.I expat
|
|
||||||
library is a XML 1.0 parser written in C,
|
|
||||||
which aims to be fully conforming.
|
|
||||||
It is currently not a validating XML processor.
|
|
||||||
.LP
|
|
||||||
The
|
|
||||||
.I libxml
|
|
||||||
library now includes a nearly complete
|
|
||||||
.I XPath
|
|
||||||
implementation.
|
|
||||||
The
|
|
||||||
.I XPath
|
|
||||||
(XML Path Language) is a language for addressing parts of an
|
|
||||||
XML document,
|
|
||||||
designed to be used by both
|
|
||||||
.I XSLT
|
|
||||||
and
|
|
||||||
.IR XPointer .
|
|
||||||
.LP
|
|
||||||
The
|
|
||||||
.I libxml
|
|
||||||
library exports Push and Pull type parser interfaces for both XML and
|
|
||||||
.IR html .
|
|
||||||
.SH FILES
|
|
||||||
.TP 2.2i
|
|
||||||
.B /depot/lib/libxml_2.0.0/libxml.a
|
|
||||||
static library
|
|
||||||
.TP
|
|
||||||
.B /depot/lib/libxml_2.0.0/libxml.so
|
|
||||||
shared library
|
|
||||||
.TP
|
|
||||||
.B /depot/package/libxml_2.0.0/bin/xmllint
|
|
||||||
binary application for parsing XML files
|
|
||||||
.SH AUTHORS
|
|
||||||
Daniel Veillard (daniel@veillard.com).
|
|
||||||
Red Hat Inc.
|
|
||||||
Manual page by Ziying Sherwin (sherwin@nlm.nih.gov),
|
|
||||||
Lister Hill National Center for Biomedical Communications,
|
|
||||||
U.S. National Library of Medicine.
|
|
||||||
.SH SEE ALSO
|
|
||||||
.IR xmllint (1),
|
|
||||||
.IR libxslt (3),
|
|
||||||
.IR libexslt (3),
|
|
||||||
.IR xsltproc (1)
|
|
||||||
.\" end of manual page
|
|
@ -144,7 +144,6 @@ rm -fr %{buildroot}
|
|||||||
%doc NEWS README.md Copyright TODO
|
%doc NEWS README.md Copyright TODO
|
||||||
%doc %{_mandir}/man1/xmllint.1*
|
%doc %{_mandir}/man1/xmllint.1*
|
||||||
%doc %{_mandir}/man1/xmlcatalog.1*
|
%doc %{_mandir}/man1/xmlcatalog.1*
|
||||||
%doc %{_mandir}/man3/libxml.3*
|
|
||||||
|
|
||||||
%{_libdir}/lib*.so.*
|
%{_libdir}/lib*.so.*
|
||||||
%{_bindir}/xmllint
|
%{_bindir}/xmllint
|
||||||
|
Loading…
x
Reference in New Issue
Block a user