| 
    Eneboo - Documentación para desarrolladores 
   | 
 
#include <libxml/xpath.h>#include <libxml/xpathInternals.h>#include "xsltexports.h"#include "xsltInternals.h"Ir al código fuente de este archivo.
'defines' | |
| #define | XSLT_REGISTER_FUNCTION_LOOKUP(ctxt) | 
Funciones | |
| XSLTPUBFUN xmlXPathFunction  XSLTCALL  | xsltXPathFunctionLookup (xmlXPathContextPtr ctxt, const xmlChar *name, const xmlChar *ns_uri) | 
| XSLTPUBFUN void XSLTCALL | xsltDocumentFunction (xmlXPathParserContextPtr ctxt, int nargs) | 
| XSLTPUBFUN void XSLTCALL | xsltKeyFunction (xmlXPathParserContextPtr ctxt, int nargs) | 
| XSLTPUBFUN void XSLTCALL | xsltUnparsedEntityURIFunction (xmlXPathParserContextPtr ctxt, int nargs) | 
| XSLTPUBFUN void XSLTCALL | xsltFormatNumberFunction (xmlXPathParserContextPtr ctxt, int nargs) | 
| XSLTPUBFUN void XSLTCALL | xsltGenerateIdFunction (xmlXPathParserContextPtr ctxt, int nargs) | 
| XSLTPUBFUN void XSLTCALL | xsltSystemPropertyFunction (xmlXPathParserContextPtr ctxt, int nargs) | 
| XSLTPUBFUN void XSLTCALL | xsltElementAvailableFunction (xmlXPathParserContextPtr ctxt, int nargs) | 
| XSLTPUBFUN void XSLTCALL | xsltFunctionAvailableFunction (xmlXPathParserContextPtr ctxt, int nargs) | 
| XSLTPUBFUN void XSLTCALL | xsltRegisterAllFunctions (xmlXPathContextPtr ctxt) | 
| #define XSLT_REGISTER_FUNCTION_LOOKUP | ( | ctxt | ) | 
xmlXPathRegisterFuncLookup((ctxt)->xpathCtxt,           \
        (xmlXPathFuncLookupFunc) xsltXPathFunctionLookup,       \
        (void *)(ctxt->xpathCtxt));
XSLT_REGISTER_FUNCTION_LOOKUP:
Registering macro, not general purpose at all but used in different modules.
| XSLTPUBFUN void XSLTCALL xsltDocumentFunction | ( | xmlXPathParserContextPtr | ctxt, | 
| int | nargs | ||
| ) | 
xsltDocumentFunction: : the XPath Parser context : the number of arguments
Implement the document() XSLT function node-set document(object, node-set?)
| XSLTPUBFUN void XSLTCALL xsltElementAvailableFunction | ( | xmlXPathParserContextPtr | ctxt, | 
| int | nargs | ||
| ) | 
xsltElementAvailableFunction: : the XPath Parser context : the number of arguments
Implement the element-available() XSLT function boolean element-available(string)
| XSLTPUBFUN void XSLTCALL xsltFormatNumberFunction | ( | xmlXPathParserContextPtr | ctxt, | 
| int | nargs | ||
| ) | 
xsltFormatNumberFunction: : the XPath Parser context : the number of arguments
Implement the format-number() XSLT function string format-number(number, string, string?)
| XSLTPUBFUN void XSLTCALL xsltFunctionAvailableFunction | ( | xmlXPathParserContextPtr | ctxt, | 
| int | nargs | ||
| ) | 
xsltFunctionAvailableFunction: : the XPath Parser context : the number of arguments
Implement the function-available() XSLT function boolean function-available(string)
| XSLTPUBFUN void XSLTCALL xsltGenerateIdFunction | ( | xmlXPathParserContextPtr | ctxt, | 
| int | nargs | ||
| ) | 
xsltGenerateIdFunction: : the XPath Parser context : the number of arguments
Implement the generate-id() XSLT function string generate-id(node-set?)
| XSLTPUBFUN void XSLTCALL xsltKeyFunction | ( | xmlXPathParserContextPtr | ctxt, | 
| int | nargs | ||
| ) | 
| XSLTPUBFUN void XSLTCALL xsltRegisterAllFunctions | ( | xmlXPathContextPtr | ctxt | ) | 
xsltRegisterAllFunctions: : the XPath context
Registers all default XSLT functions in this context
| XSLTPUBFUN void XSLTCALL xsltSystemPropertyFunction | ( | xmlXPathParserContextPtr | ctxt, | 
| int | nargs | ||
| ) | 
xsltSystemPropertyFunction: : the XPath Parser context : the number of arguments
Implement the system-property() XSLT function object system-property(string)
| XSLTPUBFUN void XSLTCALL xsltUnparsedEntityURIFunction | ( | xmlXPathParserContextPtr | ctxt, | 
| int | nargs | ||
| ) | 
xsltUnparsedEntityURIFunction: : the XPath Parser context : the number of arguments
Implement the unparsed-entity-uri() XSLT function string unparsed-entity-uri(string)
 1.7.4