Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

libxslt(3) [redhat man page]

libxslt(3)						     Library Functions Manual							libxslt(3)

NAME
libxslt - library used to do XSL transformations on XML documents DESCRIPTION
The libxslt library is used to do XSL transformations on XML documents that have been loaded into memory with functions from libxml. FILES
/usr/lib/libxslt_1.0.0/libxslt.a static library /usr/lib/libxslt_1.0.0/libxslt.so sharable library /usr/package/libxslt_1.0.0/bin/xsltproc binary application to do XSL transformations on the command line AUTHORS
Daniel Veillard (daniel@veillard.com). If you download and install this package look at instructions on the Web site http://xml- soft.org/XSLT/ . Manual page by Heiko W. Rupp (hwr@pilhuhn.de) SEE ALSO
libexslt(3), libxml(3), xsltproc(1), xmllint(1) 30 August 2001 libxslt(3)

Check Out this Related Man Page

libxml(3)						     Library Functions Manual							 libxml(3)

NAME
libxml - library used to parse XML files DESCRIPTION
The libxml library is used to parse XML files. Its internal document repesentation is as close as possible to the DOM (Document Object Model) interface, an API for accessing XML or HTML structured documents. The libxml library also has a SAX-like interface, which is designed to be compatible with expat(1). NOTE: 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 expat library is a XML 1.0 parser written in C, which aims to be fully conforming. It is currently not a validating XML pro- cessor. The libxml library now includes a nearly complete XPath implementation. The XPath (XML Path Language) is a language for addressing parts of an XML document, designed to be used by both XSLT and XPointer. The libxml library exports Push and Pull type parser interfaces for both XML and html. FILES
/depot/lib/libxml_2.0.0/libxml.a static library /depot/lib/libxml_2.0.0/libxml.so shareable library /depot/package/libxml_2.0.0/bin/xmllint binary application for parsing XML files 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. SEE ALSO
xmllint(1), libxslt(3), libexslt(3), xsltproc(1) 12 April 2000 libxml(3)
Man Page

We Also Found This Discussion For You

1. Programming

How compile sample libxslt program?

What are the command I use to compile the sample program at the bottom of the page of http://xmlsoft.org/XSLT/tutorial/libxslttutorial.html? Here are my attempts: g++ -c libxslt_tutorial.cpp -I/usr/include/libxml2 g++ libxslt_tutorial.o -l xslt -l xml Here are the errors I get when I try... (1 Reply)
Discussion started by: siegfried
1 Replies