From: Vince Darley Date: Fri, 16 May 2003 12:36:08 +0000 (+0000) Subject: tk vfs added X-Git-Tag: vfs-1-3~19 X-Git-Url: http://privyetmir.co.uk/gitweb?a=commitdiff_plain;h=d1bff9dfa61a43929d0660d3b157030f783ab530;p=tclvfs tk vfs added --- diff --git a/ChangeLog b/ChangeLog index 303ccfc..7c7bcc3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2003-05-16 Vince Darley + + * library/tkvfs.tcl: added 'tk' widget hierarchy vfs. Use: + package require vfs::tk + vfs::tk::Mount .frame.a.b foo + cd foo + ... + to examine. + * library/pkgIndex.tcl(.in): added new package. + 2003-05-15 Jeff Hobbs * library/pkgIndex.tcl.in: use vfs::dll var directly diff --git a/library/pkgIndex.tcl b/library/pkgIndex.tcl index 768966d..56e962b 100644 --- a/library/pkgIndex.tcl +++ b/library/pkgIndex.tcl @@ -56,3 +56,4 @@ package ifneeded vfs::test 1.0 [list source [file join $dir testvfs.tcl]] package ifneeded vfs::urltype 1.0 [list source [file join $dir vfsUrl.tcl]] package ifneeded vfs::webdav 0.1 [list source [file join $dir webdavvfs.tcl]] package ifneeded vfs::zip 1.0 [list source [file join $dir zipvfs.tcl]] +package ifneeded vfs::tk 0.5 [list source [file join $dir tkvfs.tcl]] diff --git a/library/pkgIndex.tcl.in b/library/pkgIndex.tcl.in index 54eb08d..660c866 100644 --- a/library/pkgIndex.tcl.in +++ b/library/pkgIndex.tcl.in @@ -43,3 +43,4 @@ package ifneeded vfs::test 1.0 [list source [file join $dir testvfs.tcl]] package ifneeded vfs::urltype 1.0 [list source [file join $dir vfsUrl.tcl]] package ifneeded vfs::webdav 0.1 [list source [file join $dir webdavvfs.tcl]] package ifneeded vfs::zip 1.0 [list source [file join $dir zipvfs.tcl]] +package ifneeded vfs::tk 0.5 [list source [file join $dir tkvfs.tcl]]