diff --git a/ChangeLog b/ChangeLog index e4e52f27..a3d923a6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +Wed Jan 17 14:20:18 CET 2007 Daniel Veillard + + * configure.in doc/*: preparing release of 1.1.20 + * libexslt/crypto.c: small patch for missing includes on some BSD, + fixes #397373 + * configure.in: replace == by = in test, raised by Roland Illig, + should fix #397371 + Sun Jan 14 18:45:08 PST 2007 William Brack * libxslt/functions.c: fixed two problems related to checking diff --git a/configure.in b/configure.in index 46b44e21..599fc218 100644 --- a/configure.in +++ b/configure.in @@ -10,7 +10,7 @@ dnl libexslt is an extension dnl LIBXSLT_MAJOR_VERSION=1 LIBXSLT_MINOR_VERSION=1 -LIBXSLT_MICRO_VERSION=19 +LIBXSLT_MICRO_VERSION=20 PACKAGE=libxslt LIBEXSLT_MAJOR_VERSION=0 LIBEXSLT_MINOR_VERSION=8 @@ -483,7 +483,7 @@ else fi AC_SUBST(WITH_MODULES) -AM_CONDITIONAL(WITH_MODULES, test "$WITH_MODULES" == "1") +AM_CONDITIONAL(WITH_MODULES, test "$WITH_MODULES" = "1") dnl dnl setup default module path diff --git a/doc/libxslt.xsa b/doc/libxslt.xsa index 9f0dcbca..178b7916 100644 --- a/doc/libxslt.xsa +++ b/doc/libxslt.xsa @@ -8,28 +8,12 @@ libxslt - 1.1.18 - Oct 26 2006 + 1.1.19 + Nov 29 2006 http://xmlsoft.org/XSLT/ - - portability and build fixes: DESTDIR problem, build paths in python - shared lib, compile when libxml2 doesn't support XInclude (Gary Coady). - - bug fixes: a number of namespace related bugs (Kasimier Buchcik), - parameters bugs (Kasimier Buchcik), proximity position in predicates - of match patterns (Kasimier), exslt-node-set troubles with strings - (Kasimier), CDATA serialization, Python floats and booleans XPath - conversions, XInclude support fixes, RVT cleanup problem (William Brack - and Kasimier), attribute checking in stylesheets (Kasimier), xsltForEach - context problem (Kasimier), security check should pass full URLs (Shane - Corgatelli), security cleanup patch (Mikhail Zabaluev), some python - accessor for stylesheet were broken, memory errors when compiling - stylesheets (Mike Hommey), EXSLT current date end-of-month problem - (William Brack). - - improvements: refactoring of namespace handling, value-of impleemntation - and template internal processing (Kasimier Buchcik), new xsltproc - flag to apply Xinclude to stylesheets. - - documentation: xsltproc man pages (Daniel Leidert), tests updates - (William Brack), various typo fixes (Daniel Leidert), comments on - versions macros (Peter Breitenlohner). + - Bug fixes: entities within attributes (William Brack), Python detection + problem (Joseph Sacco), in-scope namespace bug (Mike Hommey), Result + value tree caching bug (William Brack) diff --git a/doc/news.html b/doc/news.html index 20ab01f4..ff1f5779 100644 --- a/doc/news.html +++ b/doc/news.html @@ -9,7 +9,16 @@ H3 {font-family: Verdana,Arial,Helvetica} A:link, A:visited, A:active { text-decoration: underline } News
Action against software patentsGNOME2 LogoW3C logoRed Hat Logo
Made with Libxslt Logo

The XSLT C library for GNOME

News

Main Menu
Related links
API Indexes

The change log describes the recents commits -to the CVS code base.

Those are the public releases made:

1.1.19: Nov 29 2006

  • Bug fixes: entities within attributes (William Brack), Python detection +to the CVS code base.

    Those are the public releases made:

    1.1.20: Jan 17 2007

    • Portability fixes: strict aliasing fix (Marcus Meissner), BSD portability + patches (Roland Illig)
    • +
    • Bug fixes: Result Value Tree handling fix (William Brack), function + parameters fix (William), uninitialized variable (Kjartan Maraas), + empty text node handling (William), plugin support and test fixes (William), + fragment support fixes (William)
    • +
    • Improvements: python stylesheet compare and transform context + access (Nic Ferrier), EXSLT string replace support (Joel Reed), + xsltproc better low level error handling (Mike Hommey and William)
    • +

    1.1.19: Nov 29 2006

    • Bug fixes: entities within attributes (William Brack), Python detection problem (Joseph Sacco), in-scope namespace bug (Mike Hommey), Result value tree caching bug (William Brack)

    1.1.18: Oct 26 2006

    • portability and build fixes: DESTDIR problem, build paths in python diff --git a/doc/xslt.html b/doc/xslt.html index 717bc6a3..6189e7b3 100644 --- a/doc/xslt.html +++ b/doc/xslt.html @@ -304,6 +304,18 @@ to the CVS code base.

      Those are the public releases made:

      +

      1.1.20: Jan 17 2007

      +
        +
      • Portability fixes: strict aliasing fix (Marcus Meissner), BSD portability + patches (Roland Illig)
      • +
      • Bug fixes: Result Value Tree handling fix (William Brack), function + parameters fix (William), uninitialized variable (Kjartan Maraas), + empty text node handling (William), plugin support and test fixes (William), + fragment support fixes (William)
      • +
      • Improvements: python stylesheet compare and transform context + access (Nic Ferrier), EXSLT string replace support (Joel Reed), + xsltproc better low level error handling (Mike Hommey and William)
      • +

      1.1.19: Nov 29 2006

      • Bug fixes: entities within attributes (William Brack), Python detection diff --git a/libexslt/crypto.c b/libexslt/crypto.c index 26271478..cef80e82 100644 --- a/libexslt/crypto.c +++ b/libexslt/crypto.c @@ -317,6 +317,13 @@ exsltCryptoCryptoApiRc4Decrypt (xmlXPathParserContextPtr ctxt, #define PLATFORM_MD5 GCRY_MD_MD5 #define PLATFORM_SHA1 GCRY_MD_SHA1 +#ifdef HAVE_SYS_TYPES_H +# include +#endif +#ifdef HAVE_STDINT_H +# include +#endif + #ifdef HAVE_SYS_SELECT_H #include /* needed by gcrypt.h 4 Jul 04 */ #endif diff --git a/libxslt/xsltwin32config.h b/libxslt/xsltwin32config.h index 64859b00..1d448f94 100644 --- a/libxslt/xsltwin32config.h +++ b/libxslt/xsltwin32config.h @@ -23,21 +23,21 @@ extern "C" { * * the version string like "1.2.3" */ -#define LIBXSLT_DOTTED_VERSION "1.1.19" +#define LIBXSLT_DOTTED_VERSION "1.1.20" /** * LIBXSLT_VERSION: * * the version number: 1.2.3 value is 1002003 */ -#define LIBXSLT_VERSION 10119 +#define LIBXSLT_VERSION 10120 /** * LIBXSLT_VERSION_STRING: * * the version number string, 1.2.3 value is "1002003" */ -#define LIBXSLT_VERSION_STRING "10119" +#define LIBXSLT_VERSION_STRING "10120" /** * LIBXSLT_VERSION_EXTRA: