summaryrefslogtreecommitdiffstats
path: root/doc/FileSystem.3
Commit message (Collapse)AuthorAgeFilesLines
* [Patch #2994165] Change signature of Tcl_FSGetNativePath and TclpDeleteFilenijtmans2010-08-141-10/+9
|
* Added a first crack at documentation for TIP #357's Tcl_LoadFile et al.dkf2010-04-041-7/+25
|
* Improve linking between pages, put Tk variables in Tk docs.dkf2010-01-141-3/+3
|
* Improve choice of keywordsdkf2010-01-131-2/+2
|
* [Patch 2903921]: Many small spelling fixes from Larry Virden.dkf2009-11-271-5/+5
|
* Lots of very minor formatting fixes.dkf2008-10-151-2/+2
|
* * doc/FileSystem.3: CONSTified Tcl_FSFileAttrStringsProcnijtmans2008-10-051-2/+2
| | | | | | | | | | | | | | | * generic/tclFCmd.c: and tclpFileAttrStrings. This allows * generic/tclIOUtil.c: FileSystems to report their attributes * generic/tclTest.c: as const strings, without worrying that * unix/tclUnixFCmd.c: Tcl modifies them (which Tcl should not * win/tclWinFCmd.c: do anyway, but the API didn't indicate that) * generic/tcl.decls * generic/tclDecls.h: regenerated * generic/tcl.h: make sure that if CONST84 is defined as empty, CONST86 should be defined as empty as well (unless overridden). This change complies with TIP #27 *** POTENTIAL INCOMPATIBILITY ***
* Implement TIP #316.dkf2008-09-241-240/+315
|
* * doc/FileSystem.3: CONSTified many functions using Tcl_FileSystemnijtmans2008-07-281-4/+4
| | | | | | | | | | | * generic/tcl.decls: which all are supposed to be a constant, but * generic/tclDecls.h: this was not reflected in the API: * generic/tclFileSystem.h: Tcl_FSGetInternalRep * generic/tclIOUtil.c: Tcl_FSNewNativePath, Tcl_FSData * generic/tclPathObj.c: Tcl_FSRegister, Tcl_FSUnregister * generic/tclTest.c: Tcl_FSGetFileSystemForPath ... This change complies with TIP #24. ***POTENTIAL INCOMPATIBILITY***
* Prepare Tcl's docs for life as 8.6 (remove out of date change bars, fixdkf2008-06-291-60/+55
| | | | typedefs, add a few missing bits)
* 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
|
* fix to bug 553320vincentdarley2002-05-071-10/+15
|