Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fixed missing initialization in the main help generator. |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
3a146bdf51c2d43698bf3cb7e0a1f75b |
User & Date: | andreask 2014-01-30 18:09:12 |
Context
2014-01-30
| ||
18:09 | Fixed command scope problems in "extend". check-in: f1bb89c324 user: andreask tags: trunk | |
18:09 | Fixed missing initialization in the main help generator. check-in: 3a146bdf51 user: andreask tags: trunk | |
2014-01-13
| ||
21:03 | Fixed buglet in the help setup. Add the main (root) name to the command prefix when not in a cli shell. Bumped cmdr::help to version 1.0.1. check-in: 60dbdef1b0 user: andreask tags: trunk | |
Changes
Changes to config.tcl.
162 163 164 165 166 167 168 169 170 171 172 173 174 175 |
# } # parameters = dict (name -> param-def) # param-def = dict (key -> value) // include code # # Option aliases are listed in options, but not in parameters. set options {} dict for {o para} $myoption { # in interactive mode undocumented options can be shown in # the help if they already have a value defined for them. if {![$para documented] && (($mode ne "interact") || ![$para set?])} continue |
> > |
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 |
# }
# parameters = dict (name -> param-def)
# param-def = dict (key -> value) // include code
#
# Option aliases are listed in options, but not in parameters.
set options {}
set optpara {}
dict for {o para} $myoption {
# in interactive mode undocumented options can be shown in
# the help if they already have a value defined for them.
if {![$para documented] &&
(($mode ne "interact") ||
![$para set?])} continue
|