diff --git a/ChangeLog b/ChangeLog index d361bda7..90264519 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Fri Dec 7 15:48:48 CET 2001 Daniel Veillard + + * configure.in: preparing 1.0.9 + * doc/*: updated and rebuild the doc + Thu Dec 6 14:57:56 CET 2001 Daniel Veillard * configure.in libexslt/Makefile.am: trying to fix the problem @@ -70,7 +75,7 @@ Mon Nov 26 10:27:30 CET 2001 Daniel Veillard Sun Nov 25 15:52:38 CET 2001 Daniel Veillard - * libxslt/transform.c: fixed a bug in the document extension +* libxslt/transform.c: fixed a bug in the document extension element where the doctype infos were not taken into account. Thu Nov 22 19:08:23 CET 2001 Daniel Veillard diff --git a/configure.in b/configure.in index 8cb188bb..3630376a 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=8 +LIBXSLT_MICRO_VERSION=9 PACKAGE=libxslt LIBEXSLT_MAJOR_VERSION=0 LIBEXSLT_MINOR_VERSION=7 -LIBEXSLT_MICRO_VERSION=1 +LIBEXSLT_MICRO_VERSION=2 LIBXML_REQUIRED_VERSION=2.4.10 diff --git a/doc/FAQ.html b/doc/FAQ.html index ba41a32c..086d5a8a 100644 --- a/doc/FAQ.html +++ b/doc/FAQ.html @@ -71,10 +71,9 @@ A:link, A:visited, A:active { text-decoration: underline }

i.e. the string value is surrounded by " and ' then terminated by ' and ". Libxslt interpret the parameter values as XPath expressions, so the string ->alpha<- is intepreted as the node set - matching this string. You really want - ->'alpha'<- to be passed to the processor. And to - allow this you need to escape the quotes at the shell level using - ->"'alpha'"<- .

+ matching this string. You really want ->'alpha'<- to + be passed to the processor. And to allow this you need to escape the + quotes at the shell level using ->"'alpha'"<- .

Daniel Veillard

diff --git a/doc/html/libxslt-attributes.html b/doc/html/libxslt-attributes.html index a731397e..74755824 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


Name

Synopsis

Description

Details















Name

Synopsis

Description

Details







































XSLT_TIMESTAMP_TICS_PER_SEC +enum xsltDebugStatusCodes; +void (*xsltHandleDebuggerCallback) (xmlNodePtr cur, + xmlNodePtr node, + xsltTemplatePtr templ, + xsltTransformContextPtr ctxt); +int (*xsltAddCallCallback) (xsltTemplatePtr templ, + xmlNodePtr source); +void (*xsltDropCallCallback) (void); +int xsltSetDebuggerCallbacks (int no, + void *block); +int xslAddCall (xsltTemplatePtr templ, + xmlNodePtr source); +void xslDropCall ();

Description

Details






















enum xsltDebugStatusCodes

typedef enum {
+    XSLT_DEBUG_NONE = 0, /* no debugging allowed */
+    XSLT_DEBUG_INIT,
+    XSLT_DEBUG_STEP,
+    XSLT_DEBUG_STEPOUT,
+    XSLT_DEBUG_NEXT,
+    XSLT_DEBUG_STOP,
+    XSLT_DEBUG_CONT,
+    XSLT_DEBUG_RUN,
+    XSLT_DEBUG_RUN_RESTART,
+    XSLT_DEBUG_QUIT
+} xsltDebugStatusCodes;


xsltHandleDebuggerCallback ()

void        (*xsltHandleDebuggerCallback)   (xmlNodePtr cur,
+                                             xmlNodePtr node,
+                                             xsltTemplatePtr templ,
+                                             xsltTransformContextPtr ctxt);

cur : 
node : 
templ : 
ctxt : 


xsltAddCallCallback ()

int         (*xsltAddCallCallback)          (xsltTemplatePtr templ,
+                                             xmlNodePtr source);

templ : 
source : 
Returns : 


xsltDropCallCallback ()

void        (*xsltDropCallCallback)         (void);


xsltSetDebuggerCallbacks ()

int         xsltSetDebuggerCallbacks        (int no,
+                                             void *block);

no : 
block : 
Returns : 


xslAddCall ()

int         xslAddCall                      (xsltTemplatePtr templ,
+                                             xmlNodePtr source);

DEPRECATED

templ : 
source : 
Returns : 


xslDropCall ()

void        xslDropCall                     ();

DEPRECATED