1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-07-31 02:43:06 +03:00

preparing 1.0.7 cleanup similar to libxml2 one finished cleaning up

* configure.in: preparing 1.0.7
* libxslt.spec.in: cleanup similar to libxml2 one
* breakpoint/*.[hc]: finished cleaning up contributed code
* doc/*: updated and rebuilt the documentation
* xsltproc/xsltproc.c: cleanup of the timing code
* xsltproc/Makefile.am: auto* sucks
* libxslt/transform.c: added a missing include
Daniel
This commit is contained in:
Daniel Veillard
2001-11-10 13:35:26 +00:00
parent a33af2fb96
commit d03254ec53
24 changed files with 658 additions and 411 deletions

View File

@ -1,3 +1,13 @@
Sat Nov 10 14:01:44 CET 2001 Daniel Veillard <daniel@veillard.com>
* configure.in: preparing 1.0.7
* libxslt.spec.in: cleanup similar to libxml2 one
* breakpoint/*.[hc]: finished cleaning up contributed code
* doc/*: updated and rebuilt the documentation
* xsltproc/xsltproc.c: cleanup of the timing code
* xsltproc/Makefile.am: auto* sucks
* libxslt/transform.c: added a missing include
Mon Nov 5 14:29:26 CET 2001 Daniel Veillard <daniel@veillard.com> Mon Nov 5 14:29:26 CET 2001 Daniel Veillard <daniel@veillard.com>
* Makefile.am acconfig.h config.h.in configure.in * Makefile.am acconfig.h config.h.in configure.in

View File

@ -23,6 +23,10 @@
#include <libxml/xpath.h> #include <libxml/xpath.h>
#include <libxml/list.h> #include <libxml/list.h>
#ifdef __cplusplus
extern "C" {
#endif
/* Define the types of status whilst debugging*/ /* Define the types of status whilst debugging*/
typedef enum { typedef enum {
DEBUG_NONE, /* no debugging allowed */ DEBUG_NONE, /* no debugging allowed */
@ -62,7 +66,7 @@ struct _xslBreakPoint {
----------------------------------------------------------- -----------------------------------------------------------
Break point related functions Break point related functions
---------------------------------------------------------- ----------------------------------------------------------
* */
/** /**
* xslFindTemplateNode: * xslFindTemplateNode:
@ -81,7 +85,7 @@ xmlNodePtr xslFindTemplateNode(const xsltStylesheetPtr style,
* *
* Return the break point number that we stoped at * Return the break point number that we stoped at
*/ */
int xslActiveBreakPoint(); int xslActiveBreakPoint(void);
/** /**
@ -188,7 +192,7 @@ int xslIsBreakPointEnabled(int breakPointNumber);
* *
* Returns the number of break points present * Returns the number of break points present
*/ */
int xslBreakPointCount(); int xslBreakPointCount(void);
/** /**
@ -261,7 +265,7 @@ void xslDebugBreak(xmlNodePtr templ, xmlNodePtr node, xsltTemplatePtr root,
* *
* Initialize debugger allocating any memory needed by debugger * Initialize debugger allocating any memory needed by debugger
*/ */
void xslDebugInit(); void xslDebugInit(void);
/** /**
@ -269,7 +273,7 @@ void xslDebugInit();
* *
* Free up any memory taken by debugger * Free up any memory taken by debugger
*/ */
void xslDebugFree(); void xslDebugFree(void);
/** /**
@ -337,7 +341,7 @@ int xslAddCall(xsltTemplatePtr templ, xmlNodePtr source);
* *
* Drop the topmost item off the call stack * Drop the topmost item off the call stack
*/ */
void xslDropCall(); void xslDropCall(void);
/** /**
@ -379,7 +383,7 @@ xslCallPointPtr xslGetCall(int depth);
* *
* Returns the top of the call stack * Returns the top of the call stack
*/ */
xslCallPointPtr xslGetCallStackTop(); xslCallPointPtr xslGetCallStackTop(void);
/** /**
@ -387,10 +391,13 @@ xslCallPointPtr xslGetCallStackTop();
* *
* Returns the depth of call stack * Returns the depth of call stack
*/ */
int xslCallDepth(); int xslCallDepth(void);
#ifdef __cplusplus
}
#endif
#endif #endif

View File

@ -43,7 +43,7 @@ xslActiveBreakPoint()
* 0 otherwise * 0 otherwise
*/ */
int int
xslSetActiveBreakPoint(int breakPointNumber) xslSetActiveBreakPoint(int breakPointNumber ATTRIBUTE_UNUSED)
{ {
xsltGenericError(xsltGenericErrorContext, xsltGenericError(xsltGenericErrorContext,
"Error!: Debugger function 'xslSetActiveBreakPoint' not overloaded\n"); "Error!: Debugger function 'xslSetActiveBreakPoint' not overloaded\n");
@ -66,8 +66,8 @@ xslSetActiveBreakPoint(int breakPointNumber)
* 0 otherwise * 0 otherwise
*/ */
int int
xslAddBreakPoint(const xmlChar * url, long lineNumber, xslAddBreakPoint(const xmlChar * url ATTRIBUTE_UNUSED, long lineNumber ATTRIBUTE_UNUSED,
const xmlChar * templateName, int type) const xmlChar * templateName ATTRIBUTE_UNUSED, int type ATTRIBUTE_UNUSED)
{ {
xsltGenericError(xsltGenericErrorContext, xsltGenericError(xsltGenericErrorContext,
@ -85,7 +85,7 @@ xslAddBreakPoint(const xmlChar * url, long lineNumber,
* 0 otherwise * 0 otherwise
*/ */
int int
xslDeleteBreakPoint(int breakPointNumber) xslDeleteBreakPoint(int breakPointNumber ATTRIBUTE_UNUSED)
{ {
xsltGenericError(xsltGenericErrorContext, xsltGenericError(xsltGenericErrorContext,
@ -107,7 +107,7 @@ xslDeleteBreakPoint(int breakPointNumber)
* 0 otherwise * 0 otherwise
*/ */
int int
xslEnableBreakPoint(int breakPointNumber, int enable) xslEnableBreakPoint(int breakPointNumber ATTRIBUTE_UNUSED, int enable ATTRIBUTE_UNUSED)
{ {
xsltGenericError(xsltGenericErrorContext, xsltGenericError(xsltGenericErrorContext,
"Error!: Debugger function 'xslEnableBreakPoint' not overloaded\n"); "Error!: Debugger function 'xslEnableBreakPoint' not overloaded\n");
@ -126,7 +126,7 @@ xslEnableBreakPoint(int breakPointNumber, int enable)
* 1 if break point is enabled * 1 if break point is enabled
*/ */
int int
xslIsBreakPointEnabled(int breakPointNumber) xslIsBreakPointEnabled(int breakPointNumber ATTRIBUTE_UNUSED)
{ {
xsltGenericError(xsltGenericErrorContext, xsltGenericError(xsltGenericErrorContext,
"Error!: Debugger function 'xslIsBreakPointEnabled' not overloaded\n"); "Error!: Debugger function 'xslIsBreakPointEnabled' not overloaded\n");
@ -155,7 +155,7 @@ xslBreakPointCount()
* NULL otherwise * NULL otherwise
*/ */
xslBreakPointPtr xslBreakPointPtr
xslGetBreakPoint(int breakPointNumber) xslGetBreakPoint(int breakPointNumber ATTRIBUTE_UNUSED)
{ {
xsltGenericError(xsltGenericErrorContext, xsltGenericError(xsltGenericErrorContext,
"Error!: Debugger function 'xslGetBreakPoint' not overloaded\n"); "Error!: Debugger function 'xslGetBreakPoint' not overloaded\n");
@ -174,7 +174,7 @@ xslGetBreakPoint(int breakPointNumber)
* 0 otherwise * 0 otherwise
*/ */
int int
xslPrintBreakPoint(FILE * file, int breakPointNumber) xslPrintBreakPoint(FILE * file ATTRIBUTE_UNUSED, int breakPointNumber ATTRIBUTE_UNUSED)
{ {
xsltGenericError(xsltGenericErrorContext, xsltGenericError(xsltGenericErrorContext,
"Error!: Debugger function 'xslPrintBreakPoint' not overloaded\n"); "Error!: Debugger function 'xslPrintBreakPoint' not overloaded\n");
@ -194,7 +194,7 @@ xslPrintBreakPoint(FILE * file, int breakPointNumber)
* 0 otherwise * 0 otherwise
*/ */
int int
xslIsBreakPoint(const xmlChar * url, long lineNumber) xslIsBreakPoint(const xmlChar * url ATTRIBUTE_UNUSED, long lineNumber ATTRIBUTE_UNUSED)
{ {
xsltGenericError(xsltGenericErrorContext, xsltGenericError(xsltGenericErrorContext,
"Error!: Debugger function 'xslIsBreakPoint' not overloaded\n"); "Error!: Debugger function 'xslIsBreakPoint' not overloaded\n");
@ -212,7 +212,7 @@ xslIsBreakPoint(const xmlChar * url, long lineNumber)
* 0 otherwise * 0 otherwise
*/ */
int int
xslIsBreakPointNode(xmlNodePtr node) xslIsBreakPointNode(xmlNodePtr node ATTRIBUTE_UNUSED)
{ {
xsltGenericError(xsltGenericErrorContext, xsltGenericError(xsltGenericErrorContext,
"Error!: Debugger function 'xslIsBreakPointNode' not overloaded\n"); "Error!: Debugger function 'xslIsBreakPointNode' not overloaded\n");

View File

@ -17,6 +17,7 @@
----------------------------------------------------- -----------------------------------------------------
*/ */
#include "libxslt.h"
#include "xsltutils.h" #include "xsltutils.h"
#include "breakpoint.h" #include "breakpoint.h"
@ -29,7 +30,8 @@
* Returns a reference to the added info if sucessfull, otherwise NULL * Returns a reference to the added info if sucessfull, otherwise NULL
*/ */
xslCallPointInfoPtr xslCallPointInfoPtr
xslAddCallInfo(const xmlChar * templateName, const xmlChar * url) xslAddCallInfo(const xmlChar * templateName ATTRIBUTE_UNUSED,
const xmlChar * url ATTRIBUTE_UNUSED)
{ {
xsltGenericError(xsltGenericErrorContext, xsltGenericError(xsltGenericErrorContext,
"Error!: Debugger function 'xslAddCallInfo' not overloaded\n"); "Error!: Debugger function 'xslAddCallInfo' not overloaded\n");
@ -47,7 +49,7 @@ xslAddCallInfo(const xmlChar * templateName, const xmlChar * url)
* Returns : 1 on sucess, 0 otherwise * Returns : 1 on sucess, 0 otherwise
*/ */
int int
xslAddCall(xsltTemplatePtr templ, xmlNodePtr source) xslAddCall(xsltTemplatePtr templ ATTRIBUTE_UNUSED, xmlNodePtr source ATTRIBUTE_UNUSED)
{ {
xsltGenericError(xsltGenericErrorContext, xsltGenericError(xsltGenericErrorContext,
"Error!: Debugger function 'xslAddCall' not overloaded\n"); "Error!: Debugger function 'xslAddCall' not overloaded\n");
@ -62,7 +64,7 @@ xslAddCall(xsltTemplatePtr templ, xmlNodePtr source)
* Drop the topmost item off the call stack * Drop the topmost item off the call stack
*/ */
void void
xslDropCall() xslDropCall(void)
{ {
xsltGenericError(xsltGenericErrorContext, xsltGenericError(xsltGenericErrorContext,
@ -79,7 +81,7 @@ xslDropCall()
* Returns 1 on sucess , 0 otherwise * Returns 1 on sucess , 0 otherwise
*/ */
int int
xslStepupToDepth(int depth) xslStepupToDepth(int depth ATTRIBUTE_UNUSED)
{ {
xsltGenericError(xsltGenericErrorContext, xsltGenericError(xsltGenericErrorContext,
"Error!: Debugger function 'xslStepupToDepth' not overloaded\n"); "Error!: Debugger function 'xslStepupToDepth' not overloaded\n");
@ -95,7 +97,7 @@ xslStepupToDepth(int depth)
* Returns 1 on sucess , 0 otherwise * Returns 1 on sucess , 0 otherwise
*/ */
int int
xslStepdownToDepth(int depth) xslStepdownToDepth(int depth ATTRIBUTE_UNUSED)
{ {
xsltGenericError(xsltGenericErrorContext, xsltGenericError(xsltGenericErrorContext,
"Error!: Debugger function 'xslStepdownToDepth' not overloaded\n"); "Error!: Debugger function 'xslStepdownToDepth' not overloaded\n");
@ -113,7 +115,7 @@ xslStepdownToDepth(int depth)
* NULL otherwise * NULL otherwise
*/ */
xslCallPointPtr xslCallPointPtr
xslGetCall(int depth) xslGetCall(int depth ATTRIBUTE_UNUSED)
{ {
xsltGenericError(xsltGenericErrorContext, xsltGenericError(xsltGenericErrorContext,
"Error!: Debugger function 'xslGetCall' not overloaded\n"); "Error!: Debugger function 'xslGetCall' not overloaded\n");
@ -128,7 +130,7 @@ xslGetCall(int depth)
* Returns the top of the call stack * Returns the top of the call stack
*/ */
xslCallPointPtr xslCallPointPtr
xslGetCallStackTop() xslGetCallStackTop(void)
{ {
xsltGenericError(xsltGenericErrorContext, xsltGenericError(xsltGenericErrorContext,
"Error!: Debugger function 'xslGetCallStackTop' not overloaded\n"); "Error!: Debugger function 'xslGetCallStackTop' not overloaded\n");
@ -143,7 +145,7 @@ xslGetCallStackTop()
* Return the depth of call stack * Return the depth of call stack
*/ */
int int
xslCallDepth() xslCallDepth(void)
{ {
xsltGenericError(xsltGenericErrorContext, xsltGenericError(xsltGenericErrorContext,
"Error!: Debugger function 'xslCallDepth' not overloaded\n"); "Error!: Debugger function 'xslCallDepth' not overloaded\n");

View File

@ -52,6 +52,7 @@ xslDebugFree()
extern char *xslShellReadline(char *prompt); extern char *xslShellReadline(char *prompt);
/** /**
* @templ : The source node being executed * @templ : The source node being executed
* @node : The data node being processed * @node : The data node being processed
@ -61,8 +62,10 @@ extern char *xslShellReadline(char *prompt);
* A break point has been found so pass control to user * A break point has been found so pass control to user
*/ */
void void
xslDebugBreak(xmlNodePtr templ, xmlNodePtr node, xsltTemplatePtr root, xslDebugBreak(xmlNodePtr templ ATTRIBUTE_UNUSED,
xsltTransformContextPtr ctxt) xmlNodePtr node ATTRIBUTE_UNUSED,
xsltTemplatePtr root ATTRIBUTE_UNUSED,
xsltTransformContextPtr ctxt ATTRIBUTE_UNUSED)
{ {
xsltGenericError(xsltGenericErrorContext, xsltGenericError(xsltGenericErrorContext,
"Error!: Debugger function 'xslDebugBreak' not overloaded\n"); "Error!: Debugger function 'xslDebugBreak' not overloaded\n");

View File

@ -30,7 +30,8 @@
* NULL otherwise * NULL otherwise
*/ */
xmlNodePtr xmlNodePtr
xslFindTemplateNode(xsltStylesheetPtr style, const xmlChar * name) xslFindTemplateNode(xsltStylesheetPtr style ATTRIBUTE_UNUSED,
const xmlChar * name ATTRIBUTE_UNUSED)
{ {
xsltGenericError(xsltGenericErrorContext, xsltGenericError(xsltGenericErrorContext,
@ -51,8 +52,9 @@ xslFindTemplateNode(xsltStylesheetPtr style, const xmlChar * name)
* 0 otherwise * 0 otherwise
*/ */
xmlNodePtr xmlNodePtr
xslFindNodeByLineNo(xsltTransformContextPtr ctxt, xslFindNodeByLineNo(xsltTransformContextPtr ctxt ATTRIBUTE_UNUSED,
const xmlChar * url, long lineNumber) const xmlChar * url ATTRIBUTE_UNUSED,
long lineNumber ATTRIBUTE_UNUSED)
{ {
xsltGenericError(xsltGenericErrorContext, xsltGenericError(xsltGenericErrorContext,
"Error!: Debugger function 'xslFindNodeByLineNo' not overloaded\n"); "Error!: Debugger function 'xslFindNodeByLineNo' not overloaded\n");
@ -70,7 +72,7 @@ xslFindNodeByLineNo(xsltTransformContextPtr ctxt,
* 0 otherwise * 0 otherwise
*/ */
int int
xslFindBreakPointById(int id) xslFindBreakPointById(int id ATTRIBUTE_UNUSED)
{ {
xsltGenericError(xsltGenericErrorContext, xsltGenericError(xsltGenericErrorContext,
"Error!: Debugger function 'xslFindBreakPointById' not overloaded\n"); "Error!: Debugger function 'xslFindBreakPointById' not overloaded\n");
@ -89,7 +91,8 @@ xslFindBreakPointById(int id)
* 0 otherwise * 0 otherwise
*/ */
int int
xslFindBreakPointByLineNo(const xmlChar * url, long lineNumber) xslFindBreakPointByLineNo(const xmlChar * url ATTRIBUTE_UNUSED,
long lineNumber ATTRIBUTE_UNUSED)
{ {
xsltGenericError(xsltGenericErrorContext, xsltGenericError(xsltGenericErrorContext,
"Error!: Debugger function 'xslFindBreakPointByLineNo' not overloaded\n"); "Error!: Debugger function 'xslFindBreakPointByLineNo' not overloaded\n");
@ -108,7 +111,7 @@ xslFindBreakPointByLineNo(const xmlChar * url, long lineNumber)
* 0 otherwise * 0 otherwise
*/ */
int int
xslFindBreakPointByName(const xmlChar * templateName) xslFindBreakPointByName(const xmlChar * templateName ATTRIBUTE_UNUSED)
{ {
xsltGenericError(xsltGenericErrorContext, xsltGenericError(xsltGenericErrorContext,
"Error!: Debugger function 'xslFindBreakPointByName' not overloaded\n"); "Error!: Debugger function 'xslFindBreakPointByName' not overloaded\n");

View File

@ -55,6 +55,9 @@
/* Define if you have the <nan.h> header file. */ /* Define if you have the <nan.h> header file. */
#undef HAVE_NAN_H #undef HAVE_NAN_H
/* Define if you have the <stdarg.h> header file. */
#undef HAVE_STDARG_H
/* Define if you have the <stdlib.h> header file. */ /* Define if you have the <stdlib.h> header file. */
#undef HAVE_STDLIB_H #undef HAVE_STDLIB_H

View File

@ -78,7 +78,7 @@ dnl
AC_CHECK_HEADERS(sys/types.h sys/time.h stdlib.h unistd.h string.h) AC_CHECK_HEADERS(sys/types.h sys/time.h stdlib.h unistd.h string.h)
AC_CHECK_HEADERS(ieeefp.h nan.h math.h fp_class.h float.h ansidecl.h) AC_CHECK_HEADERS(ieeefp.h nan.h math.h fp_class.h float.h ansidecl.h)
AC_CHECK_HEADERS(time.h sys/stat.h) AC_CHECK_HEADERS(time.h sys/stat.h stdarg.h)
AC_CHECK_FUNCS(stat _stat) AC_CHECK_FUNCS(stat _stat)
AC_CHECK_FUNC(isnan, , AC_CHECK_LIB(m, isnan, AC_CHECK_FUNC(isnan, , AC_CHECK_LIB(m, isnan,

View File

@ -74,9 +74,15 @@ platform, get in touch with me to upload the package. I will keep them in the
<a href="ftp://xmlsoft.org/contribs/">contrib directory</a> <a href="ftp://xmlsoft.org/contribs/">contrib directory</a>
</p> </p>
<p>Libxslt is also available from CVS:</p> <p>Libxslt is also available from CVS:</p>
<ul><li><p>The <a href="http://cvs.gnome.org/bonsai/rview.cgi?cvsroot=/cvs/gnome&amp;dir=libxslt">Gnome <ul>
<li><p>The <a href="http://cvs.gnome.org/bonsai/rview.cgi?cvsroot=/cvs/gnome&amp;dir=libxslt">Gnome
CVS base</a>. Check the <a href="http://developer.gnome.org/tools/cvs.html">Gnome CVS Tools</a> CVS base</a>. Check the <a href="http://developer.gnome.org/tools/cvs.html">Gnome CVS Tools</a>
page; the CVS module is <b>libxslt</b>.</p></li></ul> page; the CVS module is <b>libxslt</b>.</p></li>
<li>
<a href="ftp://xmlsoft.org/XSLT/cvs-snapshot.tar.gzftp://xmlsoft.org/XSLT/cvs-snapshot.tar.gzftp://xmlsoft.org/XSLT/cvs-snapshot.tar.gz">daily
snapshots from CVS</a>
are also provided</li>
</ul>
<p><a href="mailto:daniel@veillard.com">Daniel Veillard</a></p> <p><a href="mailto:daniel@veillard.com">Daniel Veillard</a></p>
</td></tr></table></td></tr></table></td></tr></table></td> </td></tr></table></td></tr></table></td></tr></table></td>
</tr></table></td></tr></table> </tr></table></td></tr></table>

View File

@ -123,7 +123,7 @@ NAME="LIBXSLT-ATTRIBUTES"
><DIV ><DIV
CLASS="REFNAMEDIV" CLASS="REFNAMEDIV"
><A ><A
NAME="AEN2498" NAME="AEN2534"
></A ></A
><H2 ><H2
>Name</H2 >Name</H2
@ -131,7 +131,7 @@ NAME="AEN2498"
><DIV ><DIV
CLASS="REFSYNOPSISDIV" CLASS="REFSYNOPSISDIV"
><A ><A
NAME="AEN2501" NAME="AEN2537"
></A ></A
><H2 ><H2
>Synopsis</H2 >Synopsis</H2
@ -190,7 +190,7 @@ HREF="XMLCHAR"
><DIV ><DIV
CLASS="REFSECT1" CLASS="REFSECT1"
><A ><A
NAME="AEN2514" NAME="AEN2550"
></A ></A
><H2 ><H2
>Description</H2 >Description</H2
@ -200,14 +200,14 @@ NAME="AEN2514"
><DIV ><DIV
CLASS="REFSECT1" CLASS="REFSECT1"
><A ><A
NAME="AEN2517" NAME="AEN2553"
></A ></A
><H2 ><H2
>Details</H2 >Details</H2
><DIV ><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2519" NAME="AEN2555"
></A ></A
><H3 ><H3
><A ><A
@ -242,7 +242,7 @@ elements needing preserving</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2527" NAME="AEN2563"
></A ></A
><P ><P
></P ></P
@ -297,7 +297,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2540" NAME="AEN2576"
></A ></A
><H3 ><H3
><A ><A
@ -327,7 +327,7 @@ HREF="libxslt-xsltinternals.html#XSLTSTYLESHEETPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2547" NAME="AEN2583"
></A ></A
><P ><P
></P ></P
@ -365,7 +365,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2556" NAME="AEN2592"
></A ></A
><H3 ><H3
><A ><A
@ -407,7 +407,7 @@ HREF="XMLCHAR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2566" NAME="AEN2602"
></A ></A
><P ><P
></P ></P

View File

@ -123,7 +123,7 @@ NAME="LIBXSLT-IMPORTS"
><DIV ><DIV
CLASS="REFNAMEDIV" CLASS="REFNAMEDIV"
><A ><A
NAME="AEN2592" NAME="AEN2628"
></A ></A
><H2 ><H2
>Name</H2 >Name</H2
@ -131,7 +131,7 @@ NAME="AEN2592"
><DIV ><DIV
CLASS="REFSYNOPSISDIV" CLASS="REFSYNOPSISDIV"
><A ><A
NAME="AEN2595" NAME="AEN2631"
></A ></A
><H2 ><H2
>Synopsis</H2 >Synopsis</H2
@ -229,7 +229,7 @@ HREF="XMLCHAR"
><DIV ><DIV
CLASS="REFSECT1" CLASS="REFSECT1"
><A ><A
NAME="AEN2619" NAME="AEN2655"
></A ></A
><H2 ><H2
>Description</H2 >Description</H2
@ -239,14 +239,14 @@ NAME="AEN2619"
><DIV ><DIV
CLASS="REFSECT1" CLASS="REFSECT1"
><A ><A
NAME="AEN2622" NAME="AEN2658"
></A ></A
><H2 ><H2
>Details</H2 >Details</H2
><DIV ><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2624" NAME="AEN2660"
></A ></A
><H3 ><H3
><A ><A
@ -273,7 +273,7 @@ CLASS="PROGRAMLISTING"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2630" NAME="AEN2666"
></A ></A
><P ><P
></P ></P
@ -345,7 +345,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2647" NAME="AEN2683"
></A ></A
><H3 ><H3
><A ><A
@ -372,7 +372,7 @@ CLASS="PROGRAMLISTING"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2653" NAME="AEN2689"
></A ></A
><P ><P
></P ></P
@ -444,7 +444,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2670" NAME="AEN2706"
></A ></A
><H3 ><H3
><A ><A
@ -479,7 +479,7 @@ elements needing stripping</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2678" NAME="AEN2714"
></A ></A
><P ><P
></P ></P
@ -534,7 +534,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2691" NAME="AEN2727"
></A ></A
><H3 ><H3
><A ><A
@ -569,7 +569,7 @@ elements needing stripping</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2699" NAME="AEN2735"
></A ></A
><P ><P
></P ></P
@ -624,7 +624,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2712" NAME="AEN2748"
></A ></A
><H3 ><H3
><A ><A
@ -657,7 +657,7 @@ HREF="libxslt-xsltinternals.html#XSLTSTYLESHEETPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2720" NAME="AEN2756"
></A ></A
><P ><P
></P ></P
@ -710,7 +710,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2733" NAME="AEN2769"
></A ></A
><H3 ><H3
><A ><A
@ -740,7 +740,7 @@ HREF="libxslt-xsltinternals.html#XSLTTRANSFORMCONTEXTPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2740" NAME="AEN2776"
></A ></A
><P ><P
></P ></P
@ -793,7 +793,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2753" NAME="AEN2789"
></A ></A
><H3 ><H3
><A ><A
@ -828,7 +828,7 @@ respect the import precedence or the wildcards</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2761" NAME="AEN2797"
></A ></A
><P ><P
></P ></P
@ -899,7 +899,7 @@ should be CDTATA wrapped.</TD
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2778" NAME="AEN2814"
></A ></A
><H3 ><H3
><A ><A
@ -940,7 +940,7 @@ HREF="XMLCHAR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2788" NAME="AEN2824"
></A ></A
><P ><P
></P ></P

View File

@ -123,7 +123,7 @@ NAME="LIBXSLT-KEYS"
><DIV ><DIV
CLASS="REFNAMEDIV" CLASS="REFNAMEDIV"
><A ><A
NAME="AEN3470" NAME="AEN3506"
></A ></A
><H2 ><H2
>Name</H2 >Name</H2
@ -131,7 +131,7 @@ NAME="AEN3470"
><DIV ><DIV
CLASS="REFSYNOPSISDIV" CLASS="REFSYNOPSISDIV"
><A ><A
NAME="AEN3473" NAME="AEN3509"
></A ></A
><H2 ><H2
>Synopsis</H2 >Synopsis</H2
@ -227,7 +227,7 @@ HREF="libxslt-xsltinternals.html#XSLTDOCUMENTPTR"
><DIV ><DIV
CLASS="REFSECT1" CLASS="REFSECT1"
><A ><A
NAME="AEN3496" NAME="AEN3532"
></A ></A
><H2 ><H2
>Description</H2 >Description</H2
@ -237,14 +237,14 @@ NAME="AEN3496"
><DIV ><DIV
CLASS="REFSECT1" CLASS="REFSECT1"
><A ><A
NAME="AEN3499" NAME="AEN3535"
></A ></A
><H2 ><H2
>Details</H2 >Details</H2
><DIV ><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3501" NAME="AEN3537"
></A ></A
><H3 ><H3
><A ><A
@ -294,7 +294,7 @@ HREF="XMLNODEPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3513" NAME="AEN3549"
></A ></A
><P ><P
></P ></P
@ -432,7 +432,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3546" NAME="AEN3582"
></A ></A
><H3 ><H3
><A ><A
@ -477,7 +477,7 @@ HREF="XMLCHAR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3557" NAME="AEN3593"
></A ></A
><P ><P
></P ></P
@ -581,7 +581,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3582" NAME="AEN3618"
></A ></A
><H3 ><H3
><A ><A
@ -616,7 +616,7 @@ Should be done before global varibales are initialized.</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3590" NAME="AEN3626"
></A ></A
><P ><P
></P ></P
@ -671,7 +671,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3603" NAME="AEN3639"
></A ></A
><H3 ><H3
><A ><A
@ -701,7 +701,7 @@ HREF="libxslt-xsltinternals.html#XSLTSTYLESHEETPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3610" NAME="AEN3646"
></A ></A
><P ><P
></P ></P
@ -739,7 +739,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3619" NAME="AEN3655"
></A ></A
><H3 ><H3
><A ><A
@ -769,7 +769,7 @@ HREF="libxslt-xsltinternals.html#XSLTDOCUMENTPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3626" NAME="AEN3662"
></A ></A
><P ><P
></P ></P

View File

@ -123,7 +123,7 @@ NAME="LIBXSLT-NAMESPACES"
><DIV ><DIV
CLASS="REFNAMEDIV" CLASS="REFNAMEDIV"
><A ><A
NAME="AEN2814" NAME="AEN2850"
></A ></A
><H2 ><H2
>Name</H2 >Name</H2
@ -131,7 +131,7 @@ NAME="AEN2814"
><DIV ><DIV
CLASS="REFSYNOPSISDIV" CLASS="REFSYNOPSISDIV"
><A ><A
NAME="AEN2817" NAME="AEN2853"
></A ></A
><H2 ><H2
>Synopsis</H2 >Synopsis</H2
@ -255,7 +255,7 @@ HREF="libxslt-xsltinternals.html#XSLTSTYLESHEETPTR"
><DIV ><DIV
CLASS="REFSECT1" CLASS="REFSECT1"
><A ><A
NAME="AEN2848" NAME="AEN2884"
></A ></A
><H2 ><H2
>Description</H2 >Description</H2
@ -265,14 +265,14 @@ NAME="AEN2848"
><DIV ><DIV
CLASS="REFSECT1" CLASS="REFSECT1"
><A ><A
NAME="AEN2851" NAME="AEN2887"
></A ></A
><H2 ><H2
>Details</H2 >Details</H2
><DIV ><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2853" NAME="AEN2889"
></A ></A
><H3 ><H3
><A ><A
@ -307,7 +307,7 @@ them as well as the corresponding namespace.</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2861" NAME="AEN2897"
></A ></A
><P ><P
></P ></P
@ -362,7 +362,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2874" NAME="AEN2910"
></A ></A
><H3 ><H3
><A ><A
@ -409,7 +409,7 @@ Handle namespace aliases</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2885" NAME="AEN2921"
></A ></A
><P ><P
></P ></P
@ -513,7 +513,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2910" NAME="AEN2946"
></A ></A
><H3 ><H3
><A ><A
@ -563,7 +563,7 @@ and add a new namespace decalaration on the node</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2922" NAME="AEN2958"
></A ></A
><P ><P
></P ></P
@ -684,7 +684,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2951" NAME="AEN2987"
></A ></A
><H3 ><H3
><A ><A
@ -732,7 +732,7 @@ aliases</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2962" NAME="AEN2998"
></A ></A
><P ><P
></P ></P
@ -819,7 +819,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2983" NAME="AEN3019"
></A ></A
><H3 ><H3
><A ><A
@ -867,7 +867,7 @@ aliases</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2994" NAME="AEN3030"
></A ></A
><P ><P
></P ></P
@ -954,7 +954,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3015" NAME="AEN3051"
></A ></A
><H3 ><H3
><A ><A
@ -984,7 +984,7 @@ HREF="libxslt-xsltinternals.html#XSLTSTYLESHEETPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3022" NAME="AEN3058"
></A ></A
><P ><P
></P ></P

View File

@ -111,7 +111,7 @@ NAME="LIBXSLT-NUMBERSINTERNALS"
><DIV ><DIV
CLASS="REFNAMEDIV" CLASS="REFNAMEDIV"
><A ><A
NAME="AEN4215" NAME="AEN4251"
></A ></A
><H2 ><H2
>Name</H2 >Name</H2
@ -119,7 +119,7 @@ NAME="AEN4215"
><DIV ><DIV
CLASS="REFSYNOPSISDIV" CLASS="REFSYNOPSISDIV"
><A ><A
NAME="AEN4218" NAME="AEN4254"
></A ></A
><H2 ><H2
>Synopsis</H2 >Synopsis</H2
@ -178,7 +178,7 @@ HREF="XMLNODEPTR"
><DIV ><DIV
CLASS="REFSECT1" CLASS="REFSECT1"
><A ><A
NAME="AEN4231" NAME="AEN4267"
></A ></A
><H2 ><H2
>Description</H2 >Description</H2
@ -188,14 +188,14 @@ NAME="AEN4231"
><DIV ><DIV
CLASS="REFSECT1" CLASS="REFSECT1"
><A ><A
NAME="AEN4234" NAME="AEN4270"
></A ></A
><H2 ><H2
>Details</H2 >Details</H2
><DIV ><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN4236" NAME="AEN4272"
></A ></A
><H3 ><H3
><A ><A
@ -238,7 +238,7 @@ HREF="XMLCHAR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN4246" NAME="AEN4282"
></A ></A
><P ><P
></P ></P
@ -342,7 +342,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN4271" NAME="AEN4307"
></A ></A
><H3 ><H3
><A ><A
@ -378,7 +378,7 @@ HREF="XMLNODEPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN4279" NAME="AEN4315"
></A ></A
><P ><P
></P ></P

View File

@ -636,6 +636,25 @@ HREF="libxslt-transform.html#XSLTREGISTERALLELEMENT"
> (<A > (<A
HREF="libxslt-xsltinternals.html#XSLTTRANSFORMCONTEXTPTR" HREF="libxslt-xsltinternals.html#XSLTTRANSFORMCONTEXTPTR"
>xsltTransformContextPtr</A >xsltTransformContextPtr</A
> ctxt);
void <A
HREF="libxslt-transform.html#XSLHANDLEDEBUGGER"
>xslHandleDebugger</A
> (<GTKDOCLINK
HREF="XMLNODEPTR"
>xmlNodePtr</GTKDOCLINK
> cur,
<GTKDOCLINK
HREF="XMLNODEPTR"
>xmlNodePtr</GTKDOCLINK
> node,
<A
HREF="libxslt-xsltinternals.html#XSLTTEMPLATEPTR"
>xsltTemplatePtr</A
> templ,
<A
HREF="libxslt-xsltinternals.html#XSLTTRANSFORMCONTEXTPTR"
>xsltTransformContextPtr</A
> ctxt);</PRE > ctxt);</PRE
></TD ></TD
></TR ></TR
@ -644,7 +663,7 @@ HREF="libxslt-xsltinternals.html#XSLTTRANSFORMCONTEXTPTR"
><DIV ><DIV
CLASS="REFSECT1" CLASS="REFSECT1"
><A ><A
NAME="AEN1094" NAME="AEN1099"
></A ></A
><H2 ><H2
>Description</H2 >Description</H2
@ -654,14 +673,14 @@ NAME="AEN1094"
><DIV ><DIV
CLASS="REFSECT1" CLASS="REFSECT1"
><A ><A
NAME="AEN1097" NAME="AEN1102"
></A ></A
><H2 ><H2
>Details</H2 >Details</H2
><DIV ><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1099" NAME="AEN1104"
></A ></A
><H3 ><H3
><A ><A
@ -688,7 +707,7 @@ CLASS="PROGRAMLISTING"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1105" NAME="AEN1110"
></A ></A
><P ><P
></P ></P
@ -726,7 +745,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1114" NAME="AEN1119"
></A ></A
><H3 ><H3
><A ><A
@ -753,7 +772,7 @@ CLASS="PROGRAMLISTING"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1120" NAME="AEN1125"
></A ></A
><P ><P
></P ></P
@ -789,7 +808,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1129" NAME="AEN1134"
></A ></A
><H3 ><H3
><A ><A
@ -827,7 +846,7 @@ HREF="XMLDOCPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1138" NAME="AEN1143"
></A ></A
><P ><P
></P ></P
@ -897,7 +916,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1155" NAME="AEN1160"
></A ></A
><H3 ><H3
><A ><A
@ -932,7 +951,7 @@ CLASS="PARAMETER"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1163" NAME="AEN1168"
></A ></A
><P ><P
></P ></P
@ -970,7 +989,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1172" NAME="AEN1177"
></A ></A
><H3 ><H3
><A ><A
@ -1018,7 +1037,7 @@ its own transformation context.</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1183" NAME="AEN1188"
></A ></A
><P ><P
></P ></P
@ -1156,7 +1175,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1216" NAME="AEN1221"
></A ></A
><H3 ><H3
><A ><A
@ -1190,7 +1209,7 @@ HREF="XMLNODEPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1224" NAME="AEN1229"
></A ></A
><P ><P
></P ></P
@ -1245,7 +1264,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1237" NAME="AEN1242"
></A ></A
><H3 ><H3
><A ><A
@ -1292,7 +1311,7 @@ module elements.</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1248" NAME="AEN1253"
></A ></A
><P ><P
></P ></P
@ -1379,7 +1398,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1269" NAME="AEN1274"
></A ></A
><H3 ><H3
><A ><A
@ -1418,7 +1437,7 @@ NOTE: This may lead to a non-wellformed output XML wise !</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1278" NAME="AEN1283"
></A ></A
><P ><P
></P ></P
@ -1505,7 +1524,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1299" NAME="AEN1304"
></A ></A
><H3 ><H3
><A ><A
@ -1548,7 +1567,7 @@ the given output.</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1309" NAME="AEN1314"
></A ></A
><P ><P
></P ></P
@ -1652,7 +1671,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1334" NAME="AEN1339"
></A ></A
><H3 ><H3
><A ><A
@ -1731,7 +1750,7 @@ since the interface uses only UTF8</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1350" NAME="AEN1355"
></A ></A
><P ><P
></P ></P
@ -1870,7 +1889,7 @@ error.</TD
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1383" NAME="AEN1388"
></A ></A
><H3 ><H3
><A ><A
@ -1918,7 +1937,7 @@ caller to handle them back (they may be reused).</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1394" NAME="AEN1399"
></A ></A
><P ><P
></P ></P
@ -2024,7 +2043,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1419" NAME="AEN1424"
></A ></A
><H3 ><H3
><A ><A
@ -2066,7 +2085,7 @@ HREF="libxslt-xsltinternals.html#XSLTSTYLEPRECOMPPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1429" NAME="AEN1434"
></A ></A
><P ><P
></P ></P
@ -2155,7 +2174,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1450" NAME="AEN1455"
></A ></A
><H3 ><H3
><A ><A
@ -2198,7 +2217,7 @@ called directly</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1460" NAME="AEN1465"
></A ></A
><P ><P
></P ></P
@ -2287,7 +2306,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1481" NAME="AEN1486"
></A ></A
><H3 ><H3
><A ><A
@ -2329,7 +2348,7 @@ HREF="libxslt-xsltinternals.html#XSLTSTYLEPRECOMPPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1491" NAME="AEN1496"
></A ></A
><P ><P
></P ></P
@ -2418,7 +2437,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1512" NAME="AEN1517"
></A ></A
><H3 ><H3
><A ><A
@ -2460,7 +2479,7 @@ HREF="libxslt-xsltinternals.html#XSLTSTYLEPRECOMPPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1522" NAME="AEN1527"
></A ></A
><P ><P
></P ></P
@ -2549,7 +2568,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1543" NAME="AEN1548"
></A ></A
><H3 ><H3
><A ><A
@ -2591,7 +2610,7 @@ HREF="libxslt-xsltinternals.html#XSLTSTYLEPRECOMPPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1553" NAME="AEN1558"
></A ></A
><P ><P
></P ></P
@ -2680,7 +2699,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1574" NAME="AEN1579"
></A ></A
><H3 ><H3
><A ><A
@ -2722,7 +2741,7 @@ HREF="libxslt-xsltinternals.html#XSLTSTYLEPRECOMPPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1584" NAME="AEN1589"
></A ></A
><P ><P
></P ></P
@ -2811,7 +2830,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1605" NAME="AEN1610"
></A ></A
><H3 ><H3
><A ><A
@ -2853,7 +2872,7 @@ HREF="libxslt-xsltinternals.html#XSLTSTYLEPRECOMPPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1615" NAME="AEN1620"
></A ></A
><P ><P
></P ></P
@ -2942,7 +2961,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1636" NAME="AEN1641"
></A ></A
><H3 ><H3
><A ><A
@ -2984,7 +3003,7 @@ HREF="libxslt-xsltinternals.html#XSLTSTYLEPRECOMPPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1646" NAME="AEN1651"
></A ></A
><P ><P
></P ></P
@ -3073,7 +3092,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1667" NAME="AEN1672"
></A ></A
><H3 ><H3
><A ><A
@ -3115,7 +3134,7 @@ HREF="libxslt-xsltinternals.html#XSLTSTYLEPRECOMPPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1677" NAME="AEN1682"
></A ></A
><P ><P
></P ></P
@ -3204,7 +3223,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1698" NAME="AEN1703"
></A ></A
><H3 ><H3
><A ><A
@ -3246,7 +3265,7 @@ HREF="libxslt-xsltinternals.html#XSLTSTYLEPRECOMPPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1708" NAME="AEN1713"
></A ></A
><P ><P
></P ></P
@ -3335,7 +3354,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1729" NAME="AEN1734"
></A ></A
><H3 ><H3
><A ><A
@ -3377,7 +3396,7 @@ HREF="libxslt-xsltinternals.html#XSLTSTYLEPRECOMPPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1739" NAME="AEN1744"
></A ></A
><P ><P
></P ></P
@ -3466,7 +3485,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1760" NAME="AEN1765"
></A ></A
><H3 ><H3
><A ><A
@ -3508,7 +3527,7 @@ HREF="libxslt-xsltinternals.html#XSLTSTYLEPRECOMPPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1770" NAME="AEN1775"
></A ></A
><P ><P
></P ></P
@ -3597,7 +3616,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1791" NAME="AEN1796"
></A ></A
><H3 ><H3
><A ><A
@ -3639,7 +3658,7 @@ HREF="libxslt-xsltinternals.html#XSLTSTYLEPRECOMPPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1801" NAME="AEN1806"
></A ></A
><P ><P
></P ></P
@ -3728,7 +3747,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1822" NAME="AEN1827"
></A ></A
><H3 ><H3
><A ><A
@ -3770,7 +3789,7 @@ HREF="libxslt-xsltinternals.html#XSLTSTYLEPRECOMPPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1832" NAME="AEN1837"
></A ></A
><P ><P
></P ></P
@ -3859,7 +3878,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1853" NAME="AEN1858"
></A ></A
><H3 ><H3
><A ><A
@ -3901,7 +3920,7 @@ HREF="libxslt-xsltinternals.html#XSLTSTYLEPRECOMPPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1863" NAME="AEN1868"
></A ></A
><P ><P
></P ></P
@ -3990,7 +4009,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1884" NAME="AEN1889"
></A ></A
><H3 ><H3
><A ><A
@ -4032,7 +4051,7 @@ HREF="libxslt-xsltinternals.html#XSLTSTYLEPRECOMPPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1894" NAME="AEN1899"
></A ></A
><P ><P
></P ></P
@ -4121,7 +4140,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1915" NAME="AEN1920"
></A ></A
><H3 ><H3
><A ><A
@ -4163,7 +4182,7 @@ HREF="libxslt-xsltinternals.html#XSLTSTYLEPRECOMPPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1925" NAME="AEN1930"
></A ></A
><P ><P
></P ></P
@ -4252,7 +4271,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN1946" NAME="AEN1951"
></A ></A
><H3 ><H3
><A ><A
@ -4282,7 +4301,7 @@ HREF="libxslt-xsltinternals.html#XSLTTRANSFORMCONTEXTPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN1953" NAME="AEN1958"
></A ></A
><P ><P
></P ></P
@ -4317,6 +4336,139 @@ VALIGN="TOP"
></P ></P
></DIV ></DIV
></DIV ></DIV
><HR><DIV
CLASS="REFSECT2"
><A
NAME="AEN1967"
></A
><H3
><A
NAME="XSLHANDLEDEBUGGER"
></A
>xslHandleDebugger ()</H3
><TABLE
BORDER="0"
BGCOLOR="#D6E8FF"
WIDTH="100%"
CELLPADDING="6"
><TR
><TD
><PRE
CLASS="PROGRAMLISTING"
>void xslHandleDebugger (<GTKDOCLINK
HREF="XMLNODEPTR"
>xmlNodePtr</GTKDOCLINK
> cur,
<GTKDOCLINK
HREF="XMLNODEPTR"
>xmlNodePtr</GTKDOCLINK
> node,
<A
HREF="libxslt-xsltinternals.html#XSLTTEMPLATEPTR"
>xsltTemplatePtr</A
> templ,
<A
HREF="libxslt-xsltinternals.html#XSLTTRANSFORMCONTEXTPTR"
>xsltTransformContextPtr</A
> ctxt);</PRE
></TD
></TR
></TABLE
><P
>If either cur or node are a breakpoint, or xslDebugStatus in state
where debugging must occcur at this time then transfer control
to the xslDebugBreak function</P
><P
></P
><DIV
CLASS="INFORMALTABLE"
><A
NAME="AEN1977"
></A
><P
></P
><TABLE
BORDER="0"
WIDTH="100%"
BGCOLOR="#FFD0D0"
CELLSPACING="0"
CELLPADDING="4"
CLASS="CALSTABLE"
><TBODY
><TR
><TD
WIDTH="20%"
ALIGN="RIGHT"
VALIGN="TOP"
><TT
CLASS="PARAMETER"
><I
>cur</I
></TT
>&nbsp;:</TD
><TD
WIDTH="80%"
ALIGN="LEFT"
VALIGN="TOP"
> source node being executed</TD
></TR
><TR
><TD
WIDTH="20%"
ALIGN="RIGHT"
VALIGN="TOP"
><TT
CLASS="PARAMETER"
><I
>node</I
></TT
>&nbsp;:</TD
><TD
WIDTH="80%"
ALIGN="LEFT"
VALIGN="TOP"
> data node being processed</TD
></TR
><TR
><TD
WIDTH="20%"
ALIGN="RIGHT"
VALIGN="TOP"
><TT
CLASS="PARAMETER"
><I
>templ</I
></TT
>&nbsp;:</TD
><TD
WIDTH="80%"
ALIGN="LEFT"
VALIGN="TOP"
> temlate that applies to node</TD
></TR
><TR
><TD
WIDTH="20%"
ALIGN="RIGHT"
VALIGN="TOP"
><TT
CLASS="PARAMETER"
><I
>ctxt</I
></TT
>&nbsp;:</TD
><TD
WIDTH="80%"
ALIGN="LEFT"
VALIGN="TOP"
> the xslt transform context </TD
></TR
></TBODY
></TABLE
><P
></P
></DIV
></DIV
></DIV ></DIV
><DIV ><DIV
CLASS="NAVFOOTER" CLASS="NAVFOOTER"

View File

@ -123,7 +123,7 @@ NAME="LIBXSLT-VARIABLES"
><DIV ><DIV
CLASS="REFNAMEDIV" CLASS="REFNAMEDIV"
><A ><A
NAME="AEN3036" NAME="AEN3072"
></A ></A
><H2 ><H2
>Name</H2 >Name</H2
@ -131,7 +131,7 @@ NAME="AEN3036"
><DIV ><DIV
CLASS="REFSYNOPSISDIV" CLASS="REFSYNOPSISDIV"
><A ><A
NAME="AEN3039" NAME="AEN3075"
></A ></A
><H2 ><H2
>Synopsis</H2 >Synopsis</H2
@ -320,7 +320,7 @@ HREF="XMLCHAR"
><DIV ><DIV
CLASS="REFSECT1" CLASS="REFSECT1"
><A ><A
NAME="AEN3087" NAME="AEN3123"
></A ></A
><H2 ><H2
>Description</H2 >Description</H2
@ -330,14 +330,14 @@ NAME="AEN3087"
><DIV ><DIV
CLASS="REFSECT1" CLASS="REFSECT1"
><A ><A
NAME="AEN3090" NAME="AEN3126"
></A ></A
><H2 ><H2
>Details</H2 >Details</H2
><DIV ><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3092" NAME="AEN3128"
></A ></A
><H3 ><H3
><A ><A
@ -364,7 +364,7 @@ CLASS="PROGRAMLISTING"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3098" NAME="AEN3134"
></A ></A
><P ><P
></P ></P
@ -402,7 +402,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3107" NAME="AEN3143"
></A ></A
><H3 ><H3
><A ><A
@ -433,7 +433,7 @@ done on parsed stylesheets before starting to apply transformations</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3114" NAME="AEN3150"
></A ></A
><P ><P
></P ></P
@ -486,7 +486,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3127" NAME="AEN3163"
></A ></A
><H3 ><H3
><A ><A
@ -534,7 +534,7 @@ parameter used literally, use xsltQuoteUserParams.</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3137" NAME="AEN3173"
></A ></A
><P ><P
></P ></P
@ -604,7 +604,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3154" NAME="AEN3190"
></A ></A
><H3 ><H3
><A ><A
@ -650,7 +650,7 @@ stylesheets before starting to apply transformations.</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3164" NAME="AEN3200"
></A ></A
><P ><P
></P ></P
@ -720,7 +720,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3181" NAME="AEN3217"
></A ></A
><H3 ><H3
><A ><A
@ -789,7 +789,7 @@ details see description of xsltProcessOneUserParamInternal.</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3196" NAME="AEN3232"
></A ></A
><P ><P
></P ></P
@ -876,7 +876,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3217" NAME="AEN3253"
></A ></A
><H3 ><H3
><A ><A
@ -940,7 +940,7 @@ context's global variable/parameter hash table.</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3231" NAME="AEN3267"
></A ></A
><P ><P
></P ></P
@ -1027,7 +1027,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3252" NAME="AEN3288"
></A ></A
><H3 ><H3
><A ><A
@ -1062,7 +1062,7 @@ its value.</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3260" NAME="AEN3296"
></A ></A
><P ><P
></P ></P
@ -1117,7 +1117,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3273" NAME="AEN3309"
></A ></A
><H3 ><H3
><A ><A
@ -1152,7 +1152,7 @@ its value.</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3281" NAME="AEN3317"
></A ></A
><P ><P
></P ></P
@ -1207,7 +1207,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3294" NAME="AEN3330"
></A ></A
><H3 ><H3
><A ><A
@ -1242,7 +1242,7 @@ its value.</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3302" NAME="AEN3338"
></A ></A
><P ><P
></P ></P
@ -1297,7 +1297,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3315" NAME="AEN3351"
></A ></A
><H3 ><H3
><A ><A
@ -1332,7 +1332,7 @@ its value.</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3323" NAME="AEN3359"
></A ></A
><P ><P
></P ></P
@ -1387,7 +1387,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3336" NAME="AEN3372"
></A ></A
><H3 ><H3
><A ><A
@ -1428,7 +1428,7 @@ its value but doesn't record it.</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3346" NAME="AEN3382"
></A ></A
><P ><P
></P ></P
@ -1498,7 +1498,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3363" NAME="AEN3399"
></A ></A
><H3 ><H3
><A ><A
@ -1532,7 +1532,7 @@ HREF="libxslt-xsltinternals.html#XSLTSTACKELEMPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3371" NAME="AEN3407"
></A ></A
><P ><P
></P ></P
@ -1602,7 +1602,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3388" NAME="AEN3424"
></A ></A
><H3 ><H3
><A ><A
@ -1633,7 +1633,7 @@ its value.</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3395" NAME="AEN3431"
></A ></A
><P ><P
></P ></P
@ -1671,7 +1671,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3404" NAME="AEN3440"
></A ></A
><H3 ><H3
><A ><A
@ -1713,7 +1713,7 @@ variable value.</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3414" NAME="AEN3450"
></A ></A
><P ><P
></P ></P
@ -1800,7 +1800,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3435" NAME="AEN3471"
></A ></A
><H3 ><H3
><A ><A
@ -1839,7 +1839,7 @@ interpretor.</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3444" NAME="AEN3480"
></A ></A
><P ><P
></P ></P

View File

@ -123,7 +123,7 @@ NAME="LIBXSLT-XSLTINTERNALS"
><DIV ><DIV
CLASS="REFNAMEDIV" CLASS="REFNAMEDIV"
><A ><A
NAME="AEN3640" NAME="AEN3676"
></A ></A
><H2 ><H2
>Name</H2 >Name</H2
@ -131,7 +131,7 @@ NAME="AEN3640"
><DIV ><DIV
CLASS="REFSYNOPSISDIV" CLASS="REFSYNOPSISDIV"
><A ><A
NAME="AEN3643" NAME="AEN3679"
></A ></A
><H2 ><H2
>Synopsis</H2 >Synopsis</H2
@ -425,7 +425,7 @@ HREF="XMLNODEPTR"
><DIV ><DIV
CLASS="REFSECT1" CLASS="REFSECT1"
><A ><A
NAME="AEN3719" NAME="AEN3755"
></A ></A
><H2 ><H2
>Description</H2 >Description</H2
@ -435,14 +435,14 @@ NAME="AEN3719"
><DIV ><DIV
CLASS="REFSECT1" CLASS="REFSECT1"
><A ><A
NAME="AEN3722" NAME="AEN3758"
></A ></A
><H2 ><H2
>Details</H2 >Details</H2
><DIV ><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3724" NAME="AEN3760"
></A ></A
><H3 ><H3
><A ><A
@ -470,7 +470,7 @@ CLASS="PROGRAMLISTING"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3730" NAME="AEN3766"
></A ></A
><H3 ><H3
><A ><A
@ -498,7 +498,7 @@ CLASS="PROGRAMLISTING"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3736" NAME="AEN3772"
></A ></A
><H3 ><H3
><A ><A
@ -544,7 +544,7 @@ CLASS="PROGRAMLISTING"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3742" NAME="AEN3778"
></A ></A
><H3 ><H3
><A ><A
@ -570,7 +570,7 @@ CLASS="PROGRAMLISTING"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3747" NAME="AEN3783"
></A ></A
><H3 ><H3
><A ><A
@ -614,7 +614,7 @@ CLASS="PROGRAMLISTING"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3753" NAME="AEN3789"
></A ></A
><H3 ><H3
><A ><A
@ -640,7 +640,7 @@ CLASS="PROGRAMLISTING"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3758" NAME="AEN3794"
></A ></A
><H3 ><H3
><A ><A
@ -673,7 +673,7 @@ CLASS="PROGRAMLISTING"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3764" NAME="AEN3800"
></A ></A
><H3 ><H3
><A ><A
@ -699,7 +699,7 @@ CLASS="PROGRAMLISTING"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3769" NAME="AEN3805"
></A ></A
><H3 ><H3
><A ><A
@ -781,7 +781,7 @@ CLASS="PROGRAMLISTING"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3774" NAME="AEN3810"
></A ></A
><H3 ><H3
><A ><A
@ -807,7 +807,7 @@ CLASS="PROGRAMLISTING"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3779" NAME="AEN3815"
></A ></A
><H3 ><H3
><A ><A
@ -844,7 +844,7 @@ designed to be extended by extension implementors.</P
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3785" NAME="AEN3821"
></A ></A
><H3 ><H3
><A ><A
@ -872,7 +872,7 @@ HREF="TYPEDEF"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3791" NAME="AEN3827"
></A ></A
><P ><P
></P ></P
@ -908,7 +908,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3800" NAME="AEN3836"
></A ></A
><H3 ><H3
><A ><A
@ -951,7 +951,7 @@ stylesheet language like xsl:if or xsl:apply-templates.</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3810" NAME="AEN3846"
></A ></A
><P ><P
></P ></P
@ -1040,7 +1040,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3831" NAME="AEN3867"
></A ></A
><H3 ><H3
><A ><A
@ -1089,7 +1089,7 @@ CLASS="PROGRAMLISTING"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3836" NAME="AEN3872"
></A ></A
><H3 ><H3
><A ><A
@ -1122,7 +1122,7 @@ HREF="libxslt-xsltinternals.html#XSLTELEMPRECOMP"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3844" NAME="AEN3880"
></A ></A
><P ><P
></P ></P
@ -1163,7 +1163,7 @@ HREF="libxslt-xsltinternals.html#XSLTELEMPRECOMP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3854" NAME="AEN3890"
></A ></A
><H3 ><H3
><A ><A
@ -1237,7 +1237,7 @@ precomputed data.</P
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3860" NAME="AEN3896"
></A ></A
><H3 ><H3
><A ><A
@ -1263,7 +1263,7 @@ CLASS="PROGRAMLISTING"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3865" NAME="AEN3901"
></A ></A
><H3 ><H3
><A ><A
@ -1298,7 +1298,7 @@ CLASS="PROGRAMLISTING"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3870" NAME="AEN3906"
></A ></A
><H3 ><H3
><A ><A
@ -1324,7 +1324,7 @@ CLASS="PROGRAMLISTING"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3875" NAME="AEN3911"
></A ></A
><H3 ><H3
><A ><A
@ -1445,7 +1445,7 @@ CLASS="PROGRAMLISTING"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3880" NAME="AEN3916"
></A ></A
><H3 ><H3
><A ><A
@ -1471,7 +1471,7 @@ CLASS="PROGRAMLISTING"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3885" NAME="AEN3921"
></A ></A
><H3 ><H3
><A ><A
@ -1501,7 +1501,7 @@ CLASS="PROGRAMLISTING"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3890" NAME="AEN3926"
></A ></A
><H3 ><H3
><A ><A
@ -1531,7 +1531,7 @@ CLASS="PROGRAMLISTING"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3895" NAME="AEN3931"
></A ></A
><H3 ><H3
><A ><A
@ -1560,7 +1560,7 @@ will return from the function</P
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3901" NAME="AEN3937"
></A ></A
><H3 ><H3
><A ><A
@ -1589,7 +1589,7 @@ will goto the error: label</P
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3907" NAME="AEN3943"
></A ></A
><H3 ><H3
><A ><A
@ -1618,7 +1618,7 @@ will return from the function with a 0 value</P
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3913" NAME="AEN3949"
></A ></A
><H3 ><H3
><A ><A
@ -1648,7 +1648,7 @@ HREF="libxslt-xsltinternals.html#XSLTSTYLESHEETPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3920" NAME="AEN3956"
></A ></A
><P ><P
></P ></P
@ -1684,7 +1684,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3929" NAME="AEN3965"
></A ></A
><H3 ><H3
><A ><A
@ -1717,7 +1717,7 @@ HREF="XMLCHAR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3937" NAME="AEN3973"
></A ></A
><P ><P
></P ></P
@ -1770,7 +1770,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3950" NAME="AEN3986"
></A ></A
><H3 ><H3
><A ><A
@ -1805,7 +1805,7 @@ CLASS="PARAMETER"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3958" NAME="AEN3994"
></A ></A
><P ><P
></P ></P
@ -1843,7 +1843,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3967" NAME="AEN4003"
></A ></A
><H3 ><H3
><A ><A
@ -1873,7 +1873,7 @@ HREF="XMLCHAR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3974" NAME="AEN4010"
></A ></A
><P ><P
></P ></P
@ -1926,7 +1926,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN3987" NAME="AEN4023"
></A ></A
><H3 ><H3
><A ><A
@ -1961,7 +1961,7 @@ CLASS="PARAMETER"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN3995" NAME="AEN4031"
></A ></A
><P ><P
></P ></P
@ -1999,7 +1999,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN4004" NAME="AEN4040"
></A ></A
><H3 ><H3
><A ><A
@ -2037,7 +2037,7 @@ HREF="XMLCHAR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN4013" NAME="AEN4049"
></A ></A
><P ><P
></P ></P
@ -2107,7 +2107,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN4030" NAME="AEN4066"
></A ></A
><H3 ><H3
><A ><A
@ -2145,7 +2145,7 @@ HREF="XMLDOCPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN4039" NAME="AEN4075"
></A ></A
><P ><P
></P ></P
@ -2215,7 +2215,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN4056" NAME="AEN4092"
></A ></A
><H3 ><H3
><A ><A
@ -2250,7 +2250,7 @@ information related to the stylesheet output</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN4064" NAME="AEN4100"
></A ></A
><P ><P
></P ></P
@ -2305,7 +2305,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN4077" NAME="AEN4113"
></A ></A
><H3 ><H3
><A ><A
@ -2338,7 +2338,7 @@ HREF="XMLDOCPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN4085" NAME="AEN4121"
></A ></A
><P ><P
></P ></P
@ -2391,7 +2391,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN4098" NAME="AEN4134"
></A ></A
><H3 ><H3
><A ><A
@ -2435,7 +2435,7 @@ transformation is done.</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN4107" NAME="AEN4143"
></A ></A
><P ><P
></P ></P
@ -2488,7 +2488,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN4120" NAME="AEN4156"
></A ></A
><H3 ><H3
><A ><A
@ -2526,7 +2526,7 @@ HREF="XMLNODEPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN4129" NAME="AEN4165"
></A ></A
><P ><P
></P ></P
@ -2598,7 +2598,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN4146" NAME="AEN4182"
></A ></A
><H3 ><H3
><A ><A
@ -2677,7 +2677,7 @@ X any other characters can be used in the prefix or suffix
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN4164" NAME="AEN4200"
></A ></A
><P ><P
></P ></P
@ -2781,7 +2781,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN4189" NAME="AEN4225"
></A ></A
><H3 ><H3
><A ><A
@ -2817,7 +2817,7 @@ and process xslt:text</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN4197" NAME="AEN4233"
></A ></A
><P ><P
></P ></P

View File

@ -123,7 +123,7 @@ NAME="LIBXSLT-XSLTUTILS"
><DIV ><DIV
CLASS="REFNAMEDIV" CLASS="REFNAMEDIV"
><A ><A
NAME="AEN1967" NAME="AEN2003"
></A ></A
><H2 ><H2
>Name</H2 >Name</H2
@ -131,7 +131,7 @@ NAME="AEN1967"
><DIV ><DIV
CLASS="REFSYNOPSISDIV" CLASS="REFSYNOPSISDIV"
><A ><A
NAME="AEN1970" NAME="AEN2006"
></A ></A
><H2 ><H2
>Synopsis</H2 >Synopsis</H2
@ -354,7 +354,7 @@ HREF="libxslt-xsltutils.html#XSLT-TIMESTAMP-TICS-PER-SEC-CAPS"
><DIV ><DIV
CLASS="REFSECT1" CLASS="REFSECT1"
><A ><A
NAME="AEN2026" NAME="AEN2062"
></A ></A
><H2 ><H2
>Description</H2 >Description</H2
@ -364,14 +364,14 @@ NAME="AEN2026"
><DIV ><DIV
CLASS="REFSECT1" CLASS="REFSECT1"
><A ><A
NAME="AEN2029" NAME="AEN2065"
></A ></A
><H2 ><H2
>Details</H2 >Details</H2
><DIV ><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2031" NAME="AEN2067"
></A ></A
><H3 ><H3
><A ><A
@ -397,7 +397,7 @@ CLASS="PROGRAMLISTING"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2036" NAME="AEN2072"
></A ></A
><H3 ><H3
><A ><A
@ -423,7 +423,7 @@ CLASS="PROGRAMLISTING"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2041" NAME="AEN2077"
></A ></A
><H3 ><H3
><A ><A
@ -450,7 +450,7 @@ CLASS="PROGRAMLISTING"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2047" NAME="AEN2083"
></A ></A
><P ><P
></P ></P
@ -488,7 +488,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2056" NAME="AEN2092"
></A ></A
><H3 ><H3
><A ><A
@ -515,7 +515,7 @@ CLASS="PROGRAMLISTING"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2062" NAME="AEN2098"
></A ></A
><P ><P
></P ></P
@ -570,7 +570,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2075" NAME="AEN2111"
></A ></A
><H3 ><H3
><A ><A
@ -597,7 +597,7 @@ CLASS="PROGRAMLISTING"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2081" NAME="AEN2117"
></A ></A
><P ><P
></P ></P
@ -635,7 +635,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2090" NAME="AEN2126"
></A ></A
><H3 ><H3
><A ><A
@ -690,7 +690,7 @@ default declaration values unless DTD use has been turned off.</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2104" NAME="AEN2140"
></A ></A
><P ><P
></P ></P
@ -778,7 +778,7 @@ It's up to the caller to free the memory.</TD
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2125" NAME="AEN2161"
></A ></A
><H3 ><H3
><A ><A
@ -816,7 +816,7 @@ HREF="XMLNODEPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2134" NAME="AEN2170"
></A ></A
><P ><P
></P ></P
@ -888,7 +888,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2151" NAME="AEN2187"
></A ></A
><H3 ><H3
><A ><A
@ -926,7 +926,7 @@ HREF="XMLNODEPTR"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2160" NAME="AEN2196"
></A ></A
><P ><P
></P ></P
@ -998,7 +998,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2177" NAME="AEN2213"
></A ></A
><H3 ><H3
><A ><A
@ -1060,7 +1060,7 @@ CLASS="PARAMETER"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2189" NAME="AEN2225"
></A ></A
><P ><P
></P ></P
@ -1115,7 +1115,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2202" NAME="AEN2238"
></A ></A
><H3 ><H3
><A ><A
@ -1177,7 +1177,7 @@ CLASS="PARAMETER"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2214" NAME="AEN2250"
></A ></A
><P ><P
></P ></P
@ -1232,7 +1232,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2227" NAME="AEN2263"
></A ></A
><H3 ><H3
><A ><A
@ -1267,7 +1267,7 @@ CLASS="PARAMETER"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2235" NAME="AEN2271"
></A ></A
><P ><P
></P ></P
@ -1305,7 +1305,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2244" NAME="AEN2280"
></A ></A
><H3 ><H3
><A ><A
@ -1341,7 +1341,7 @@ requirement provided by the arry of nodes.</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2252" NAME="AEN2288"
></A ></A
><P ><P
></P ></P
@ -1413,7 +1413,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2269" NAME="AEN2305"
></A ></A
><H3 ><H3
><A ><A
@ -1472,7 +1472,7 @@ defined and hence has the same lifespan as the document holding it.</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2282" NAME="AEN2318"
></A ></A
><P ><P
></P ></P
@ -1548,7 +1548,7 @@ not prefixed.</TD
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2300" NAME="AEN2336"
></A ></A
><H3 ><H3
><A ><A
@ -1602,7 +1602,7 @@ CLASS="PARAMETER"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2312" NAME="AEN2348"
></A ></A
><P ><P
></P ></P
@ -1689,7 +1689,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2333" NAME="AEN2369"
></A ></A
><H3 ><H3
><A ><A
@ -1741,7 +1741,7 @@ CLASS="PARAMETER"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2344" NAME="AEN2380"
></A ></A
><P ><P
></P ></P
@ -1845,7 +1845,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2369" NAME="AEN2405"
></A ></A
><H3 ><H3
><A ><A
@ -1900,7 +1900,7 @@ CLASS="PARAMETER"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2381" NAME="AEN2417"
></A ></A
><P ><P
></P ></P
@ -1987,7 +1987,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2402" NAME="AEN2438"
></A ></A
><H3 ><H3
><A ><A
@ -2034,7 +2034,7 @@ This does not close the descriptor.</P
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2412" NAME="AEN2448"
></A ></A
><P ><P
></P ></P
@ -2121,7 +2121,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2433" NAME="AEN2469"
></A ></A
><H3 ><H3
><A ><A
@ -2160,7 +2160,7 @@ CLASS="PARAMETER"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2442" NAME="AEN2478"
></A ></A
><P ><P
></P ></P
@ -2215,7 +2215,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2455" NAME="AEN2491"
></A ></A
><H3 ><H3
><A ><A
@ -2245,7 +2245,7 @@ HREF="LONG"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2462" NAME="AEN2498"
></A ></A
><P ><P
></P ></P
@ -2282,7 +2282,7 @@ profiling</TD
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2471" NAME="AEN2507"
></A ></A
><H3 ><H3
><A ><A
@ -2315,7 +2315,7 @@ HREF="libxslt-xsltutils.html#XSLTTIMESTAMP"
><DIV ><DIV
CLASS="INFORMALTABLE" CLASS="INFORMALTABLE"
><A ><A
NAME="AEN2479" NAME="AEN2515"
></A ></A
><P ><P
></P ></P
@ -2353,7 +2353,7 @@ VALIGN="TOP"
><HR><DIV ><HR><DIV
CLASS="REFSECT2" CLASS="REFSECT2"
><A ><A
NAME="AEN2488" NAME="AEN2524"
></A ></A
><H3 ><H3
><A ><A

View File

@ -62,6 +62,13 @@ A:link, A:visited, A:active { text-decoration: underline }
<td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"> <td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd">
<h3>CVS only : check the <a href="http://cvs.gnome.org/lxr/source/libxslt/ChangeLog">Changelog</a> file <h3>CVS only : check the <a href="http://cvs.gnome.org/lxr/source/libxslt/ChangeLog">Changelog</a> file
for a really accurate description</h3> for a really accurate description</h3>
<h3>1.0.7: Nov 10 2001</h3>
<ul>
<li>remove a compilation problem with LIBXSLT_PUBLIC</li>
<li>Finishing the integration steps for Keith Isdale debugger</li>
<li>fixes the handling of indent=&quot;no&quot; on HTML output</li>
<li>fixes on the configure script and RPM spec file</li>
</ul>
<h3>1.0.6: Oct 30 2001</h3> <h3>1.0.6: Oct 30 2001</h3>
<ul> <ul>
<li>bug fixes on number formatting (Thomas), date/time functions (Bruce <li>bug fixes on number formatting (Thomas), date/time functions (Bruce

View File

@ -187,6 +187,10 @@ platform, get in touch with me to upload the package. I will keep them in the
href="http://developer.gnome.org/tools/cvs.html">Gnome CVS Tools</a> href="http://developer.gnome.org/tools/cvs.html">Gnome CVS Tools</a>
page; the CVS module is <b>libxslt</b>.</p> page; the CVS module is <b>libxslt</b>.</p>
</li> </li>
<li><a
href="ftp://xmlsoft.org/XSLT/cvs-snapshot.tar.gzftp://xmlsoft.org/XSLT/cvs-snapshot.tar.gzftp://xmlsoft.org/XSLT/cvs-snapshot.tar.gz">daily
snapshots from CVS</a>
are also provided</li>
</ul> </ul>
<h2><a name="News">News</a></h2> <h2><a name="News">News</a></h2>
@ -195,6 +199,14 @@ 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</a> file href="http://cvs.gnome.org/lxr/source/libxslt/ChangeLog">Changelog</a> file
for a really accurate description</h3> for a really accurate description</h3>
<h3>1.0.7: Nov 10 2001</h3>
<ul>
<li>remove a compilation problem with LIBXSLT_PUBLIC</li>
<li>Finishing the integration steps for Keith Isdale debugger</li>
<li>fixes the handling of indent="no" on HTML output</li>
<li>fixes on the configure script and RPM spec file</li>
</ul>
<h3>1.0.6: Oct 30 2001</h3> <h3>1.0.6: Oct 30 2001</h3>
<ul> <ul>
<li>bug fixes on number formatting (Thomas), date/time functions (Bruce <li>bug fixes on number formatting (Thomas), date/time functions (Bruce

View File

@ -1,21 +1,16 @@
# Note that this is NOT a relocatable package
%define ver @VERSION@
%define prefix /usr
%define datadir %{prefix}/share
Summary: Library providing the Gnome XSLT engine Summary: Library providing the Gnome XSLT engine
Name: libxslt Name: libxslt
Version: %ver Version: @VERSION@
Release: 1 Release: 1
Copyright: LGPL Copyright: LGPL
Group: Development/Libraries Group: Development/Libraries
Source: ftp://xmlsoft.org/XSLT/libxslt-%{ver}.tar.gz Source: ftp://xmlsoft.org/XSLT/libxslt-%{version}.tar.gz
BuildRoot: /var/tmp/libxslt-%{PACKAGE_VERSION}-root BuildRoot: %{_tmppath}/%{name}-%{version}-root
URL: http://xmlsoft.org/XSLT/
Requires: libxml2 >= @LIBXML_REQUIRED_VERSION@ Requires: libxml2 >= @LIBXML_REQUIRED_VERSION@
BuildRequires: libxml2-devel >= @LIBXML_REQUIRED_VERSION@ BuildRequires: libxml2-devel >= @LIBXML_REQUIRED_VERSION@
Prefix: %{_prefix}
URL: http://xmlsoft.org/XSLT/ Docdir: %{_docdir}
Docdir: %{prefix}/doc
%description %description
This C library allows to transform XML files into other XML files This C library allows to transform XML files into other XML files
@ -27,7 +22,7 @@ installed. The xsltproc command is a command line interface to the XSLT engine
Summary: Libraries, includes, etc. to embed the Gnome XSLT engine Summary: Libraries, includes, etc. to embed the Gnome XSLT engine
Group: Development/Libraries Group: Development/Libraries
Requires: libxslt = %{version} Requires: libxslt = %{version}
Requires: libxml2-devel >= 2.3.10 Requires: libxml2-devel >= @LIBXML_REQUIRED_VERSION@
%description devel %description devel
This C library allows to transform XML files into other XML files This C library allows to transform XML files into other XML files
@ -35,28 +30,22 @@ This C library allows to transform XML files into other XML files
mechanism. To use it you need to have a version of libxml2 >= 2.3.8 mechanism. To use it you need to have a version of libxml2 >= 2.3.8
installed. installed.
%changelog
* Mon Jan 22 2001 Daniel.Veillard <daniel@veillard.com>
- created based on libxml2 spec file
%prep %prep
%setup %setup -q
%build %build
# Needed for snapshot releases. # Needed for snapshot releases.
if [ ! -f configure ]; then if [ ! -f configure ]; then
%ifarch alpha %ifarch alpha
CFLAGS="$RPM_OPT_FLAGS" ./autogen.sh --host=alpha-redhat-linux --prefix=%prefix --sysconfdir="/etc" CFLAGS="$RPM_OPT_FLAGS" ./autogen.sh --host=alpha-redhat-linux --prefix=%prefix --sysconfdir="/etc" --mandir=%{_mandir}
%else %else
CFLAGS="$RPM_OPT_FLAGS" ./autogen.sh --prefix=%prefix --sysconfdir="/etc" CFLAGS="$RPM_OPT_FLAGS" ./autogen.sh --prefix=%prefix --sysconfdir="/etc" --mandir=%{_mandir}
%endif %endif
else else
%ifarch alpha %ifarch alpha
CFLAGS="$RPM_OPT_FLAGS" ./configure --host=alpha-redhat-linux --prefix=%prefix --sysconfdir="/etc" CFLAGS="$RPM_OPT_FLAGS" ./configure --host=alpha-redhat-linux --prefix=%prefix --sysconfdir="/etc" --mandir=%{_mandir}
%else %else
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%prefix --sysconfdir="/etc" CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%prefix --sysconfdir="/etc" --mandir=%{_mandir}
%endif %endif
fi fi
@ -70,9 +59,9 @@ fi
%install %install
rm -rf $RPM_BUILD_ROOT rm -rf $RPM_BUILD_ROOT
install -d $RPM_BUILD_ROOT%{datadir}/man/man1 install -d $RPM_BUILD_ROOT%{_mandir}/man1
install -d $RPM_BUILD_ROOT%{datadir}/man/man4 install -d $RPM_BUILD_ROOT%{_mandir}/man4
make prefix=$RPM_BUILD_ROOT%{prefix} mandir=$RPM_BUILD_ROOT%{datadir}/man install make prefix=$RPM_BUILD_ROOT%{prefix} mandir=$RPM_BUILD_ROOT%{_mandir} install
%clean %clean
rm -rf $RPM_BUILD_ROOT rm -rf $RPM_BUILD_ROOT
@ -86,7 +75,7 @@ rm -rf $RPM_BUILD_ROOT
%doc AUTHORS ChangeLog NEWS README COPYING COPYING.LIB TODO FEATURES %doc AUTHORS ChangeLog NEWS README COPYING COPYING.LIB TODO FEATURES
%doc doc/*.html doc/html doc/tutorial %doc doc/*.html doc/html doc/tutorial
%doc %{prefix}/share/man/man1/xsltproc.1* %doc %{_mandir}/man1/xsltproc.1*
%{prefix}/lib/lib*.so.* %{prefix}/lib/lib*.so.*
%{prefix}/bin/xsltproc %{prefix}/bin/xsltproc
@ -99,3 +88,14 @@ rm -rf $RPM_BUILD_ROOT
%{prefix}/lib/*.sh %{prefix}/lib/*.sh
%{prefix}/include/* %{prefix}/include/*
%{prefix}/bin/xslt-config %{prefix}/bin/xslt-config
%changelog
* Sat Nov 10 2001 Daniel.Veillard <daniel@veillard.com>
- cleaned up the specfile
* Mon Jan 22 2001 Daniel.Veillard <daniel@veillard.com>
- created based on libxml2 spec file

View File

@ -31,6 +31,7 @@
#include <libxml/parserInternals.h> #include <libxml/parserInternals.h>
#include <libxml/xpathInternals.h> #include <libxml/xpathInternals.h>
#include <libxml/HTMLtree.h> #include <libxml/HTMLtree.h>
#include <libxml/debugXML.h>
#include <libxml/uri.h> #include <libxml/uri.h>
#include "xslt.h" #include "xslt.h"
#include "xsltInternals.h" #include "xsltInternals.h"

View File

@ -9,11 +9,11 @@ if DV_STATIC_LINK
all: xsltproc all: xsltproc
if WITH_DEBUGGER if WITH_DEBUGGER
xsltproc: xsltproc.o ../libxslt/.libs/libxslt.a ../libexslt/.libs/libexslt.a ../breakpoint/.libs/libxsltbreakpoint.a ../../XML/.libs/libxml2.a xsltproc$(EXEEXT): xsltproc.o ../libxslt/.libs/libxslt.a ../libexslt/.libs/libexslt.a ../breakpoint/.libs/libxsltbreakpoint.a ../../XML/.libs/libxml2.a
gcc -g -O -o xsltproc xsltproc.o ../libxslt/.libs/libxslt.a ../breakpoint/.libs/libxsltbreakpoint.a ../libexslt/.libs/libexslt.a ../../XML/.libs/libxml2.a -lz -lm gcc -g -O -o xsltproc$(EXEEXT) xsltproc.o ../libxslt/.libs/libxslt.a ../breakpoint/.libs/libxsltbreakpoint.a ../libexslt/.libs/libexslt.a ../../XML/.libs/libxml2.a -lz -lm
else else
xsltproc: xsltproc.o ../libxslt/.libs/libxslt.a ../libexslt/.libs/libexslt.a ../../XML/.libs/libxml2.a xsltproc$(EXEEXT): xsltproc.o ../libxslt/.libs/libxslt.a ../libexslt/.libs/libexslt.a ../../XML/.libs/libxml2.a
gcc -g -O -o xsltproc xsltproc.o ../libxslt/.libs/libxslt.a ../libexslt/.libs/libexslt.a ../../XML/.libs/libxml2.a -lz -lm gcc -g -O -o xsltproc$(EXEEXT) xsltproc.o ../libxslt/.libs/libxslt.a ../libexslt/.libs/libexslt.a ../../XML/.libs/libxml2.a -lz -lm
endif endif
programs= programs=

View File

@ -23,6 +23,9 @@
#ifdef HAVE_STDLIB_H #ifdef HAVE_STDLIB_H
#include <stdlib.h> #include <stdlib.h>
#endif #endif
#ifdef HAVE_STDARG_H
#include <stdarg.h>
#endif
#include <libxml/xmlmemory.h> #include <libxml/xmlmemory.h>
#include <libxml/debugXML.h> #include <libxml/debugXML.h>
#include <libxml/HTMLtree.h> #include <libxml/HTMLtree.h>
@ -53,7 +56,11 @@
#define gettimeofday(p1,p2) #define gettimeofday(p1,p2)
#endif /* _MS_VER */ #endif /* _MS_VER */
#else /* WIN32 */ #else /* WIN32 */
#if defined(HAVE_SYS_TIME_H)
#include <sys/time.h> #include <sys/time.h>
#elif defined(HAVE_TIME_H)
#include <time.h>
#endif
#endif /* WIN32 */ #endif /* WIN32 */
#ifndef HAVE_STAT #ifndef HAVE_STAT
@ -87,11 +94,104 @@ static int xinclude = 0;
#endif #endif
static int profile = 0; static int profile = 0;
static struct timeval begin, end;
static const char *params[16 + 1]; static const char *params[16 + 1];
static int nbparams = 0; static int nbparams = 0;
static const char *output = NULL; static const char *output = NULL;
/*
* Internal timing routines to remove the necessity to have unix-specific
* function calls
*/
#if defined(HAVE_GETTIMEOFDAY)
static struct timeval begin, end;
/*
* startTimer: call where you want to start timing
*/
static void startTimer(void)
{
gettimeofday(&begin,NULL);
}
/*
* endTimer: call where you want to stop timing and to print out a
* message about the timing performed; format is a printf
* type argument
*/
static void endTimer(const char *format, ...)
{
long msec;
va_list ap;
gettimeofday(&end, NULL);
msec = end.tv_sec - begin.tv_sec;
msec *= 1000;
msec += (end.tv_usec - begin.tv_usec) / 1000;
#ifndef HAVE_STDARG_H
#error "endTimer required stdarg functions"
#endif
va_start(ap, format);
vfprintf(stderr,format,ap);
va_end(ap);
fprintf(stderr, " took %ld ms\n", msec);
}
#elif defined(HAVE_TIME_H)
/*
* No gettimeofday function, so we have to make do with calling clock.
* This is obviously less accurate, but there's little we can do about
* that.
*/
clock_t begin, end;
static void startTimer(void)
{
begin=clock();
}
static void endTimer(char *format, ...)
{
long msec;
va_list ap;
end=clock();
msec = ((end-begin) * 1000) / CLOCKS_PER_SEC;
#ifndef HAVE_STDARG_H
#error "endTimer required stdarg functions"
#endif
va_start(ap, format);
vfprintf(stderr,format,ap);
va_end(ap);
fprintf(stderr, " took %ld ms\n", msec);
}
#else
/*
* We don't have a gettimeofday or time.h, so we just don't do timing
*/
static void startTimer(void)
{
/*
* Do nothing
*/
}
static void endTimer(char *format, ...)
{
/*
* We cannot do anything because we don't have a timing function
*/
#ifdef HAVE_STDARG_H
va_start(ap, format);
vfprintf(stderr,format,ap);
va_end(ap);
fprintf(stderr, " was not timed\n", msec);
#else
/* We don't have gettimeofday, time or stdarg.h, what crazy world is
* this ?!
*/
#endif
}
#endif
static void static void
xsltProcess(xmlDocPtr doc, xsltStylesheetPtr cur, const char *filename) { xsltProcess(xmlDocPtr doc, xsltStylesheetPtr cur, const char *filename) {
xmlDocPtr res; xmlDocPtr res;
@ -99,22 +199,15 @@ xsltProcess(xmlDocPtr doc, xsltStylesheetPtr cur, const char *filename) {
#ifdef LIBXML_XINCLUDE_ENABLED #ifdef LIBXML_XINCLUDE_ENABLED
if (xinclude) { if (xinclude) {
if (timing) if (timing)
gettimeofday(&begin, NULL); startTimer();
xmlXIncludeProcess(doc); xmlXIncludeProcess(doc);
if (timing) { if (timing) {
long msec; endTimer("XInclude processing %s", filename);
gettimeofday(&end, NULL);
msec = end.tv_sec - begin.tv_sec;
msec *= 1000;
msec += (end.tv_usec - begin.tv_usec) / 1000;
fprintf(stderr, "XInclude processing %s took %ld ms\n",
filename, msec);
} }
} }
#endif #endif
if (timing) if (timing)
gettimeofday(&begin, NULL); startTimer();
if (output == NULL) { if (output == NULL) {
if (repeat) { if (repeat) {
int j; int j;
@ -142,19 +235,10 @@ xsltProcess(xmlDocPtr doc, xsltStylesheetPtr cur, const char *filename) {
res = xsltApplyStylesheet(cur, doc, params); res = xsltApplyStylesheet(cur, doc, params);
} }
if (timing) { if (timing) {
long msec;
gettimeofday(&end, NULL);
msec = end.tv_sec - begin.tv_sec;
msec *= 1000;
msec += (end.tv_usec - begin.tv_usec) / 1000;
if (repeat) if (repeat)
fprintf(stderr, endTimer("Applying stylesheet %d times", repeat);
"Applying stylesheet %d times took %ld ms\n",
repeat, msec);
else else
fprintf(stderr, endTimer("Applying stylesheet");
"Applying stylesheet took %ld ms\n", msec);
} }
xmlFreeDoc(doc); xmlFreeDoc(doc);
if (res == NULL) { if (res == NULL) {
@ -172,37 +256,19 @@ xsltProcess(xmlDocPtr doc, xsltStylesheetPtr cur, const char *filename) {
#endif #endif
if (cur->methodURI == NULL) { if (cur->methodURI == NULL) {
if (timing) if (timing)
gettimeofday(&begin, NULL); startTimer();
xsltSaveResultToFile(stdout, res, cur); xsltSaveResultToFile(stdout, res, cur);
if (timing) { if (timing)
long msec; endTimer("Saving result");
gettimeofday(&end, NULL);
msec = end.tv_sec - begin.tv_sec;
msec *= 1000;
msec += (end.tv_usec - begin.tv_usec) / 1000;
fprintf(stderr, "Saving result took %ld ms\n",
msec);
}
} else { } else {
if (xmlStrEqual if (xmlStrEqual
(cur->method, (const xmlChar *) "xhtml")) { (cur->method, (const xmlChar *) "xhtml")) {
fprintf(stderr, "non standard output xhtml\n"); fprintf(stderr, "non standard output xhtml\n");
if (timing) if (timing)
gettimeofday(&begin, NULL); startTimer();
xsltSaveResultToFile(stdout, res, cur); xsltSaveResultToFile(stdout, res, cur);
if (timing) { if (timing)
long msec; endTimer("Saving result");
gettimeofday(&end, NULL);
msec = end.tv_sec - begin.tv_sec;
msec *= 1000;
msec +=
(end.tv_usec - begin.tv_usec) / 1000;
fprintf(stderr,
"Saving result took %ld ms\n",
msec);
}
} else { } else {
fprintf(stderr, fprintf(stderr,
"Unsupported non standard output %s\n", "Unsupported non standard output %s\n",
@ -216,17 +282,8 @@ xsltProcess(xmlDocPtr doc, xsltStylesheetPtr cur, const char *filename) {
xmlFreeDoc(res); xmlFreeDoc(res);
} else { } else {
xsltRunStylesheet(cur, doc, params, output, NULL, NULL); xsltRunStylesheet(cur, doc, params, output, NULL, NULL);
if (timing) { if (timing)
long msec; endTimer("Running stylesheet and saving result");
gettimeofday(&end, NULL);
msec = end.tv_sec - begin.tv_sec;
msec *= 1000;
msec += (end.tv_usec - begin.tv_usec) / 1000;
fprintf(stderr,
"Running stylesheet and saving result took %ld ms\n",
msec);
}
xmlFreeDoc(doc); xmlFreeDoc(doc);
} }
} }
@ -421,18 +478,10 @@ main(int argc, char **argv)
} }
if ((argv[i][0] != '-') || (strcmp(argv[i], "-") == 0)) { if ((argv[i][0] != '-') || (strcmp(argv[i], "-") == 0)) {
if (timing) if (timing)
gettimeofday(&begin, NULL); startTimer();
style = xmlParseFile((const char *) argv[i]); style = xmlParseFile((const char *) argv[i]);
if (timing) { if (timing)
long msec; endTimer("Parsing stylesheet %s", argv[i]);
gettimeofday(&end, NULL);
msec = end.tv_sec - begin.tv_sec;
msec *= 1000;
msec += (end.tv_usec - begin.tv_usec) / 1000;
fprintf(stderr, "Parsing stylesheet %s took %ld ms\n",
argv[i], msec);
}
if (style == NULL) { if (style == NULL) {
fprintf(stderr, "cannot parse %s\n", argv[i]); fprintf(stderr, "cannot parse %s\n", argv[i]);
cur = NULL; cur = NULL;
@ -471,7 +520,7 @@ main(int argc, char **argv)
for (; i < argc; i++) { for (; i < argc; i++) {
doc = NULL; doc = NULL;
if (timing) if (timing)
gettimeofday(&begin, NULL); startTimer();
#ifdef LIBXML_HTML_ENABLED #ifdef LIBXML_HTML_ENABLED
if (html) if (html)
doc = htmlParseFile(argv[i], NULL); doc = htmlParseFile(argv[i], NULL);
@ -487,16 +536,8 @@ main(int argc, char **argv)
fprintf(stderr, "unable to parse %s\n", argv[i]); fprintf(stderr, "unable to parse %s\n", argv[i]);
continue; continue;
} }
if (timing) { if (timing)
long msec; endTimer("Parsing document %s", argv[i]);
gettimeofday(&end, NULL);
msec = end.tv_sec - begin.tv_sec;
msec *= 1000;
msec += (end.tv_usec - begin.tv_usec) / 1000;
fprintf(stderr, "Parsing document %s took %ld ms\n",
argv[i], msec);
}
xsltProcess(doc, cur, argv[i]); xsltProcess(doc, cur, argv[i]);
} }
} }