Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Bumped to version 1.1 |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a109f2633873dae91cca1c87ad9ad0f0 |
User & Date: | andreask 2014-02-06 17:39:53.244 |
Context
2014-02-06
| ||
18:05 | Updated the changes information in the documentation. check-in: 9e34d9687a user: andreask tags: trunk | |
17:39 | Bumped to version 1.1 check-in: a109f26338 user: andreask tags: trunk | |
17:39 | Fixed issue in previous commit. New code failed to take a possible empty path into account. check-in: 8117b3db5e user: andreask tags: trunk | |
Changes
Changes to actor.tcl.
︙ | ︙ | |||
309 310 311 312 313 314 315 | ## # # ## ### ##### ######## ############# } # # ## ### ##### ######## ############# ##################### ## Ready | | | 309 310 311 312 313 314 315 316 | ## # # ## ### ##### ######## ############# } # # ## ### ##### ######## ############# ##################### ## Ready package provide cmdr::actor 1.1 |
Changes to cmdr.tcl.
︙ | ︙ | |||
71 72 73 74 75 76 77 | proc ::cmdr::interactive? {} { variable interactive return $interactive } # # ## ### ##### ######## ############# ##################### ## Ready | | | 71 72 73 74 75 76 77 78 | proc ::cmdr::interactive? {} { variable interactive return $interactive } # # ## ### ##### ######## ############# ##################### ## Ready package provide cmdr 1.1 |
Changes to config.tcl.
︙ | ︙ | |||
1361 1362 1363 1364 1365 1366 1367 | } # # ## ### ##### ######## ############# } # # ## ### ##### ######## ############# ##################### ## Ready | | | 1361 1362 1363 1364 1365 1366 1367 1368 | } # # ## ### ##### ######## ############# } # # ## ### ##### ######## ############# ##################### ## Ready package provide cmdr::config 1.1 |
Changes to doc/parts/configuration.inc.
1 2 3 4 5 6 7 8 9 10 | [comment {--- Project configuration --}] [vset AUTHOR {Andreas Kupries}] [vset COPYRIGHT 2013] [vset LICENSE bsd] [vset MAN_SECTION n] [vset MODULE_DESC {Cmdr, a framework for command line parsing and dispatch}] [vset PROJECT cmdr] [vset PTITLE Cmdr] [vset REPOSITORY https:/core.tcl.tk/akupries/cmdr] [vset VC_TYPE fossil] | | | 1 2 3 4 5 6 7 8 9 10 11 | [comment {--- Project configuration --}] [vset AUTHOR {Andreas Kupries}] [vset COPYRIGHT 2013] [vset LICENSE bsd] [vset MAN_SECTION n] [vset MODULE_DESC {Cmdr, a framework for command line parsing and dispatch}] [vset PROJECT cmdr] [vset PTITLE Cmdr] [vset REPOSITORY https:/core.tcl.tk/akupries/cmdr] [vset VC_TYPE fossil] [vset VERSION 1.1] |
Changes to parameter.tcl.
︙ | ︙ | |||
1203 1204 1205 1206 1207 1208 1209 | myisundefined mynopromote # # ## ### ##### ######## ############# } # # ## ### ##### ######## ############# ##################### ## Ready | | | 1203 1204 1205 1206 1207 1208 1209 1210 | myisundefined mynopromote # # ## ### ##### ######## ############# } # # ## ### ##### ######## ############# ##################### ## Ready package provide cmdr::parameter 1.1 |
Changes to util.tcl.
︙ | ︙ | |||
66 67 68 69 70 71 72 | lappend r $k [dict get $dict $k] } return $r } # # ## ### ##### ######## ############# ##################### ## Ready | | | 66 67 68 69 70 71 72 73 | lappend r $k [dict get $dict $k] } return $r } # # ## ### ##### ######## ############# ##################### ## Ready package provide cmdr::util 1.1 |
Changes to validate.tcl.
︙ | ︙ | |||
317 318 319 320 321 322 323 | if {![file readable $path]} {return 0} if {![file writable $path]} {return 0} return 1 } # # ## ### ##### ######## ############# ##################### ## Ready | | | 317 318 319 320 321 322 323 324 325 | if {![file readable $path]} {return 0} if {![file writable $path]} {return 0} return 1 } # # ## ### ##### ######## ############# ##################### ## Ready package provide cmdr::validate 1.1 return |
Changes to vcommon.tcl.
︙ | ︙ | |||
105 106 107 108 109 110 111 | debug.cmdr/validate/common {= [join $candidates "\n= "]} 10 return $candidates } # # ## ### ##### ######## ############# ##################### ## Ready | | | 105 106 107 108 109 110 111 112 113 | debug.cmdr/validate/common {= [join $candidates "\n= "]} 10 return $candidates } # # ## ### ##### ######## ############# ##################### ## Ready package provide cmdr::validate::common 1.1 return |