Index: xotcl/ChangeLog =================================================================== diff -u -r638782f84b31e4ebfd00529381e280c70f9950bc -r51e4c7038743f180ff61011b5df246e8340e168a --- xotcl/ChangeLog (.../ChangeLog) (revision 638782f84b31e4ebfd00529381e280c70f9950bc) +++ xotcl/ChangeLog (.../ChangeLog) (revision 51e4c7038743f180ff61011b5df246e8340e168a) @@ -13,7 +13,7 @@ 2004-08-12 Gustaf.Neumann@wu-wien.ac.at * fixed a possible core dump when 'my' was called without - args (many thanks to Bryan Shofield for noting) + args (many thanks to Bryan Schofield for noting) * some code generalization and cleanup 2004-08-01 Gustaf.Neumann@wu-wien.ac.at @@ -53,7 +53,7 @@ * fixed access to freed memory (thanks to Zoran for his help with Purify ) 2004-07-23 Gustaf.Neumann@wu-wien.ac.at - * implemented expermental next method for delegating same-named procs + * implemented experimental next method for delegating same-named procs to different objects 2004-07-20 Gustaf.Neumann@wu-wien.ac.at @@ -70,7 +70,7 @@ 2004-07-18 Gustaf.Neumann@wu-wien.ac.at * added removal of autom4te.cache to distclean * make doc added to "all" target - * autogenerated html docs are removed in a make clean + * auto-generated html docs are removed in a make clean * remove all *~ files in directory tree via find (ok with TEA3?) 2004-07-11 jim@jam.sessionsnet.org @@ -117,10 +117,10 @@ * rename forward option -inscope to -objscope * xotcl.c: added current namespace prefix, when a forwarder is defined with -objscope and no namespace prefix was specified - * optimzed forward/instforward such it reaches practically + * optimized forward/instforward such it reaches practically same speed as tclcmd/insttclcmd. * removed tclcmd/insttclcmd - * added tests for forward to regreession test suite + * added tests for forward to regression test suite * applied and fixed the config improvements by Jim Lynch 2004-07-01 Gustaf.Neumann@wu-wien.ac.at @@ -154,7 +154,7 @@ 2004-06-24 Gustaf.Neumann@wu-wien.ac.at * fixed coredump for delegation to object without method specified - (many thanks fot Bryan Schofield for the bug report) + (many thanks for Bryan Schofield for the bug report) 2004-06-20 Gustaf.Neumann@wu-wien.ac.at * removed inclusion of @@ -179,7 +179,7 @@ where methodname: name of an instcommand for the class to be registered, - commandname: command that recieves delegation + commandname: command that receives delegation -nomethod: don't insert the callers method -nocaller: don't insert caller after method -inscope: evalute method in obj scope @@ -194,7 +194,7 @@ -defaultmethod: when number of arguments is not sufficient to determine the called method, use the specified value to be used as method name (only useful when - -skip is used und the arguments run out) + -skip is used and the arguments run out) (e.g. [$obj info] be mapped to COMMAND showInfoOptions) @@ -263,7 +263,7 @@ 2004-04-10 Gustaf.Neumann@wu-wien.ac.at * start to move to TEA3 - * moved tcl scripts xotclsh and xowish intp apps/utils + * moved tcl scripts xotclsh and xowish into apps/utils * made minimal build independent from tclsh; new target libraries-pkgindex, fulldoc, doc removed from default targets @@ -296,7 +296,7 @@ * fixed Win version info 2004-02-16 Gustaf.Neumann@wu-wien.ac.at - * fixed a reference to a structure of a destoyed object + * fixed a reference to a structure of a destroyed object 2004-02-16 Uwe Zdun * added self class and self proc context to GuardCall @@ -364,7 +364,7 @@ (wish, CallFrame had ClientData !!!) * Reduced size of XOTclCallStackContent * modularized xotcl more (new file xotclShadow.c; all shadowing - of Tcl commands and access of gobal tcl obj commands is + of Tcl commands and access of global tcl obj commands is treated there) * included a fix from Zoran for thread exit handlers. @@ -380,7 +380,7 @@ (some had a high increment) 2004-01-14 Gustaf.Neumann@wu-wien.ac.at - * method 'new' now uses StringIncr, which replaces the name + * method 'new' now uses stringIncrement, which replaces the name generation based on numbers by a name generation based on strings. The strings are constructed by small and capital letters plus digits and correspond to a number of a number @@ -403,7 +403,7 @@ of object (as suggested by Zoran) 2004-01-11 Gustaf.Neumann@wu-wien.ac.at - * all occurances of uplevel/upvar equipped with + * all occurrences of uplevel/upvar equipped with [self callinglevel] such that library works with standard uplevel/upvar * faster version of 'new' method (more than 20% faster, @@ -574,7 +574,7 @@ % make install DESTDIR=/tmp 2003-12-05 Gustaf.Neumann@wu-wien.ac.at - * incoporated changes as suggested by Daniel Steffen + * incorporated changes as suggested by Daniel Steffen - using consequently DESTDIR for all directory references - made procs in predefined.xotcl independent from namespace import ::xotcl::* @@ -590,7 +590,7 @@ 2003-11-29 Gustaf.Neumann@wu-wien.ac.at * moved tcl command hooks into thread local storage - to fix a bug, when xotcl is loaded into a thead + to fix a bug, when xotcl is loaded into a thread * fixed various documentation bugs, added style files for XOTcl tutorial, made presentation more uniform, made distinction between literals and placeholders visible @@ -917,7 +917,7 @@ 2003-03-07 Gustaf.Neumann@wu-wien.ac.at * Made output of the serializer more compact - (omitting unneccessary references to ::xotcl::Object + (omitting unnecessary references to ::xotcl::Object 2003-03-07 Uwe Zdun * Copy/Move to self had undefined or wrong results; corrected @@ -959,7 +959,7 @@ 2003-01-18 Gustaf.Neumann@wu-wien.ac.at * aol-server adjustments (fix the documentation - for new directory strucure, update serializer code, testing) + for new directory structure, update serializer code, testing) * provided simple replacements for xotclsh and xowish scripts in the unix subdir for testing purposes (not yet installed) @@ -982,20 +982,20 @@ 2003-01-09 Gustaf.Neumann@wu-wien.ac.at * configure methods can be placed into a list to avoid - ambiguity of "-". This character is used as a metachar to + ambiguity of "-". This character is used as a meta-char to denote method names, but it has to be used in values as well. Example: Class Book -parameter {title author} Book b1 -title "--the title--" -author a.b.c has to be written as Book b1 [list -title "--the title--"] -author a.b.c - Note, that XOTcl allows us to provide multiple arguents - to methodss called via configure + Note, that XOTcl allows us to provide multiple arguments + to methods called via configure 2003-01-05 Gustaf.Neumann@wu-wien.ac.at * configure returns now the number of preceding elements without a "-" in its first place. This is needed - for conveniant processing of argument lists with trailing + for convenient processing of argument lists with trailing options from tcl. * avoid processing configure list twice in c code. @@ -1398,8 +1398,8 @@ 2001-10-14 Gustaf.Neumann@wu-wien.ac.at * new method of Object: parametercmd: - a conveniant way to define a new getter/setter for - individual objects (similar to paramters for classes) + a convenient way to define a new getter/setter for + individual objects (similar to parameters for classes) * polishing docu 2001-10-11 Gustaf.Neumann@wu-wien.ac.at @@ -1416,7 +1416,7 @@ in Tcl 8.05 and Tcl 8.3 - added TCL_PARSE_PART1 to variable lookup in GetInstVarIntoCurrentScope. TclLookupVar in 8.05 - requires it for looking up arrays with onyl part1 + requires it for looking up arrays with only part1 given. 2001-10-10 Gustaf.Neumann@wu-wien.ac.at @@ -1666,7 +1666,7 @@ 2001-08-24 Uwe Zdun * xotcl.c: - CallStackGetFrame: iterate only over INACTIVE filters (was a bug) - - self filter & mixinsinfos: determine info position from + - self filter & mixin infos: determine info position from callstack with CallStackGetFrame, so that uplevel functions with [self calling*,called*] - NextMethod: passed XOTCL_UNKNOWN through at end of mixin/filter @@ -2087,7 +2087,7 @@ directory, it is taken as the XOTCL directory. 2) If the auto_path (determined in part by the environment - variable TCLLIBPATH) contains a directory named "xotcl" + variable TCLLIBPTH) contains a directory named "xotcl" and it exists, it is taken. 3) If no xotcl library is determined yet, check @@ -2369,7 +2369,7 @@ * trace.xotcl: "deprecated messages" show* fixed 2000-08-19 Gustaf.Neumann@wu-wien.ac.at - * toplevel Makfile: target "make test" added + * toplevel Makefile: target "make test" added 2000-08-16 Gustaf.Neumann@wu-wien.ac.at * RDFTriple got a new method "prettyTriples" which uses @@ -2467,7 +2467,7 @@ - added deprecated error message - added "xotcl_interp" command to start an XOTcl slave interp - better "package" support and integration - - linearization of per-object mixin hierarchy with ordinary + - linearizing of per-object mixin hierarchy with ordinary class hierarchy - isobject, isclass, and ismetaclass with identical interface: all have the obj/cls in question as argument