|
ReactOS 0.4.16-dev-2208-g6350669
|


Go to the source code of this file.
Macros | |
| #define | XSLT_GET_IMPORT_PTR(res, style, name) |
| #define | XSLT_GET_IMPORT_INT(res, style, name) |
Functions | |
| XSLTPUBFUN int XSLTCALL | xsltParseStylesheetImport (xsltStylesheetPtr style, xmlNodePtr cur) |
| XSLTPUBFUN int XSLTCALL | xsltParseStylesheetInclude (xsltStylesheetPtr style, xmlNodePtr cur) |
| XSLTPUBFUN xsltStylesheetPtr XSLTCALL | xsltNextImport (xsltStylesheetPtr style) |
| XSLTPUBFUN int XSLTCALL | xsltNeedElemSpaceHandling (xsltTransformContextPtr ctxt) |
| XSLTPUBFUN int XSLTCALL | xsltFindElemSpaceHandling (xsltTransformContextPtr ctxt, xmlNodePtr node) |
| XSLTPUBFUN xsltTemplatePtr XSLTCALL | xsltFindTemplate (xsltTransformContextPtr ctxt, const xmlChar *name, const xmlChar *nameURI) |
XSLT_GET_IMPORT_INT:
A macro to import intergers from the stylesheet cascading order.
| XSLTPUBFUN int XSLTCALL xsltFindElemSpaceHandling | ( | xsltTransformContextPtr | ctxt, |
| xmlNodePtr | node | ||
| ) |
xsltFindElemSpaceHandling: @ctxt: an XSLT transformation context @node: an XML node
Find strip-space or preserve-space information for an element respect the import precedence or the wildcards
Returns 1 if space should be stripped, 0 if not, and 2 if everything should be CDTATA wrapped.
Definition at line 349 of file imports.c.
Referenced by xsltApplyStripSpaces().
| XSLTPUBFUN xsltTemplatePtr XSLTCALL xsltFindTemplate | ( | xsltTransformContextPtr | ctxt, |
| const xmlChar * | name, | ||
| const xmlChar * | nameURI | ||
| ) |
Definition at line 403 of file imports.c.
Referenced by xsltCallTemplate().
| XSLTPUBFUN int XSLTCALL xsltNeedElemSpaceHandling | ( | xsltTransformContextPtr | ctxt | ) |
xsltNeedElemSpaceHandling: @ctxt: an XSLT transformation context
Checks whether that stylesheet requires white-space stripping
Returns 1 if space should be stripped, 0 if not
Definition at line 322 of file imports.c.
Referenced by xsltApplyStylesheetInternal(), and xsltLoadDocument().
| XSLTPUBFUN xsltStylesheetPtr XSLTCALL xsltNextImport | ( | xsltStylesheetPtr | cur | ) |
xsltNextImport: @cur: the current XSLT stylesheet
Find the next stylesheet in import precedence.
Returns the next stylesheet or NULL if it was the last one
Definition at line 297 of file imports.c.
Referenced by xsltApplySequenceConstructor(), xsltCountKeys(), xsltDecimalFormatGetByName(), xsltDecimalFormatGetByQName(), xsltEvalGlobalVariables(), xsltFindElemSpaceHandling(), xsltFindTemplate(), xsltGetNamespace(), xsltGetTemplate(), xsltInitAllDocKeys(), xsltInitCtxtExts(), xsltInitCtxtKeys(), xsltInitDocKeyTable(), xsltNeedElemSpaceHandling(), xsltProcessUserParamInternal(), xsltResolveAttrSet(), xsltResolveStylesheetAttributeSet(), and xsltResolveUseAttrSets().
| XSLTPUBFUN int XSLTCALL xsltParseStylesheetImport | ( | xsltStylesheetPtr | style, |
| xmlNodePtr | cur | ||
| ) |
xsltParseStylesheetImport: @style: the XSLT stylesheet @cur: the import element
parse an XSLT stylesheet import element
Returns 0 in case of success -1 in case of failure.
Definition at line 116 of file imports.c.
Referenced by xsltParseStylesheetTop().
| XSLTPUBFUN int XSLTCALL xsltParseStylesheetInclude | ( | xsltStylesheetPtr | style, |
| xmlNodePtr | cur | ||
| ) |
xsltParseStylesheetInclude: @style: the XSLT stylesheet @cur: the include node
parse an XSLT stylesheet include element
Returns 0 in case of success -1 in case of failure
Definition at line 205 of file imports.c.
Referenced by xsltParseStylesheetTop().