From 9705f1a5e858108d21a0128556f42b25d16833cd Mon Sep 17 00:00:00 2001 From: Mike Hommey Date: Thu, 28 Oct 2004 09:07:41 +0000 Subject: Load /tmp/tmp.SgII7T/libxml2-2.6.15 into packages/libxml2/branches/upstream/current. --- doc/html/libxml-xmlreader.html | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) (limited to 'doc/html/libxml-xmlreader.html') diff --git a/doc/html/libxml-xmlreader.html b/doc/html/libxml-xmlreader.html index 164d55c..0f3aa5f 100644 --- a/doc/html/libxml-xmlreader.html +++ b/doc/html/libxml-xmlreader.html @@ -37,6 +37,7 @@ The content of this structure is not made public by the API.
xmlChar *	xmlTextReaderBaseUri	(xmlTextReaderPtr reader)
int	xmlTextReaderClose		(xmlTextReaderPtr reader)
const xmlChar *	xmlTextReaderConstBaseUri	(xmlTextReaderPtr reader)
+
const xmlChar *	xmlTextReaderConstEncoding	(xmlTextReaderPtr reader)
const xmlChar *	xmlTextReaderConstLocalName	(xmlTextReaderPtr reader)
const xmlChar *	xmlTextReaderConstName	(xmlTextReaderPtr reader)
const xmlChar *	xmlTextReaderConstNamespaceUri	(xmlTextReaderPtr reader)
@@ -44,6 +45,7 @@ The content of this structure is not made public by the API.
const xmlChar *	xmlTextReaderConstString	(xmlTextReaderPtr reader, 
const xmlChar * str)
const xmlChar *	xmlTextReaderConstValue	(xmlTextReaderPtr reader)
const xmlChar *	xmlTextReaderConstXmlLang	(xmlTextReaderPtr reader)
+
const xmlChar *	xmlTextReaderConstXmlVersion	(xmlTextReaderPtr reader)
xmlDocPtr	xmlTextReaderCurrentDoc	(xmlTextReaderPtr reader)
xmlNodePtr	xmlTextReaderCurrentNode	(xmlTextReaderPtr reader)
int	xmlTextReaderDepth		(xmlTextReaderPtr reader)
@@ -61,6 +63,7 @@ void xmlTextReaderErrorFunc (void * arg,
int	xmlTextReaderHasValue		(xmlTextReaderPtr reader)
int	xmlTextReaderIsDefault		(xmlTextReaderPtr reader)
int	xmlTextReaderIsEmptyElement	(xmlTextReaderPtr reader)
+
int	xmlTextReaderIsNamespaceDecl	(xmlTextReaderPtr reader)
int	xmlTextReaderIsValid		(xmlTextReaderPtr reader)
xmlChar *	xmlTextReaderLocalName	(xmlTextReaderPtr reader)
xmlChar *	xmlTextReaderLocatorBaseURI	(xmlTextReaderLocatorPtr locator)
@@ -93,6 +96,7 @@ void xmlTextReaderErrorFunc (void * arg,
void	xmlTextReaderSetErrorHandler	(xmlTextReaderPtr reader, 
xmlTextReaderErrorFunc f,
void * arg)
int	xmlTextReaderSetParserProp	(xmlTextReaderPtr reader, 
int prop,
int value)
void	xmlTextReaderSetStructuredErrorHandler	(xmlTextReaderPtr reader, 
xmlStructuredErrorFunc f,
void * arg)
+
int	xmlTextReaderStandalone		(xmlTextReaderPtr reader)
xmlChar *	xmlTextReaderValue	(xmlTextReaderPtr reader)
xmlChar *	xmlTextReaderXmlLang	(xmlTextReaderPtr reader)

Description

@@ -176,7 +180,9 @@ The content of this structure is not made public by the API.

This method releases any resources allocated by the current instance changes the state to Closed and close any underlying input.

reader:the xmlTextReaderPtr used
Returns:0 or -1 in case of error

Function: xmlTextReaderConstBaseUri

const xmlChar *	xmlTextReaderConstBaseUri	(xmlTextReaderPtr reader)

The base URI of the node.

-
reader:the xmlTextReaderPtr used
Returns:the base URI or NULL if not available, the string will be deallocated with the reader

Function: xmlTextReaderConstLocalName

const xmlChar *	xmlTextReaderConstLocalName	(xmlTextReaderPtr reader)
+
reader:the xmlTextReaderPtr used
Returns:the base URI or NULL if not available, the string will be deallocated with the reader

Function: xmlTextReaderConstEncoding

const xmlChar *	xmlTextReaderConstEncoding	(xmlTextReaderPtr reader)
+

Determine the encoding of the document being read.

+
reader:the xmlTextReaderPtr used
Returns:a string containing the encoding of the document or NULL in case of error. The string is deallocated with the reader.

Function: xmlTextReaderConstLocalName

const xmlChar *	xmlTextReaderConstLocalName	(xmlTextReaderPtr reader)

The local name of the node.

reader:the xmlTextReaderPtr used
Returns:the local name or NULL if not available, the string will be deallocated with the reader.

Function: xmlTextReaderConstName

const xmlChar *	xmlTextReaderConstName	(xmlTextReaderPtr reader)

The qualified name of the node, equal to Prefix :LocalName.

@@ -190,7 +196,9 @@ The content of this structure is not made public by the API.

Provides the text value of the node if present

reader:the xmlTextReaderPtr used
Returns:the string or NULL if not available. The result will be deallocated on the next Read() operation.

Function: xmlTextReaderConstXmlLang

const xmlChar *	xmlTextReaderConstXmlLang	(xmlTextReaderPtr reader)

The xml:lang scope within which the node resides.

-
reader:the xmlTextReaderPtr used
Returns:the xml:lang value or NULL if none exists.

Function: xmlTextReaderCurrentDoc

xmlDocPtr	xmlTextReaderCurrentDoc	(xmlTextReaderPtr reader)
+
reader:the xmlTextReaderPtr used
Returns:the xml:lang value or NULL if none exists.

Function: xmlTextReaderConstXmlVersion

const xmlChar *	xmlTextReaderConstXmlVersion	(xmlTextReaderPtr reader)
+

Determine the XML version of the document being read.

+
reader:the xmlTextReaderPtr used
Returns:a string containing the XML version of the document or NULL in case of error. The string is deallocated with the reader.

Function: xmlTextReaderCurrentDoc

xmlDocPtr	xmlTextReaderCurrentDoc	(xmlTextReaderPtr reader)

Hacking interface allowing to get the xmlDocPtr correponding to the current document being accessed by the xmlTextReader. NOTE: as a result of this call, the reader will not destroy the associated XML document and calling xmlFreeDoc() on the result is needed once the reader parsing has finished.

reader:the xmlTextReaderPtr used
Returns:the xmlDocPtr or NULL in case of error.

Function: xmlTextReaderCurrentNode

xmlNodePtr	xmlTextReaderCurrentNode	(xmlTextReaderPtr reader)

Hacking interface allowing to get the xmlNodePtr correponding to the current node being accessed by the xmlTextReader. This is dangerous because the underlying node may be destroyed on the next Reads.

@@ -221,7 +229,9 @@ void xmlTextReaderErrorFunc (void * arg,
const char * msg,

Whether an Attribute node was generated from the default value defined in the DTD or schema.

reader:the xmlTextReaderPtr used
Returns:0 if not defaulted, 1 if defaulted, and -1 in case of error

Function: xmlTextReaderIsEmptyElement

int	xmlTextReaderIsEmptyElement	(xmlTextReaderPtr reader)

Check if the current node is empty

-
reader:the xmlTextReaderPtr used
Returns:1 if empty, 0 if not and -1 in case of error

Function: xmlTextReaderIsValid

int	xmlTextReaderIsValid		(xmlTextReaderPtr reader)
+
reader:the xmlTextReaderPtr used
Returns:1 if empty, 0 if not and -1 in case of error

Function: xmlTextReaderIsNamespaceDecl

int	xmlTextReaderIsNamespaceDecl	(xmlTextReaderPtr reader)
+

Determine whether the current node is a namespace declaration rather than a regular attribute.

+
reader:the xmlTextReaderPtr used
Returns:1 if the current node is a namespace declaration, 0 if it is a regular attribute or other type of node, or -1 in case of error.

Function: xmlTextReaderIsValid

int	xmlTextReaderIsValid		(xmlTextReaderPtr reader)

Retrieve the validity status from the parser context

reader:the xmlTextReaderPtr used
Returns:the flag value 1 if valid, 0 if no, and -1 in case of error

Function: xmlTextReaderLocalName

xmlChar *	xmlTextReaderLocalName	(xmlTextReaderPtr reader)

The local name of the node.

@@ -285,7 +295,9 @@ void xmlTextReaderErrorFunc (void * arg,
const char * msg,

Change the parser processing behaviour by changing some of its internal properties. Note that some properties can only be changed before any read has been done.

reader:the xmlTextReaderPtr used
prop:the xmlParserProperties to set
value:usually 0 or 1 to (de)activate it
Returns:0 if the call was successful, or -1 in case of error

Function: xmlTextReaderSetStructuredErrorHandler

void	xmlTextReaderSetStructuredErrorHandler	(xmlTextReaderPtr reader, 
xmlStructuredErrorFunc f,
void * arg)

Register a callback function that will be called on error and warnings. If @f is NULL, the default error and warning handlers are restored.

-
reader:the xmlTextReaderPtr used
f:the callback function to call on error and warnings
arg:a user argument to pass to the callback function

Function: xmlTextReaderValue

xmlChar *	xmlTextReaderValue	(xmlTextReaderPtr reader)
+
reader:the xmlTextReaderPtr used
f:the callback function to call on error and warnings
arg:a user argument to pass to the callback function

Function: xmlTextReaderStandalone

int	xmlTextReaderStandalone		(xmlTextReaderPtr reader)
+

Determine the standalone status of the document being read.

+
reader:the xmlTextReaderPtr used
Returns:1 if the document was declared to be standalone, 0 if it was declared to be not standalone, or -1 if the document did not specify its standalone status or in case of error.

Function: xmlTextReaderValue

xmlChar *	xmlTextReaderValue	(xmlTextReaderPtr reader)

Provides the text value of the node if present

reader:the xmlTextReaderPtr used
Returns:the string or NULL if not available. The result must be deallocated with xmlFree()

Function: xmlTextReaderXmlLang

xmlChar *	xmlTextReaderXmlLang	(xmlTextReaderPtr reader)

The xml:lang scope within which the node resides.

-- cgit v1.2.3