Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | add appname pkg |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
975bb1035a96460323184b2dbc10a3d6 |
User & Date: | admin 2015-06-29 00:57:02 |
Context
2015-06-29
| ||
01:46 | Updates to cbkimages package check-in: 118435ec0d user: admin tags: trunk | |
00:57 | add appname pkg check-in: 975bb1035a user: admin tags: trunk | |
2015-06-28
| ||
21:10 | Add more libs check-in: 5362800858 user: admin tags: trunk | |
Changes
Added appname/appname.tcl.
> > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | package provide appname 1.0 namespace eval appname { proc setAppName {appname appversion} { variable name variable version set name $appname set version $appversion return [list [namespace current]::$name [namespace current]::$version] } namespace export * } |
Added appname/pkgIndex.tcl.
> > > > > | 1 2 3 4 5 | package ifneeded appname 1.0 [list source [file join $dir appname.tcl]] |