summaryrefslogtreecommitdiffstats
path: root/doc/FileSystem.3
Commit message (Collapse)AuthorAgeFilesLines
* * doc/FileSystem.3 (Tcl_FSOpenFileChannelProc): [Bug 3518244]: Fixeddkf2012-04-161-3/+4
|\ | | | | | | | | documentation of this filesystem callback function; it must not register its created channel - that's the responsibility of the caller of Tcl_FSOpenFileChannel - as that leads to reference leaks.
| * * doc/FileSystem.3 (Tcl_FSOpenFileChannelProc): [Bug 3518244]: Fixeddkf2012-04-161-3/+4
| | | | | | | | | | documentation of this filesystem callback function; it must not register its created channel - that's the responsibility of the caller of Tcl_FSOpenFileChannel - as that leads to reference leaks.
* | Corrected statements about ctime field of 'struct stat'; that was always thedkf2011-07-031-6/+6
|\ \ | |/ | | time of the last metadata change, not the time of creation.
| * Corrected statements about ctime field of 'struct stat'; that was always thedkf2011-07-031-6/+6
| | | | | | time of the last metadata change, not the time of creation.
* | Now that we're no longer using SCM based on RCS, the RCS Keyword lines causedgp2011-03-021-2/+0
|\ \ | |/ | | more harm than good. Purged them.
| * Now that we're no longer using SCM based on RCS, the RCS Keyword lines causedgp2011-03-011-2/+0
| | | | | | more harm than good. Purged them.
| * * doc/FileSystem.3: added missing Tcl_GlobTypeData documentationdgp2005-06-201-6/+34
| | | | | | | | [Bug 935853]
| * Backported doc fixdkf2005-04-291-2/+5
| |
| * FileSystem.3vincentdarley2003-10-031-8/+16
| |
| * fs doc fixvincentdarley2003-06-231-13/+13
| |
* | [Patch 2903921]: Many small spelling fixes from Larry Virden.dkf2009-11-271-5/+5
| |
* | merge stable branch onto HEADdgp2007-12-131-1/+1
| |
* | Fix markup errors.jenglish2007-12-101-4/+3
| | | | | | | | Consistency: Make sure "KEYWORDS" section appears after "SEE ALSO".
* | First stage of doing GOOBE improvements to documentation now that the html ↵dkf2007-10-281-50/+125
| | | | | | | | generation works
* | * changes: Updated for 8.5b2 release.core_8_5_b2dgp2007-10-261-13/+5
| | | | | | | | | | | | * doc/*.1: Revert doc changes that broke * doc/*.3: `make html` so we can get the release * doc/*.n: out the door.
* | Lots of improvements to look and feel of manual pagesdkf2007-10-241-5/+13
| |
* | * doc/Encoding.3: Missing doc updates (mostly Table ofdgp2006-10-181-2/+2
| | | | | | | | | | | | | | * doc/Ensemble.3: Contents) exposed by `make checkdoc` * doc/FileSystem.3: * doc/GetTime.3: * doc/PkgRequire.3:
* | fix to two filesystem issuesvincentdarley2006-03-191-2/+3
| |
* | allow NULL interp in Tcl_FSMatchInDirectoryvincentdarley2005-08-311-6/+8
| |
* | Merged kennykb-numerics-branch back to the head; TIPs 132 and 232Kevin B Kenny2005-05-101-1/+1
| |
* | Added doc for missing argument. [Bug 1172401]dkf2005-03-301-2/+4
| |
* | * doc/Thread.3: Fixed sentence describing flags for Tcl_CreateThread.davidw2005-02-051-2/+2
| | | | | | | | | | | | | | * doc/FileSystem.3: Cleaned up typo in Tcl_FSNewNativePath documentation. * generic/tclPathObj.c: Cleaned up typo in comment.
* | Add documentation for Tcl_FSLink args. [Bug 1106272]dkf2005-01-211-1/+12
| |
* | Convert CONST to const, VOID to void so we document how we want the API used.dkf2004-10-071-13/+13
| |
* | Clarify filesystem docsdkf2004-10-071-153/+152
| |
* | added missing Tcl_GlobTypeData documentationvincentdarley2004-09-271-1/+16
| |
* | small typovincentdarley2004-09-271-2/+2
| |
* | More fixes from Mikhail Kolesnitchenko, and also standardize highlightingdkf2004-09-181-276/+293
| | | | | | | | of symbols like TCL_OK, TCL_ERROR, etc.
* | two bugs fixed in filesystem docs and testsvincentdarley2004-08-311-5/+17
| |
* | cd infinite loop bug fixedvincentdarley2004-07-171-5/+6
| |
* | fix to 'file dirname' and to fs refCount documentationvincentdarley2004-05-191-7/+16
| |
* | fix to two filesystem bugs: more consistent file separator proc and correct ↵vincentdarley2004-04-231-5/+8
| | | | | | | | Tcl_FSJoinPath return values
* | fix to utime documentationvincentdarley2004-04-161-4/+5
| |
* | Removed support for Mac OS Classic platform [Patch 918142]das2004-03-171-4/+4
| |
* | fixed typos in documentation and commentsvincentdarley2004-03-091-2/+2
| |
* | filesystem optimisation -- Three main issues accomplished: (1) cleaned up ↵vincentdarley2004-01-211-9/+21
| | | | | | | | variable names in
* | improved documentation on memory managementvincentdarley2003-12-161-16/+24
| |
* | filesystem documentationvincentdarley2003-10-231-22/+41
| |
* | * doc/FileSystem.3: Implementation ofdgp2003-09-051-5/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * doc/source.n: TIPs 137/151. Adds * doc/tclsh.1: a -encoding option to * generic/tcl.decls: the [source] command * generic/tclCmdMZ.c (Tcl_SourceObjCmd): and a new C routine, * generic/tclIOUtil.c (Tcl_FSEvalFileEx): Tcl_FSEvalFileEx(), * generic/tclMain.c (Tcl_Main): that provides C access * mac/tclMacResource.c (Tcl_MacSourceObjCmd): to the same function. * tests/cmdMZ.test: Also adds command line * tests/main.test: option handling in Tcl_Main() so that tclsh * tests/source.test: and other apps built on Tcl_Main() respect a -encoding command line option before a script filename. Docs and tests updated as well. [Patch 742683] This is a ***POTENTIAL INCOMPATIBILITY*** only for those C programs that embed Tcl, build on Tcl_Main(), and make use of Tcl_Main's former ability to pass a leading "-encoding" option to interactive shell operations. * generic/tclInt.decls: Added internal stub * generic/tclMain.c (Tcl*StartupScript*): table entries for two new functions Tcl_SetStartupScript() and Tcl_GetStartupScript() that set/get the path and encoding for the startup script to be evaluated by either Tcl_Main() or Tk_Main(). Given public names in anticipation of their exposure by a followup TIP. * generic/tclDecls.h: make genstubs * generic/tclIntDecls.h: * generic/tclStubInit.c:
* | documentation fix, bug 775220vincentdarley2003-07-281-2/+7
| |
* | fs documentationvincentdarley2003-06-231-13/+13
|/
* further fs cleanupvincentdarley2003-02-101-1/+7
|
* filesystem speed up round 2vincentdarley2003-02-101-10/+12
|
* removed load-related clientData, made filesystem staticvincentdarley2002-07-221-12/+7
|
* no zero refcount in Tcl_FSvincentdarley2002-07-081-12/+18
|
* fs cleanupvincentdarley2002-07-081-13/+14
|
* Spell-check, fixed typos (Updates from Larry Virden).jenglish2002-07-011-2/+2
|
* tip99vincentdarley2002-06-211-18/+24
|
* vfs, winfs testsuitevincentdarley2002-06-131-4/+5
|
* fs clarification and windows fixesvincentdarley2002-06-121-3/+9
|