summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2006-10-11 21:19:49 +0000
committerDaniel Veillard <veillard@src.gnome.org>2006-10-11 21:19:49 +0000
commitf32d5c181daca4ad1f7c01b86960748bbc2ad500 (patch)
tree5745e2e10f45d8c006898f2c666c4812b8e40c7a /python
parente810227affa1f0f69d291532898e3efc84181df9 (diff)
downloadlibxslt-f32d5c181daca4ad1f7c01b86960748bbc2ad500.tar.gz
libxslt-f32d5c181daca4ad1f7c01b86960748bbc2ad500.tar.bz2
libxslt-f32d5c181daca4ad1f7c01b86960748bbc2ad500.zip
applied fix for accessor functions of a stylesheet returning pointers to
* python/libxslt-python-api.xml: applied fix for accessor functions of a stylesheet returning pointers to immutable strings, patch from #320540 * xsltproc/xsltproc.c: fix the xinclude on stylehseet problem by adding a new parameter to xsltproc names --xincludestyle Daniel
Diffstat (limited to 'python')
-rw-r--r--python/libxslt-python-api.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/python/libxslt-python-api.xml b/python/libxslt-python-api.xml
index 4c411af6..8fbaacfe 100644
--- a/python/libxslt-python-api.xml
+++ b/python/libxslt-python-api.xml
@@ -141,22 +141,22 @@
</function>
<function name='xsltStylesheetGetMethod' file='python_accessor'>
<info>Get the output method of a stylesheet</info>
- <return type='xmlChar *' info="The output method" field="method"/>
+ <return type='const xmlChar *' info="The output method" field="method"/>
<arg name='style' type='xsltStylesheetPtr' info='the stylesheet'/>
</function>
<function name='xsltStylesheetGetMethodURI' file='python_accessor'>
<info>Get the output method URI of a stylesheet</info>
- <return type='xmlChar *' info="The output method URI" field="methodURI"/>
+ <return type='const xmlChar *' info="The output method URI" field="methodURI"/>
<arg name='style' type='xsltStylesheetPtr' info='the stylesheet'/>
</function>
<function name='xsltStylesheetGetVersion' file='python_accessor'>
<info>Get the output version of a stylesheet</info>
- <return type='xmlChar *' info="The output version" field="version"/>
+ <return type='const xmlChar *' info="The output version" field="version"/>
<arg name='style' type='xsltStylesheetPtr' info='the stylesheet'/>
</function>
<function name='xsltStylesheetGetEncoding' file='python_accessor'>
<info>Get the output encoding of a stylesheet</info>
- <return type='xmlChar *' info="The output encoding" field="encoding"/>
+ <return type='const xmlChar *' info="The output encoding" field="encoding"/>
<arg name='style' type='xsltStylesheetPtr' info='the stylesheet'/>
</function>
<function name='xsltStylesheetGetDoctypePublic' file='python_accessor'>