-
It is incorrect for [file pathtype] to return a value of "absolute" in the given example. Since there is no path separator in the string "testvfstest", the only time [file pathtype testvfstest] should return "absolute" would be if there were a mounted volume named "testvfstest", but there isn't.
It is also incorrect for [file join testvfstest] to return "testvfs/test", even if it were...
2009-10-31 05:49:32 UTC in Tcl
-
After executing the steps above:
% file join testvfstest
testvfs/test
% file pathtype testvfstest
absolute
% file system testvfstest
native
% file normalize testvfstest
/testvfs/test.
2009-10-28 05:47:49 UTC in Tcl
-
When creating a menu with multiple radiobutton entries, using "-indicatoron 1" on one of the entries has no effect. If the designated variable for the entries is unset, no entries have an indicator on when the menu is displayed. If the designated variable is set for one of the entries, that entry has its indicator on, even if "indicatoron 1" is set for another entry.
Example 1:
set...
2009-10-27 09:00:17 UTC in Tk Toolkit
-
If a menu is created with multiple radiobutton entries, using "-indicatoron 1" on one of the entries has no effect. The value of the designated variable overrides the option. If the designated variable is unset, the flag still has no effect.
Example:
unset -nocomplain selectedButton
set m [menu .m -tearoff 0]
$m add radiobutton -label Accept -indicatoron 1
$m add radiobutton -label...
2009-10-27 08:39:41 UTC in Tk Toolkit
-
When using "file join" on a string that happens to include a virtual volume name as a substring, the string is improperly split at the substring boundary, and the command acts as though there were a space at the substring boundary.
For convenience I have attached a file (templatevfs.tcl) to make it easy to create a virtual volume by mounting a virtual filesystem, but the issue should not be...
2009-10-27 06:02:18 UTC in Tcl
-
blacksqr committed patchset 341 of module tclvfs to the TclVfs CVS repository, changing 3 files.
2009-10-20 08:16:36 UTC in TclVfs
-
blacksqr made 2 file-release changes.
2009-10-20 07:41:02 UTC in The FILTR
-
blacksqr made 2 file-release changes.
2009-10-20 07:40:01 UTC in The FILTR
-
blacksqr made 4 file-release changes.
2009-10-20 07:39:02 UTC in The FILTR
-
blacksqr committed patchset 340 of module tclvfs to the TclVfs CVS repository, changing 3 files.
2009-10-16 05:40:13 UTC in TclVfs