2015-05-21 12:37:59 +02:00
|
|
|
@comment $NetBSD: PLIST,v 1.18 2015/05/21 10:37:59 adam Exp $
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
bin/tclsh
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
bin/tclsh${BASEVER}
|
2014-01-11 15:41:05 +01:00
|
|
|
include/fakemysql.h
|
|
|
|
include/fakepq.h
|
|
|
|
include/fakesql.h
|
|
|
|
include/itcl.h
|
|
|
|
include/itcl2TclOO.h
|
|
|
|
include/itclDecls.h
|
|
|
|
include/itclInt.h
|
|
|
|
include/itclIntDecls.h
|
|
|
|
include/itclMigrate2TclCore.h
|
|
|
|
include/itclTclIntStubsFcn.h
|
|
|
|
include/mysqlStubs.h
|
|
|
|
include/odbcStubs.h
|
|
|
|
include/pqStubs.h
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
include/tcl.h
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
include/tcl/generic/regcustom.h
|
|
|
|
include/tcl/generic/regerrs.h
|
2004-05-13 01:50:15 +02:00
|
|
|
include/tcl/generic/regex.h
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
include/tcl/generic/regguts.h
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
include/tcl/generic/tcl.h
|
|
|
|
include/tcl/generic/tclCompile.h
|
|
|
|
include/tcl/generic/tclDecls.h
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
include/tcl/generic/tclFileSystem.h
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
include/tcl/generic/tclIO.h
|
|
|
|
include/tcl/generic/tclInt.h
|
|
|
|
include/tcl/generic/tclIntDecls.h
|
|
|
|
include/tcl/generic/tclIntPlatDecls.h
|
2014-01-11 15:41:05 +01:00
|
|
|
include/tcl/generic/tclOO.h
|
|
|
|
include/tcl/generic/tclOODecls.h
|
|
|
|
include/tcl/generic/tclOOInt.h
|
|
|
|
include/tcl/generic/tclOOIntDecls.h
|
|
|
|
include/tcl/generic/tclParse.h
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
include/tcl/generic/tclPlatDecls.h
|
|
|
|
include/tcl/generic/tclPort.h
|
|
|
|
include/tcl/generic/tclRegexp.h
|
2014-10-31 22:11:18 +01:00
|
|
|
include/tcl/generic/tclStringTrim.h
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
include/tcl/generic/tclTomMath.h
|
|
|
|
include/tcl/generic/tclTomMathDecls.h
|
|
|
|
include/tcl/generic/tclTomMathInt.h
|
|
|
|
include/tcl/generic/tommath.h
|
2001-05-12 08:05:31 +02:00
|
|
|
include/tcl/unix/tclUnixPort.h
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
include/tcl/unix/tclUnixThrd.h
|
2001-05-12 08:05:31 +02:00
|
|
|
include/tclDecls.h
|
2014-01-11 15:41:05 +01:00
|
|
|
include/tclOO.h
|
|
|
|
include/tclOODecls.h
|
Update to version 8.3.4
Besides more bug fixes and several enhancements some of the
NetBSD relevant changes (taken from "changes" in the
distribution):
2001-04-03 (doc fixes) numerous doc corrections and clarifications.
Update of READMEs.
2001-03-29 (bug fix) prevent potential race condition and security leak in
tmp filename creation on Unix. (max)
2001-03-13 (bug fix) Correctly possible memory corruption in string map {}
$str (fellows)
2001-01-30 (bug fix) Fixed possible hangs in fcopy. (porter)
2000-11-23 (mem leak) fixed potential memory leak in error case of lsort
(fellows)
2000-11-01 (mem leak) Corrected excessive mem use of info exists on a
non-existent array element (hobbs)
2000-09-27 (bug fix) fixed a bug introduced by a partial fix in 8.3.2 that
didn't set nonBlocking correctly when resetting the flags for the write
side (mem leak) Correct mem leak in channels when statePtr was released
(hobbs)
2001-07-18 (bug fix) corrected memory overwrite error when buffer size
of a channel is changed after channel use has already begun (kupries, porter)
2001-08-07 (bug fix) corrected bytecode stack management during [break]
(see test foreach-5.5) (sofer, tallneil, jstrot)
2001-08-08 (new features) updated packages msgcat 1.1.1, opt 0.4.3,
tcltest 1.0.1, dependencies checked (porter)
2001-08-24 (bug fix) [auto_import] now matches patterns like
[namespace import], not like [string match] (porter)
**** POTENTIAL INCOMPATABILITY ****
2001-08-27 (new feature) added Tcl_SetMainLoop() to enable loading Tk as a
true package (hobbs)
2001-09-06 (new feature) http 2.4: honor the Content-encoding and charset
parameters; add -binary switch for forcing the issue (hobbs, saoukhi, orwell)
2001-09-10 (bug fix) protect against alias loops (hobbs)
2001-09-19 (bug fix) [format] and [scan] corrected for 64-bit machines (rmax)
2001-09-26 (bug fix) corrected potential deadlock in channels that do not
provide a BlockModeProc (kupries, kogorman)
2001-10-11 (bug fix) corrected cleanup of self-referential bytecodes at
interpreter deletion (sofer, rbrunner)
2001-12-23 18:02:30 +01:00
|
|
|
include/tclPlatDecls.h
|
2014-01-11 15:41:05 +01:00
|
|
|
include/tclThread.h
|
|
|
|
include/tdbc.h
|
|
|
|
include/tdbcDecls.h
|
|
|
|
include/tdbcInt.h
|
2015-05-21 12:37:59 +02:00
|
|
|
lib/itcl4.0.3/itcl.tcl
|
|
|
|
lib/itcl4.0.3/itclConfig.sh
|
|
|
|
lib/itcl4.0.3/itclHullCmds.tcl
|
|
|
|
lib/itcl4.0.3/itclWidget.tcl
|
|
|
|
lib/itcl4.0.3/libitcl4.0.3.so
|
|
|
|
lib/itcl4.0.3/libitclstub4.0.3.a
|
|
|
|
lib/itcl4.0.3/pkgIndex.tcl
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
lib/libtcl${SONUM}.a
|
|
|
|
lib/libtcl${SONUM}.so
|
|
|
|
lib/libtcl${SONUM}.so.1.0
|
|
|
|
lib/libtclstub${SONUM}.a
|
2014-01-11 15:41:05 +01:00
|
|
|
lib/pkgconfig/tcl.pc
|
2015-05-21 12:37:59 +02:00
|
|
|
lib/sqlite3.8.8.3/libsqlite3.8.8.3.so
|
|
|
|
lib/sqlite3.8.8.3/pkgIndex.tcl
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
lib/tcl${BASEVER}/auto.tcl
|
|
|
|
lib/tcl${BASEVER}/clock.tcl
|
|
|
|
lib/tcl${BASEVER}/encoding/ascii.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/big5.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp1250.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp1251.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp1252.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp1253.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp1254.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp1255.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp1256.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp1257.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp1258.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp437.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp737.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp775.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp850.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp852.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp855.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp857.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp860.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp861.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp862.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp863.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp864.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp865.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp866.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp869.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp874.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp932.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp936.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp949.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/cp950.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/dingbats.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/ebcdic.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/euc-cn.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/euc-jp.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/euc-kr.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/gb12345.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/gb1988.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/gb2312-raw.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/gb2312.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/iso2022-jp.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/iso2022-kr.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/iso2022.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/iso8859-1.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/iso8859-10.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/iso8859-13.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/iso8859-14.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/iso8859-15.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/iso8859-16.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/iso8859-2.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/iso8859-3.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/iso8859-4.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/iso8859-5.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/iso8859-6.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/iso8859-7.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/iso8859-8.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/iso8859-9.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/jis0201.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/jis0208.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/jis0212.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/koi8-r.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/koi8-u.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/ksc5601.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/macCentEuro.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/macCroatian.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/macCyrillic.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/macDingbats.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/macGreek.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/macIceland.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/macJapan.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/macRoman.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/macRomania.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/macThai.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/macTurkish.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/macUkraine.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/shiftjis.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/symbol.enc
|
|
|
|
lib/tcl${BASEVER}/encoding/tis-620.enc
|
|
|
|
lib/tcl${BASEVER}/history.tcl
|
2013-04-08 16:19:38 +02:00
|
|
|
lib/tcl${BASEVER}/http/http.tcl
|
|
|
|
lib/tcl${BASEVER}/http/pkgIndex.tcl
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
lib/tcl${BASEVER}/http1.0/http.tcl
|
|
|
|
lib/tcl${BASEVER}/http1.0/pkgIndex.tcl
|
|
|
|
lib/tcl${BASEVER}/init.tcl
|
2014-01-11 15:41:05 +01:00
|
|
|
lib/tcl${BASEVER}/msgcat1.5/msgcat.tcl
|
|
|
|
lib/tcl${BASEVER}/msgcat1.5/pkgIndex.tcl
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
lib/tcl${BASEVER}/msgs/af.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/af_za.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/ar.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/ar_in.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/ar_jo.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/ar_lb.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/ar_sy.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/be.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/bg.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/bn.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/bn_in.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/ca.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/cs.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/da.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/de.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/de_at.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/de_be.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/el.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/en_au.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/en_be.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/en_bw.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/en_ca.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/en_gb.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/en_hk.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/en_ie.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/en_in.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/en_nz.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/en_ph.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/en_sg.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/en_za.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/en_zw.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/eo.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/es.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/es_ar.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/es_bo.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/es_cl.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/es_co.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/es_cr.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/es_do.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/es_ec.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/es_gt.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/es_hn.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/es_mx.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/es_ni.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/es_pa.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/es_pe.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/es_pr.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/es_py.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/es_sv.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/es_uy.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/es_ve.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/et.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/eu.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/eu_es.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/fa.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/fa_in.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/fa_ir.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/fi.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/fo.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/fo_fo.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/fr.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/fr_be.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/fr_ca.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/fr_ch.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/ga.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/ga_ie.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/gl.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/gl_es.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/gv.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/gv_gb.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/he.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/hi.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/hi_in.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/hr.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/hu.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/id.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/id_id.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/is.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/it.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/it_ch.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/ja.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/kl.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/kl_gl.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/ko.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/ko_kr.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/kok.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/kok_in.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/kw.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/kw_gb.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/lt.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/lv.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/mk.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/mr.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/mr_in.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/ms.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/ms_my.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/mt.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/nb.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/nl.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/nl_be.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/nn.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/pl.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/pt.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/pt_br.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/ro.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/ru.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/ru_ua.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/sh.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/sk.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/sl.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/sq.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/sr.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/sv.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/sw.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/ta.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/ta_in.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/te.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/te_in.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/th.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/tr.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/uk.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/vi.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/zh.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/zh_cn.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/zh_hk.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/zh_sg.msg
|
|
|
|
lib/tcl${BASEVER}/msgs/zh_tw.msg
|
|
|
|
lib/tcl${BASEVER}/opt0.4/optparse.tcl
|
|
|
|
lib/tcl${BASEVER}/opt0.4/pkgIndex.tcl
|
|
|
|
lib/tcl${BASEVER}/package.tcl
|
|
|
|
lib/tcl${BASEVER}/parray.tcl
|
|
|
|
lib/tcl${BASEVER}/platform1.0/pkgIndex.tcl
|
|
|
|
lib/tcl${BASEVER}/platform1.0/platform.tcl
|
|
|
|
lib/tcl${BASEVER}/safe.tcl
|
|
|
|
lib/tcl${BASEVER}/shell1.1/pkgIndex.tcl
|
|
|
|
lib/tcl${BASEVER}/shell1.1/shell.tcl
|
|
|
|
lib/tcl${BASEVER}/tclAppInit.c
|
|
|
|
lib/tcl${BASEVER}/tclIndex
|
|
|
|
lib/tcl${BASEVER}/tcltest2.3/tcltest.tcl
|
|
|
|
lib/tcl${BASEVER}/tcltest2.3/pkgIndex.tcl
|
|
|
|
lib/tcl${BASEVER}/tm.tcl
|
|
|
|
lib/tcl${BASEVER}/word.tcl
|
2014-10-31 22:11:18 +01:00
|
|
|
lib/tcl8/8.4/platform-1.0.13.tm
|
2014-01-11 15:41:05 +01:00
|
|
|
lib/tcl8/8.4/platform/shell-1.1.4.tm
|
|
|
|
lib/tcl8/8.5/msgcat-1.5.2.tm
|
2014-10-31 22:11:18 +01:00
|
|
|
lib/tcl8/8.5/tcltest-2.3.8.tm
|
|
|
|
lib/tcl8/8.6/http-2.8.8.tm
|
2015-05-21 12:37:59 +02:00
|
|
|
lib/tcl8/8.6/tdbc/sqlite3-1.0.3.tm
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
lib/tclConfig.sh
|
2014-01-11 15:41:05 +01:00
|
|
|
lib/tclooConfig.sh
|
2015-05-21 12:37:59 +02:00
|
|
|
lib/tdbc1.0.3/libtdbc1.0.3.so
|
|
|
|
lib/tdbc1.0.3/libtdbcstub1.0.3.a
|
|
|
|
lib/tdbc1.0.3/pkgIndex.tcl
|
|
|
|
lib/tdbc1.0.3/tdbc.tcl
|
|
|
|
lib/tdbc1.0.3/tdbcConfig.sh
|
|
|
|
lib/tdbcmysql1.0.3/libtdbcmysql1.0.3.so
|
|
|
|
lib/tdbcmysql1.0.3/pkgIndex.tcl
|
|
|
|
lib/tdbcmysql1.0.3/tdbcmysql.tcl
|
|
|
|
lib/tdbcodbc1.0.3/libtdbcodbc1.0.3.so
|
|
|
|
lib/tdbcodbc1.0.3/pkgIndex.tcl
|
|
|
|
lib/tdbcodbc1.0.3/tdbcodbc.tcl
|
|
|
|
lib/tdbcpostgres1.0.3/libtdbcpostgres1.0.3.so
|
|
|
|
lib/tdbcpostgres1.0.3/pkgIndex.tcl
|
|
|
|
lib/tdbcpostgres1.0.3/tdbcpostgres.tcl
|
|
|
|
lib/thread2.7.2/libthread2.7.2.so
|
|
|
|
lib/thread2.7.2/pkgIndex.tcl
|
|
|
|
lib/thread2.7.2/ttrace.tcl
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man1/tclsh.1
|
|
|
|
man/man3/TCL_MEM_DEBUG.3
|
|
|
|
man/man3/Tcl_Access.3
|
|
|
|
man/man3/Tcl_AddErrorInfo.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_AddObjErrorInfo.3
|
|
|
|
man/man3/Tcl_AlertNotifier.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_Alloc.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_AllocStatBuf.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_AllowExceptions.3
|
|
|
|
man/man3/Tcl_AppInit.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_AppendAllObjTypes.3
|
|
|
|
man/man3/Tcl_AppendElement.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_AppendExportList.3
|
|
|
|
man/man3/Tcl_AppendFormatToObj.3
|
|
|
|
man/man3/Tcl_AppendLimitedToObj.3
|
|
|
|
man/man3/Tcl_AppendObjToErrorInfo.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_AppendObjToObj.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_AppendPrintfToObj.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_AppendResult.3
|
|
|
|
man/man3/Tcl_AppendResultVA.3
|
|
|
|
man/man3/Tcl_AppendStringsToObj.3
|
|
|
|
man/man3/Tcl_AppendStringsToObjVA.3
|
|
|
|
man/man3/Tcl_AppendToObj.3
|
|
|
|
man/man3/Tcl_AppendUnicodeToObj.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_AsyncCreate.3
|
|
|
|
man/man3/Tcl_AsyncDelete.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_AsyncInvoke.3
|
|
|
|
man/man3/Tcl_AsyncMark.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_AsyncReady.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_AttemptAlloc.3
|
|
|
|
man/man3/Tcl_AttemptRealloc.3
|
|
|
|
man/man3/Tcl_AttemptSetObjLength.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_BackgroundError.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_BackgroundException.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_Backslash.3
|
|
|
|
man/man3/Tcl_BadChannelOption.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_CallWhenDeleted.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_CancelEval.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_CancelIdleCall.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_Canceled.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_ChannelBlockModeProc.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_ChannelBuffered.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_ChannelClose2Proc.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_ChannelCloseProc.3
|
|
|
|
man/man3/Tcl_ChannelFlushProc.3
|
|
|
|
man/man3/Tcl_ChannelGetHandleProc.3
|
|
|
|
man/man3/Tcl_ChannelGetOptionProc.3
|
|
|
|
man/man3/Tcl_ChannelHandlerProc.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_ChannelInputProc.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_ChannelName.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_ChannelOutputProc.3
|
|
|
|
man/man3/Tcl_ChannelSeekProc.3
|
|
|
|
man/man3/Tcl_ChannelSetOptionProc.3
|
2005-07-19 13:11:58 +02:00
|
|
|
man/man3/Tcl_ChannelThreadActionProc.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_ChannelTruncateProc.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_ChannelVersion.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_ChannelWatchProc.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_ChannelWideSeekProc.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_Chdir.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_ClassGetMetadata.3
|
|
|
|
man/man3/Tcl_ClassSetConstructor.3
|
|
|
|
man/man3/Tcl_ClassSetDestructor.3
|
|
|
|
man/man3/Tcl_ClassSetMetadata.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_ClearChannelHandlers.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_Close.3
|
|
|
|
man/man3/Tcl_CommandComplete.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_CommandTraceInfo.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_Concat.3
|
|
|
|
man/man3/Tcl_ConcatObj.3
|
|
|
|
man/man3/Tcl_ConditionFinalize.3
|
|
|
|
man/man3/Tcl_ConditionNotify.3
|
|
|
|
man/man3/Tcl_ConditionWait.3
|
|
|
|
man/man3/Tcl_ConvertCountedElement.3
|
|
|
|
man/man3/Tcl_ConvertElement.3
|
|
|
|
man/man3/Tcl_ConvertToType.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_CopyObjectInstance.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_CreateAlias.3
|
|
|
|
man/man3/Tcl_CreateAliasObj.3
|
|
|
|
man/man3/Tcl_CreateChannel.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_CreateChannelHandler.3
|
|
|
|
man/man3/Tcl_CreateCloseHandler.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_CreateCommand.3
|
|
|
|
man/man3/Tcl_CreateEncoding.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_CreateEnsemble.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_CreateEventSource.3
|
|
|
|
man/man3/Tcl_CreateExitHandler.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_CreateFileHandler.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_CreateHashEntry.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_CreateInterp.3
|
|
|
|
man/man3/Tcl_CreateMathFunc.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_CreateNamespace.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_CreateObjCommand.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_CreateObjTrace.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_CreateSlave.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_CreateThread.3
|
|
|
|
man/man3/Tcl_CreateThreadExitHandler.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_CreateTimerHandler.3
|
|
|
|
man/man3/Tcl_CreateTrace.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_CutChannel.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_DStringAppend.3
|
|
|
|
man/man3/Tcl_DStringAppendElement.3
|
|
|
|
man/man3/Tcl_DStringEndSublist.3
|
|
|
|
man/man3/Tcl_DStringFree.3
|
|
|
|
man/man3/Tcl_DStringGetResult.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_DStringInit.3
|
|
|
|
man/man3/Tcl_DStringLength.3
|
|
|
|
man/man3/Tcl_DStringResult.3
|
|
|
|
man/man3/Tcl_DStringSetLength.3
|
|
|
|
man/man3/Tcl_DStringStartSublist.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_DStringTrunc.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_DStringValue.3
|
|
|
|
man/man3/Tcl_DecrRefCount.3
|
|
|
|
man/man3/Tcl_DeleteAssocData.3
|
|
|
|
man/man3/Tcl_DeleteChannelHandler.3
|
|
|
|
man/man3/Tcl_DeleteCloseHandler.3
|
|
|
|
man/man3/Tcl_DeleteCommand.3
|
|
|
|
man/man3/Tcl_DeleteCommandFromToken.3
|
|
|
|
man/man3/Tcl_DeleteEventSource.3
|
|
|
|
man/man3/Tcl_DeleteEvents.3
|
|
|
|
man/man3/Tcl_DeleteExitHandler.3
|
|
|
|
man/man3/Tcl_DeleteFileHandler.3
|
|
|
|
man/man3/Tcl_DeleteHashEntry.3
|
|
|
|
man/man3/Tcl_DeleteHashTable.3
|
|
|
|
man/man3/Tcl_DeleteInterp.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_DeleteNamespace.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_DeleteThreadExitHandler.3
|
|
|
|
man/man3/Tcl_DeleteTimerHandler.3
|
|
|
|
man/man3/Tcl_DeleteTrace.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_DetachChannel.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_DetachPids.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_DictObjDone.3
|
|
|
|
man/man3/Tcl_DictObjFirst.3
|
|
|
|
man/man3/Tcl_DictObjGet.3
|
|
|
|
man/man3/Tcl_DictObjNext.3
|
|
|
|
man/man3/Tcl_DictObjPut.3
|
|
|
|
man/man3/Tcl_DictObjPutKeyList.3
|
|
|
|
man/man3/Tcl_DictObjRemove.3
|
|
|
|
man/man3/Tcl_DictObjRemoveKeyList.3
|
|
|
|
man/man3/Tcl_DictObjSize.3
|
|
|
|
man/man3/Tcl_DiscardInterpState.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_DiscardResult.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_DoOneEvent.3
|
|
|
|
man/man3/Tcl_DoWhenIdle.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_DontCallWhenDeleted.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_DumpActiveMemory.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_DuplicateObj.3
|
|
|
|
man/man3/Tcl_Eof.3
|
|
|
|
man/man3/Tcl_ErrnoId.3
|
|
|
|
man/man3/Tcl_ErrnoMsg.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_Eval.3
|
|
|
|
man/man3/Tcl_EvalEx.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_EvalFile.3
|
|
|
|
man/man3/Tcl_EvalObjEx.3
|
|
|
|
man/man3/Tcl_EvalObjv.3
|
|
|
|
man/man3/Tcl_EvalTokens.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_EvalTokensStandard.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_EventuallyFree.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_Exit.3
|
|
|
|
man/man3/Tcl_ExitThread.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_Export.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_ExposeCommand.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_ExprBoolean.3
|
|
|
|
man/man3/Tcl_ExprBooleanObj.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_ExprDouble.3
|
|
|
|
man/man3/Tcl_ExprDoubleObj.3
|
|
|
|
man/man3/Tcl_ExprLong.3
|
|
|
|
man/man3/Tcl_ExprLongObj.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_ExprObj.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_ExprString.3
|
|
|
|
man/man3/Tcl_ExternalToUtf.3
|
|
|
|
man/man3/Tcl_ExternalToUtfDString.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_FSAccess.3
|
|
|
|
man/man3/Tcl_FSChdir.3
|
|
|
|
man/man3/Tcl_FSConvertToPathType.3
|
|
|
|
man/man3/Tcl_FSCopyDirectory.3
|
|
|
|
man/man3/Tcl_FSCopyFile.3
|
|
|
|
man/man3/Tcl_FSCreateDirectory.3
|
|
|
|
man/man3/Tcl_FSData.3
|
|
|
|
man/man3/Tcl_FSDeleteFile.3
|
|
|
|
man/man3/Tcl_FSEqualPaths.3
|
|
|
|
man/man3/Tcl_FSEvalFile.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_FSEvalFileEx.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_FSFileAttrStrings.3
|
|
|
|
man/man3/Tcl_FSFileAttrsGet.3
|
|
|
|
man/man3/Tcl_FSFileAttrsSet.3
|
|
|
|
man/man3/Tcl_FSFileSystemInfo.3
|
|
|
|
man/man3/Tcl_FSGetCwd.3
|
|
|
|
man/man3/Tcl_FSGetFileSystemForPath.3
|
|
|
|
man/man3/Tcl_FSGetInternalRep.3
|
|
|
|
man/man3/Tcl_FSGetNativePath.3
|
|
|
|
man/man3/Tcl_FSGetNormalizedPath.3
|
|
|
|
man/man3/Tcl_FSGetPathType.3
|
|
|
|
man/man3/Tcl_FSGetTranslatedPath.3
|
|
|
|
man/man3/Tcl_FSGetTranslatedStringPath.3
|
|
|
|
man/man3/Tcl_FSJoinPath.3
|
|
|
|
man/man3/Tcl_FSJoinToPath.3
|
|
|
|
man/man3/Tcl_FSLink.3
|
|
|
|
man/man3/Tcl_FSListVolumes.3
|
|
|
|
man/man3/Tcl_FSLoadFile.3
|
|
|
|
man/man3/Tcl_FSLstat.3
|
|
|
|
man/man3/Tcl_FSMatchInDirectory.3
|
|
|
|
man/man3/Tcl_FSMountsChanged.3
|
|
|
|
man/man3/Tcl_FSNewNativePath.3
|
|
|
|
man/man3/Tcl_FSOpenFileChannel.3
|
|
|
|
man/man3/Tcl_FSPathSeparator.3
|
|
|
|
man/man3/Tcl_FSRegister.3
|
|
|
|
man/man3/Tcl_FSRemoveDirectory.3
|
|
|
|
man/man3/Tcl_FSRenameFile.3
|
|
|
|
man/man3/Tcl_FSSplitPath.3
|
|
|
|
man/man3/Tcl_FSStat.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_FSUnloadFile.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_FSUnregister.3
|
|
|
|
man/man3/Tcl_FSUtime.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_Finalize.3
|
|
|
|
man/man3/Tcl_FinalizeNotifier.3
|
|
|
|
man/man3/Tcl_FinalizeThread.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_FindCommand.3
|
|
|
|
man/man3/Tcl_FindEnsemble.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_FindExecutable.3
|
|
|
|
man/man3/Tcl_FindHashEntry.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_FindNamespace.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_FindSymbol.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_FirstHashEntry.3
|
|
|
|
man/man3/Tcl_Flush.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_ForgetImport.3
|
|
|
|
man/man3/Tcl_Format.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_Free.3
|
|
|
|
man/man3/Tcl_FreeEncoding.3
|
|
|
|
man/man3/Tcl_FreeParse.3
|
|
|
|
man/man3/Tcl_FreeResult.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_GetAccessTimeFromStat.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_GetAlias.3
|
|
|
|
man/man3/Tcl_GetAliasObj.3
|
|
|
|
man/man3/Tcl_GetAssocData.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_GetBignumFromObj.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_GetBlockSizeFromStat.3
|
|
|
|
man/man3/Tcl_GetBlocksFromStat.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_GetBoolean.3
|
|
|
|
man/man3/Tcl_GetBooleanFromObj.3
|
|
|
|
man/man3/Tcl_GetByteArrayFromObj.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_GetChangeTimeFromStat.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_GetChannel.3
|
|
|
|
man/man3/Tcl_GetChannelBufferSize.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_GetChannelError.3
|
|
|
|
man/man3/Tcl_GetChannelErrorInterp.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_GetChannelHandle.3
|
|
|
|
man/man3/Tcl_GetChannelInstanceData.3
|
|
|
|
man/man3/Tcl_GetChannelMode.3
|
|
|
|
man/man3/Tcl_GetChannelName.3
|
|
|
|
man/man3/Tcl_GetChannelNames.3
|
|
|
|
man/man3/Tcl_GetChannelNamesEx.3
|
|
|
|
man/man3/Tcl_GetChannelOption.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_GetChannelThread.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_GetChannelType.3
|
|
|
|
man/man3/Tcl_GetCharLength.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_GetClassAsObject.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_GetCommandFromObj.3
|
|
|
|
man/man3/Tcl_GetCommandFullName.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_GetCommandInfo.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_GetCommandInfoFromToken.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_GetCommandName.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_GetCurrentNamespace.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_GetCurrentThread.3
|
|
|
|
man/man3/Tcl_GetCwd.3
|
|
|
|
man/man3/Tcl_GetDefaultEncodingDir.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_GetDeviceTypeFromStat.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_GetDouble.3
|
|
|
|
man/man3/Tcl_GetDoubleFromObj.3
|
|
|
|
man/man3/Tcl_GetEncoding.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_GetEncodingFromObj.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_GetEncodingName.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_GetEncodingNameFromEnvironment.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_GetEncodingNames.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_GetEncodingSearchPath.3
|
|
|
|
man/man3/Tcl_GetEnsembleFlags.3
|
|
|
|
man/man3/Tcl_GetEnsembleMappingDict.3
|
|
|
|
man/man3/Tcl_GetEnsembleNamespace.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_GetEnsembleParameterList.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_GetEnsembleSubcommandList.3
|
|
|
|
man/man3/Tcl_GetEnsembleUnknownHandler.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_GetErrno.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_GetErrorLine.3
|
|
|
|
man/man3/Tcl_GetFSDeviceFromStat.3
|
|
|
|
man/man3/Tcl_GetFSInodeFromStat.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_GetGlobalNamespace.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_GetGroupIdFromStat.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_GetHashKey.3
|
|
|
|
man/man3/Tcl_GetHashValue.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_GetHostName.3
|
|
|
|
man/man3/Tcl_GetIndexFromObj.3
|
|
|
|
man/man3/Tcl_GetIndexFromObjStruct.3
|
|
|
|
man/man3/Tcl_GetInt.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_GetIntFromObj.3
|
|
|
|
man/man3/Tcl_GetInterpPath.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_GetLinkCountFromStat.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_GetLongFromObj.3
|
|
|
|
man/man3/Tcl_GetMaster.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_GetMathFuncInfo.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_GetModeFromStat.3
|
|
|
|
man/man3/Tcl_GetModificationTimeFromStat.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_GetNameOfExecutable.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_GetNamespaceUnknownHandler.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_GetObjResult.3
|
|
|
|
man/man3/Tcl_GetObjType.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_GetObjectAsClass.3
|
|
|
|
man/man3/Tcl_GetObjectCommand.3
|
|
|
|
man/man3/Tcl_GetObjectFromObj.3
|
|
|
|
man/man3/Tcl_GetObjectName.3
|
|
|
|
man/man3/Tcl_GetObjectNamespace.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_GetOpenFile.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_GetPathType.3
|
|
|
|
man/man3/Tcl_GetRange.3
|
|
|
|
man/man3/Tcl_GetRegExpFromObj.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_GetReturnOptions.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_GetServiceMode.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_GetSizeFromStat.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_GetSlave.3
|
|
|
|
man/man3/Tcl_GetStackedChannel.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_GetStartupScript.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_GetStdChannel.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_GetString.3
|
|
|
|
man/man3/Tcl_GetStringFromObj.3
|
|
|
|
man/man3/Tcl_GetStringResult.3
|
|
|
|
man/man3/Tcl_GetThreadData.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_GetTime.3
|
|
|
|
man/man3/Tcl_GetTopChannel.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_GetUniChar.3
|
|
|
|
man/man3/Tcl_GetUnicode.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_GetUnicodeFromObj.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_GetUserIdFromStat.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_GetVar.3
|
|
|
|
man/man3/Tcl_GetVar2.3
|
|
|
|
man/man3/Tcl_GetVar2Ex.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_GetVersion.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_GetWideIntFromObj.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_Gets.3
|
|
|
|
man/man3/Tcl_GetsObj.3
|
|
|
|
man/man3/Tcl_GlobalEval.3
|
|
|
|
man/man3/Tcl_GlobalEvalObj.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_HashStats.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_HideCommand.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_Import.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_IncrRefCount.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_Init.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_InitCustomHashTable.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_InitHashTable.3
|
|
|
|
man/man3/Tcl_InitMemory.3
|
|
|
|
man/man3/Tcl_InitNotifier.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_InitObjHashTable.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_InitStubs.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_InputBlocked.3
|
|
|
|
man/man3/Tcl_InputBuffered.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_Interp.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_InterpActive.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_InterpDeleted.3
|
|
|
|
man/man3/Tcl_InvalidateStringRep.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_IsChannelExisting.3
|
|
|
|
man/man3/Tcl_IsChannelRegistered.3
|
|
|
|
man/man3/Tcl_IsChannelShared.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_IsEnsemble.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_IsSafe.3
|
|
|
|
man/man3/Tcl_IsShared.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_IsStandardChannel.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_JoinPath.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_JoinThread.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_LimitAddHandler.3
|
|
|
|
man/man3/Tcl_LimitCheck.3
|
|
|
|
man/man3/Tcl_LimitExceeded.3
|
|
|
|
man/man3/Tcl_LimitGetCommands.3
|
|
|
|
man/man3/Tcl_LimitGetGranularity.3
|
|
|
|
man/man3/Tcl_LimitGetTime.3
|
|
|
|
man/man3/Tcl_LimitReady.3
|
|
|
|
man/man3/Tcl_LimitRemoveHandler.3
|
|
|
|
man/man3/Tcl_LimitSetCommands.3
|
|
|
|
man/man3/Tcl_LimitSetGranularity.3
|
|
|
|
man/man3/Tcl_LimitSetTime.3
|
|
|
|
man/man3/Tcl_LimitTypeEnabled.3
|
|
|
|
man/man3/Tcl_LimitTypeExceeded.3
|
|
|
|
man/man3/Tcl_LimitTypeReset.3
|
|
|
|
man/man3/Tcl_LimitTypeSet.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_LinkVar.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_ListMathFuncs.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_ListObjAppendElement.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_ListObjAppendList.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_ListObjGetElements.3
|
|
|
|
man/man3/Tcl_ListObjIndex.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_ListObjLength.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_ListObjReplace.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_LoadFile.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_LogCommandInfo.3
|
2004-11-26 11:30:01 +01:00
|
|
|
man/man3/Tcl_Main.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_MakeFileChannel.3
|
|
|
|
man/man3/Tcl_MakeSafe.3
|
|
|
|
man/man3/Tcl_MakeTcpClientChannel.3
|
|
|
|
man/man3/Tcl_Merge.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_MethodDeclarerClass.3
|
|
|
|
man/man3/Tcl_MethodDeclarerObject.3
|
|
|
|
man/man3/Tcl_MethodIsPublic.3
|
|
|
|
man/man3/Tcl_MethodIsType.3
|
|
|
|
man/man3/Tcl_MethodName.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_MutexFinalize.3
|
|
|
|
man/man3/Tcl_MutexLock.3
|
|
|
|
man/man3/Tcl_MutexUnlock.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_NRAddCallback.3
|
|
|
|
man/man3/Tcl_NRCallObjProc.3
|
|
|
|
man/man3/Tcl_NRCmdSwap.3
|
|
|
|
man/man3/Tcl_NRCreateCommand.3
|
|
|
|
man/man3/Tcl_NREvalObj.3
|
|
|
|
man/man3/Tcl_NREvalObjv.3
|
|
|
|
man/man3/Tcl_NRExprObj.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_NewBignumObj.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_NewBooleanObj.3
|
|
|
|
man/man3/Tcl_NewByteArrayObj.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_NewDictObj.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_NewDoubleObj.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_NewInstanceMethod.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_NewIntObj.3
|
|
|
|
man/man3/Tcl_NewListObj.3
|
|
|
|
man/man3/Tcl_NewLongObj.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_NewMethod.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_NewObj.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_NewObjectInstance.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_NewStringObj.3
|
|
|
|
man/man3/Tcl_NewUnicodeObj.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_NewWideIntObj.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_NextHashEntry.3
|
|
|
|
man/man3/Tcl_NotifyChannel.3
|
|
|
|
man/man3/Tcl_NumUtfChars.3
|
2014-10-31 22:11:18 +01:00
|
|
|
man/man3/Tcl_OOInitStubs.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_ObjGetVar2.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_ObjPrintf.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_ObjSetVar2.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_ObjectContextInvokeNext.3
|
|
|
|
man/man3/Tcl_ObjectContextIsFiltering.3
|
|
|
|
man/man3/Tcl_ObjectContextMethod.3
|
|
|
|
man/man3/Tcl_ObjectContextObject.3
|
|
|
|
man/man3/Tcl_ObjectContextSkippedArgs.3
|
|
|
|
man/man3/Tcl_ObjectDeleted.3
|
|
|
|
man/man3/Tcl_ObjectGetMetadata.3
|
|
|
|
man/man3/Tcl_ObjectGetMethodNameMapper.3
|
|
|
|
man/man3/Tcl_ObjectSetMetadata.3
|
|
|
|
man/man3/Tcl_ObjectSetMethodNameMapper.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_OpenCommandChannel.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_OpenFileChannel.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_OpenTcpClient.3
|
|
|
|
man/man3/Tcl_OpenTcpServer.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_OutputBuffered.3
|
|
|
|
man/man3/Tcl_Panic.3
|
|
|
|
man/man3/Tcl_PanicVA.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_ParseArgsObjv.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_ParseBraces.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_ParseCommand.3
|
|
|
|
man/man3/Tcl_ParseExpr.3
|
|
|
|
man/man3/Tcl_ParseQuotedString.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_ParseVar.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_ParseVarName.3
|
|
|
|
man/man3/Tcl_PkgPresent.3
|
|
|
|
man/man3/Tcl_PkgPresentEx.3
|
|
|
|
man/man3/Tcl_PkgProvide.3
|
|
|
|
man/man3/Tcl_PkgProvideEx.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_PkgRequire.3
|
|
|
|
man/man3/Tcl_PkgRequireEx.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_PkgRequireProc.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_PosixError.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_Preserve.3
|
|
|
|
man/man3/Tcl_PrintDouble.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_PutEnv.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_QueryTimeProc.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_QueueEvent.3
|
|
|
|
man/man3/Tcl_Read.3
|
|
|
|
man/man3/Tcl_ReadChars.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_ReadRaw.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_Realloc.3
|
|
|
|
man/man3/Tcl_ReapDetachedProcs.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_RecordAndEval.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_RecordAndEvalObj.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_RegExpCompile.3
|
|
|
|
man/man3/Tcl_RegExpExec.3
|
|
|
|
man/man3/Tcl_RegExpExecObj.3
|
|
|
|
man/man3/Tcl_RegExpGetInfo.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_RegExpMatch.3
|
|
|
|
man/man3/Tcl_RegExpMatchObj.3
|
|
|
|
man/man3/Tcl_RegExpRange.3
|
|
|
|
man/man3/Tcl_RegisterChannel.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_RegisterConfig.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_RegisterObjType.3
|
|
|
|
man/man3/Tcl_Release.3
|
|
|
|
man/man3/Tcl_ResetResult.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_RestoreInterpState.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_RestoreResult.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_SaveInterpState.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_SaveResult.3
|
|
|
|
man/man3/Tcl_ScanCountedElement.3
|
|
|
|
man/man3/Tcl_ScanElement.3
|
|
|
|
man/man3/Tcl_Seek.3
|
|
|
|
man/man3/Tcl_ServiceAll.3
|
|
|
|
man/man3/Tcl_ServiceEvent.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_ServiceModeHook.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_SetAssocData.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_SetBignumObj.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_SetBooleanObj.3
|
|
|
|
man/man3/Tcl_SetByteArrayLength.3
|
|
|
|
man/man3/Tcl_SetByteArrayObj.3
|
|
|
|
man/man3/Tcl_SetChannelBufferSize.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_SetChannelError.3
|
|
|
|
man/man3/Tcl_SetChannelErrorInterp.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_SetChannelOption.3
|
|
|
|
man/man3/Tcl_SetCommandInfo.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_SetCommandInfoFromToken.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_SetDefaultEncodingDir.3
|
|
|
|
man/man3/Tcl_SetDoubleObj.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_SetEncodingSearchPath.3
|
|
|
|
man/man3/Tcl_SetEnsembleFlags.3
|
|
|
|
man/man3/Tcl_SetEnsembleMappingDict.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_SetEnsembleParameterList.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_SetEnsembleSubcommandList.3
|
|
|
|
man/man3/Tcl_SetEnsembleUnknownHandler.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_SetErrno.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_SetErrorCode.3
|
|
|
|
man/man3/Tcl_SetErrorCodeVA.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_SetErrorLine.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_SetExitProc.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_SetHashValue.3
|
|
|
|
man/man3/Tcl_SetIntObj.3
|
|
|
|
man/man3/Tcl_SetListObj.3
|
|
|
|
man/man3/Tcl_SetLongObj.3
|
Update to version 8.3.4
Besides more bug fixes and several enhancements some of the
NetBSD relevant changes (taken from "changes" in the
distribution):
2001-04-03 (doc fixes) numerous doc corrections and clarifications.
Update of READMEs.
2001-03-29 (bug fix) prevent potential race condition and security leak in
tmp filename creation on Unix. (max)
2001-03-13 (bug fix) Correctly possible memory corruption in string map {}
$str (fellows)
2001-01-30 (bug fix) Fixed possible hangs in fcopy. (porter)
2000-11-23 (mem leak) fixed potential memory leak in error case of lsort
(fellows)
2000-11-01 (mem leak) Corrected excessive mem use of info exists on a
non-existent array element (hobbs)
2000-09-27 (bug fix) fixed a bug introduced by a partial fix in 8.3.2 that
didn't set nonBlocking correctly when resetting the flags for the write
side (mem leak) Correct mem leak in channels when statePtr was released
(hobbs)
2001-07-18 (bug fix) corrected memory overwrite error when buffer size
of a channel is changed after channel use has already begun (kupries, porter)
2001-08-07 (bug fix) corrected bytecode stack management during [break]
(see test foreach-5.5) (sofer, tallneil, jstrot)
2001-08-08 (new features) updated packages msgcat 1.1.1, opt 0.4.3,
tcltest 1.0.1, dependencies checked (porter)
2001-08-24 (bug fix) [auto_import] now matches patterns like
[namespace import], not like [string match] (porter)
**** POTENTIAL INCOMPATABILITY ****
2001-08-27 (new feature) added Tcl_SetMainLoop() to enable loading Tk as a
true package (hobbs)
2001-09-06 (new feature) http 2.4: honor the Content-encoding and charset
parameters; add -binary switch for forcing the issue (hobbs, saoukhi, orwell)
2001-09-10 (bug fix) protect against alias loops (hobbs)
2001-09-19 (bug fix) [format] and [scan] corrected for 64-bit machines (rmax)
2001-09-26 (bug fix) corrected potential deadlock in channels that do not
provide a BlockModeProc (kupries, kogorman)
2001-10-11 (bug fix) corrected cleanup of self-referential bytecodes at
interpreter deletion (sofer, rbrunner)
2001-12-23 18:02:30 +01:00
|
|
|
man/man3/Tcl_SetMainLoop.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_SetMaxBlockTime.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_SetNamespaceUnknownHandler.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_SetNotifier.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_SetObjErrorCode.3
|
|
|
|
man/man3/Tcl_SetObjLength.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_SetObjResult.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_SetPanicProc.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_SetRecursionLimit.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_SetResult.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_SetReturnOptions.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_SetServiceMode.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_SetStartupScript.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_SetStdChannel.3
|
|
|
|
man/man3/Tcl_SetStringObj.3
|
|
|
|
man/man3/Tcl_SetSystemEncoding.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_SetTimeProc.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_SetTimer.3
|
|
|
|
man/man3/Tcl_SetUnicodeObj.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_SetVar.3
|
|
|
|
man/man3/Tcl_SetVar2.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_SetVar2Ex.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_SetWideIntObj.3
|
|
|
|
man/man3/Tcl_SignalId.3
|
|
|
|
man/man3/Tcl_SignalMsg.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_Sleep.3
|
|
|
|
man/man3/Tcl_SourceRCFile.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_SpliceChannel.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_SplitList.3
|
|
|
|
man/man3/Tcl_SplitPath.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_StackChannel.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_StandardChannels.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_Stat.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_StaticPackage.3
|
|
|
|
man/man3/Tcl_StringCaseMatch.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_StringMatch.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_SubstObj.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_TakeBignumFromObj.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_Tell.3
|
|
|
|
man/man3/Tcl_ThreadAlert.3
|
|
|
|
man/man3/Tcl_ThreadQueueEvent.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_TraceCommand.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_TraceVar.3
|
|
|
|
man/man3/Tcl_TraceVar2.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_TransferResult.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_TranslateFileName.3
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/man3/Tcl_TruncateChannel.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_Ungets.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_UniChar.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_UniCharAtIndex.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_UniCharCaseMatch.3
|
|
|
|
man/man3/Tcl_UniCharIsAlnum.3
|
|
|
|
man/man3/Tcl_UniCharIsAlpha.3
|
|
|
|
man/man3/Tcl_UniCharIsControl.3
|
|
|
|
man/man3/Tcl_UniCharIsDigit.3
|
|
|
|
man/man3/Tcl_UniCharIsGraph.3
|
|
|
|
man/man3/Tcl_UniCharIsLower.3
|
|
|
|
man/man3/Tcl_UniCharIsPrint.3
|
|
|
|
man/man3/Tcl_UniCharIsPunct.3
|
|
|
|
man/man3/Tcl_UniCharIsSpace.3
|
|
|
|
man/man3/Tcl_UniCharIsUpper.3
|
|
|
|
man/man3/Tcl_UniCharIsWordChar.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_UniCharLen.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_UniCharNcasecmp.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_UniCharNcmp.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_UniCharToLower.3
|
|
|
|
man/man3/Tcl_UniCharToTitle.3
|
|
|
|
man/man3/Tcl_UniCharToUpper.3
|
|
|
|
man/man3/Tcl_UniCharToUtf.3
|
|
|
|
man/man3/Tcl_UniCharToUtfDString.3
|
|
|
|
man/man3/Tcl_UnlinkVar.3
|
|
|
|
man/man3/Tcl_UnregisterChannel.3
|
|
|
|
man/man3/Tcl_UnsetVar.3
|
|
|
|
man/man3/Tcl_UnsetVar2.3
|
|
|
|
man/man3/Tcl_UnstackChannel.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_UntraceCommand.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_UntraceVar.3
|
|
|
|
man/man3/Tcl_UntraceVar2.3
|
|
|
|
man/man3/Tcl_UpVar.3
|
|
|
|
man/man3/Tcl_UpVar2.3
|
|
|
|
man/man3/Tcl_UpdateLinkedVar.3
|
|
|
|
man/man3/Tcl_UtfAtIndex.3
|
|
|
|
man/man3/Tcl_UtfBackslash.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_UtfCharComplete.3
|
|
|
|
man/man3/Tcl_UtfFindFirst.3
|
|
|
|
man/man3/Tcl_UtfFindLast.3
|
|
|
|
man/man3/Tcl_UtfNext.3
|
|
|
|
man/man3/Tcl_UtfPrev.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_UtfToExternal.3
|
|
|
|
man/man3/Tcl_UtfToExternalDString.3
|
|
|
|
man/man3/Tcl_UtfToLower.3
|
|
|
|
man/man3/Tcl_UtfToTitle.3
|
|
|
|
man/man3/Tcl_UtfToUniChar.3
|
|
|
|
man/man3/Tcl_UtfToUniCharDString.3
|
|
|
|
man/man3/Tcl_UtfToUpper.3
|
|
|
|
man/man3/Tcl_ValidateAllMemory.3
|
|
|
|
man/man3/Tcl_VarEval.3
|
|
|
|
man/man3/Tcl_VarEvalVA.3
|
|
|
|
man/man3/Tcl_VarTraceInfo.3
|
|
|
|
man/man3/Tcl_VarTraceInfo2.3
|
|
|
|
man/man3/Tcl_WaitForEvent.3
|
Update to version 8.3.4
Besides more bug fixes and several enhancements some of the
NetBSD relevant changes (taken from "changes" in the
distribution):
2001-04-03 (doc fixes) numerous doc corrections and clarifications.
Update of READMEs.
2001-03-29 (bug fix) prevent potential race condition and security leak in
tmp filename creation on Unix. (max)
2001-03-13 (bug fix) Correctly possible memory corruption in string map {}
$str (fellows)
2001-01-30 (bug fix) Fixed possible hangs in fcopy. (porter)
2000-11-23 (mem leak) fixed potential memory leak in error case of lsort
(fellows)
2000-11-01 (mem leak) Corrected excessive mem use of info exists on a
non-existent array element (hobbs)
2000-09-27 (bug fix) fixed a bug introduced by a partial fix in 8.3.2 that
didn't set nonBlocking correctly when resetting the flags for the write
side (mem leak) Correct mem leak in channels when statePtr was released
(hobbs)
2001-07-18 (bug fix) corrected memory overwrite error when buffer size
of a channel is changed after channel use has already begun (kupries, porter)
2001-08-07 (bug fix) corrected bytecode stack management during [break]
(see test foreach-5.5) (sofer, tallneil, jstrot)
2001-08-08 (new features) updated packages msgcat 1.1.1, opt 0.4.3,
tcltest 1.0.1, dependencies checked (porter)
2001-08-24 (bug fix) [auto_import] now matches patterns like
[namespace import], not like [string match] (porter)
**** POTENTIAL INCOMPATABILITY ****
2001-08-27 (new feature) added Tcl_SetMainLoop() to enable loading Tk as a
true package (hobbs)
2001-09-06 (new feature) http 2.4: honor the Content-encoding and charset
parameters; add -binary switch for forcing the issue (hobbs, saoukhi, orwell)
2001-09-10 (bug fix) protect against alias loops (hobbs)
2001-09-19 (bug fix) [format] and [scan] corrected for 64-bit machines (rmax)
2001-09-26 (bug fix) corrected potential deadlock in channels that do not
provide a BlockModeProc (kupries, kogorman)
2001-10-11 (bug fix) corrected cleanup of self-referential bytecodes at
interpreter deletion (sofer, rbrunner)
2001-12-23 18:02:30 +01:00
|
|
|
man/man3/Tcl_WaitPid.3
|
2001-05-12 08:05:31 +02:00
|
|
|
man/man3/Tcl_WinTCharToUtf.3
|
|
|
|
man/man3/Tcl_WinUtfToTChar.3
|
|
|
|
man/man3/Tcl_Write.3
|
|
|
|
man/man3/Tcl_WriteChars.3
|
|
|
|
man/man3/Tcl_WriteObj.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/Tcl_WriteRaw.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/man3/Tcl_WrongNumArgs.3
|
2014-01-11 15:41:05 +01:00
|
|
|
man/man3/Tcl_ZlibAdler32.3
|
|
|
|
man/man3/Tcl_ZlibCRC32.3
|
|
|
|
man/man3/Tcl_ZlibDeflate.3
|
|
|
|
man/man3/Tcl_ZlibInflate.3
|
|
|
|
man/man3/Tcl_ZlibStreamChecksum.3
|
|
|
|
man/man3/Tcl_ZlibStreamClose.3
|
|
|
|
man/man3/Tcl_ZlibStreamEof.3
|
|
|
|
man/man3/Tcl_ZlibStreamGet.3
|
|
|
|
man/man3/Tcl_ZlibStreamGetCommandName.3
|
|
|
|
man/man3/Tcl_ZlibStreamInit.3
|
|
|
|
man/man3/Tcl_ZlibStreamPut.3
|
|
|
|
man/man3/Tdbc_Init.3
|
2004-03-08 20:55:35 +01:00
|
|
|
man/man3/attemptckalloc.3
|
|
|
|
man/man3/attemptckrealloc.3
|
|
|
|
man/man3/ckalloc.3
|
|
|
|
man/man3/ckfree.3
|
|
|
|
man/man3/ckrealloc.3
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/Tcl.n
|
|
|
|
man/mann/after.n
|
|
|
|
man/mann/append.n
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/mann/apply.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/argc.n
|
|
|
|
man/mann/argv.n
|
|
|
|
man/mann/argv0.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/array.n
|
2001-05-12 08:05:31 +02:00
|
|
|
man/mann/auto_execok.n
|
|
|
|
man/mann/auto_import.n
|
|
|
|
man/mann/auto_load.n
|
|
|
|
man/mann/auto_mkindex.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/auto_path.n
|
2001-05-12 08:05:31 +02:00
|
|
|
man/mann/auto_qualify.n
|
|
|
|
man/mann/auto_reset.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/bgerror.n
|
|
|
|
man/mann/binary.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/body.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/break.n
|
|
|
|
man/mann/case.n
|
|
|
|
man/mann/catch.n
|
|
|
|
man/mann/cd.n
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/mann/chan.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/class.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/clock.n
|
|
|
|
man/mann/close.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/code.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/concat.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/configbody.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/continue.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/coroutine.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/dde.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/delete.n
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/mann/dict.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/encoding.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/ensemble.n
|
|
|
|
man/mann/env.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/eof.n
|
|
|
|
man/mann/error.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/errorCode.n
|
|
|
|
man/mann/errorInfo.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/eval.n
|
|
|
|
man/mann/exec.n
|
|
|
|
man/mann/exit.n
|
|
|
|
man/mann/expr.n
|
|
|
|
man/mann/fblocked.n
|
|
|
|
man/mann/fconfigure.n
|
|
|
|
man/mann/fcopy.n
|
|
|
|
man/mann/file.n
|
|
|
|
man/mann/fileevent.n
|
|
|
|
man/mann/filename.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/find.n
|
2001-05-12 08:05:31 +02:00
|
|
|
man/mann/flush.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/for.n
|
|
|
|
man/mann/foreach.n
|
|
|
|
man/mann/format.n
|
|
|
|
man/mann/gets.n
|
|
|
|
man/mann/glob.n
|
|
|
|
man/mann/global.n
|
|
|
|
man/mann/history.n
|
|
|
|
man/mann/http.n
|
|
|
|
man/mann/if.n
|
|
|
|
man/mann/incr.n
|
|
|
|
man/mann/info.n
|
|
|
|
man/mann/interp.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/is.n
|
|
|
|
man/mann/itcl.n
|
|
|
|
man/mann/itclcomponent.n
|
|
|
|
man/mann/itcldelegate.n
|
|
|
|
man/mann/itclextendedclass.n
|
|
|
|
man/mann/itcloption.n
|
|
|
|
man/mann/itclvars.n
|
|
|
|
man/mann/itclwidget.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/join.n
|
|
|
|
man/mann/lappend.n
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/mann/lassign.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/lindex.n
|
|
|
|
man/mann/linsert.n
|
|
|
|
man/mann/list.n
|
|
|
|
man/mann/llength.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/lmap.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/load.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/local.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/lrange.n
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/mann/lrepeat.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/lreplace.n
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/mann/lreverse.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/lsearch.n
|
2004-03-08 20:55:35 +01:00
|
|
|
man/mann/lset.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/lsort.n
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/mann/mathfunc.n
|
|
|
|
man/mann/mathop.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/memory.n
|
|
|
|
man/mann/msgcat.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/my.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/namespace.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/next.n
|
|
|
|
man/mann/nextto.n
|
|
|
|
man/mann/oo_class.n
|
|
|
|
man/mann/oo_copy.n
|
|
|
|
man/mann/oo_define.n
|
|
|
|
man/mann/oo_objdefine.n
|
|
|
|
man/mann/oo_object.n
|
2001-05-12 08:05:31 +02:00
|
|
|
man/mann/open.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/package.n
|
2001-05-12 08:05:31 +02:00
|
|
|
man/mann/parray.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/pid.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/pkg_create.n
|
2001-05-12 08:05:31 +02:00
|
|
|
man/mann/pkg_mkIndex.n
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/mann/platform.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/platform_shell.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/proc.n
|
|
|
|
man/mann/puts.n
|
|
|
|
man/mann/pwd.n
|
|
|
|
man/mann/re_syntax.n
|
|
|
|
man/mann/read.n
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/mann/refchan.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/regexp.n
|
|
|
|
man/mann/registry.n
|
|
|
|
man/mann/regsub.n
|
|
|
|
man/mann/rename.n
|
|
|
|
man/mann/return.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/safe.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/scan.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/scope.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/seek.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/self.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/set.n
|
|
|
|
man/mann/socket.n
|
|
|
|
man/mann/source.n
|
|
|
|
man/mann/split.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/sqlite3.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/string.n
|
|
|
|
man/mann/subst.n
|
|
|
|
man/mann/switch.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/tailcall.n
|
2001-05-12 08:05:31 +02:00
|
|
|
man/mann/tcl_endOfWord.n
|
|
|
|
man/mann/tcl_findLibrary.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/tcl_interactive.n
|
|
|
|
man/mann/tcl_library.n
|
|
|
|
man/mann/tcl_nonwordchars.n
|
|
|
|
man/mann/tcl_patchLevel.n
|
|
|
|
man/mann/tcl_pkgPath.n
|
|
|
|
man/mann/tcl_platform.n
|
|
|
|
man/mann/tcl_precision.n
|
|
|
|
man/mann/tcl_prefix.n
|
|
|
|
man/mann/tcl_rcFileName.n
|
2001-05-12 08:05:31 +02:00
|
|
|
man/mann/tcl_startOfNextWord.n
|
|
|
|
man/mann/tcl_startOfPreviousWord.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/tcl_traceCompile.n
|
2014-10-31 22:11:18 +01:00
|
|
|
man/mann/tcl_traceExec.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/tcl_version.n
|
2001-05-12 08:05:31 +02:00
|
|
|
man/mann/tcl_wordBreakAfter.n
|
|
|
|
man/mann/tcl_wordBreakBefore.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/tcl_wordchars.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/tcltest.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/tdbc.n
|
|
|
|
man/mann/tdbc_connection.n
|
|
|
|
man/mann/tdbc_mapSqlState.n
|
|
|
|
man/mann/tdbc_mysql.n
|
|
|
|
man/mann/tdbc_odbc.n
|
|
|
|
man/mann/tdbc_resultset.n
|
|
|
|
man/mann/tdbc_sqlite3.n
|
|
|
|
man/mann/tdbc_statement.n
|
|
|
|
man/mann/tdbc_tokenize.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/tell.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/thread.n
|
|
|
|
man/mann/throw.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/time.n
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/mann/tm.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/tpool.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/trace.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/transchan.n
|
|
|
|
man/mann/try.n
|
|
|
|
man/mann/tsv.n
|
|
|
|
man/mann/ttrace.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/unknown.n
|
lang/tcl: Upgrade from version 8.4.18 to 8.5.12
Highlights of Tcl 8.5
* Features: 8.5 has over 90 TIPs included to provide a wide variety of
new features.
* Bignums: Tcl now supports arbitrary-precision integers, which improves
math operations on large integers.
* Safer interps: Tcl's powerful safe interpreter mechanism now has
improved control of time and command limits in slave interpreters.
* clock command: More robust implementation of command for specifying
time, with significant l10n and i18n improvements.
* dict command: New data structure that allows access to data by value
rather than a variable name, which is substantially faster.
* Additional improvements: Faster list search, new and improved
mathematics procedures, anonymous procedures, new ways to package Tcl
extensions, Tcl-level custom channel types, file and line location
information for each command, and more.
There is of course much, much more.
See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete
list of new features.
2012-08-21 23:31:47 +02:00
|
|
|
man/mann/unload.n
|
Initial import of new pkgsrc/lang/tcl (tcl-8.3.2) package, partly derived
from the older pkgsrc/lang/tcl-8.0.5.
This is an update of the tcl package from version 8.0.5 to version 8.3.2,
and also a slight change in the organization of tcl packages.
This will be added disabled to pkgsrc/lang/Makefile until I finish updating
tk and all tcl-based packags.
Changes from out of the box tcl-8.3.2:
Both static and shared libtcl83.* are installed, thanks to
the magic of libtool.
$tcl_platform(machine) is set to ${MACHINE_ARCH}, not ${MACHINE},
thanks to the patch to tcl-8.0 from Dan McMahill. This makes
sharing of binary packages of tcl and tcl extensions easier.
Changes to the package since tcl-8.0.5:
$tcl_pkgPath is now set to ${PREFIX}/lib/tcl instead of ${PREFIX}/lib
and packages which install tcl extensions will be updated to install
there. This produces less clutter in ${PREFIX}/lib, and mirrors the
usage of java and elisp extension packages.
A symlink to ${PREFIX}/bin/tclsh8.3.2 is installed as ${PREFIX}/bin/tclsh
This change and the above are designed to allow tcl-using packages to
not depend on any particular version of tcl.
public tcl include files and the tcl configuration information script
are now installed in their standard places (${PREFIX}/include/tcl.h,
${PREFIX}/include/tclDecls.h, and ${PREFIX}/lib/tclConfig.sh), and
private tcl include files are now installed in ${PREFIX}/include/tcl.
This change allows tcl extension packages to work out of the box, and
to not need modification when tcl is updated. When extension package
authors use the new libtclstubs*.a API, this even allows binary packages
of dynamically-loadable tcl extensions to be used with newer versions of
tcl without recompilation.
Here are the new features in tcl-8.3.x as opposed to 8.0.x. I am not including
bug fixes as this represents about 18 months of them.
New Features since Tcl 8.2:
------------------------------
Improved clarity of error messages, especially for common programming
mistakes.
New lsort -unique switch to uniqify lists when sorting.
Enhanced glob command to provide simpler and more powerful cross-platform
file listing functionality.
File date stamping through "file atime" and "file mtime" and support for
chmod style permissions setting in file attributes -permissions on Unix.
New file channels command to obtain list of open channels.
"scan" command can now be used inline to return a list of values.
"regexp" has new -start, -all and -inline switches.
New "array unset" command.
New -milliseconds granularity option to "clock clicks".
Tcl optimization improvements, as well as numerous bug fixes.
Overhaul of the clock command to improve grammar and add support for
common ISO 8601 date/time formats.
Improved build support for numerous platforms.
New Features since Tcl 8.1.1
----------------------------------
Optimized string index, length, range, and append commands. Added a
new Unicode object type.
Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo
to public Tcl API, these functions are needed by Expect. Changed
tools/genStubs.tcl to always write output in LF mode.
Merged string and Unicode object types. Added new public Tcl API
functions: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
Tcl_AppendUnicodeToObj.
Changed to conform to TEA specification, added tcl.m4 and aclocal.m4
macro libraries for configure.
Added new regexp interfaces: -expanded, -line, -linestop, and
-lineanchor switches. Renamed Tcl_RegExpMatchObj to
Tcl_RegExpExecObj and added new Tcl_RegExpMatchObj that is equivalent
to Tcl_RegExpMatch. Added public macros for regexp flags. Added
REG_BOSONLY flag to allow Expect to iterate through a string and only
find matches that start at the current position within the
string.
Updated Unicode character tables to reflect Unicode 2.1 data.
Added initial implementation of new Tcl test harness package.
Modified test files to use new tcltest package.
Applied patch from Peter Hardie to add poke command to dde and changed
the dde package version number to 1.1.
Added options to tcltest package: -preservecore, -limitconstraints,
-help, -file, -notfile, and flags.
Changed parsing of variable names to allow empty array names.
Now "$(foo)" is a variable reference. Previously you had to use
something line $::(foo), which is slower. This change was
requested by Jean-Luc Fontaine for his STOOOP package.
Added Tcl_SetNotifier (public API) and associated hook points in the
notifiers to be able to replace the notifier calls at runtime. The
Xt notifier and test program use this hook.
Added a new variant of the "Trf core patch" from Andreas Kupries
that adds new C APIs Tcl_StackChannel, Tcl_UnstackChannel, and
Tcl_GetStackedChannel. This allows the Trf extension to work without
applying patches to the Tcl core.
Added -timeout option to http.tcl to handle timeouts that occur during
connection attempts to hosts that are down.
New features since Tcl 8.1:
---------------------------
Applied Jeff Hobbs' string patch which includes the following changes:
new subcommands: equal, repeat, map, is, replace
-length option to "string compare|equal"
-nocase option to "string compare|equal|match"
string and list indices can be an integer or end?-integer?.
added optional first and last index args to string toupper, et al.
See the string.n manual entry for more details about the new string features.
Applied Jeff Hobb's patch to add Tcl_StringCaseMatch to support case
insensitive glob style matching and Tcl_UniCharIs* character classification
functions.
Added Tcl_UtfNcmp and Tcl_UtfNcasecmp to make Utf string comparision easier.
Replaced the per-interpreter regexp cache with a per-thread cache. Changed
the Regexp object to take advantage of this extra cache. Added a reference
count to the TclRegexp type so regexps can be shared by multiple objects.
Removed the per-interp regexp cache from the interpreter. Now regexps can be
used with no need for an interpreter. This set of changes should provide
significant speed improvements for many Tcl scripts.
Applied the patch to fix 100-year and 400-year boundaries in leap year code,
from Isaac Hollander.
New features since Tcl 8.0.5:
-----------------------------
Full Unicode support and a message catalog for internationalization.
Thread-safety for Tcl and Tk.
A new regular expression package by Henry Spencer that adds many
advanced features: non-greedy quantifiers, bounds, positive
and negative lookahead, collating elements, equivalence classes,
several built-in character classes, and comments. In addition,
the regular expression engine works on Unicode strings to make
this the best regular expression package available anywhere.
Integrated the stub library mechanism contributed by Paul Duffin,
Jan Nijtmans, and Jean-Claude Wippler. This feature will make it
possible to write extensions that support multiple versions of Tcl
simultaneously. It also makes it possible to dynamically load
extensions into statically linked interpreters. This patch includes
the following changes:
- Added a Tcl_InitStubs() interface
- Added Tcl_PkgProvideEx, Tcl_PkgRequireEx, Tcl_PkgPresentEx,
and Tcl_PkgPresent.
More information about using the stubs interface in your extensions
can be found at http://www.scriptics.com/support/howto/stubs.html
Added a message catalog facility to Tcl. This adds several commands
in the "msgcat" package. Thanks to Mark Harrison for contributing
the initial implementation.
Added the "encoding" command that facilitate translations of strings
between different character encodings.
Added "string totitle" command to convert strings to capitalize the
first character of a string and lowercase all of the other characters.
-----
Whew... If you're still reading, thanks. Enjoy!
2000-08-24 21:53:32 +02:00
|
|
|
man/mann/unset.n
|
|
|
|
man/mann/update.n
|
|
|
|
man/mann/uplevel.n
|
|
|
|
man/mann/upvar.n
|
|
|
|
man/mann/variable.n
|
|
|
|
man/mann/vwait.n
|
|
|
|
man/mann/while.n
|
2014-01-11 15:41:05 +01:00
|
|
|
man/mann/yield.n
|
|
|
|
man/mann/yieldto.n
|
|
|
|
man/mann/zlib.n
|