Index: xotcl/autoclean.sh
===================================================================
diff -u
--- xotcl/autoclean.sh	(revision 0)
+++ xotcl/autoclean.sh	(revision f13b9000e83d3896683de0ecf438216be88832fe)
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+make distclean
+
+for configscript in `find . -name configure`
+do
+  rm -f $configscript
+done
\ No newline at end of file
Index: xotcl/autogen.sh
===================================================================
diff -u
--- xotcl/autogen.sh	(revision 0)
+++ xotcl/autogen.sh	(revision f13b9000e83d3896683de0ecf438216be88832fe)
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+for pdir in `find . -name configure.in`
+do
+  (cd `dirname $pdir`; autoconf)
+done
Index: xotcl/config/mktar.sh
===================================================================
diff -u
--- xotcl/config/mktar.sh	(revision 0)
+++ xotcl/config/mktar.sh	(revision f13b9000e83d3896683de0ecf438216be88832fe)
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+pwd=`pwd`
+name=`basename $(pwd)`
+echo "name=$name"
+
+make distclean
+cd ..
+tar zcvf ./$name.tar.gz \
+    `find ./$name -type f -o -type l| fgrep -v CVS | fgrep -v SCCS | \
+	fgrep -v Attic | fgrep -v "autom4te"| fgrep -v "~"|fgrep -v .db | \
+	fgrep -v .junk | fgrep -v "#" `
+
Index: xotcl/doc/Announce-1.3.0
===================================================================
diff -u
--- xotcl/doc/Announce-1.3.0	(revision 0)
+++ xotcl/doc/Announce-1.3.0	(revision f13b9000e83d3896683de0ecf438216be88832fe)
@@ -0,0 +1,76 @@
+Announcing XOTcl 1.3.0
+**********************
+
+WHAT IS XOTCL?
+
+  XOTcl is an object-oriented extension of Tcl that was derived from
+  OTcl. In short, XOTcl tries to provide a highly flexible,
+  reflective, component-based, and object-oriented environment. It
+  integrates language support for high level concepts which are not
+  found in other languages, with reasonable performance. It prevails
+  the Tcl programming style and the dynamic/introspective nature of
+  the language, rather than introducing other language's styles and
+  rigidness (such as C++) into Tcl.
+
+
+Major changes relative to 1.2.0 are:
+
+  - Qualitative Improvements
+     * Improved portability: 
+       + TEA3 compatible build
+       + Much more polished configure+makefile (many thanks to 
+         Jim Lynch for his help)
+
+     * Improved code quality: 
+       + fixed 2 possible segmentation violations (error handling)
+       + fixed free memory reads (many thanks to Zoran Vasiljevic
+         for his help with purify)
+
+     * Less intrusive usage of XOTcl components:
+       + XOTcl procs and instprocs use now the namespace in which
+         they were defined. One can use XOTcl packages without having 
+         the need to import xotcl globally or to use the xotcl-prefix 
+         in all xotcl procs/instprocs.
+
+  - Functional Improvements 
+     * New forwarding mechanisms for fast delegation:
+       new methods 'forward' and 'instforward' (many thanks
+       to Bryan Schofield for fruitful discussions and suggestions).
+       This method is a superset of tclcmd/insttclcmd, which has
+       been marked as deprecated. See the tutorial for more details. 
+
+     * Nonpositional arguments for xotcl procs/instprocs; this is
+       a flexible way to check arguments, to provide defaults etc
+       for every xotcl proc/instproc. It uses a similar syntax as
+       ad_proc and ad_page_contract in OACS. See the tutorial for
+       more details.
+
+     * Extended methods filter, mixin, instfilter, instmixin as 
+       discussed in the XOTcl mailing list. These commands can be 
+       used more flexibly as follows
+
+             obj mixin               same as: obj info mixin
+             obj mixin {C1 C2}       same as: obj mixin set {C1 C2}
+             obj mixin set {C1 C2}   sets the mixins for obj
+             obj mixin get           same as: obj info mixin
+             obj mixin add C3        adds a mixin on front of the mixin list
+             obj mixin add C3 end    adds a mixin at the end the mixin list
+             obj mixin add C3 3      adds a mixin at the 3rd position
+             obj mixin delete ::C3   removes the mixin from the mixin list
+
+        The same semantics are available as well for filter, instmixin 
+        and instfilter. This change is fully backward compatible.
+        {filter,instfilter,mixin,instmixin}append are deprecated now.
+
+
+ For more details about the changes, please consult the ChangeLog and documentation.
+
+MORE INFO
+  General and more detailed information about XOTcl and its components
+  can be found at http://www.xotcl.org
+
+
+Best regards,
+
+Gustaf Neumann
+Uwe Zdun