mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-07-29 15:41:13 +03:00
fixing the equivalent of #75779 Daniel
* python/Makefile.am: fixing the equivalent of #75779 Daniel
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
Mon Apr 15 15:57:28 CEST 2002 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
|
* python/Makefile.am: fixing the equivalent of #75779
|
||||||
|
|
||||||
Mon Apr 15 14:00:12 CEST 2002 Daniel Veillard <daniel@veillard.com>
|
Mon Apr 15 14:00:12 CEST 2002 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
* libxslt/keys.c: fixed bug #78735
|
* libxslt/keys.c: fixed bug #78735
|
||||||
|
@ -96,6 +96,7 @@
|
|||||||
<exports symbol='xsltParseStylesheetAttributeSet'/>
|
<exports symbol='xsltParseStylesheetAttributeSet'/>
|
||||||
<exports symbol='xsltFreeAttributeSetsHashes'/>
|
<exports symbol='xsltFreeAttributeSetsHashes'/>
|
||||||
<exports symbol='xsltApplyAttributeSet'/>
|
<exports symbol='xsltApplyAttributeSet'/>
|
||||||
|
<exports symbol='xsltResolveStylesheetAttributeSet'/>
|
||||||
</file>
|
</file>
|
||||||
<file name='xsltInternals'>
|
<file name='xsltInternals'>
|
||||||
<exports symbol='XSLT_MAX_SORT'/>
|
<exports symbol='XSLT_MAX_SORT'/>
|
||||||
@ -1370,6 +1371,11 @@
|
|||||||
<info>Registers the test module</info>
|
<info>Registers the test module</info>
|
||||||
<return type='void'/>
|
<return type='void'/>
|
||||||
</function>
|
</function>
|
||||||
|
<function name='xsltResolveStylesheetAttributeSet' file='attributes'>
|
||||||
|
<info>resolve the references between attribute sets.</info>
|
||||||
|
<return type='void'/>
|
||||||
|
<arg name='style' type='xsltStylesheetPtr' info='the XSLT stylesheet '/>
|
||||||
|
</function>
|
||||||
<function name='xsltRunStylesheet' file='transform'>
|
<function name='xsltRunStylesheet' file='transform'>
|
||||||
<info>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. </info>
|
<info>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. </info>
|
||||||
<return type='int' info='the number of by written to the main resource or -1 in case of error. '/>
|
<return type='int' info='the number of by written to the main resource or -1 in case of error. '/>
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
<MACRO>
|
<MACRO>
|
||||||
<NAME>LIBXSLT_DOTTED_VERSION</NAME>
|
<NAME>LIBXSLT_DOTTED_VERSION</NAME>
|
||||||
#define LIBXSLT_DOTTED_VERSION "1.0.14"
|
#define LIBXSLT_DOTTED_VERSION "1.0.15"
|
||||||
</MACRO>
|
</MACRO>
|
||||||
<MACRO>
|
<MACRO>
|
||||||
<NAME>LIBXSLT_VERSION</NAME>
|
<NAME>LIBXSLT_VERSION</NAME>
|
||||||
#define LIBXSLT_VERSION 10014
|
#define LIBXSLT_VERSION 10015
|
||||||
</MACRO>
|
</MACRO>
|
||||||
<MACRO>
|
<MACRO>
|
||||||
<NAME>LIBXSLT_VERSION_STRING</NAME>
|
<NAME>LIBXSLT_VERSION_STRING</NAME>
|
||||||
#define LIBXSLT_VERSION_STRING "10014"
|
#define LIBXSLT_VERSION_STRING "10015"
|
||||||
</MACRO>
|
</MACRO>
|
||||||
<MACRO>
|
<MACRO>
|
||||||
<NAME>WITH_XSLT_DEBUG</NAME>
|
<NAME>WITH_XSLT_DEBUG</NAME>
|
||||||
@ -1558,15 +1558,15 @@ void
|
|||||||
</FUNCTION>
|
</FUNCTION>
|
||||||
<MACRO>
|
<MACRO>
|
||||||
<NAME>LIBXSLT_DOTTED_VERSION</NAME>
|
<NAME>LIBXSLT_DOTTED_VERSION</NAME>
|
||||||
#define LIBXSLT_DOTTED_VERSION "1.0.14"
|
#define LIBXSLT_DOTTED_VERSION "1.0.15"
|
||||||
</MACRO>
|
</MACRO>
|
||||||
<MACRO>
|
<MACRO>
|
||||||
<NAME>LIBXSLT_VERSION</NAME>
|
<NAME>LIBXSLT_VERSION</NAME>
|
||||||
#define LIBXSLT_VERSION 10014
|
#define LIBXSLT_VERSION 10015
|
||||||
</MACRO>
|
</MACRO>
|
||||||
<MACRO>
|
<MACRO>
|
||||||
<NAME>LIBXSLT_VERSION_STRING</NAME>
|
<NAME>LIBXSLT_VERSION_STRING</NAME>
|
||||||
#define LIBXSLT_VERSION_STRING "10014"
|
#define LIBXSLT_VERSION_STRING "10015"
|
||||||
</MACRO>
|
</MACRO>
|
||||||
<MACRO>
|
<MACRO>
|
||||||
<NAME>WITH_XSLT_DEBUG</NAME>
|
<NAME>WITH_XSLT_DEBUG</NAME>
|
||||||
|
@ -192,6 +192,7 @@
|
|||||||
<reference name='xsltRegisterExtPrefix' href='html/libxslt-extensions.html#XSLTREGISTEREXTPREFIX'/>
|
<reference name='xsltRegisterExtPrefix' href='html/libxslt-extensions.html#XSLTREGISTEREXTPREFIX'/>
|
||||||
<reference name='xsltRegisterExtras' href='html/libxslt-extra.html#XSLTREGISTEREXTRAS'/>
|
<reference name='xsltRegisterExtras' href='html/libxslt-extra.html#XSLTREGISTEREXTRAS'/>
|
||||||
<reference name='xsltRegisterTestModule' href='html/libxslt-extensions.html#XSLTREGISTERTESTMODULE'/>
|
<reference name='xsltRegisterTestModule' href='html/libxslt-extensions.html#XSLTREGISTERTESTMODULE'/>
|
||||||
|
<reference name='xsltResolveStylesheetAttributeSet' href='html/libxslt-attributes.html#XSLTRESOLVESTYLESHEETATTRIBUTESET'/>
|
||||||
<reference name='xsltRunStylesheet' href='html/libxslt-transform.html#XSLTRUNSTYLESHEET'/>
|
<reference name='xsltRunStylesheet' href='html/libxslt-transform.html#XSLTRUNSTYLESHEET'/>
|
||||||
<reference name='xsltRuntimeExtra' href='html/libxslt-xsltinternals.html#XSLTRUNTIMEEXTRA'/>
|
<reference name='xsltRuntimeExtra' href='html/libxslt-xsltinternals.html#XSLTRUNTIMEEXTRA'/>
|
||||||
<reference name='xsltRuntimeExtraPtr' href='html/libxslt-xsltinternals.html#XSLTRUNTIMEEXTRAPTR'/>
|
<reference name='xsltRuntimeExtraPtr' href='html/libxslt-xsltinternals.html#XSLTRUNTIMEEXTRAPTR'/>
|
||||||
@ -448,6 +449,7 @@
|
|||||||
<ref name='xsltRegisterExtPrefix'/>
|
<ref name='xsltRegisterExtPrefix'/>
|
||||||
<ref name='xsltRegisterExtras'/>
|
<ref name='xsltRegisterExtras'/>
|
||||||
<ref name='xsltRegisterTestModule'/>
|
<ref name='xsltRegisterTestModule'/>
|
||||||
|
<ref name='xsltResolveStylesheetAttributeSet'/>
|
||||||
<ref name='xsltRunStylesheet'/>
|
<ref name='xsltRunStylesheet'/>
|
||||||
<ref name='xsltRuntimeExtra'/>
|
<ref name='xsltRuntimeExtra'/>
|
||||||
<ref name='xsltRuntimeExtraPtr'/>
|
<ref name='xsltRuntimeExtraPtr'/>
|
||||||
@ -957,6 +959,7 @@
|
|||||||
<type name='xsltStylesheetPtr'>
|
<type name='xsltStylesheetPtr'>
|
||||||
<ref name='xsltParseStylesheetAttributeSet'/>
|
<ref name='xsltParseStylesheetAttributeSet'/>
|
||||||
<ref name='xsltFreeAttributeSetsHashes'/>
|
<ref name='xsltFreeAttributeSetsHashes'/>
|
||||||
|
<ref name='xsltResolveStylesheetAttributeSet'/>
|
||||||
<ref name='xsltLoadStyleDocument'/>
|
<ref name='xsltLoadStyleDocument'/>
|
||||||
<ref name='xsltNewStyleDocument'/>
|
<ref name='xsltNewStyleDocument'/>
|
||||||
<ref name='xsltFreeStyleDocuments'/>
|
<ref name='xsltFreeStyleDocuments'/>
|
||||||
@ -1113,6 +1116,7 @@
|
|||||||
<ref name='xsltParseStylesheetAttributeSet'/>
|
<ref name='xsltParseStylesheetAttributeSet'/>
|
||||||
<ref name='xsltFreeAttributeSetsHashes'/>
|
<ref name='xsltFreeAttributeSetsHashes'/>
|
||||||
<ref name='xsltApplyAttributeSet'/>
|
<ref name='xsltApplyAttributeSet'/>
|
||||||
|
<ref name='xsltResolveStylesheetAttributeSet'/>
|
||||||
</file>
|
</file>
|
||||||
<file name='documents'>
|
<file name='documents'>
|
||||||
<ref name='xsltNewDocument'/>
|
<ref name='xsltNewDocument'/>
|
||||||
@ -2106,6 +2110,7 @@
|
|||||||
<ref name='xsltEvalStaticAttrValueTemplate'/>
|
<ref name='xsltEvalStaticAttrValueTemplate'/>
|
||||||
<ref name='xsltFreeAttributeSetsHashes'/>
|
<ref name='xsltFreeAttributeSetsHashes'/>
|
||||||
<ref name='xsltGetNsProp'/>
|
<ref name='xsltGetNsProp'/>
|
||||||
|
<ref name='xsltResolveStylesheetAttributeSet'/>
|
||||||
<ref name='xsltTemplateProcess'/>
|
<ref name='xsltTemplateProcess'/>
|
||||||
</word>
|
</word>
|
||||||
<word name='attributes'>
|
<word name='attributes'>
|
||||||
@ -2143,6 +2148,9 @@
|
|||||||
<ref name='xsltPrintErrorContext'/>
|
<ref name='xsltPrintErrorContext'/>
|
||||||
<ref name='xsltSetXIncludeDefault'/>
|
<ref name='xsltSetXIncludeDefault'/>
|
||||||
</word>
|
</word>
|
||||||
|
<word name='between'>
|
||||||
|
<ref name='xsltResolveStylesheetAttributeSet'/>
|
||||||
|
</word>
|
||||||
<word name='blank'>
|
<word name='blank'>
|
||||||
<ref name='xsltParseTemplateContent'/>
|
<ref name='xsltParseTemplateContent'/>
|
||||||
</word>
|
</word>
|
||||||
@ -3763,6 +3771,9 @@
|
|||||||
<ref name='xsltParseStylesheetParam'/>
|
<ref name='xsltParseStylesheetParam'/>
|
||||||
<ref name='xsltParseStylesheetVariable'/>
|
<ref name='xsltParseStylesheetVariable'/>
|
||||||
</word>
|
</word>
|
||||||
|
<word name='references'>
|
||||||
|
<ref name='xsltResolveStylesheetAttributeSet'/>
|
||||||
|
</word>
|
||||||
<word name='referencing'>
|
<word name='referencing'>
|
||||||
<ref name='xsltLoadStylesheetPI'/>
|
<ref name='xsltLoadStylesheetPI'/>
|
||||||
</word>
|
</word>
|
||||||
@ -3806,6 +3817,9 @@
|
|||||||
<ref name='xsltSetGenericDebugFunc'/>
|
<ref name='xsltSetGenericDebugFunc'/>
|
||||||
<ref name='xsltSetGenericErrorFunc'/>
|
<ref name='xsltSetGenericErrorFunc'/>
|
||||||
</word>
|
</word>
|
||||||
|
<word name='resolve'>
|
||||||
|
<ref name='xsltResolveStylesheetAttributeSet'/>
|
||||||
|
</word>
|
||||||
<word name='resource'>
|
<word name='resource'>
|
||||||
<ref name='xsltRunStylesheet'/>
|
<ref name='xsltRunStylesheet'/>
|
||||||
</word>
|
</word>
|
||||||
@ -3906,6 +3920,7 @@
|
|||||||
</word>
|
</word>
|
||||||
<word name='sets'>
|
<word name='sets'>
|
||||||
<ref name='xsltFreeAttributeSetsHashes'/>
|
<ref name='xsltFreeAttributeSetsHashes'/>
|
||||||
|
<ref name='xsltResolveStylesheetAttributeSet'/>
|
||||||
</word>
|
</word>
|
||||||
<word name='setting'>
|
<word name='setting'>
|
||||||
<ref name='xsltGetQNameURI'/>
|
<ref name='xsltGetQNameURI'/>
|
||||||
|
@ -22,14 +22,15 @@ EXTRA_DIST = \
|
|||||||
libxslt-python-api.xml \
|
libxslt-python-api.xml \
|
||||||
$(DOCS)
|
$(DOCS)
|
||||||
|
|
||||||
libxsltmod_la_LDFLAGS = -module -avoid-version
|
libxsltmod_la_LDFLAGS = -module -avoid-version -L$(top_builddir)/libxslt/.libs \
|
||||||
|
-L$(top_builddir)/libexslt/.libs
|
||||||
|
|
||||||
if WITH_PYTHON
|
if WITH_PYTHON
|
||||||
mylibs = \
|
mylibs = \
|
||||||
$(top_builddir)/libxslt/libxslt.la \
|
$(top_builddir)/libxslt/libxslt.la \
|
||||||
$(top_builddir)/libexslt/libexslt.la
|
$(top_builddir)/libexslt/libexslt.la
|
||||||
|
|
||||||
all: libxslt.py
|
all: libxslt.py libxsltmod.la
|
||||||
|
|
||||||
pythondir = $(prefix)/lib/python${PYTHON_VERSION}/site-packages
|
pythondir = $(prefix)/lib/python${PYTHON_VERSION}/site-packages
|
||||||
python_LTLIBRARIES = libxsltmod.la
|
python_LTLIBRARIES = libxsltmod.la
|
||||||
|
@ -148,6 +148,7 @@ Class stylesheet()
|
|||||||
# functions from module attributes
|
# functions from module attributes
|
||||||
freeAttributeSetsHashes()
|
freeAttributeSetsHashes()
|
||||||
parseStylesheetAttributeSet()
|
parseStylesheetAttributeSet()
|
||||||
|
resolveStylesheetAttributeSet()
|
||||||
|
|
||||||
# functions from module documents
|
# functions from module documents
|
||||||
freeStyleDocuments()
|
freeStyleDocuments()
|
||||||
|
Reference in New Issue
Block a user