Index: COPYRIGHT
===================================================================
diff -u -r0242af91272a6cbfabc96aa56319868ade853c06 -rfab24fa76060a5c722c7454af72f8707d27811ae
--- COPYRIGHT	(.../COPYRIGHT)	(revision 0242af91272a6cbfabc96aa56319868ade853c06)
+++ COPYRIGHT	(.../COPYRIGHT)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -1,6 +1,7 @@
  *  XOTcl - Extended OTcl
  *
- *  Copyright (C) 1999-2008 Gustaf Neumann (a), Uwe Zdun (b)
+ *  Copyright (C) 1999-2014 Gustaf Neumann (a) (b)
+ *  Copyright (C) 1999-2007 Uwe Zdun (a) (b)
  *
  * (a) Vienna University of Economics and Business Administration
  *     Dept. of Information Systems / New Media
Index: ChangeLog
===================================================================
diff -u -rb4baa3e881d44735625a223264bb3ca71ed6a50f -rfab24fa76060a5c722c7454af72f8707d27811ae
--- ChangeLog	(.../ChangeLog)	(revision b4baa3e881d44735625a223264bb3ca71ed6a50f)
+++ ChangeLog	(.../ChangeLog)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -14,7 +14,7 @@
 	* AppInit.c: Use the stubbed variant of Tcl_Init().
 	* Tested under 8.6 (fossil trunk as of commit date) and 8.5 (fossil
 	core-8-5-branch as of commit date).
-	Thanks to Sergei Golovan (Debian Tcl/Tk Package Mantainers) for
+	Thanks to Sergei Golovan (Debian Tcl/Tk Package Maintainers) for
 	reporting the issue and an initial patch (see Debian bug #724816).
 
 2013-07-16 <Gustaf.Neumann@wu-wien.ac.at>
@@ -38,7 +38,7 @@
 	the old-style aolserver module.
 
 2012-01-16 <Gustaf.Neumann@wu-wien.ac.at>
-	* xotcl.c Extend backport of handling of dashses in XOTcl's
+	* xotcl.c Extend backport of handling of dashes in XOTcl's
 	configure method to perform a more eager search for command
 	begins. Extended regression test
 
@@ -122,7 +122,7 @@
 
 2010-03-06 <Gustaf.Neumann@wu-wien.ac.at>
     * use installed expat when specified
-      This option is needed fro debian packaging rules.
+      This option is needed fro Debian packaging rules.
       (Many thanks to Stefan Sobernig for this contribution)
     * cleanup of redundant section in configure.in
     * update to TEA 3.7
@@ -156,7 +156,7 @@
     * Release of XOTcl 1.6.4
 
 2009-06-19 <Gustaf.Neumann@wu-wien.ac.at>
-    - minor variable renaming to follow tcl naming convetions more closely
+    - minor variable renaming to follow tcl naming conventions more closely
 
 2009-06-14 <Gustaf.Neumann@wu-wien.ac.at>
     - fixed potential access to deleted command list item in
@@ -184,7 +184,7 @@
 
 2009-03-02 <Gustaf.Neumann@wu-wien.ac.at>
     - some small performance improvements (use CreateHashEntry instead
-      of FindHashEntry, remove unneded argument, improve order of long
+      of FindHashEntry, remove unneeded argument, improve order of long
       and expressions)
     - some code cleanup
     - new methods, when compiled with tcl 8.5;
@@ -286,7 +286,7 @@
        Syntax:
           <objName> info precedence ?-intrinsic? ?pattern?
       If "-intrinsic" is specified, only the classes of the
-      superclass type hierarchy are returnd. Otherwise,
+      superclass type hierarchy are returned. Otherwise,
      the precedence contains mixin classes as well.
    * Check results for guards to be boolean instead
       of int (now, guards are allowed to return e.g. "true")
@@ -316,7 +316,7 @@
       as suggested by Jeff Hobbs
 
 2008-03-18 <Gustaf.Neumann@wu-wien.ac.at>
-    * allowed "abstract method" in additon to "abstract instproc"
+    * allowed "abstract method" in addition to "abstract instproc"
       and "abstract proc"
 
 2008-02-26 <Gustaf.Neumann@wu-wien.ac.at>
@@ -527,7 +527,7 @@
     * Release of XOTcl 1.5.6
 
 2007-10-09: <Gustaf.Neumann@wu-wien.ac.at>
-   * More fixes for treating gobal volatile objects
+   * More fixes for treating global volatile objects
      during shutdown:
        - do not allow to create new objects during shutdown
        - do not allow objects to be set volatile during shutdown
@@ -571,7 +571,7 @@
 
 2007-09-29: <Gustaf.Neumann@wu-wien.ac.at>
     * Fix for cases, where volatile objects are
-      deleted before the corrsoponding trace variable.
+      deleted before the corresponding trace variable.
 
 2007-09-18: <Gustaf.Neumann@wu-wien.ac.at>
     * Release of XOTcl 1.5.5
@@ -656,13 +656,13 @@
        tclCompile.h may lose both binary and source compatibility. The
        relevant changes are:
 
-       1. 'struct Var' is completely changed, all acceses to its
+       1. 'struct Var' is completely changed, all accesses to its
           internals (either direct or via the TclSetVar* and TclIsVar*
           macros) will malfunction. Var flag values and semantics
           changed too.
 
        2. 'struct Bytecode' has an additional field that has to be
-          initialised to NULL
+          initialized to NULL
 
        3. 'struct Namespace' is larger, as the varTable is now one
           pointer larger than a Tcl_HashTable. Direct access to its
@@ -738,7 +738,7 @@
       version is faster, but uses for filters or mixins slightly more
       storage.
 
-    * reduced calling overhead of methods with nonpositional arguments
+    * reduced calling overhead of methods with non-positional arguments
       by about 10 percent by avoiding shimmering.
 
     * fixed handling of "return -code break" from xotcl methods
@@ -822,15 +822,15 @@
 
 2006-09-19 <Gustaf.Neumann@wu-wien.ac.at>
     * added XOTCL_NONLEAF_METHOD: This constant
-      must be used fwhen registering C-implemented methods
+      must be used when registering C-implemented methods
       that call "::xotcl::next" to push the XOTcl activation record.
 
        Example:
            XOTclAddIMethod( interp, MyClass, "mymethod", MyMethod,
                    XOTCL_NONLEAF_METHOD, 0 );
 
 2006-09-18 <Gustaf.Neumann@wu-wien.ac.at>
-    * fixed a bug in parsing nonpositional arguments, when
+    * fixed a bug in parsing non-positional arguments, when
        e.g. square brackets are used in type declarations for
        parameters.
          Class C
@@ -911,11 +911,11 @@
          the setrelation command.
 
 2006-08-22 <Gustaf.Neumann@wu-wien.ac.at>
-       * fixed a bug with nonpositional arguments, some
+       * fixed a bug with non-positional arguments, some
           positional arguments and "args"
-       * fixed a bug in nonpositional arguments when called without
+       * fixed a bug in non-positional arguments when called without
            arguments
-       * improved error messages in connection with nonpositional arguments
+       * improved error messages in connection with non-positional arguments
        * extended interface of XOTclErrBadVal() to provide better error messages
          (this changes the stub interface, so we have to change the version number)
 
Index: Makefile.in
===================================================================
diff -u -r7a1be5aee9b639b1b8751d7fb120d65ea2de25b8 -rfab24fa76060a5c722c7454af72f8707d27811ae
--- Makefile.in	(.../Makefile.in)	(revision 7a1be5aee9b639b1b8751d7fb120d65ea2de25b8)
+++ Makefile.in	(.../Makefile.in)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -8,7 +8,8 @@
 #
 # Copyright (c) 1999 Scriptics Corporation.
 # Copyright (c) 2002-2003 ActiveState Corporation.
-# Copyright (c) 2001-2008 Gustaf Neumann, Uwe Zdun
+# Copyright (C) 1999-2014 Gustaf Neumann (a) (b)
+# Copyright (C) 1999-2007 Uwe Zdun (a) (b)
 #
 # See the file "tcl-license.terms" for information on usage and redistribution
 # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
Index: apps/COPYRIGHT
===================================================================
diff -u -r0242af91272a6cbfabc96aa56319868ade853c06 -rfab24fa76060a5c722c7454af72f8707d27811ae
--- apps/COPYRIGHT	(.../COPYRIGHT)	(revision 0242af91272a6cbfabc96aa56319868ade853c06)
+++ apps/COPYRIGHT	(.../COPYRIGHT)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -1,6 +1,7 @@
  *  XOTcl - Extended OTcl
  *
- *  Copyright (C) 1999-2008 Gustaf Neumann (a), Uwe Zdun (b)
+ *  Copyright (C) 1999-2014 Gustaf Neumann (a) (b)
+ *  Copyright (C) 1999-2007 Uwe Zdun (a) (b)
  *
  * (a) Vienna University of Economics and Business Administration
  *     Dept. of Information Systems / New Media
Index: doc/Announce-1.6.8
===================================================================
diff -u
--- doc/Announce-1.6.8	(revision 0)
+++ doc/Announce-1.6.8	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -0,0 +1,28 @@
+
+Announcing XOTcl 1.6.8
+*************************
+
+Dear XOTcl Community,
+We are pleased to announce the availability of XOTcl 1.6.8
+
+This is a maintenance release. Major changes relative to 1.6.7 are:
+
+    * overhaul of configure and TEA
+    * fixes for linking xotclsh with Tcl 8.6 (fixes Debian report)
+    * overworked version numbering in packages
+    * backport fixes from nsf
+    * some code cleanup
+
+ All new development efforts are concentrating on the Next scripting framework,
+ including XOTcl 2.0 (see http://next-scripting.org)
+
+MORE INFO
+  General and more detailed information about XOTcl and its components
+  can be found at http://www.xotcl.org
+
+
+
+=====
+
+
+
Index: generic/xotcl.c
===================================================================
diff -u -rf45d0b72be618d8e24ee051fb9e9462ba4c6650f -rfab24fa76060a5c722c7454af72f8707d27811ae
--- generic/xotcl.c	(.../xotcl.c)	(revision f45d0b72be618d8e24ee051fb9e9462ba4c6650f)
+++ generic/xotcl.c	(.../xotcl.c)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -1,7 +1,7 @@
 /* 
  *  XOTcl - Extended Object Tcl
  *
- *  Copyright (C) 1999-2011 Gustaf Neumann (a) (b)
+ *  Copyright (C) 1999-2014 Gustaf Neumann (a) (b)
  *  Copyright (C) 1999-2007 Uwe Zdun (a) (b)
  *  Copyright (C) 2007-2008 Martin Matuska (b)
  *
Index: generic/xotcl.h
===================================================================
diff -u -rd67e188b5b82e7159b894baf96bcfd2b3605918c -rfab24fa76060a5c722c7454af72f8707d27811ae
--- generic/xotcl.h	(.../xotcl.h)	(revision d67e188b5b82e7159b894baf96bcfd2b3605918c)
+++ generic/xotcl.h	(.../xotcl.h)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -1,7 +1,7 @@
 /* 
  *  Extended Object Tcl (XOTcl)
  *
- *  Copyright (C) 1999-2011 Gustaf Neumann
+ *  Copyright (C) 1999-2014 Gustaf Neumann
  *  Copyright (C) 1999-2007 Uwe Zdun
  *
  *  This software is based upon MIT Object Tcl by David Wetherall and
Index: generic/xotclDecls.h
===================================================================
diff -u -r5ab730ebd0e769e5f376cc2db8aa22b024a9c498 -rfab24fa76060a5c722c7454af72f8707d27811ae
--- generic/xotclDecls.h	(.../xotclDecls.h)	(revision 5ab730ebd0e769e5f376cc2db8aa22b024a9c498)
+++ generic/xotclDecls.h	(.../xotclDecls.h)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -3,7 +3,8 @@
  *
  *	Declarations of functions in the platform independent public XOTcl API.
  *
- *  Copyright (C) 1999-2008 Gustaf Neumann, Uwe Zdun
+ *  Copyright (C) 1999-2007 Uwe Zdun
+ *  Copyright (C) 1999-2014 Gustaf Neumann
  *
  * See the file "tcl-license.terms" for information on usage and redistribution
  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
Index: generic/xotclError.c
===================================================================
diff -u -rd67e188b5b82e7159b894baf96bcfd2b3605918c -rfab24fa76060a5c722c7454af72f8707d27811ae
--- generic/xotclError.c	(.../xotclError.c)	(revision d67e188b5b82e7159b894baf96bcfd2b3605918c)
+++ generic/xotclError.c	(.../xotclError.c)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -1,7 +1,7 @@
 /*
  *  Extended Object Tcl (XOTcl)
  *
- *  Copyright (C) 1999-2011 Gustaf Neumann
+ *  Copyright (C) 1999-2014 Gustaf Neumann
  *  Copyright (C) 1999-2007 Uwe Zdun
  *
  *  xotclError.c --
Index: generic/xotclInt.h
===================================================================
diff -u -rd67e188b5b82e7159b894baf96bcfd2b3605918c -rfab24fa76060a5c722c7454af72f8707d27811ae
--- generic/xotclInt.h	(.../xotclInt.h)	(revision d67e188b5b82e7159b894baf96bcfd2b3605918c)
+++ generic/xotclInt.h	(.../xotclInt.h)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -1,7 +1,7 @@
 /* 
  *  Extended Object Tcl (XOTcl)
  *
- * Copyright (C) 1999-2011 Gustaf Neumann
+ * Copyright (C) 1999-2014 Gustaf Neumann
  * Copyright (C) 1999-2007 Uwe Zdun
  *
  *  xotclInt.h --
Index: generic/xotclIntDecls.h
===================================================================
diff -u -rbfeda566de60595825c75d78632d42458bb6cb05 -rfab24fa76060a5c722c7454af72f8707d27811ae
--- generic/xotclIntDecls.h	(.../xotclIntDecls.h)	(revision bfeda566de60595825c75d78632d42458bb6cb05)
+++ generic/xotclIntDecls.h	(.../xotclIntDecls.h)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -6,7 +6,8 @@
  *	interfaces are not guaranteed to remain the same between
  *	versions.  Use at your own risk.
  *
- * Copyright (c) 1998-2008 Gustaf Neumann, Uwe Zdun
+ * Copyright (C) 1999-2007 Uwe Zdun
+ * Copyright (C) 1999-2014 Gustaf Neumann
  *
  * See the file "tcl-license.terms" for information on usage and redistribution
  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
Index: generic/xotclMetaData.c
===================================================================
diff -u -rd67e188b5b82e7159b894baf96bcfd2b3605918c -rfab24fa76060a5c722c7454af72f8707d27811ae
--- generic/xotclMetaData.c	(.../xotclMetaData.c)	(revision d67e188b5b82e7159b894baf96bcfd2b3605918c)
+++ generic/xotclMetaData.c	(.../xotclMetaData.c)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -1,7 +1,7 @@
 /* 
  *  Extended Object Tcl (XOTcl)
  *
- *  Copyright (C) 1999-2011 Gustaf Neumann
+ *  Copyright (C) 1999-2014 Gustaf Neumann
  *  Copyright (C) 1999-2007 Uwe Zdun
  *
  *  xotclReference.c --
Index: generic/xotclObjectData.c
===================================================================
diff -u -rd67e188b5b82e7159b894baf96bcfd2b3605918c -rfab24fa76060a5c722c7454af72f8707d27811ae
--- generic/xotclObjectData.c	(.../xotclObjectData.c)	(revision d67e188b5b82e7159b894baf96bcfd2b3605918c)
+++ generic/xotclObjectData.c	(.../xotclObjectData.c)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -1,7 +1,7 @@
 /*
  *  Extended Object Tcl (XOTcl)
  *
- *  Copyright (C) 1999-2011 Gustaf Neumann
+ *  Copyright (C) 1999-2014 Gustaf Neumann
  *  Copyright (C) 1999-2007 Uwe Zdun  *
  *
  *  xotclObjectData.c --
Index: generic/xotclProfile.c
===================================================================
diff -u -rd67e188b5b82e7159b894baf96bcfd2b3605918c -rfab24fa76060a5c722c7454af72f8707d27811ae
--- generic/xotclProfile.c	(.../xotclProfile.c)	(revision d67e188b5b82e7159b894baf96bcfd2b3605918c)
+++ generic/xotclProfile.c	(.../xotclProfile.c)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -1,7 +1,7 @@
 /* 
  *  Extended Object Tcl (XOTcl)
  *
- *  Copyright (C) 1999-2011 Gustaf Neumann
+ *  Copyright (C) 1999-2014 Gustaf Neumann
  *  Copyright (C) 1999-2007 Uwe Zdun
  *
  *  xotclProfile.c --
Index: generic/xotclShadow.c
===================================================================
diff -u -rd67e188b5b82e7159b894baf96bcfd2b3605918c -rfab24fa76060a5c722c7454af72f8707d27811ae
--- generic/xotclShadow.c	(.../xotclShadow.c)	(revision d67e188b5b82e7159b894baf96bcfd2b3605918c)
+++ generic/xotclShadow.c	(.../xotclShadow.c)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -1,7 +1,7 @@
 /* 
  *  Extended Object Tcl (XOTcl)
  *
- *  Copyright (C) 1999-2011 Gustaf Neumann
+ *  Copyright (C) 1999-2014 Gustaf Neumann
  *  Copyright (C) 1999-2007 Uwe Zdun
  *
  *  xotclShadow.c --
Index: generic/xotclStubLib.c
===================================================================
diff -u -rf4b1378f3136bc998645f230af38847bcf76d96b -rfab24fa76060a5c722c7454af72f8707d27811ae
--- generic/xotclStubLib.c	(.../xotclStubLib.c)	(revision f4b1378f3136bc998645f230af38847bcf76d96b)
+++ generic/xotclStubLib.c	(.../xotclStubLib.c)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -3,8 +3,9 @@
  *
  *      Stub object that will be statically linked into extensions of XOTcl
  *
- * Copyright (c) 2001-2008 Gustaf Neumann, Uwe Zdun
  * Copyright (c) 1998 Paul Duffin.
+ * Copyright (C) 1999-2007 Uwe Zdun
+ * Copyright (C) 1999-2014 Gustaf Neumann
  *
  * See the file "tcl-license.terms" for information on usage and redistribution
  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
Index: generic/xotclTrace.c
===================================================================
diff -u -rb694e99c9c40f4b3c32a89977f2364958558513f -rfab24fa76060a5c722c7454af72f8707d27811ae
--- generic/xotclTrace.c	(.../xotclTrace.c)	(revision b694e99c9c40f4b3c32a89977f2364958558513f)
+++ generic/xotclTrace.c	(.../xotclTrace.c)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -1,7 +1,7 @@
 /*  
  *  Extended Object Tcl (XOTcl)
  *
- *  Copyright (C) 1999-2011 Gustaf Neumann
+ *  Copyright (C) 1999-2014 Gustaf Neumann
  *  Copyright (C) 1999-2007 Uwe Zdun
  *
  *  xotclTrace.c --
Index: generic/xotclUtil.c
===================================================================
diff -u -rd67e188b5b82e7159b894baf96bcfd2b3605918c -rfab24fa76060a5c722c7454af72f8707d27811ae
--- generic/xotclUtil.c	(.../xotclUtil.c)	(revision d67e188b5b82e7159b894baf96bcfd2b3605918c)
+++ generic/xotclUtil.c	(.../xotclUtil.c)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -1,7 +1,7 @@
 /*  
  *  Extended Object Tcl (XOTcl)
  *
- *  Copyright (C) 1999-2011 Gustaf Neumann
+ *  Copyright (C) 1999-2014 Gustaf Neumann
  *  Copyright (C) 1999-2007 Uwe Zdun 
  *
  *  xotclUtil.c --
Index: library/COPYRIGHT
===================================================================
diff -u -rf4b1378f3136bc998645f230af38847bcf76d96b -rfab24fa76060a5c722c7454af72f8707d27811ae
--- library/COPYRIGHT	(.../COPYRIGHT)	(revision f4b1378f3136bc998645f230af38847bcf76d96b)
+++ library/COPYRIGHT	(.../COPYRIGHT)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -1,6 +1,7 @@
  *  XOTcl - Extended OTcl
  *
- *  Copyright (C) 1999-2008 Gustaf Neumann (a), Uwe Zdun (b)
+ *  Copyright (C) 1999-2014 Gustaf Neumann (a) (b)
+ *  Copyright (C) 1999-2007 Uwe Zdun (a) (b)
  *
  * (a) Vienna University of Economics and Business Administration
  *     Dept. of Information Systems / New Media
Index: library/actiweb/COPYRIGHT
===================================================================
diff -u -r5edfb98f18a94e343deb9ae02e138e084a1c7c5c -rfab24fa76060a5c722c7454af72f8707d27811ae
--- library/actiweb/COPYRIGHT	(.../COPYRIGHT)	(revision 5edfb98f18a94e343deb9ae02e138e084a1c7c5c)
+++ library/actiweb/COPYRIGHT	(.../COPYRIGHT)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -1,6 +1,7 @@
  *  XOTcl - Extended OTcl
  *
- *  Copyright (C) 1999-2008 Gustaf Neumann (a), Uwe Zdun (b)
+ *  Copyright (C) 1999-2014 Gustaf Neumann (a) (b)
+ *  Copyright (C) 1999-2007 Uwe Zdun (a) (b)
  *
  * (a) Vienna University of Economics and Business Administration
  *     Dept. of Information Systems / New Media
Index: library/comm/COPYRIGHT
===================================================================
diff -u -r5edfb98f18a94e343deb9ae02e138e084a1c7c5c -rfab24fa76060a5c722c7454af72f8707d27811ae
--- library/comm/COPYRIGHT	(.../COPYRIGHT)	(revision 5edfb98f18a94e343deb9ae02e138e084a1c7c5c)
+++ library/comm/COPYRIGHT	(.../COPYRIGHT)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -1,6 +1,7 @@
  *  XOTcl - Extended OTcl
  *
- *  Copyright (C) 1999-2008 Gustaf Neumann (a), Uwe Zdun (b)
+ *  Copyright (C) 1999-2014 Gustaf Neumann (a) (b)
+ *  Copyright (C) 1999-2007 Uwe Zdun (a) (b)
  *
  * (a) Vienna University of Economics and Business Administration
  *     Dept. of Information Systems / New Media
Index: library/lib/COPYRIGHT
===================================================================
diff -u -r5edfb98f18a94e343deb9ae02e138e084a1c7c5c -rfab24fa76060a5c722c7454af72f8707d27811ae
--- library/lib/COPYRIGHT	(.../COPYRIGHT)	(revision 5edfb98f18a94e343deb9ae02e138e084a1c7c5c)
+++ library/lib/COPYRIGHT	(.../COPYRIGHT)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -1,6 +1,7 @@
  *  XOTcl - Extended OTcl
  *
- *  Copyright (C) 1999-2008 Gustaf Neumann (a), Uwe Zdun (b)
+ *  Copyright (C) 1999-2014 Gustaf Neumann (a) (b)
+ *  Copyright (C) 1999-2007 Uwe Zdun (a) (b)
  *
  * (a) Vienna University of Economics and Business Administration
  *     Dept. of Information Systems / New Media
Index: library/patterns/COPYRIGHT
===================================================================
diff -u -r5edfb98f18a94e343deb9ae02e138e084a1c7c5c -rfab24fa76060a5c722c7454af72f8707d27811ae
--- library/patterns/COPYRIGHT	(.../COPYRIGHT)	(revision 5edfb98f18a94e343deb9ae02e138e084a1c7c5c)
+++ library/patterns/COPYRIGHT	(.../COPYRIGHT)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -1,6 +1,7 @@
  *  XOTcl - Extended OTcl
  *
- *  Copyright (C) 1999-2008 Gustaf Neumann (a), Uwe Zdun (b)
+ *  Copyright (C) 1999-2014 Gustaf Neumann (a) (b)
+ *  Copyright (C) 1999-2007 Uwe Zdun (a) (b)
  *
  * (a) Vienna University of Economics and Business Administration
  *     Dept. of Information Systems / New Media
Index: library/rdf/COPYRIGHT
===================================================================
diff -u -r5edfb98f18a94e343deb9ae02e138e084a1c7c5c -rfab24fa76060a5c722c7454af72f8707d27811ae
--- library/rdf/COPYRIGHT	(.../COPYRIGHT)	(revision 5edfb98f18a94e343deb9ae02e138e084a1c7c5c)
+++ library/rdf/COPYRIGHT	(.../COPYRIGHT)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -1,6 +1,7 @@
  *  XOTcl - Extended OTcl
  *
- *  Copyright (C) 1999-2008 Gustaf Neumann (a), Uwe Zdun (b)
+ *  Copyright (C) 1999-2014 Gustaf Neumann (a) (b)
+ *  Copyright (C) 1999-2007 Uwe Zdun (a) (b)
  *
  * (a) Vienna University of Economics and Business Administration
  *     Dept. of Information Systems / New Media
Index: library/registry/COPYRIGHT
===================================================================
diff -u -r5edfb98f18a94e343deb9ae02e138e084a1c7c5c -rfab24fa76060a5c722c7454af72f8707d27811ae
--- library/registry/COPYRIGHT	(.../COPYRIGHT)	(revision 5edfb98f18a94e343deb9ae02e138e084a1c7c5c)
+++ library/registry/COPYRIGHT	(.../COPYRIGHT)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -1,6 +1,7 @@
  *  XOTcl - Extended OTcl
  *
- *  Copyright (C) 1999-2008 Gustaf Neumann (a), Uwe Zdun (b)
+ *  Copyright (C) 1999-2014 Gustaf Neumann (a) (b)
+ *  Copyright (C) 1999-2007 Uwe Zdun (a) (b)
  *
  * (a) Vienna University of Economics and Business Administration
  *     Dept. of Information Systems / New Media
Index: library/serialize/COPYRIGHT
===================================================================
diff -u -r5edfb98f18a94e343deb9ae02e138e084a1c7c5c -rfab24fa76060a5c722c7454af72f8707d27811ae
--- library/serialize/COPYRIGHT	(.../COPYRIGHT)	(revision 5edfb98f18a94e343deb9ae02e138e084a1c7c5c)
+++ library/serialize/COPYRIGHT	(.../COPYRIGHT)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -1,6 +1,7 @@
  *  XOTcl - Extended OTcl
  *
- *  Copyright (C) 1999-2008 Gustaf Neumann (a), Uwe Zdun (b)
+ *  Copyright (C) 1999-2014 Gustaf Neumann (a) (b)
+ *  Copyright (C) 1999-2007 Uwe Zdun (a) (b)
  *
  * (a) Vienna University of Economics and Business Administration
  *     Dept. of Information Systems / New Media
Index: library/store/COPYRIGHT
===================================================================
diff -u -r5edfb98f18a94e343deb9ae02e138e084a1c7c5c -rfab24fa76060a5c722c7454af72f8707d27811ae
--- library/store/COPYRIGHT	(.../COPYRIGHT)	(revision 5edfb98f18a94e343deb9ae02e138e084a1c7c5c)
+++ library/store/COPYRIGHT	(.../COPYRIGHT)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -1,6 +1,7 @@
  *  XOTcl - Extended OTcl
  *
- *  Copyright (C) 1999-2008 Gustaf Neumann (a), Uwe Zdun (b)
+ *  Copyright (C) 1999-2014 Gustaf Neumann (a) (b)
+ *  Copyright (C) 1999-2007 Uwe Zdun (a) (b)
  *
  * (a) Vienna University of Economics and Business Administration
  *     Dept. of Information Systems / New Media
Index: library/xml/COPYRIGHT
===================================================================
diff -u -r5edfb98f18a94e343deb9ae02e138e084a1c7c5c -rfab24fa76060a5c722c7454af72f8707d27811ae
--- library/xml/COPYRIGHT	(.../COPYRIGHT)	(revision 5edfb98f18a94e343deb9ae02e138e084a1c7c5c)
+++ library/xml/COPYRIGHT	(.../COPYRIGHT)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -1,6 +1,7 @@
  *  XOTcl - Extended OTcl
  *
- *  Copyright (C) 1999-2008 Gustaf Neumann (a), Uwe Zdun (b)
+ *  Copyright (C) 1999-2014 Gustaf Neumann (a) (b)
+ *  Copyright (C) 1999-2007 Uwe Zdun (a) (b)
  *
  * (a) Vienna University of Economics and Business Administration
  *     Dept. of Information Systems / New Media
Index: man/xotclsh.1
===================================================================
diff -u -r585686ffbfbadb05060c6d7ec0fd75aa4b899201 -rfab24fa76060a5c722c7454af72f8707d27811ae
--- man/xotclsh.1	(.../xotclsh.1)	(revision 585686ffbfbadb05060c6d7ec0fd75aa4b899201)
+++ man/xotclsh.1	(.../xotclsh.1)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -1,6 +1,7 @@
 '\"
 '\" XOTcl - Extended OTcl
-'\" Copyright (C) 1999-2008 Gustaf Neumann, Uwe Zdun
+'\" Copyright (C) 1999-2014 Gustaf Neumann,
+'\" Copyright (C) 1999-2007 Uwe Zdun
 '\"
 '\" 
 .so man.macros
Index: man/xowish.1
===================================================================
diff -u -r585686ffbfbadb05060c6d7ec0fd75aa4b899201 -rfab24fa76060a5c722c7454af72f8707d27811ae
--- man/xowish.1	(.../xowish.1)	(revision 585686ffbfbadb05060c6d7ec0fd75aa4b899201)
+++ man/xowish.1	(.../xowish.1)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -1,6 +1,7 @@
 '\"
 '\" XOTcl - Extended OTcl
-'\" Copyright (C) 1999-2008 Gustaf Neumann, Uwe Zdun
+'\" Copyright (C) 1999-2014 Gustaf Neumann,
+'\" Copyright (C) 1999-2007 Uwe Zdun
 '\"
 '\" 
 .so man.macros
Index: xotcl.m4
===================================================================
diff -u -rbfeda566de60595825c75d78632d42458bb6cb05 -rfab24fa76060a5c722c7454af72f8707d27811ae
--- xotcl.m4	(.../xotcl.m4)	(revision bfeda566de60595825c75d78632d42458bb6cb05)
+++ xotcl.m4	(.../xotcl.m4)	(revision fab24fa76060a5c722c7454af72f8707d27811ae)
@@ -4,7 +4,8 @@
 #	a Tcl extension.
 #
 # Copyright (c) 1999 Scriptics Corporation.
-# Copyright (c) 1999-2008 Gustaf Neumann, Uwe Zdun
+# Copyright (C) 1999-2007 Uwe Zdun
+# Copyright (C) 1999-2014 Gustaf Neumann
 #
 # See the file "tcl-license.terms" for information on usage and redistribution
 # of this file, and for a DISCLAIMER OF ALL WARRANTIES.