mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-07-31 02:43:06 +03:00
fixed tab/space inconsistency with patch provided by Andreas Hanke (bug
* python/libxsl.py: fixed tab/space inconsistency with patch provided by Andreas Hanke (bug #409193) svn path=/trunk/; revision=1422
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
Sun Feb 18 09:00:08 PST 2007 William Brack <wbrack@mmm.com.hk
|
||||||
|
|
||||||
|
* python/libxsl.py: fixed tab/space inconsistency with patch
|
||||||
|
provided by Andreas Hanke (bug #409193)
|
||||||
|
|
||||||
Thu Feb 15 14:03:18 PST 2007 William Brack <wbrack@mmm.com.hk>
|
Thu Feb 15 14:03:18 PST 2007 William Brack <wbrack@mmm.com.hk>
|
||||||
|
|
||||||
* doc/xslt.html: Changed all
|
* doc/xslt.html: Changed all
|
||||||
|
6
NEWS
6
NEWS
@ -7,8 +7,8 @@
|
|||||||
The change log at
|
The change log at
|
||||||
ChangeLog.html
|
ChangeLog.html
|
||||||
describes the recents commits
|
describes the recents commits
|
||||||
to the CVS at
|
to the SVN at
|
||||||
http://cvs.gnome.org/viewcvs/libxslt/
|
http://svn.gnome.org/viewcvs/libxslt/trunk/
|
||||||
code base.Those are the public releases made:
|
code base.Those are the public releases made:
|
||||||
1.1.20: Jan 17 2007:
|
1.1.20: Jan 17 2007:
|
||||||
- Portability fixes: strict aliasing fix (Marcus Meissner), BSD portability
|
- Portability fixes: strict aliasing fix (Marcus Meissner), BSD portability
|
||||||
@ -518,7 +518,7 @@ This is a bugfix only release - error message missing argument (William Brack)
|
|||||||
- patches for Windows and update of Windows Makefiles by Igor
|
- patches for Windows and update of Windows Makefiles by Igor
|
||||||
- OpenVMS port instructions from John A Fotheringham
|
- OpenVMS port instructions from John A Fotheringham
|
||||||
- fixed some Makefiles annoyance and libraries prelinking
|
- fixed some Makefiles annoyance and libraries prelinking
|
||||||
informations
|
information
|
||||||
|
|
||||||
|
|
||||||
1.0.7: Nov 10 2001:
|
1.0.7: Nov 10 2001:
|
||||||
|
@ -20,9 +20,9 @@ else:
|
|||||||
if osname == 'Linux' or osname == 'SunOS':
|
if osname == 'Linux' or osname == 'SunOS':
|
||||||
RTLD_GLOBAL = 0x00100
|
RTLD_GLOBAL = 0x00100
|
||||||
RTLD_NOW = 0x00002
|
RTLD_NOW = 0x00002
|
||||||
elif osname == 'Darwin':
|
elif osname == 'Darwin':
|
||||||
RTLD_GLOBAL = 0x8
|
RTLD_GLOBAL = 0x8
|
||||||
RTLD_NOW = 0x2
|
RTLD_NOW = 0x2
|
||||||
#
|
#
|
||||||
# is there a better method ?
|
# is there a better method ?
|
||||||
#
|
#
|
||||||
@ -30,12 +30,12 @@ else:
|
|||||||
# print "libxslt could not guess RTLD_GLOBAL and RTLD_NOW " + \
|
# print "libxslt could not guess RTLD_GLOBAL and RTLD_NOW " + \
|
||||||
# "on this platform: %s" % (osname)
|
# "on this platform: %s" % (osname)
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
# print "libxslt could not guess RTLD_GLOBAL and RTLD_NOW " + \
|
# print "libxslt could not guess RTLD_GLOBAL and RTLD_NOW " + \
|
||||||
# "on this platform: %s" % (osname)
|
# "on this platform: %s" % (osname)
|
||||||
except:
|
except:
|
||||||
RTLD_GLOBAL = -1
|
RTLD_GLOBAL = -1
|
||||||
RTLD_NOW = -1
|
RTLD_NOW = -1
|
||||||
|
|
||||||
if RTLD_GLOBAL != -1 and RTLD_NOW != -1:
|
if RTLD_GLOBAL != -1 and RTLD_NOW != -1:
|
||||||
try:
|
try:
|
||||||
@ -102,21 +102,21 @@ class extensionModule:
|
|||||||
|
|
||||||
def styleInit(self, style, URI):
|
def styleInit(self, style, URI):
|
||||||
"""Callback function when used in a newly compiled stylesheet,
|
"""Callback function when used in a newly compiled stylesheet,
|
||||||
the return value is passed in subsequent calls"""
|
the return value is passed in subsequent calls"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def styleShutdown(self, style, URI, data):
|
def styleShutdown(self, style, URI, data):
|
||||||
"""Callback function when a stylesheet using it is destroyed"""
|
"""Callback function when a stylesheet using it is destroyed"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def ctxtInit(self, ctxt, URI):
|
def ctxtInit(self, ctxt, URI):
|
||||||
"""Callback function when used in a new transformation process,
|
"""Callback function when used in a new transformation process,
|
||||||
the return value is passed in subsequent calls"""
|
the return value is passed in subsequent calls"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def ctxtShutdown(self, ctxt, URI, data):
|
def ctxtShutdown(self, ctxt, URI, data):
|
||||||
"""Callback function when a transformation using it finishes"""
|
"""Callback function when a transformation using it finishes"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def cleanup():
|
def cleanup():
|
||||||
"""Cleanup all libxslt and libxml2 memory allocated"""
|
"""Cleanup all libxslt and libxml2 memory allocated"""
|
||||||
|
Reference in New Issue
Block a user