mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-11-06 23:49:25 +03:00
- libxslt/xslt.c: added support for disable-output-escaping will need libxml version > 20211 - libxslt/transform.c: cleanup - libxslt/xsltutils.[ch]: added output functions - libxslt/xsltproc.c: reuse the output function - tests/REC2/Makefile.am tests/REC2/vrml.xml: added VRML output test Daniel
91 lines
2.1 KiB
C
91 lines
2.1 KiB
C
/*
|
|
* xsltutils.h: interfaces for the utilities module of the XSLT engine
|
|
*
|
|
* See Copyright for the status of this software.
|
|
*
|
|
* Daniel.Veillard@w3.org
|
|
*/
|
|
|
|
#ifndef __XML_XSLTUTILS_H__
|
|
#define __XML_XSLTUTILS_H__
|
|
|
|
#include <libxml/xpath.h>
|
|
#include <libxml/xmlerror.h>
|
|
#include "xsltInternals.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*
|
|
* To cleanup
|
|
*/
|
|
xmlChar *xmlSplitQName2(const xmlChar *name, xmlChar **prefix);
|
|
void xmlXPathBooleanFunction(xmlXPathParserContextPtr ctxt, int nargs);
|
|
|
|
/*
|
|
* Useful macros
|
|
*/
|
|
|
|
#define TODO \
|
|
xsltGenericError(xsltGenericErrorContext, \
|
|
"Unimplemented block at %s:%d\n", \
|
|
__FILE__, __LINE__);
|
|
|
|
#define STRANGE \
|
|
xsltGenericError(xsltGenericErrorContext, \
|
|
"Internal error at %s:%d\n", \
|
|
__FILE__, __LINE__);
|
|
|
|
#define IS_XSLT_ELEM(n) \
|
|
(((n) != NULL) && ((n)->ns != NULL) && \
|
|
(xmlStrEqual((n)->ns->href, XSLT_NAMESPACE)))
|
|
|
|
#define IS_XSLT_NAME(n, val) \
|
|
(xmlStrEqual((n)->name, (const xmlChar *) (val)))
|
|
|
|
|
|
/*
|
|
* XSLT specific error and debug reporting functions
|
|
*/
|
|
extern xmlGenericErrorFunc xsltGenericError;
|
|
extern void *xsltGenericErrorContext;
|
|
extern xmlGenericErrorFunc xsltGenericDebug;
|
|
extern void *xsltGenericDebugContext;
|
|
|
|
void xsltSetGenericErrorFunc (void *ctx,
|
|
xmlGenericErrorFunc handler);
|
|
void xsltSetGenericDebugFunc (void *ctx,
|
|
xmlGenericErrorFunc handler);
|
|
|
|
/*
|
|
* Sorting ... this is definitely a temporary interface !
|
|
*/
|
|
|
|
void xsltSortFunction (xmlNodeSetPtr list,
|
|
xmlXPathObjectPtr *results,
|
|
int descending,
|
|
int number);
|
|
/*
|
|
* Output, reuse libxml I/O buffers
|
|
*/
|
|
int xsltSaveResultTo (xmlOutputBufferPtr buf,
|
|
xmlDocPtr result,
|
|
xsltStylesheetPtr style);
|
|
int xsltSaveResultToFilename (const char *URI,
|
|
xmlDocPtr result,
|
|
xsltStylesheetPtr style,
|
|
int compression);
|
|
int xsltSaveResultToFile (FILE *file,
|
|
xmlDocPtr result,
|
|
xsltStylesheetPtr style);
|
|
int xsltSaveResultToFd (int fd,
|
|
xmlDocPtr result,
|
|
xsltStylesheetPtr style);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __XML_XSLTUTILS_H__ */
|
|
|