diff --git a/ChangeLog b/ChangeLog index 70738e20..e1406ece 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon Apr 15 19:27:31 CEST 2002 Daniel Veillard + + * configure.in: preparing 1.0.16 + * doc/*: updated and rebuilt the docs + Mon Apr 15 17:27:51 CEST 2002 Daniel Veillard * libxslt/attributes.c: removed a warning diff --git a/configure.in b/configure.in index 7636972d..cc4a22aa 100644 --- a/configure.in +++ b/configure.in @@ -6,11 +6,11 @@ dnl libexslt is an extension dnl LIBXSLT_MAJOR_VERSION=1 LIBXSLT_MINOR_VERSION=0 -LIBXSLT_MICRO_VERSION=15 +LIBXSLT_MICRO_VERSION=16 PACKAGE=libxslt LIBEXSLT_MAJOR_VERSION=0 LIBEXSLT_MINOR_VERSION=7 -LIBEXSLT_MICRO_VERSION=6 +LIBEXSLT_MICRO_VERSION=7 LIBXML_REQUIRED_VERSION=2.4.17 diff --git a/doc/html/index.sgml b/doc/html/index.sgml index 421614d1..384b0dea 100644 --- a/doc/html/index.sgml +++ b/doc/html/index.sgml @@ -49,6 +49,7 @@ + diff --git a/doc/html/libxslt-attributes.html b/doc/html/libxslt-attributes.html index a28027e9..4ad8ce54 100644 --- a/doc/html/libxslt-attributes.html +++ b/doc/html/libxslt-attributes.html @@ -123,7 +123,7 @@ NAME="LIBXSLT-ATTRIBUTES" >

Name

Synopsis

Description

Details




Name

Synopsis

Description

Details




































Name

Synopsis

Description

Details








Name

Synopsis

Description

Details





Name

Synopsis

Description

Details






xmlOutputBufferPtr IObuf); +int xsltRunStylesheetUser (xsltStylesheetPtr style, + xmlDocPtr doc, + const char **params, + const char *output, + xmlSAXHandlerPtr SAX, + xmlOutputBufferPtr IObuf, + FILE *profile, + xsltTransformContextPtr userCtxt); void xsltApplyOneTemplate

Description

Details











xsltRunStylesheetUser ()

int         xsltRunStylesheetUser           (xsltStylesheetPtr style,
+                                             xmlDocPtr doc,
+                                             const char **params,
+                                             const char *output,
+                                             xmlSAXHandlerPtr SAX,
+                                             xmlOutputBufferPtr IObuf,
+                                             FILE *profile,
+                                             xsltTransformContextPtr userCtxt);

Apply the stylesheet to the document and generate the output according +to output SAX and IObuf. It's an error to specify both SAX and IObuf.

NOTE: This may lead to a non-wellformed output XML wise ! +NOTE: This may also result in multiple files being generated +NOTE: using IObuf, the result encoding used will be the one used for +creating the output buffer, use the following macro to read it +from the stylesheet +XSLT_GET_IMPORT_PTR(encoding, style, encoding) +NOTE: using SAX, any encoding specified in the stylesheet will be lost +since the interface uses only UTF8

style : a parsed XSLT stylesheet
doc : a parsed XML document
params : a NULL terminated arry of parameters names/values tuples
output : the URL/filename ot the generated resource if available
SAX : a SAX handler for progressive callback output (not implemented yet)
IObuf : an output buffer for progressive output (not implemented yet)
profile : profile FILE * output or NULL
userCtxt : user provided transform context
Returns :the number of by written to the main resource or -1 in case of +error.