summaryrefslogtreecommitdiffstats
path: root/library
Commit message (Collapse)AuthorAgeFilesLines
* Fix silly errors in REs, in variables, and in tests that were working withdkf2005-11-181-8/+8
| | | | invalid URLs.
* Improved URL validation that better describes why validation failed. [Bug ↵dkf2005-11-181-97/+199
| | | | 1358369]
* Bump to http 2.5.2 to cover changing rules in [http::mapReply] [1182373]dgp2005-11-152-3/+3
|
* Bug 1298737Kevin B Kenny2005-11-041-1/+4
|
* * tests/http.test: do not URI encode -._~ accordinghobbs2005-10-051-4/+8
| | | | * library/http/http.tcl (init): to RFC3986. [Bug 1182373] (aho)
* Rebuild tzdata from Olson's tzdata2005n.tar.gzKevin B Kenny2005-10-0346-3626/+4065
|
* fix comment typohobbs2005-09-301-3/+3
|
* init value to (-)Inf for min/max expr functions to simplify codehobbs2005-09-301-15/+9
|
* implementation for TIP #255, expr min/maxhobbs2005-09-291-1/+43
|
* * generic/tclStringObj.c: Bug fixes: ObjPrintfVA needed todgp2005-09-141-3/+3
| | | | | | | | | | | | | support "*" fields and needed to interpret precision limits on %s conversions as a number of bytes, not Tcl_UniChars, to take from the (char *) argument. * generic/tclBasic.c: Updated several callers to use * generic/tclCmdMZ.c: TclFormatToErrorInfo(). * generic/tclIOUtil.c: * library/init.tcl: Keep [unknown] in sync with errorInfo formatting rules.
* * library/tm.tcl (::tcl::tm::roots): Accepted Don Porter's patchandreas_kupries2005-08-291-1/+1
| | | | | for [Tcl SF Bug 1189657]. Syncs the implementation to the specification (TIP #189).
* TIP#219 IMPLEMENTATIONandreas_kupries2005-08-241-18/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | * doc/SetChanErr.3: ** New File **. Documentation of the new channel API functions. * generic/tcl.decls: Stub declarations of the new channel API. * generic/tclDecls.h: Regenerated * generic/tclStubInit.c: * tclIORChan.c: ** New File **. Implementation of the reflected channel. * generic/tclInt.h: Integration of reflected channel and new error * generic/tclIO.c: propagation into the generic I/O core. * generic/tclIOCmd.c: * generic/tclIO.h: * library/init.tcl: * tests/io.test: Extended testsuite. * tests/ioCmd.test: * tests/chan.test: * generic/tclTest.c: * generic/tclThreadTest.c: * unix/Makefile.in: Integration into the build machinery. * win/Makefile.in: * win/Makefile.vc:
* Changed message catalog file names to lowercaseKevin B Kenny2005-08-1767-0/+0
|
* added /usr/lib/zoneinfo for antique glibcKevin B Kenny2005-08-121-1/+2
|
* bug 1257830Kevin B Kenny2005-08-121-16/+41
|
* * library/init.tcl ([unknown]): Corrected return code handlingdgp2005-07-271-4/+14
| | | | | in the portions of [unknown] that expand incomplete commands during interactive operations. [Bug 1214462].
* * library/auto.tcl: Updates to the Tcl script library to makedgp2005-07-236-78/+76
| | | | | | | | * library/history.tcl: use of Tcl 8.4 features. Forward port of * library/init.tcl: appropriate portions of [Patch 1237755]. * library/package.tcl: * library/safe.tcl: * library/word.tcl:
* drop support of ancient BSD, IRIX4, RISCos, Ultrix, and ldAout.tclKevin B Kenny2005-07-211-233/+0
|
* Bug 1237907Kevin B Kenny2005-07-151-6/+24
|
* * library/auto.tcl: Make file safe to re-[source] withoutdgp2005-06-241-23/+23
| | | | destroying registered auto_mkindex_parser hooks.
* * library/auto.tcl: Make file safe to re-[source] withoutdgp2005-06-241-20/+27
| | | | destroying registered auto_mkindex_parser hooks.
* TIP#208 implementationdkf2005-06-061-1/+21
| | | | It's crude (especially in the tests and docs department) and incomplete (no truncation on non-POSIX platforms).
* Remove blatant inefficiency in [parray]dkf2005-06-031-3/+4
|
* * library/init.tcl: Updated [unknown] to be sure the [return]dgp2005-05-241-2/+3
| | | | | * tests/init.test: options from an auto-loaded command are seen correctly by the caller.
* Merged kennykb-numerics-branch back to the head; TIPs 132 and 232Kevin B Kenny2005-05-105-5/+5
|
* * library/init.tcl: Corrected flaw in interactive commanddgp2005-04-281-2/+2
| | | | * tests/main.test: auto-completion. [Bug 1191409].
* Olson's tzdata2005iKevin B Kenny2005-04-2516-15/+19
|
* * library/init.tcl: Use "ni" and "in" operators.dgp2005-04-251-7/+7
|
* typodgp2005-04-191-2/+2
|
* * generic/tclBasic.c: Added unsupported commanddgp2005-04-191-39/+45
| | | | | | | | * generic/tclCmdAH.c: [::tcl::unsupported::EncodingDirs] to permit * generic/tclInt.h: query/set of the encoding search path at * generic/tclInterp.c: the script level. Updated init.tcl to make * library/init.tcl: use of the new command. Also updated several coding practices in init.tcl ("eq" for [string equal], etc.)
* fixed Bug 1185933Kevin B Kenny2005-04-191-22/+41
|
* * library/init.tcl: Use auto-loading to bring in Tcl Moduledgp2005-04-153-45/+35
| | | | | | * library/tclIndex: support as needed. This reduces startup * library/tm.tcl: time by delaying this initialization to a later time.
* Performance improvement in [clock] - FR 1182459Kevin B Kenny2005-04-131-4/+4
|
* Olson's tzdata2005hKevin B Kenny2005-04-1010-1021/+77
|
* * library/tcltest/tcltest.tcl: Better use of [glob -types] to avoiddgp2005-02-242-18/+15
| | | | | | | | | * tests/tcltest.test: failed attempts to [source] a directory, and similar matters. Thanks to "mpettigr". [Bug 1119798] * library/tcltest/pkgIndex.tcl: Bump to tcltest 2.2.8 * unix/Makefile.in: * win/Makefile.in:
* Added safety checksdgp2005-01-251-7/+13
|
* * library/auto.tcl: Updated [auto_reset] to clear auto-loadeddgp2005-01-251-12/+10
| | | | | | commands in namespaces other than :: and to clear auto-loaded commands that do not happen to be procs. [Bug 1101670] ***POTENTIAL INCOMPATIBILITY***
* Routine update per Olson's tzdata2005c. Removed links to linksKevin B Kenny2005-01-1811-408/+284
| | | | | (Greenwich in several aliases; Navajo; Acre). Updated Paraguayan DST rules and "best guess" at this year's Israeli rules.
* Horrible hack to keep the old error message.dkf2005-01-061-3/+11
|
* Performance updates to http::mapReply [1020491] and fix version numbering.dkf2005-01-062-26/+22
|
* bugs 1090413, 1092789 fixedKevin B Kenny2004-12-291-8/+13
|
* added comment about freewrap difficultiesdgp2004-12-011-1/+5
|
* D'oh! Deal with missing ::errorCode or ::errorInfo.dgp2004-11-301-5/+5
|
* * library/init.tcl ([unknown]): Restored the save/restore ofdgp2004-11-301-1/+5
| | | | | the variables ::errorCode and ::errorInfo. This is needed when the [::bgerror] command is auto-loaded (as it is by Tk).
* * library/clock.tcl: Corrected the regular expressions that matchKevin B Kenny2004-11-301-7/+9
| | | | | a time zone to allow for time zones specified as +HH or -HH. * tests/clock.test: Added regression test case for the above issue.
* * library/auto.tcl (tcl_findLibrary): Made sure the uniquifyingdgp2004-11-261-2/+2
| | | | operations on the search path does not also normalize. [Bug 1072136]
* remove knownBugs from clock tests by fixing themKevin B Kenny2004-11-031-3/+9
|
* * library/init.tcl ([unknown]): Corrections to the 2004-10-25 modsdgp2004-11-031-2/+4
| | | | | | | to Aunt ??? in [unknown]. Flaws revealed by Itcl test suite, which still apparently relies on this brokenness. Also added comment suggesting the error message that any code using this hack *ought* to receive in reply.
* 2004-11-02 Don Porter <dgp@users.sourceforge.net>dgp2004-11-021-4/+24
| | | | | | | | * library/tcltest/tcltest.tcl: Corrected some misleading * tests/tcltest.test (tcltest-26.1,2): displays of ::errorInfo and ::errorCode information when the -setup, -body, and/or -cleanup scripts return an unexpected return code. Thanks to Robert Seeger for the fix. [RFE 1017151].
* updates to Havana and Cuiaba time zonesKevin B Kenny2004-11-022-2/+1
|