aboutsummaryrefslogtreecommitdiff
path: root/Tcl_shipped.html
AgeCommit message (Collapse)AuthorFilesLines
2023-02-25docs: update shipped documentation for 0.82Steve Bennett1-53/+281
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2022-06-24jim_tcl.txt: move `defer` doc to proper placeAdrian Ho1-30/+58
Also regenerated `Tcl_shipped.html` to capture doc changes since it was last generated.
2021-11-28Generate shipped documentation for 0.810.81Steve Bennett1-31/+353
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2020-10-06docs: Fix minor typo in docsSteve Bennett1-1/+1
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2020-10-05bump version to 0.80Steve Bennett1-138/+231
Update documentation to indicate v0.80 and update Tcl_shipped.html Signed-off-by: Steve Bennett <steveb@workware.net.au>
2019-11-20bump version to 0.790.79Steve Bennett1-824/+1022
Update documentation to indicate v0.79 and update Tcl_shipped.html Signed-off-by: Steve Bennett <steveb@workware.net.au>
2018-07-01Bump version to 0.780.78Steve Bennett1-63/+295
2016-08-29Update version to 0.77Steve Bennett1-66/+261
And update the shipped documentation Signed-off-by: Steve Bennett <steveb@workware.net.au>
2016-02-01aio: add OpenSSL/LibreSSL bindings.Dima Krasner1-1/+30
Example usage: set s [socket stream.server 127.0.0.1:8443] set c [[$s accept] ssl -server certificate.pem key.pem] puts [$c gets]
2016-01-18Add the tcl_platform(engine) array element.mistachkin1-0/+1
2015-07-09docs: add desc for "clock {clicks, microseconds, milliseconds}"Svyatoslav Mishyn1-1/+25
2015-07-08docs: add link to Oxford Dictionaries for "tickle"Svyatoslav Mishyn1-2/+3
2015-06-29docs: minor typos and fix lambda command linkSteve Bennett1-12/+12
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2015-06-21docs: fix of a few typosSvyatoslav Mishyn1-13/+13
2015-05-18docs: minor typo with lassignSteve Bennett1-31/+48
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2015-01-31Update version to 0.760.76Steve Bennett1-16/+21
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2015-01-21docs: Note regex treatment of nullsSteve Bennett1-1833/+1839
Signed-off-by: Steve Bennett <steveb@workware.net.au> Reported-by: Andy <jimdevel@hummypkg.org.uk>
2014-12-09add support for [info source ?filename line?]Steve Bennett1-10/+17
Allows a script to be created with explicit source info Signed-off-by: Steve Bennett <steveb@workware.net.au>
2014-11-28docs: update documentation for recent changesSteve Bennett1-1796/+1825
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2014-11-17Implement string cat (TIP #429)Steve Bennett1-10/+24
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2014-05-12Remove remaining references to berlios.deSteve Bennett1-2/+2
Reported-by: Paul Fertser <fercerpav@gmail.com> Signed-off-by: Steve Bennett <steveb@workware.net.au>
2014-01-22Update shipped Tcl.htmlSteve Bennett1-1789/+1859
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2013-07-22Update documentation and version to 0.74Steve Bennett1-35/+57
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2012-09-11Add support for string {equal,compare} -lengthSteve Bennett1-1849/+1857
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2011-12-14Update shipped documentationSteve Bennett1-65/+351
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2011-12-02Correct the documentation for 'local'Steve Bennett1-20/+34
Also some general documentation cleanups and trailing white space removal. Signed-off-by: Steve Bennett <steveb@workware.net.au>
2011-11-29Update documentation for recent changesSteve Bennett1-8/+85
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2011-10-06Document [string map]0.72Steve Bennett1-14/+63
Reported-by: Lorance Stinson <lorancestinson@gmail.com> Signed-off-by: Steve Bennett <steveb@workware.net.au>
2011-09-26Update shipped documentation for v0.72Steve Bennett1-50/+385
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2011-09-02Updates to the manual for hyperlinked commandsSteve Bennett1-1035/+1048
Also various formatting improvements. Signed-off-by: Steve Bennett <steveb@workware.net.au>
2011-08-18Implement 'file mtime <file> newtime'Steve Bennett1-71/+258
Allows a file to be "touched" Signed-off-by: Steve Bennett <steveb@workware.net.au>
2011-07-18Update documentation for recent featuresSteve Bennett1-64/+141
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2011-06-10Update manual for recent changesSteve Bennett1-25/+73
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2011-06-01Document changes to [local proc] and [upcall]Steve Bennett1-16/+32
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2011-05-31Document recent featuresSteve Bennett1-17/+146
jimsh --version tcl_platform() proc &var proc rename args expr sugar $(...) Also add documentation for jimsh, including interactive mode Signed-off-by: Steve Bennett <steveb@workware.net.au>
2011-05-28Fix spelling and grammar in the manualSteve Bennett1-36/+49
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2010-12-21Update documentation for new 0.70 featuresSteve Bennett1-243/+242
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2010-12-02Add the [exists] commandSteve Bennett1-12/+26
Especially simplifies checking for the existence of procs. Signed-off-by: Steve Bennett <steveb@workware.net.au>
2010-11-24Remove the bio extension and add 'copyto' to aio.Steve Bennett1-215/+613
The bio extension is a hangover from TinyTcl. Since Jim supports binary strings, there isn't much need for it except for 'bio copy'. So move this to aio as 'copyto' and implement 'file copy' in terms of it. Signed-off-by: Steve Bennett <steveb@workware.net.au>
2010-11-17Updates to the UTF-8 documentationSteve Bennett1-9/+9
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2010-11-17Update documentation to cover UTF-8 support for regexpSteve Bennett1-14/+66
Also create README.utf-8 Signed-off-by: Steve Bennett <steveb@workware.net.au>
2010-11-17Add UTF-8 support to JimSteve Bennett1-562/+303
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2010-11-03Autogenerate the command index in the documentationSteve Bennett1-3/+160
This was lost in the merge of the WorkWare fork Signed-off-by: Steve Bennett <steveb@workware.net.au>
2010-11-03Simplify and document [load]Steve Bennett1-3/+18
Previously both load and package require would search the library path to find the file to load. Simplify this by requiring an explicit path with load and have package require search the path. Also, document load and how it is used by package require. Signed-off-by: Steve Bennett <steveb@workware.net.au>
2010-10-30Allow extensions to be built/installed as modulesSteve Bennett1-1/+1
This includes C extensions and Tcl extensions Also adds windows support (mingw32 and cygwin) Now the sqlite*, readline and win32 extensions are supported Signed-off-by: Steve Bennett <steveb@workware.net.au>
2010-10-30Update documentation for recent featuresSteve Bennett1-6/+50
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2010-10-29Update version to 0.64Steve Bennett1-2/+3
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2010-10-20Document dict keys and lsort -indexSteve Bennett1-2/+26
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2010-10-20Set $argc in jimshSteve Bennett1-1/+10
Apparently tclsh does this. It is just [llength $argv] Signed-off-by: Steve Bennett <steveb@workware.net.au>
2010-10-15Rename Tcl.html_shipped to Tcl_shipped.htmlSteve Bennett1-0/+6372
Makes it easier to browse the shipped version in the source tree. Signed-off-by: Steve Bennett <steveb@workware.net.au>