mirror of
https://github.com/reactos/reactos.git
synced 2025-07-04 02:41:21 +00:00
[LIBXSLT]
- Trim trailing whitespace. Remove spaces before tabs. No code changes. svn path=/trunk/; revision=58297
This commit is contained in:
parent
61979ebc0f
commit
e53c550e55
34 changed files with 1024 additions and 1024 deletions
2
reactos/dll/3rdparty/libxslt/attrvt.c
vendored
2
reactos/dll/3rdparty/libxslt/attrvt.c
vendored
|
@ -147,7 +147,7 @@ static xsltAttrVTPtr
|
||||||
xsltSetAttrVTsegment(xsltAttrVTPtr avt, void *val) {
|
xsltSetAttrVTsegment(xsltAttrVTPtr avt, void *val) {
|
||||||
if (avt->nb_seg >= avt->max_seg) {
|
if (avt->nb_seg >= avt->max_seg) {
|
||||||
avt = (xsltAttrVTPtr) xmlRealloc(avt, sizeof(xsltAttrVT) +
|
avt = (xsltAttrVTPtr) xmlRealloc(avt, sizeof(xsltAttrVT) +
|
||||||
avt->max_seg * sizeof(void *));
|
avt->max_seg * sizeof(void *));
|
||||||
if (avt == NULL) {
|
if (avt == NULL) {
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
6
reactos/dll/3rdparty/libxslt/documents.c
vendored
6
reactos/dll/3rdparty/libxslt/documents.c
vendored
|
@ -36,9 +36,9 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* *
|
* *
|
||||||
* Hooks for the document loader *
|
* Hooks for the document loader *
|
||||||
* *
|
* *
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
12
reactos/dll/3rdparty/libxslt/documents.h
vendored
12
reactos/dll/3rdparty/libxslt/documents.h
vendored
|
@ -24,22 +24,22 @@ XSLTPUBFUN xsltDocumentPtr XSLTCALL
|
||||||
xsltNewDocument (xsltTransformContextPtr ctxt,
|
xsltNewDocument (xsltTransformContextPtr ctxt,
|
||||||
xmlDocPtr doc);
|
xmlDocPtr doc);
|
||||||
XSLTPUBFUN xsltDocumentPtr XSLTCALL
|
XSLTPUBFUN xsltDocumentPtr XSLTCALL
|
||||||
xsltLoadDocument (xsltTransformContextPtr ctxt,
|
xsltLoadDocument (xsltTransformContextPtr ctxt,
|
||||||
const xmlChar *URI);
|
const xmlChar *URI);
|
||||||
XSLTPUBFUN xsltDocumentPtr XSLTCALL
|
XSLTPUBFUN xsltDocumentPtr XSLTCALL
|
||||||
xsltFindDocument (xsltTransformContextPtr ctxt,
|
xsltFindDocument (xsltTransformContextPtr ctxt,
|
||||||
xmlDocPtr doc);
|
xmlDocPtr doc);
|
||||||
XSLTPUBFUN void XSLTCALL
|
XSLTPUBFUN void XSLTCALL
|
||||||
xsltFreeDocuments (xsltTransformContextPtr ctxt);
|
xsltFreeDocuments (xsltTransformContextPtr ctxt);
|
||||||
|
|
||||||
XSLTPUBFUN xsltDocumentPtr XSLTCALL
|
XSLTPUBFUN xsltDocumentPtr XSLTCALL
|
||||||
xsltLoadStyleDocument (xsltStylesheetPtr style,
|
xsltLoadStyleDocument (xsltStylesheetPtr style,
|
||||||
const xmlChar *URI);
|
const xmlChar *URI);
|
||||||
XSLTPUBFUN xsltDocumentPtr XSLTCALL
|
XSLTPUBFUN xsltDocumentPtr XSLTCALL
|
||||||
xsltNewStyleDocument (xsltStylesheetPtr style,
|
xsltNewStyleDocument (xsltStylesheetPtr style,
|
||||||
xmlDocPtr doc);
|
xmlDocPtr doc);
|
||||||
XSLTPUBFUN void XSLTCALL
|
XSLTPUBFUN void XSLTCALL
|
||||||
xsltFreeStyleDocuments (xsltStylesheetPtr style);
|
xsltFreeStyleDocuments (xsltStylesheetPtr style);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Hooks for document loading
|
* Hooks for document loading
|
||||||
|
|
36
reactos/dll/3rdparty/libxslt/extensions.c
vendored
36
reactos/dll/3rdparty/libxslt/extensions.c
vendored
|
@ -44,9 +44,9 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* *
|
* *
|
||||||
* Private Types and Globals *
|
* Private Types and Globals *
|
||||||
* *
|
* *
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
|
||||||
typedef struct _xsltExtDef xsltExtDef;
|
typedef struct _xsltExtDef xsltExtDef;
|
||||||
|
@ -89,9 +89,9 @@ static xmlHashTablePtr xsltModuleHash = NULL;
|
||||||
static xmlMutexPtr xsltExtMutex = NULL;
|
static xmlMutexPtr xsltExtMutex = NULL;
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* *
|
* *
|
||||||
* Type functions *
|
* Type functions *
|
||||||
* *
|
* *
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -463,9 +463,9 @@ xsltExtModuleRegisterDynamic(const xmlChar * URI ATTRIBUTE_UNUSED)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* *
|
* *
|
||||||
* The stylesheet extension prefixes handling *
|
* The stylesheet extension prefixes handling *
|
||||||
* *
|
* *
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
|
||||||
|
|
||||||
|
@ -567,9 +567,9 @@ xsltRegisterExtPrefix(xsltStylesheetPtr style,
|
||||||
}
|
}
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* *
|
* *
|
||||||
* The extensions modules interfaces *
|
* The extensions modules interfaces *
|
||||||
* *
|
* *
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1950,15 +1950,15 @@ xsltGetExtInfo(xsltStylesheetPtr style, const xmlChar * URI)
|
||||||
}
|
}
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* *
|
* *
|
||||||
* Test module http://xmlsoft.org/XSLT/ *
|
* Test module http://xmlsoft.org/XSLT/ *
|
||||||
* *
|
* *
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* *
|
* *
|
||||||
* Test of the extension module API *
|
* Test of the extension module API *
|
||||||
* *
|
* *
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
|
||||||
static xmlChar *testData = NULL;
|
static xmlChar *testData = NULL;
|
||||||
|
|
12
reactos/dll/3rdparty/libxslt/extra.c
vendored
12
reactos/dll/3rdparty/libxslt/extra.c
vendored
|
@ -40,9 +40,9 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* *
|
* *
|
||||||
* Handling of XSLT debugging *
|
* Handling of XSLT debugging *
|
||||||
* *
|
* *
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -112,9 +112,9 @@ xsltDebug(xsltTransformContextPtr ctxt, xmlNodePtr node ATTRIBUTE_UNUSED,
|
||||||
}
|
}
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* *
|
* *
|
||||||
* Classic extensions as described by M. Kay *
|
* Classic extensions as described by M. Kay *
|
||||||
* *
|
* *
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
6
reactos/dll/3rdparty/libxslt/functions.c
vendored
6
reactos/dll/3rdparty/libxslt/functions.c
vendored
|
@ -941,9 +941,9 @@ xsltCurrentFunction(xmlXPathParserContextPtr ctxt, int nargs){
|
||||||
}
|
}
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* *
|
* *
|
||||||
* Registration of XSLT and libxslt functions *
|
* Registration of XSLT and libxslt functions *
|
||||||
* *
|
* *
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
16
reactos/dll/3rdparty/libxslt/keys.c
vendored
16
reactos/dll/3rdparty/libxslt/keys.c
vendored
|
@ -37,9 +37,9 @@ xsltInitDocKeyTable(xsltTransformContextPtr ctxt, const xmlChar *name,
|
||||||
const xmlChar *nameURI);
|
const xmlChar *nameURI);
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* *
|
* *
|
||||||
* Type functions *
|
* Type functions *
|
||||||
* *
|
* *
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -182,9 +182,9 @@ xsltFreeKeyTableList(xsltKeyTablePtr keyt) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* *
|
* *
|
||||||
* The interpreter for the precompiled patterns *
|
* The interpreter for the precompiled patterns *
|
||||||
* *
|
* *
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
|
||||||
|
|
||||||
|
@ -311,8 +311,8 @@ xsltAddKey(xsltStylesheetPtr style, const xmlChar *name,
|
||||||
end = skipPredicate(match, end);
|
end = skipPredicate(match, end);
|
||||||
if (end <= 0) {
|
if (end <= 0) {
|
||||||
xsltTransformError(NULL, style, inst,
|
xsltTransformError(NULL, style, inst,
|
||||||
"key pattern is malformed: %s",
|
"key pattern is malformed: %s",
|
||||||
key->match);
|
key->match);
|
||||||
if (style != NULL) style->errors++;
|
if (style != NULL) style->errors++;
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
2
reactos/dll/3rdparty/libxslt/namespaces.c
vendored
2
reactos/dll/3rdparty/libxslt/namespaces.c
vendored
|
@ -759,7 +759,7 @@ xsltCopyNamespaceList(xsltTransformContextPtr ctxt, xmlNodePtr node,
|
||||||
if (node != NULL) {
|
if (node != NULL) {
|
||||||
if ((node->ns != NULL) &&
|
if ((node->ns != NULL) &&
|
||||||
(xmlStrEqual(node->ns->prefix, cur->prefix)) &&
|
(xmlStrEqual(node->ns->prefix, cur->prefix)) &&
|
||||||
(xmlStrEqual(node->ns->href, cur->href))) {
|
(xmlStrEqual(node->ns->href, cur->href))) {
|
||||||
cur = cur->next;
|
cur = cur->next;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
12
reactos/dll/3rdparty/libxslt/numbers.c
vendored
12
reactos/dll/3rdparty/libxslt/numbers.c
vendored
|
@ -337,7 +337,7 @@ xsltNumberFormatTokenize(const xmlChar *format,
|
||||||
* There is always such a token in the list, even if NULL
|
* There is always such a token in the list, even if NULL
|
||||||
*/
|
*/
|
||||||
while (! (IS_LETTER(val=xmlStringCurrentChar(NULL, format+ix, &len)) ||
|
while (! (IS_LETTER(val=xmlStringCurrentChar(NULL, format+ix, &len)) ||
|
||||||
IS_DIGIT(val)) ) {
|
IS_DIGIT(val)) ) {
|
||||||
if (format[ix] == 0) /* if end of format string */
|
if (format[ix] == 0) /* if end of format string */
|
||||||
break; /* while */
|
break; /* while */
|
||||||
ix += len;
|
ix += len;
|
||||||
|
@ -1180,7 +1180,7 @@ xsltFormatNumberConversion(xsltDecimalFormatPtr self,
|
||||||
/* First do the -ve prefix */
|
/* First do the -ve prefix */
|
||||||
nprefix = the_format;
|
nprefix = the_format;
|
||||||
nprefix_length = xsltFormatNumberPreSuffix(self,
|
nprefix_length = xsltFormatNumberPreSuffix(self,
|
||||||
&the_format, &format_info);
|
&the_format, &format_info);
|
||||||
if (nprefix_length<0) {
|
if (nprefix_length<0) {
|
||||||
found_error = 1;
|
found_error = 1;
|
||||||
goto OUTPUT_NUMBER;
|
goto OUTPUT_NUMBER;
|
||||||
|
@ -1232,12 +1232,12 @@ xsltFormatNumberConversion(xsltDecimalFormatPtr self,
|
||||||
* if -ve prefix/suffix == +ve ones, discard & use default
|
* if -ve prefix/suffix == +ve ones, discard & use default
|
||||||
*/
|
*/
|
||||||
if ((nprefix_length != prefix_length) ||
|
if ((nprefix_length != prefix_length) ||
|
||||||
(nsuffix_length != suffix_length) ||
|
(nsuffix_length != suffix_length) ||
|
||||||
((nprefix_length > 0) &&
|
((nprefix_length > 0) &&
|
||||||
(xmlStrncmp(nprefix, prefix, prefix_length) !=0 )) ||
|
(xmlStrncmp(nprefix, prefix, prefix_length) !=0 )) ||
|
||||||
((nsuffix_length > 0) &&
|
((nsuffix_length > 0) &&
|
||||||
(xmlStrncmp(nsuffix, suffix, suffix_length) !=0 ))) {
|
(xmlStrncmp(nsuffix, suffix, suffix_length) !=0 ))) {
|
||||||
prefix = nprefix;
|
prefix = nprefix;
|
||||||
prefix_length = nprefix_length;
|
prefix_length = nprefix_length;
|
||||||
suffix = nsuffix;
|
suffix = nsuffix;
|
||||||
suffix_length = nsuffix_length;
|
suffix_length = nsuffix_length;
|
||||||
|
@ -1315,13 +1315,13 @@ OUTPUT_NUMBER:
|
||||||
if (format_info.frac_digits + format_info.frac_hash == 0) {
|
if (format_info.frac_digits + format_info.frac_hash == 0) {
|
||||||
if (format_info.add_decimal)
|
if (format_info.add_decimal)
|
||||||
xmlBufferAdd(buffer, self->decimalPoint,
|
xmlBufferAdd(buffer, self->decimalPoint,
|
||||||
xsltUTF8Size(self->decimalPoint));
|
xsltUTF8Size(self->decimalPoint));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
number -= floor(number);
|
number -= floor(number);
|
||||||
if ((number != 0) || (format_info.frac_digits != 0)) {
|
if ((number != 0) || (format_info.frac_digits != 0)) {
|
||||||
xmlBufferAdd(buffer, self->decimalPoint,
|
xmlBufferAdd(buffer, self->decimalPoint,
|
||||||
xsltUTF8Size(self->decimalPoint));
|
xsltUTF8Size(self->decimalPoint));
|
||||||
number = floor(scale * number + 0.5);
|
number = floor(scale * number + 0.5);
|
||||||
for (j = format_info.frac_hash; j > 0; j--) {
|
for (j = format_info.frac_hash; j > 0; j--) {
|
||||||
if (fmod(number, 10.0) >= 1.0)
|
if (fmod(number, 10.0) >= 1.0)
|
||||||
|
|
24
reactos/dll/3rdparty/libxslt/pattern.c
vendored
24
reactos/dll/3rdparty/libxslt/pattern.c
vendored
|
@ -127,9 +127,9 @@ struct _xsltParserContext {
|
||||||
};
|
};
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* *
|
* *
|
||||||
* Type functions *
|
* Type functions *
|
||||||
* *
|
* *
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -469,9 +469,9 @@ xsltReverseCompMatch(xsltParserContextPtr ctxt, xsltCompMatchPtr comp) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* *
|
* *
|
||||||
* The interpreter for the precompiled patterns *
|
* The interpreter for the precompiled patterns *
|
||||||
* *
|
* *
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
|
||||||
static int
|
static int
|
||||||
|
@ -863,7 +863,7 @@ restart:
|
||||||
xmlFree(states.states);
|
xmlFree(states.states);
|
||||||
}
|
}
|
||||||
return(xsltTestCompMatchDirect(ctxt, comp, node,
|
return(xsltTestCompMatchDirect(ctxt, comp, node,
|
||||||
comp->nsList, comp->nsNr));
|
comp->nsList, comp->nsNr));
|
||||||
}
|
}
|
||||||
|
|
||||||
doc = node->doc;
|
doc = node->doc;
|
||||||
|
@ -939,7 +939,7 @@ restart:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (sibling != NULL) {
|
if (sibling != NULL) {
|
||||||
pos = ix + indx;
|
pos = ix + indx;
|
||||||
/*
|
/*
|
||||||
* If the node is in a Value Tree we need to
|
* If the node is in a Value Tree we need to
|
||||||
* save len, but cannot cache the node!
|
* save len, but cannot cache the node!
|
||||||
|
@ -1227,17 +1227,17 @@ xsltTestCompMatchList(xsltTransformContextPtr ctxt, xmlNodePtr node,
|
||||||
#define NXT(val) ctxt->cur[(val)]
|
#define NXT(val) ctxt->cur[(val)]
|
||||||
#define CUR_PTR ctxt->cur
|
#define CUR_PTR ctxt->cur
|
||||||
|
|
||||||
#define SKIP_BLANKS \
|
#define SKIP_BLANKS \
|
||||||
while (IS_BLANK_CH(CUR)) NEXT
|
while (IS_BLANK_CH(CUR)) NEXT
|
||||||
|
|
||||||
#define CURRENT (*ctxt->cur)
|
#define CURRENT (*ctxt->cur)
|
||||||
#define NEXT ((*ctxt->cur) ? ctxt->cur++: ctxt->cur)
|
#define NEXT ((*ctxt->cur) ? ctxt->cur++: ctxt->cur)
|
||||||
|
|
||||||
|
|
||||||
#define PUSH(op, val, val2, novar) \
|
#define PUSH(op, val, val2, novar) \
|
||||||
if (xsltCompMatchAdd(ctxt, ctxt->comp, (op), (val), (val2), (novar))) goto error;
|
if (xsltCompMatchAdd(ctxt, ctxt->comp, (op), (val), (val2), (novar))) goto error;
|
||||||
|
|
||||||
#define SWAP() \
|
#define SWAP() \
|
||||||
xsltSwapTopCompMatch(ctxt->comp);
|
xsltSwapTopCompMatch(ctxt->comp);
|
||||||
|
|
||||||
#define XSLT_ERROR(X) \
|
#define XSLT_ERROR(X) \
|
||||||
|
@ -2040,7 +2040,7 @@ xsltAddTemplate(xsltStylesheetPtr style, xsltTemplatePtr cur,
|
||||||
pat = xsltCompilePatternInternal(cur->match, style->doc, cur->elem,
|
pat = xsltCompilePatternInternal(cur->match, style->doc, cur->elem,
|
||||||
style, NULL, 1);
|
style, NULL, 1);
|
||||||
if (pat == NULL)
|
if (pat == NULL)
|
||||||
return(-1);
|
return(-1);
|
||||||
while (pat) {
|
while (pat) {
|
||||||
next = pat->next;
|
next = pat->next;
|
||||||
pat->next = NULL;
|
pat->next = NULL;
|
||||||
|
|
4
reactos/dll/3rdparty/libxslt/templates.c
vendored
4
reactos/dll/3rdparty/libxslt/templates.c
vendored
|
@ -581,11 +581,11 @@ xsltAttrTemplateProcess(xsltTransformContextPtr ctxt, xmlNodePtr target,
|
||||||
} else {
|
} else {
|
||||||
if (attr->ns) {
|
if (attr->ns) {
|
||||||
xsltTransformError(ctxt, NULL, attr->parent,
|
xsltTransformError(ctxt, NULL, attr->parent,
|
||||||
"Internal error: Failed to create attribute '{%s}%s'.\n",
|
"Internal error: Failed to create attribute '{%s}%s'.\n",
|
||||||
attr->ns->href, attr->name);
|
attr->ns->href, attr->name);
|
||||||
} else {
|
} else {
|
||||||
xsltTransformError(ctxt, NULL, attr->parent,
|
xsltTransformError(ctxt, NULL, attr->parent,
|
||||||
"Internal error: Failed to create attribute '%s'.\n",
|
"Internal error: Failed to create attribute '%s'.\n",
|
||||||
attr->name);
|
attr->name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
6
reactos/dll/3rdparty/libxslt/variables.c
vendored
6
reactos/dll/3rdparty/libxslt/variables.c
vendored
|
@ -1624,7 +1624,7 @@ xsltEvalUserParams(xsltTransformContextPtr ctxt, const char **params) {
|
||||||
while (params[indx] != NULL) {
|
while (params[indx] != NULL) {
|
||||||
name = (const xmlChar *) params[indx++];
|
name = (const xmlChar *) params[indx++];
|
||||||
value = (const xmlChar *) params[indx++];
|
value = (const xmlChar *) params[indx++];
|
||||||
if (xsltEvalOneUserParam(ctxt, name, value) != 0)
|
if (xsltEvalOneUserParam(ctxt, name, value) != 0)
|
||||||
return(-1);
|
return(-1);
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -1654,7 +1654,7 @@ xsltQuoteUserParams(xsltTransformContextPtr ctxt, const char **params) {
|
||||||
while (params[indx] != NULL) {
|
while (params[indx] != NULL) {
|
||||||
name = (const xmlChar *) params[indx++];
|
name = (const xmlChar *) params[indx++];
|
||||||
value = (const xmlChar *) params[indx++];
|
value = (const xmlChar *) params[indx++];
|
||||||
if (xsltQuoteOneUserParam(ctxt, name, value) != 0)
|
if (xsltQuoteOneUserParam(ctxt, name, value) != 0)
|
||||||
return(-1);
|
return(-1);
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -1680,7 +1680,7 @@ xsltQuoteUserParams(xsltTransformContextPtr ctxt, const char **params) {
|
||||||
|
|
||||||
int
|
int
|
||||||
xsltEvalOneUserParam(xsltTransformContextPtr ctxt,
|
xsltEvalOneUserParam(xsltTransformContextPtr ctxt,
|
||||||
const xmlChar * name,
|
const xmlChar * name,
|
||||||
const xmlChar * value) {
|
const xmlChar * value) {
|
||||||
return xsltProcessUserParamInternal(ctxt, name, value,
|
return xsltProcessUserParamInternal(ctxt, name, value,
|
||||||
1 /* xpath eval ? */);
|
1 /* xpath eval ? */);
|
||||||
|
|
20
reactos/dll/3rdparty/libxslt/variables.h
vendored
20
reactos/dll/3rdparty/libxslt/variables.h
vendored
|
@ -44,37 +44,37 @@ XSLTPUBFUN int XSLTCALL
|
||||||
xsltEvalUserParams (xsltTransformContextPtr ctxt,
|
xsltEvalUserParams (xsltTransformContextPtr ctxt,
|
||||||
const char **params);
|
const char **params);
|
||||||
XSLTPUBFUN int XSLTCALL
|
XSLTPUBFUN int XSLTCALL
|
||||||
xsltQuoteUserParams (xsltTransformContextPtr ctxt,
|
xsltQuoteUserParams (xsltTransformContextPtr ctxt,
|
||||||
const char **params);
|
const char **params);
|
||||||
XSLTPUBFUN int XSLTCALL
|
XSLTPUBFUN int XSLTCALL
|
||||||
xsltEvalOneUserParam (xsltTransformContextPtr ctxt,
|
xsltEvalOneUserParam (xsltTransformContextPtr ctxt,
|
||||||
const xmlChar * name,
|
const xmlChar * name,
|
||||||
const xmlChar * value);
|
const xmlChar * value);
|
||||||
XSLTPUBFUN int XSLTCALL
|
XSLTPUBFUN int XSLTCALL
|
||||||
xsltQuoteOneUserParam (xsltTransformContextPtr ctxt,
|
xsltQuoteOneUserParam (xsltTransformContextPtr ctxt,
|
||||||
const xmlChar * name,
|
const xmlChar * name,
|
||||||
const xmlChar * value);
|
const xmlChar * value);
|
||||||
|
|
||||||
XSLTPUBFUN void XSLTCALL
|
XSLTPUBFUN void XSLTCALL
|
||||||
xsltParseGlobalVariable (xsltStylesheetPtr style,
|
xsltParseGlobalVariable (xsltStylesheetPtr style,
|
||||||
xmlNodePtr cur);
|
xmlNodePtr cur);
|
||||||
XSLTPUBFUN void XSLTCALL
|
XSLTPUBFUN void XSLTCALL
|
||||||
xsltParseGlobalParam (xsltStylesheetPtr style,
|
xsltParseGlobalParam (xsltStylesheetPtr style,
|
||||||
xmlNodePtr cur);
|
xmlNodePtr cur);
|
||||||
XSLTPUBFUN void XSLTCALL
|
XSLTPUBFUN void XSLTCALL
|
||||||
xsltParseStylesheetVariable (xsltTransformContextPtr ctxt,
|
xsltParseStylesheetVariable (xsltTransformContextPtr ctxt,
|
||||||
xmlNodePtr cur);
|
xmlNodePtr cur);
|
||||||
XSLTPUBFUN void XSLTCALL
|
XSLTPUBFUN void XSLTCALL
|
||||||
xsltParseStylesheetParam (xsltTransformContextPtr ctxt,
|
xsltParseStylesheetParam (xsltTransformContextPtr ctxt,
|
||||||
xmlNodePtr cur);
|
xmlNodePtr cur);
|
||||||
XSLTPUBFUN xsltStackElemPtr XSLTCALL
|
XSLTPUBFUN xsltStackElemPtr XSLTCALL
|
||||||
xsltParseStylesheetCallerParam (xsltTransformContextPtr ctxt,
|
xsltParseStylesheetCallerParam (xsltTransformContextPtr ctxt,
|
||||||
xmlNodePtr cur);
|
xmlNodePtr cur);
|
||||||
XSLTPUBFUN int XSLTCALL
|
XSLTPUBFUN int XSLTCALL
|
||||||
xsltAddStackElemList (xsltTransformContextPtr ctxt,
|
xsltAddStackElemList (xsltTransformContextPtr ctxt,
|
||||||
xsltStackElemPtr elems);
|
xsltStackElemPtr elems);
|
||||||
XSLTPUBFUN void XSLTCALL
|
XSLTPUBFUN void XSLTCALL
|
||||||
xsltFreeGlobalVariables (xsltTransformContextPtr ctxt);
|
xsltFreeGlobalVariables (xsltTransformContextPtr ctxt);
|
||||||
XSLTPUBFUN xmlXPathObjectPtr XSLTCALL
|
XSLTPUBFUN xmlXPathObjectPtr XSLTCALL
|
||||||
xsltVariableLookup (xsltTransformContextPtr ctxt,
|
xsltVariableLookup (xsltTransformContextPtr ctxt,
|
||||||
const xmlChar *name,
|
const xmlChar *name,
|
||||||
|
|
12
reactos/dll/3rdparty/libxslt/xsltlocale.c
vendored
12
reactos/dll/3rdparty/libxslt/xsltlocale.c
vendored
|
@ -88,26 +88,26 @@ xsltNewLocale(const xmlChar *languageTag) {
|
||||||
/* Convert something like "pt-br" to "pt_BR.utf8" */
|
/* Convert something like "pt-br" to "pt_BR.utf8" */
|
||||||
|
|
||||||
if (languageTag == NULL)
|
if (languageTag == NULL)
|
||||||
return(NULL);
|
return(NULL);
|
||||||
|
|
||||||
for (i=0; i<XSLTMAX_ISO639LANGLEN && ISALPHA(*p); ++i)
|
for (i=0; i<XSLTMAX_ISO639LANGLEN && ISALPHA(*p); ++i)
|
||||||
*q++ = TOLOWER(*p++);
|
*q++ = TOLOWER(*p++);
|
||||||
|
|
||||||
if (i == 0)
|
if (i == 0)
|
||||||
return(NULL);
|
return(NULL);
|
||||||
|
|
||||||
llen = i;
|
llen = i;
|
||||||
*q++ = '_';
|
*q++ = '_';
|
||||||
|
|
||||||
if (*p) {
|
if (*p) {
|
||||||
if (*p++ != '-')
|
if (*p++ != '-')
|
||||||
return(NULL);
|
return(NULL);
|
||||||
|
|
||||||
for (i=0; i<XSLTMAX_ISO3166CNTRYLEN && ISALPHA(*p); ++i)
|
for (i=0; i<XSLTMAX_ISO3166CNTRYLEN && ISALPHA(*p); ++i)
|
||||||
*q++ = TOUPPER(*p++);
|
*q++ = TOUPPER(*p++);
|
||||||
|
|
||||||
if (i == 0 || *p)
|
if (i == 0 || *p)
|
||||||
return(NULL);
|
return(NULL);
|
||||||
|
|
||||||
memcpy(q, ".utf8", 6);
|
memcpy(q, ".utf8", 6);
|
||||||
locale = newlocale(LC_COLLATE_MASK, localeName, NULL);
|
locale = newlocale(LC_COLLATE_MASK, localeName, NULL);
|
||||||
|
|
72
reactos/dll/3rdparty/libxslt/xsltutils.c
vendored
72
reactos/dll/3rdparty/libxslt/xsltutils.c
vendored
|
@ -53,9 +53,9 @@
|
||||||
#endif /* WIN32 */
|
#endif /* WIN32 */
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* *
|
* *
|
||||||
* Convenience function *
|
* Convenience function *
|
||||||
* *
|
* *
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -410,9 +410,9 @@ xsltPointerListClear(xsltPointerListPtr list)
|
||||||
#endif /* XSLT_REFACTORED */
|
#endif /* XSLT_REFACTORED */
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* *
|
* *
|
||||||
* Handling of XSLT stylesheets messages *
|
* Handling of XSLT stylesheets messages *
|
||||||
* *
|
* *
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -465,9 +465,9 @@ xsltMessage(xsltTransformContextPtr ctxt, xmlNodePtr node, xmlNodePtr inst) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* *
|
* *
|
||||||
* Handling of out of context errors *
|
* Handling of out of context errors *
|
||||||
* *
|
* *
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
|
||||||
#define XSLT_GET_VAR_STR(msg, str) { \
|
#define XSLT_GET_VAR_STR(msg, str) { \
|
||||||
|
@ -477,14 +477,14 @@ xsltMessage(xsltTransformContextPtr ctxt, xmlNodePtr node, xmlNodePtr inst) {
|
||||||
va_list ap; \
|
va_list ap; \
|
||||||
\
|
\
|
||||||
str = (char *) xmlMalloc(150); \
|
str = (char *) xmlMalloc(150); \
|
||||||
if (str == NULL) \
|
if (str == NULL) \
|
||||||
return; \
|
return; \
|
||||||
\
|
\
|
||||||
size = 150; \
|
size = 150; \
|
||||||
\
|
\
|
||||||
while (size < 64000) { \
|
while (size < 64000) { \
|
||||||
va_start(ap, msg); \
|
va_start(ap, msg); \
|
||||||
chars = vsnprintf(str, size, msg, ap); \
|
chars = vsnprintf(str, size, msg, ap); \
|
||||||
va_end(ap); \
|
va_end(ap); \
|
||||||
if ((chars > -1) && (chars < size)) \
|
if ((chars > -1) && (chars < size)) \
|
||||||
break; \
|
break; \
|
||||||
|
@ -719,9 +719,9 @@ xsltTransformError(xsltTransformContextPtr ctxt,
|
||||||
}
|
}
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* *
|
* *
|
||||||
* QNames *
|
* QNames *
|
||||||
* *
|
* *
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -905,9 +905,9 @@ xsltGetQNameURI2(xsltStylesheetPtr style, xmlNodePtr node,
|
||||||
}
|
}
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* *
|
* *
|
||||||
* Sorting *
|
* Sorting *
|
||||||
* *
|
* *
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1242,7 +1242,7 @@ xsltDefaultSortFunction(xsltTransformContextPtr ctxt, xmlNodePtr *sorts,
|
||||||
accordance with XSLT spec */
|
accordance with XSLT spec */
|
||||||
if (xmlXPathIsNaN(res[j]->floatval)) {
|
if (xmlXPathIsNaN(res[j]->floatval)) {
|
||||||
if (xmlXPathIsNaN(res[j +
|
if (xmlXPathIsNaN(res[j +
|
||||||
incr]->floatval))
|
incr]->floatval))
|
||||||
tst = 0;
|
tst = 0;
|
||||||
else
|
else
|
||||||
tst = -1;
|
tst = -1;
|
||||||
|
@ -1385,9 +1385,9 @@ xsltSetCtxtSortFunc(xsltTransformContextPtr ctxt, xsltSortFunc handler) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* *
|
* *
|
||||||
* Parsing options *
|
* Parsing options *
|
||||||
* *
|
* *
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1419,9 +1419,9 @@ xsltSetCtxtParseOptions(xsltTransformContextPtr ctxt, int options)
|
||||||
}
|
}
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* *
|
* *
|
||||||
* Output *
|
* Output *
|
||||||
* *
|
* *
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1766,9 +1766,9 @@ xsltSaveResultToString(xmlChar **doc_txt_ptr, int * doc_txt_len,
|
||||||
}
|
}
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* *
|
* *
|
||||||
* Generating profiling informations *
|
* Generating profiling informations *
|
||||||
* *
|
* *
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
|
||||||
static long calibration = -1;
|
static long calibration = -1;
|
||||||
|
@ -1969,9 +1969,9 @@ xsltSaveProfiling(xsltTransformContextPtr ctxt, FILE *output) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* *
|
* *
|
||||||
* Fetching profiling informations *
|
* Fetching profiling informations *
|
||||||
* *
|
* *
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -2084,9 +2084,9 @@ xsltGetProfileInformation(xsltTransformContextPtr ctxt)
|
||||||
}
|
}
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* *
|
* *
|
||||||
* Hooks for libxml2 XPath *
|
* Hooks for libxml2 XPath *
|
||||||
* *
|
* *
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -2153,9 +2153,9 @@ xsltXPathCompile(xsltStylesheetPtr style, const xmlChar *str) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* *
|
* *
|
||||||
* Hooks for the debugger *
|
* Hooks for the debugger *
|
||||||
* *
|
* *
|
||||||
************************************************************************/
|
************************************************************************/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -474,7 +474,7 @@ struct _xsltElemPreComp {
|
||||||
xsltElemPreCompPtr next; /* next item in the global chained
|
xsltElemPreCompPtr next; /* next item in the global chained
|
||||||
list hold by xsltStylesheet. */
|
list hold by xsltStylesheet. */
|
||||||
xsltStyleType type; /* type of the element */
|
xsltStyleType type; /* type of the element */
|
||||||
xsltTransformFunction func; /* handling function */
|
xsltTransformFunction func; /* handling function */
|
||||||
xmlNodePtr inst; /* the node in the stylesheet's tree
|
xmlNodePtr inst; /* the node in the stylesheet's tree
|
||||||
corresponding to this item */
|
corresponding to this item */
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@ extern "C" {
|
||||||
*
|
*
|
||||||
* Macro to flag unimplemented blocks.
|
* Macro to flag unimplemented blocks.
|
||||||
*/
|
*/
|
||||||
#define XSLT_TODO \
|
#define XSLT_TODO \
|
||||||
xsltGenericError(xsltGenericErrorContext, \
|
xsltGenericError(xsltGenericErrorContext, \
|
||||||
"Unimplemented block at %s:%d\n", \
|
"Unimplemented block at %s:%d\n", \
|
||||||
__FILE__, __LINE__);
|
__FILE__, __LINE__);
|
||||||
|
@ -41,7 +41,7 @@ extern "C" {
|
||||||
*
|
*
|
||||||
* Macro to flag that a problem was detected internally.
|
* Macro to flag that a problem was detected internally.
|
||||||
*/
|
*/
|
||||||
#define XSLT_STRANGE \
|
#define XSLT_STRANGE \
|
||||||
xsltGenericError(xsltGenericErrorContext, \
|
xsltGenericError(xsltGenericErrorContext, \
|
||||||
"Internal error at %s:%d\n", \
|
"Internal error at %s:%d\n", \
|
||||||
__FILE__, __LINE__);
|
__FILE__, __LINE__);
|
||||||
|
@ -100,24 +100,24 @@ XSLTPUBFUN int XSLTCALL
|
||||||
*/
|
*/
|
||||||
typedef enum {
|
typedef enum {
|
||||||
XSLT_TRACE_ALL = -1,
|
XSLT_TRACE_ALL = -1,
|
||||||
XSLT_TRACE_NONE = 0,
|
XSLT_TRACE_NONE = 0,
|
||||||
XSLT_TRACE_COPY_TEXT = 1<<0,
|
XSLT_TRACE_COPY_TEXT = 1<<0,
|
||||||
XSLT_TRACE_PROCESS_NODE = 1<<1,
|
XSLT_TRACE_PROCESS_NODE = 1<<1,
|
||||||
XSLT_TRACE_APPLY_TEMPLATE = 1<<2,
|
XSLT_TRACE_APPLY_TEMPLATE = 1<<2,
|
||||||
XSLT_TRACE_COPY = 1<<3,
|
XSLT_TRACE_COPY = 1<<3,
|
||||||
XSLT_TRACE_COMMENT = 1<<4,
|
XSLT_TRACE_COMMENT = 1<<4,
|
||||||
XSLT_TRACE_PI = 1<<5,
|
XSLT_TRACE_PI = 1<<5,
|
||||||
XSLT_TRACE_COPY_OF = 1<<6,
|
XSLT_TRACE_COPY_OF = 1<<6,
|
||||||
XSLT_TRACE_VALUE_OF = 1<<7,
|
XSLT_TRACE_VALUE_OF = 1<<7,
|
||||||
XSLT_TRACE_CALL_TEMPLATE = 1<<8,
|
XSLT_TRACE_CALL_TEMPLATE = 1<<8,
|
||||||
XSLT_TRACE_APPLY_TEMPLATES = 1<<9,
|
XSLT_TRACE_APPLY_TEMPLATES = 1<<9,
|
||||||
XSLT_TRACE_CHOOSE = 1<<10,
|
XSLT_TRACE_CHOOSE = 1<<10,
|
||||||
XSLT_TRACE_IF = 1<<11,
|
XSLT_TRACE_IF = 1<<11,
|
||||||
XSLT_TRACE_FOR_EACH = 1<<12,
|
XSLT_TRACE_FOR_EACH = 1<<12,
|
||||||
XSLT_TRACE_STRIP_SPACES = 1<<13,
|
XSLT_TRACE_STRIP_SPACES = 1<<13,
|
||||||
XSLT_TRACE_TEMPLATES = 1<<14,
|
XSLT_TRACE_TEMPLATES = 1<<14,
|
||||||
XSLT_TRACE_KEYS = 1<<15,
|
XSLT_TRACE_KEYS = 1<<15,
|
||||||
XSLT_TRACE_VARIABLES = 1<<16
|
XSLT_TRACE_VARIABLES = 1<<16
|
||||||
} xsltDebugTraceCodes;
|
} xsltDebugTraceCodes;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -147,21 +147,21 @@ XSLTPUBFUN void XSLTCALL
|
||||||
xsltStylesheetPtr style,
|
xsltStylesheetPtr style,
|
||||||
xmlNodePtr node);
|
xmlNodePtr node);
|
||||||
XSLTPUBFUN void XSLTCALL
|
XSLTPUBFUN void XSLTCALL
|
||||||
xsltMessage (xsltTransformContextPtr ctxt,
|
xsltMessage (xsltTransformContextPtr ctxt,
|
||||||
xmlNodePtr node,
|
xmlNodePtr node,
|
||||||
xmlNodePtr inst);
|
xmlNodePtr inst);
|
||||||
XSLTPUBFUN void XSLTCALL
|
XSLTPUBFUN void XSLTCALL
|
||||||
xsltSetGenericErrorFunc (void *ctx,
|
xsltSetGenericErrorFunc (void *ctx,
|
||||||
xmlGenericErrorFunc handler);
|
xmlGenericErrorFunc handler);
|
||||||
XSLTPUBFUN void XSLTCALL
|
XSLTPUBFUN void XSLTCALL
|
||||||
xsltSetGenericDebugFunc (void *ctx,
|
xsltSetGenericDebugFunc (void *ctx,
|
||||||
xmlGenericErrorFunc handler);
|
xmlGenericErrorFunc handler);
|
||||||
XSLTPUBFUN void XSLTCALL
|
XSLTPUBFUN void XSLTCALL
|
||||||
xsltSetTransformErrorFunc (xsltTransformContextPtr ctxt,
|
xsltSetTransformErrorFunc (xsltTransformContextPtr ctxt,
|
||||||
void *ctx,
|
void *ctx,
|
||||||
xmlGenericErrorFunc handler);
|
xmlGenericErrorFunc handler);
|
||||||
XSLTPUBFUN void XSLTCALL
|
XSLTPUBFUN void XSLTCALL
|
||||||
xsltTransformError (xsltTransformContextPtr ctxt,
|
xsltTransformError (xsltTransformContextPtr ctxt,
|
||||||
xsltStylesheetPtr style,
|
xsltStylesheetPtr style,
|
||||||
xmlNodePtr node,
|
xmlNodePtr node,
|
||||||
const char *msg,
|
const char *msg,
|
||||||
|
@ -175,22 +175,22 @@ XSLTPUBFUN int XSLTCALL
|
||||||
*/
|
*/
|
||||||
|
|
||||||
XSLTPUBFUN void XSLTCALL
|
XSLTPUBFUN void XSLTCALL
|
||||||
xsltDocumentSortFunction (xmlNodeSetPtr list);
|
xsltDocumentSortFunction (xmlNodeSetPtr list);
|
||||||
XSLTPUBFUN void XSLTCALL
|
XSLTPUBFUN void XSLTCALL
|
||||||
xsltSetSortFunc (xsltSortFunc handler);
|
xsltSetSortFunc (xsltSortFunc handler);
|
||||||
XSLTPUBFUN void XSLTCALL
|
XSLTPUBFUN void XSLTCALL
|
||||||
xsltSetCtxtSortFunc (xsltTransformContextPtr ctxt,
|
xsltSetCtxtSortFunc (xsltTransformContextPtr ctxt,
|
||||||
xsltSortFunc handler);
|
xsltSortFunc handler);
|
||||||
XSLTPUBFUN void XSLTCALL
|
XSLTPUBFUN void XSLTCALL
|
||||||
xsltDefaultSortFunction (xsltTransformContextPtr ctxt,
|
xsltDefaultSortFunction (xsltTransformContextPtr ctxt,
|
||||||
xmlNodePtr *sorts,
|
xmlNodePtr *sorts,
|
||||||
int nbsorts);
|
int nbsorts);
|
||||||
XSLTPUBFUN void XSLTCALL
|
XSLTPUBFUN void XSLTCALL
|
||||||
xsltDoSortFunction (xsltTransformContextPtr ctxt,
|
xsltDoSortFunction (xsltTransformContextPtr ctxt,
|
||||||
xmlNodePtr * sorts,
|
xmlNodePtr * sorts,
|
||||||
int nbsorts);
|
int nbsorts);
|
||||||
XSLTPUBFUN xmlXPathObjectPtr * XSLTCALL
|
XSLTPUBFUN xmlXPathObjectPtr * XSLTCALL
|
||||||
xsltComputeSortResult (xsltTransformContextPtr ctxt,
|
xsltComputeSortResult (xsltTransformContextPtr ctxt,
|
||||||
xmlNodePtr sort);
|
xmlNodePtr sort);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -202,7 +202,7 @@ XSLTPUBFUN const xmlChar * XSLTCALL
|
||||||
const xmlChar *name,
|
const xmlChar *name,
|
||||||
const xmlChar **prefix);
|
const xmlChar **prefix);
|
||||||
XSLTPUBFUN const xmlChar * XSLTCALL
|
XSLTPUBFUN const xmlChar * XSLTCALL
|
||||||
xsltGetQNameURI (xmlNodePtr node,
|
xsltGetQNameURI (xmlNodePtr node,
|
||||||
xmlChar **name);
|
xmlChar **name);
|
||||||
|
|
||||||
XSLTPUBFUN const xmlChar * XSLTCALL
|
XSLTPUBFUN const xmlChar * XSLTCALL
|
||||||
|
@ -214,24 +214,24 @@ XSLTPUBFUN const xmlChar * XSLTCALL
|
||||||
* Output, reuse libxml I/O buffers.
|
* Output, reuse libxml I/O buffers.
|
||||||
*/
|
*/
|
||||||
XSLTPUBFUN int XSLTCALL
|
XSLTPUBFUN int XSLTCALL
|
||||||
xsltSaveResultTo (xmlOutputBufferPtr buf,
|
xsltSaveResultTo (xmlOutputBufferPtr buf,
|
||||||
xmlDocPtr result,
|
xmlDocPtr result,
|
||||||
xsltStylesheetPtr style);
|
xsltStylesheetPtr style);
|
||||||
XSLTPUBFUN int XSLTCALL
|
XSLTPUBFUN int XSLTCALL
|
||||||
xsltSaveResultToFilename (const char *URI,
|
xsltSaveResultToFilename (const char *URI,
|
||||||
xmlDocPtr result,
|
xmlDocPtr result,
|
||||||
xsltStylesheetPtr style,
|
xsltStylesheetPtr style,
|
||||||
int compression);
|
int compression);
|
||||||
XSLTPUBFUN int XSLTCALL
|
XSLTPUBFUN int XSLTCALL
|
||||||
xsltSaveResultToFile (FILE *file,
|
xsltSaveResultToFile (FILE *file,
|
||||||
xmlDocPtr result,
|
xmlDocPtr result,
|
||||||
xsltStylesheetPtr style);
|
xsltStylesheetPtr style);
|
||||||
XSLTPUBFUN int XSLTCALL
|
XSLTPUBFUN int XSLTCALL
|
||||||
xsltSaveResultToFd (int fd,
|
xsltSaveResultToFd (int fd,
|
||||||
xmlDocPtr result,
|
xmlDocPtr result,
|
||||||
xsltStylesheetPtr style);
|
xsltStylesheetPtr style);
|
||||||
XSLTPUBFUN int XSLTCALL
|
XSLTPUBFUN int XSLTCALL
|
||||||
xsltSaveResultToString (xmlChar **doc_txt_ptr,
|
xsltSaveResultToString (xmlChar **doc_txt_ptr,
|
||||||
int * doc_txt_len,
|
int * doc_txt_len,
|
||||||
xmlDocPtr result,
|
xmlDocPtr result,
|
||||||
xsltStylesheetPtr style);
|
xsltStylesheetPtr style);
|
||||||
|
@ -247,15 +247,15 @@ XSLTPUBFUN xmlXPathCompExprPtr XSLTCALL
|
||||||
* Profiling.
|
* Profiling.
|
||||||
*/
|
*/
|
||||||
XSLTPUBFUN void XSLTCALL
|
XSLTPUBFUN void XSLTCALL
|
||||||
xsltSaveProfiling (xsltTransformContextPtr ctxt,
|
xsltSaveProfiling (xsltTransformContextPtr ctxt,
|
||||||
FILE *output);
|
FILE *output);
|
||||||
XSLTPUBFUN xmlDocPtr XSLTCALL
|
XSLTPUBFUN xmlDocPtr XSLTCALL
|
||||||
xsltGetProfileInformation (xsltTransformContextPtr ctxt);
|
xsltGetProfileInformation (xsltTransformContextPtr ctxt);
|
||||||
|
|
||||||
XSLTPUBFUN long XSLTCALL
|
XSLTPUBFUN long XSLTCALL
|
||||||
xsltTimestamp (void);
|
xsltTimestamp (void);
|
||||||
XSLTPUBFUN void XSLTCALL
|
XSLTPUBFUN void XSLTCALL
|
||||||
xsltCalibrateAdjust (long delta);
|
xsltCalibrateAdjust (long delta);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* XSLT_TIMESTAMP_TICS_PER_SEC:
|
* XSLT_TIMESTAMP_TICS_PER_SEC:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue