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

release of 1.1.24 syntactic cleanup (Martin) Daniel

* configure.in doc/*: release of 1.1.24
* python/generator.py: syntactic cleanup (Martin)
Daniel

svn path=/trunk/; revision=1473
This commit is contained in:
Daniel Veillard
2008-05-13 15:52:56 +00:00
parent 970091425f
commit ec5c63b43a
32 changed files with 1866 additions and 1707 deletions

View File

@ -51,6 +51,7 @@
<exports symbol='xsltGetExtInfo' type='function'/>
<exports symbol='xsltExtModuleTopLevelLookup' type='function'/>
<exports symbol='xsltFreeExts' type='function'/>
<exports symbol='xsltCheckExtURI' type='function'/>
<exports symbol='xsltExtModuleFunctionLookup' type='function'/>
<exports symbol='xsltPreComputeExtModuleElement' type='function'/>
<exports symbol='xsltRegisterExtModuleTopLevel' type='function'/>
@ -778,7 +779,7 @@
<info>Specific value for pattern without priority expressed.</info>
</macro>
<macro name='XSLT_REFACTORED_KEYCOMP' file='xsltInternals'>
<info>Internal define to enable on-demand xsl:key computation.</info>
<info>Internal define to enable on-demand xsl:key computation. That&apos;s the only mode now but the define is kept for compatibility</info>
</macro>
<macro name='XSLT_REFACTORED_VARS' file='xsltInternals'>
<info>Internal define to enable the refactored variable part of libxslt</info>
@ -1532,6 +1533,7 @@ TODO: We need to get rid of this.
the instruction which created the fragment
exits'/>
<field name='localRVTBase' type='xmlDocPtr' info=''/>
<field name='keyInitLevel' type='int' info=' Needed to catch recursive keys issues'/>
</struct>
<typedef name='xsltTransformContextPtr' file='xsltInternals' type='xsltTransformContext *'/>
<typedef name='xsltTransformState' file='xsltInternals' type='enum'/>
@ -1722,6 +1724,12 @@ exits'/>
<info>Check if the given prefix is one of the declared extensions. This is intended to be called only at compile-time. Called by: xsltGetInheritedNsList() (xslt.c) xsltParseTemplateContent (xslt.c)</info>
<return type='int' info='1 if this is an extension, 0 otherwise'/>
<arg name='style' type='xsltStylesheetPtr' info='the stylesheet'/>
<arg name='URI' type='const xmlChar *' info='the namespace prefix (possibly NULL)'/>
</function>
<function name='xsltCheckExtURI' file='extensions'>
<info>Check if the given prefix is one of the declared extensions. This is intended to be called only at compile-time. Called by: xsltPrecomputeStylesheet() (xslt.c) xsltParseTemplateContent (xslt.c)</info>
<return type='int' info='1 if this is an extension, 0 otherwise'/>
<arg name='style' type='xsltStylesheetPtr' info='the stylesheet'/>
<arg name='URI' type='const xmlChar *' info='the namespace URI (possibly NULL)'/>
</function>
<function name='xsltCheckRead' file='security'>