Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | removed load-related clientData, made filesystem static | vincentdarley | 2002-07-22 | 1 | -3/+7 |
| | |||||
* | removed load-related clientData, made filesystem static | vincentdarley | 2002-07-22 | 1 | -13/+26 |
| | |||||
* | * Silence compiler warning. [Bug 584408] | dgp | 2002-07-21 | 1 | -1/+3 |
| | |||||
* | vfs fixes | vincentdarley | 2002-07-20 | 1 | -1/+2 |
| | |||||
* | Global symbols are now all either prefixed with 'tcl' (or 'Tcl' or ...) or ↵ | dkf | 2002-07-19 | 1 | -17/+24 |
| | | | | have file-scope. | ||||
* | Tcl_LoadHandle usage | vincentdarley | 2002-07-18 | 1 | -5/+5 |
| | |||||
* | load comments and clientData replacement | vincentdarley | 2002-07-18 | 1 | -3/+4 |
| | |||||
* | load comments and clientData replacement | vincentdarley | 2002-07-18 | 1 | -9/+9 |
| | |||||
* | load internals refactoring | vincentdarley | 2002-07-17 | 1 | -1/+43 |
| | |||||
* | comment cleanup and code speedup for fs | vincentdarley | 2002-07-15 | 1 | -9/+9 |
| | |||||
* | no zero refcount in Tcl_FS | vincentdarley | 2002-07-08 | 1 | -1/+12 |
| | |||||
* | fs cleanup | vincentdarley | 2002-07-08 | 1 | -2/+2 |
| | |||||
* | fs cleanup | vincentdarley | 2002-07-08 | 1 | -2/+23 |
| | |||||
* | empty path name error msgs | vincentdarley | 2002-06-26 | 1 | -1/+19 |
| | |||||
* | tip99 | vincentdarley | 2002-06-21 | 1 | -10/+13 |
| | |||||
* | vfs, winfs testsuite | vincentdarley | 2002-06-13 | 1 | -3/+4 |
| | |||||
* | fs clarification and windows fixes | vincentdarley | 2002-06-12 | 1 | -20/+53 |
| | |||||
* | fs fixed commit | vincentdarley | 2002-06-10 | 1 | -3/+3 |
| | |||||
* | small fs fixes | vincentdarley | 2002-06-10 | 1 | -11/+43 |
| | |||||
* | load cleanup in vfs | vincentdarley | 2002-05-28 | 1 | -7/+56 |
| | |||||
* | memory cleanup | vincentdarley | 2002-05-14 | 1 | -2/+17 |
| | |||||
* | memory cleanup | vincentdarley | 2002-05-13 | 1 | -2/+54 |
| | |||||
* | comment | vincentdarley | 2002-05-13 | 1 | -3/+5 |
| | |||||
* | fix to 551306 | vincentdarley | 2002-05-02 | 1 | -31/+45 |
| | |||||
* | * generic/tclIOUtil.c (Tcl_FSRegister, Tcl_FSUnregister): | hobbs | 2002-04-23 | 1 | -10/+13 |
| | | | | | corrected calling of Tcl_ConditionWait to ensure that there would be a condition to wait upon. | ||||
* | tilde expansion cache-clearing | vincentdarley | 2002-04-03 | 1 | -20/+27 |
| | |||||
* | fixed typo and compiler warning in last commit; all tests now pass on unix | vincentdarley | 2002-03-24 | 1 | -2/+2 |
| | |||||
* | 4 fs fixes | vincentdarley | 2002-03-24 | 1 | -14/+48 |
| | |||||
* | Further changes to the TIP 72 patch to make it compile under VC++ | Kevin B Kenny | 2002-02-15 | 1 | -3/+18 |
| | |||||
* | TIP#72 implementation. See ChangeLog for details. | dkf | 2002-02-15 | 1 | -10/+76 |
| | | | | | This version builds clean on Solaris/SPARC, with GCC and CC, both with and without threads and both in 32-bit and 64-bit mode. | ||||
* | * Partial TIP 27 rollback. Following routines | dgp | 2002-02-08 | 1 | -2/+2 |
| | | | | | | | | | | | | | restored to return (char *): Tcl_DStringAppend, Tcl_DStringAppendElement, Tcl_JoinPath, Tcl_TranslateFileName, Tcl_ExternalToUtfDString, Tcl_UtfToExternalDString, Tcl_UniCharToUtfDString, Tcl_GetCwd, Tcl_WinTCharToUtf. Also restored Tcl_WinUtfToTChar to return (TCHAR *) and Tcl_UtfToUniCharDString to return (Tcl_UniChar *). Modified some callers. This change recognizes that Tcl_DStrings are de-facto white-box objects. * generic/tclCmdMZ.c: corrected use of C++-style comment. | ||||
* | * [Patch 505630] Updated interfaces of generic/tclBasic.cc (TIP 27). | dgp | 2002-01-25 | 1 | -3/+3 |
| | | | | | | | * [Patch 506818] Updated interfaces of generic/tclHash.c (TIP 27). * [Patch 506807] Updated interfaces of generic/tclObj.c (TIP 27). * [Patch 507304] Updated interfaces of win/tclWin32.c (TIP 27). * Update all callers. | ||||
* | * Updated interfaces of generic/tclEncoding, generic/tclFilename.c, | dgp | 2002-01-25 | 1 | -4/+4 |
| | | | | | | | | | | | generic/tclIOUtil.c, generic/tclPipe.c, generic/tclResult.c, generic/tclUtil.c, generic/tclVar.c and mac/tclMacResource.c according to TIP 27. Tcl_TranslateFileName rewritten as wrapper around VFS-aware version. Updated callers. ***POTENTIAL INCOMPATIBILITY*** Includes source incompatibilities: argv arguments of Tcl_Concat, Tcl_JoinPath, Tcl_OpenCommandChannel, Tcl_Merge; argvPtr arguments of Tcl_SplitList and Tcl_SplitPath. | ||||
* | * Corrected tilde-substitution | dgp | 2002-01-25 | 1 | -6/+26 |
| | | | | of pathnames where > 1 separator follows the ~. [Bug 504950] | ||||
* | * More TIP 27 updates in tclIOUtil.c and tclIndexObj.c that were | dgp | 2002-01-17 | 1 | -8/+8 |
| | | | | | | | overlooked before. Updated callers. ***POTENTIAL INCOMPATIBILITY*** Includes a source incompatibility in the tablePtr arguments of the Tcl_GetIndexFromObj* routines. | ||||
* | * Updated APIs in generic/tclIOUtil.c and generic/tclPosixStr.c | dgp | 2002-01-15 | 1 | -8/+8 |
| | | | | according to the guidelines of TIP 27. Updated callers. [Patch 499196] | ||||
* | * generic/tclEvent.c (TclInExit): | dgp | 2002-01-07 | 1 | -5/+5 |
| | | | | | | | * generic/tclIOUtil.c (SetFsPathFromAbsoluteNormalized, SetFsPathFromAny,Tcl_FSNewNativePath,DupFsPathInternalRep): * generic/tclListObj.c (TclLsetList,TclLsetFlat): Added some type casts to satisfy picky compilers. | ||||
* | * doc/FileSystem.3: | dgp | 2002-01-03 | 1 | -19/+19 |
| | | | | | * generic/tclIOUtil.c: Updated some old uses of "fileName" to new VFS terminology, "pathPtr". | ||||
* | ** upport to 8.4 of mac code changes for 8.3.3 & various new | das | 2001-11-23 | 1 | -1/+4 |
| | | | | | | ** changes for 8.4, some already backported to 8.3.4 (patch #435658) see ChangeLog for details | ||||
* | file copy soft link docs | vincentdarley | 2001-11-02 | 1 | -7/+16 |
| | |||||
* | win fs fixes | vincentdarley | 2001-10-29 | 1 | -19/+15 |
| | |||||
* | Tcl_FSChdir fix | vincentdarley | 2001-10-18 | 1 | -6/+40 |
| | |||||
* | fs doc improvement | vincentdarley | 2001-09-29 | 1 | -1/+8 |
| | |||||
* | * More CONST poisoning | dgp | 2001-09-28 | 1 | -4/+5 |
| | | | | | | fixes from the 2001-09-24 TIP 27 changes. CONST-ified Tcl_FSLoadFile and TclpLoadFile. Report and patch from Kevin Kenny. [Bug 465833] | ||||
* | channel-copy-fix | vincentdarley | 2001-09-08 | 1 | -19/+16 |
| | |||||
* | fs | vincentdarley | 2001-09-06 | 1 | -11/+74 |
| | |||||
* | minor fs, vfs fixes | vincentdarley | 2001-09-04 | 1 | -52/+186 |
| | |||||
* | filesystem | vincentdarley | 2001-08-30 | 1 | -83/+62 |
| | |||||
* | corrected minor compiler warnings | hobbs | 2001-08-23 | 1 | -3/+3 |
| | |||||
* | fs update | vincentdarley | 2001-08-23 | 1 | -131/+615 |
| |