Eskil

Check-in [540590903a]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Moved pstools to module
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 540590903af7b1d69394296ce8cc70a5921a13198b5cab9d56e1b829afee5cc8
User & Date: peter 2024-09-08 21:15:43.023
Context
2024-09-08
21:32
Use tcl9 friendly format for package check-in: 9950d1e608 user: peter tags: trunk
21:15
Moved pstools to module check-in: 540590903a user: peter tags: trunk
21:10
Reorder startup check-in: a5595f52f3 user: peter tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Name change from eskil.vfs/lib/pstools/pstools.tcl to eskil.vfs/lib/pstools-1.0.tm.
1
2
3
4
5
6
7
8
9
10
11
12



13
14
15
16
17
18
19
20
21
22
#----------------------------------------------------------------------
#
#  pstools.tcl,
#     a package providing misc facilites
#
#  Copyright (c) 2003, Peter Spjuth  (peter.spjuth@gmail.com)
#
#  Permission is granted to use this code under the same terms as
#  for the Tcl core code.
#
#----------------------------------------------------------------------
# $Revision: 1.6 $



#----------------------------------------------------------------------

package provide pstools 0.3
package require Tcl 8.4

namespace eval pstools {
    namespace export safeLoad commonYScroll locateTmp locateEditor

    if {[info commands ::ttk::*] ne ""} {
        catch {namespace path ::ttk}











|
>
>
>


|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#----------------------------------------------------------------------
#
#  pstools.tcl,
#     a package providing misc facilites
#
#  Copyright (c) 2003, Peter Spjuth  (peter.spjuth@gmail.com)
#
#  Permission is granted to use this code under the same terms as
#  for the Tcl core code.
#
#----------------------------------------------------------------------
#  This is used as a Tcl Module. Use it like this:
#  ::tcl::tm::path add <path-to-dir-with-module>
#  package require pstools
#  namespace import pstools::*
#----------------------------------------------------------------------

package provide pstools 1.0
package require Tcl 8.4

namespace eval pstools {
    namespace export safeLoad commonYScroll locateTmp locateEditor

    if {[info commands ::ttk::*] ne ""} {
        catch {namespace path ::ttk}
Deleted eskil.vfs/lib/pstools/pkgIndex.tcl.
1
2
3
4
5
6
7
8
9
10
11
# Tcl package index file, version 1.1
# This file is generated by the "pkg_mkIndex" command
# and sourced either when an application starts up or
# by a "package unknown" script.  It invokes the
# "package ifneeded" command to set up package-related
# information so that packages will be loaded automatically
# in response to "package require" commands.  When this
# script is sourced, the variable $dir must contain the
# full path name of this file's directory.

package ifneeded pstools 0.3 [list source [file join $dir pstools.tcl]]
<
<
<
<
<
<
<
<
<
<
<