diff --git a/ChangeLog b/ChangeLog index f1e60d3e..1fed873c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Tue Jun 26 18:45:38 CEST 2001 Daniel Veillard + + * configure.in doc/xslt.html: releasing 0.13.0 + * doc/Makefile.am: don't index the win32 include + * doc/html/*: rebuilt the docs + Mon Jun 25 15:30:30 CEST 2001 Daniel Veillard * libxslt/xsltproc.c: John Fleck found a typo in usage() diff --git a/configure.in b/configure.in index bea43a96..b81a949a 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ AC_INIT(libxslt/xslt.c) LIBXSLT_MAJOR_VERSION=0 -LIBXSLT_MINOR_VERSION=12 +LIBXSLT_MINOR_VERSION=13 LIBXSLT_MICRO_VERSION=0 PACKAGE=libxslt @@ -126,7 +126,7 @@ dnl dnl find libxml dnl XML_CONFIG="xml2-config" -LIBXML_REQUIRED_VERSION=2.3.11 +LIBXML_REQUIRED_VERSION=2.3.12 AC_MSG_CHECKING(for libxml libraries >= $LIBXML_REQUIRED_VERSION) if test "x$LIBXML_PREFIX" != "x" then diff --git a/doc/Makefile.am b/doc/Makefile.am index de330846..5fc5b77e 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -14,7 +14,7 @@ HTML_DIR=$(prefix)/doc TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE)/html scan: - gtkdoc-scan --module=libxslt --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="acconfig.h config.h" + gtkdoc-scan --module=libxslt --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="acconfig.h config.h win32config.h" templates: scan gtkdoc-mktmpl --module=libxslt diff --git a/doc/html/libxslt-attributes.html b/doc/html/libxslt-attributes.html index ca6829fb..5c6cbe16 100644 --- a/doc/html/libxslt-attributes.html +++ b/doc/html/libxslt-attributes.html @@ -122,7 +122,7 @@ NAME="LIBXSLT-ATTRIBUTES" >

Name

Synopsis

Description

Details



Name

Synopsis

Description

Details







Name

Synopsis

Description

Details





Name

Synopsis

Description

Details






Name

Synopsis

Description

Details


xmlDocPtr doc, const char **params); +int xsltRunStylesheet (xsltStylesheetPtr style, + xmlDocPtr doc, + const char **params, + const char *output, + xmlSAXHandlerPtr SAX, + xmlOutputBufferPtr IObuf); void xsltApplyOneTemplate

Description

Details




xsltRunStylesheet ()

int         xsltRunStylesheet               (xsltStylesheetPtr style,
+                                             xmlDocPtr doc,
+                                             const char **params,
+                                             const char *output,
+                                             xmlSAXHandlerPtr SAX,
+                                             xmlOutputBufferPtr IObuf);

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)
Returns :the number of by written to the main resource or -1 in case of +error.



















Name

Synopsis

Description

Details












Name

Synopsis

Description

Details


































Name

Synopsis

xmlChar *namespace); +> *nameSpace); extern xmlGenericErrorFunc xsltGenericError

Description

Details





xmlChar *namespace); *nameSpace);

namespacenameSpace :













The XSLT C library for Gnome @@ -165,6 +167,21 @@ platform, get in touch with me to upload the package. I will keep them in the href="http://cvs.gnome.org/lxr/source/libxslt/ChangeLog">Changelog file for a really accurate description

+

0.13.0: June 26 2001

+
    +
  • lots of cleanups
  • +
  • fixed a C++ compilation problem
  • +
  • couple of fixes to xsltSaveTo()
  • +
  • try to fix Docbook-xslt-1.4 and chunking, updated the regression test + with them
  • +
  • fixed pattern compilation and priorities problems
  • +
  • Patches for Windows and MSC project mostly contributed by Yon Derek
  • +
  • update to the Tutorial by John Fleck
  • +
  • William fixed bugs in templates and for-each functions
  • +
  • added a new interface xsltRunStylesheet() for a more flexible output + (incomplete), added -o option to xsltproc
  • +
+

0.12.0: June 18 2001

  • fixed a dozen of bugs reported