Gnome XSLT Library Reference Manual | |||
---|---|---|---|
<<< Previous Page | Home | Up | Next Page >>> |
int xmlXPathIsNodeType (const |
|
name: | |
prefix: | |
Returns : |
void xmlXPathBooleanFunction ( |
ctxt: | |
nargs: |
void xsltMessage (xsltTransformContextPtr ctxt, |
Process and xsl:message construct
ctxt: | an XSLT processing context |
node: | The current node |
inst: | The node containing the message instruction |
void xsltSetGenericErrorFunc (void *ctx, |
Function to reset the handler and the error context for out of context error messages. This simply means that handler will be called for subsequent error messages while not parsing nor validating. And ctx will be passed as first argument to handler One can simply force messages to be emitted to another FILE * than stderr by setting ctx to this file handle and handler to NULL.
ctx: | the new error handling context |
handler: | the new handler function |
void xsltSetGenericDebugFunc (void *ctx, |
Function to reset the handler and the error context for out of context error messages. This simply means that handler will be called for subsequent error messages while not parsing nor validating. And ctx will be passed as first argument to handler One can simply force messages to be emitted to another FILE * than stderr by setting ctx to this file handle and handler to NULL.
ctx: | the new error handling context |
handler: | the new handler function |
void xsltDocumentSortFunction ( |
reorder the current node list list accordingly to the document order
list: | the node set |
void xsltSortFunction ( |
reorder the current node list list accordingly to the values present in the array of results results
list: | the node set |
results: | the results |
descending: | direction of order |
number: | the type of the result |
int xsltSaveResultTo ( |
Save the result result obtained by applying the style stylesheet to an I/O output channel buf
buf: | an output buffer |
result: | the result xmlDocPtr |
style: | the stylesheet |
Returns : | the number of byte written or -1 in case of failure. |
int xsltSaveResultToFilename (const char *URI, |
Save the result result obtained by applying the style stylesheet to a file or URL URL
URI: | |
result: | the result xmlDocPtr |
style: | the stylesheet |
compression: | the compression factor (0 - 9 included) |
Returns : | the number of byte written or -1 in case of failure. |
int xsltSaveResultToFile ( |
Save the result result obtained by applying the style stylesheet to an open FILE * I/O. This does not close the FILE file
file: | a FILE * I/O |
result: | the result xmlDocPtr |
style: | the stylesheet |
Returns : | the number of byte written or -1 in case of failure. |
int xsltSaveResultToFd (int fd, |
Save the result result obtained by applying the style stylesheet to an open file descriptor This does not close the descriptor.
fd: | a file descriptor |
result: | the result xmlDocPtr |
style: | the stylesheet |
Returns : | the number of byte written or -1 in case of failure. |