Skip to content

Commit d38e00e

Browse files
author
balls
committed
v3.3 release, XSLT extension elements
1 parent ef4cea8 commit d38e00e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+4238
-1426
lines changed

ANNOUNCE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
TclXML version 3.2 is now available.
1+
TclXML version 3.3 is now available.
22

33
TclXML is a package that provides XML parsing for the Tcl scripting language.
44
It has two implementations of XML parsers: one written purely in Tcl

ChangeLog

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
2009-04-12 Steve Ball <Steve.Ball#explain.com.au>
2+
* tclxslt-libxslt.c (TclXSLTCompileCommand): Use xmlMalloc instead of Tcl_Alloc.
3+
4+
2009-04-02 Steve Ball <[email protected]>
5+
* tcldom*.[ch]: added "-id" node option, added RELAX NG validation.
6+
* configure.in: prepare for 3.3 release.
7+
* examples/domtext.tcl, examples/domtree.tcl: updated for Tk 8.5.
8+
9+
2009-01-15 Steve Ball <[email protected]>
10+
* pkgIndex.tcl.in: fixed utilities package number
11+
12+
============== Released version 3.2 16/12/2008 ==============
13+
114
2008-12-04 Steve Ball <[email protected]>
215
* doc/html.xsl, doc/*.xml: Upgrade to DocBook v5.0. Eliminate
316
dependency on DocBook XSL stylesheets.

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2005 Explain
1+
Copyright (c) 2005-2009 Explain
22
http://www.explain.com.au/
33

44
Explain makes this software available free of charge for any purpose.

Makefile.macosx

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#
1111
########################
1212

13-
PACKAGE_VERSION := 3.2
13+
PACKAGE_VERSION := 3.3
1414

1515
LIBXML2_VERSION := $(shell eval echo $$(ls -dt ../libxml2* | head -1 | sed -e '1s/.*\-//'))
1616

TclxmlConfig.sh

+10-10
Original file line numberDiff line numberDiff line change
@@ -12,41 +12,41 @@
1212
# The information in this file is specific to a single platform.
1313

1414
# Tclxml's version number.
15-
Tclxml_VERSION='3.2'
15+
Tclxml_VERSION='3.3'
1616

1717
# The name of the Tclxml library (may be either a .a file or a shared library):
18-
Tclxml_LIB_FILE='libTclxml3.2.dylib'
18+
Tclxml_LIB_FILE='libTclxml3.3.dylib'
1919

2020
# String to pass to linker to pick up the Tclxml library from its
2121
# build directory.
22-
Tclxml_BUILD_LIB_SPEC='-L/Users/steve/Projects/tclxml-3.2 -lTclxml3.2'
22+
Tclxml_BUILD_LIB_SPEC='-L/Users/steve/Projects/tclxml-repos -lTclxml3.3'
2323

2424
# String to pass to linker to pick up the Tclxml library from its
2525
# installed directory.
26-
Tclxml_LIB_SPEC='-L/usr/local/lib/Tclxml3.2 -lTclxml3.2'
26+
Tclxml_LIB_SPEC='-L/usr/lib/Tclxml3.3 -lTclxml3.3'
2727

2828
# The name of the Tclxml stub library (a .a file):
29-
Tclxml_STUB_LIB_FILE='libTclxmlstub3.2.a'
29+
Tclxml_STUB_LIB_FILE='libTclxmlstub3.3.a'
3030

3131
# String to pass to linker to pick up the Tclxml stub library from its
3232
# build directory.
33-
Tclxml_BUILD_STUB_LIB_SPEC='-L/Users/steve/Projects/tclxml-3.2 -lTclxmlstub3.2'
33+
Tclxml_BUILD_STUB_LIB_SPEC='-L/Users/steve/Projects/tclxml-repos -lTclxmlstub3.3'
3434

3535
# String to pass to linker to pick up the Tclxml stub library from its
3636
# installed directory.
37-
Tclxml_STUB_LIB_SPEC='-L/usr/local/lib/Tclxml3.2 -lTclxmlstub3.2'
37+
Tclxml_STUB_LIB_SPEC='-L/usr/lib/Tclxml3.3 -lTclxmlstub3.3'
3838

3939
# String to pass to linker to pick up the Tclxml stub library from its
4040
# build directory.
41-
Tclxml_BUILD_STUB_LIB_PATH='/Users/steve/Projects/tclxml-3.2/'
41+
Tclxml_BUILD_STUB_LIB_PATH='/Users/steve/Projects/tclxml-repos/'
4242

4343
# String to pass to linker to pick up the Tclxml stub library from its
4444
# installed directory.
45-
Tclxml_STUB_LIB_PATH='/usr/local/lib/Tclxml3.2/'
45+
Tclxml_STUB_LIB_PATH='/usr/lib/Tclxml3.3/'
4646

4747
# String to pass to the compiler so that an extension can find
4848
# installed header.
49-
Tclxml_INCLUDE_SPEC='-I/usr/local/include'
49+
Tclxml_INCLUDE_SPEC='-I/usr/include'
5050

5151
# Location of the top-level source directories from which [incr Tcl]
5252
# was built. This is the directory that contains generic, unix, etc.

autom4te.cache/output.0

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@%:@! /bin/sh
22
@%:@ Guess values for system-dependent variables and create Makefiles.
3-
@%:@ Generated by GNU Autoconf 2.61 for Tclxml 3.2.
3+
@%:@ Generated by GNU Autoconf 2.61 for Tclxml 3.3.
44
@%:@
55
@%:@ Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
66
@%:@ 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
@@ -572,8 +572,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
572572
# Identity of this package.
573573
PACKAGE_NAME='Tclxml'
574574
PACKAGE_TARNAME='tclxml'
575-
PACKAGE_VERSION='3.2'
576-
PACKAGE_STRING='Tclxml 3.2'
575+
PACKAGE_VERSION='3.3'
576+
PACKAGE_STRING='Tclxml 3.3'
577577
PACKAGE_BUGREPORT=''
578578

579579
# Factoring default headers for most tests.
@@ -1247,7 +1247,7 @@ if test "$ac_init_help" = "long"; then
12471247
# Omit some internal or obsolete options to make the list less imposing.
12481248
# This message is too long to be a string in the A/UX 3.1 sh.
12491249
cat <<_ACEOF
1250-
\`configure' configures Tclxml 3.2 to adapt to many kinds of systems.
1250+
\`configure' configures Tclxml 3.3 to adapt to many kinds of systems.
12511251

12521252
Usage: $0 [OPTION]... [VAR=VALUE]...
12531253

@@ -1308,7 +1308,7 @@ fi
13081308

13091309
if test -n "$ac_init_help"; then
13101310
case $ac_init_help in
1311-
short | recursive ) echo "Configuration of Tclxml 3.2:";;
1311+
short | recursive ) echo "Configuration of Tclxml 3.3:";;
13121312
esac
13131313
cat <<\_ACEOF
13141314

@@ -1409,7 +1409,7 @@ fi
14091409
test -n "$ac_init_help" && exit $ac_status
14101410
if $ac_init_version; then
14111411
cat <<\_ACEOF
1412-
Tclxml configure 3.2
1412+
Tclxml configure 3.3
14131413
generated by GNU Autoconf 2.61
14141414

14151415
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
@@ -1423,7 +1423,7 @@ cat >config.log <<_ACEOF
14231423
This file contains any messages produced by compilers while
14241424
running configure, to aid debugging if configure makes a mistake.
14251425

1426-
It was created by Tclxml $as_me 3.2, which was
1426+
It was created by Tclxml $as_me 3.3, which was
14271427
generated by GNU Autoconf 2.61. Invocation command line was
14281428

14291429
$ $0 $@
@@ -1777,7 +1777,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
17771777

17781778

17791779
PACKAGE_NAME=Tclxml
1780-
PACKAGE_VERSION=3.2
1780+
PACKAGE_VERSION=3.3
17811781

17821782

17831783
# TEA extensions pass this us the version of TEA they think they
@@ -10851,7 +10851,7 @@ exec 6>&1
1085110851
# report actual input values of CONFIG_FILES etc. instead of their
1085210852
# values after options handling.
1085310853
ac_log="
10854-
This file was extended by Tclxml $as_me 3.2, which was
10854+
This file was extended by Tclxml $as_me 3.3, which was
1085510855
generated by GNU Autoconf 2.61. Invocation command line was
1085610856

1085710857
CONFIG_FILES = $CONFIG_FILES
@@ -10894,7 +10894,7 @@ Report bugs to <[email protected]>."
1089410894
_ACEOF
1089510895
cat >>$CONFIG_STATUS <<_ACEOF
1089610896
ac_cs_version="\\
10897-
Tclxml config.status 3.2
10897+
Tclxml config.status 3.3
1089810898
configured by $0, generated by GNU Autoconf 2.61,
1089910899
with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
1090010900

autom4te.cache/requests

+8-8
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,24 @@
1515
'configure.in'
1616
],
1717
{
18-
'_LT_AC_TAGCONFIG' => 1,
1918
'AM_PROG_F77_C_O' => 1,
20-
'AC_INIT' => 1,
19+
'_LT_AC_TAGCONFIG' => 1,
2120
'm4_pattern_forbid' => 1,
21+
'AC_INIT' => 1,
2222
'AC_CANONICAL_TARGET' => 1,
23-
'AC_SUBST' => 1,
2423
'AC_CONFIG_LIBOBJ_DIR' => 1,
25-
'AC_FC_SRCEXT' => 1,
24+
'AC_SUBST' => 1,
2625
'AC_CANONICAL_HOST' => 1,
26+
'AC_FC_SRCEXT' => 1,
2727
'AC_PROG_LIBTOOL' => 1,
2828
'AM_INIT_AUTOMAKE' => 1,
2929
'AC_CONFIG_SUBDIRS' => 1,
3030
'AM_AUTOMAKE_VERSION' => 1,
3131
'LT_CONFIG_LTDL_DIR' => 1,
3232
'AC_REQUIRE_AUX_FILE' => 1,
3333
'AC_CONFIG_LINKS' => 1,
34-
'm4_sinclude' => 1,
3534
'LT_SUPPORTED_TAG' => 1,
35+
'm4_sinclude' => 1,
3636
'AM_MAINTAINER_MODE' => 1,
3737
'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
3838
'_m4_warn' => 1,
@@ -49,11 +49,11 @@
4949
'AH_OUTPUT' => 1,
5050
'_AM_SUBST_NOTMAKE' => 1,
5151
'AC_CONFIG_AUX_DIR' => 1,
52-
'sinclude' => 1,
53-
'm4_pattern_allow' => 1,
5452
'AM_PROG_CC_C_O' => 1,
55-
'AC_CANONICAL_SYSTEM' => 1,
53+
'm4_pattern_allow' => 1,
54+
'sinclude' => 1,
5655
'AM_CONDITIONAL' => 1,
56+
'AC_CANONICAL_SYSTEM' => 1,
5757
'AC_CONFIG_HEADERS' => 1,
5858
'AC_DEFINE_TRACE_LITERAL' => 1,
5959
'm4_include' => 1,

0 commit comments

Comments
 (0)