Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix broken requirements cmdr::help::json and *::sql. Were not updated to v1. |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
d46922cc52047d40ae730121923b7850 |
User & Date: | andreask 2013-12-18 20:29:37.846 |
Context
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 | |
2013-12-18
| ||
20:29 | Fix broken requirements cmdr::help::json and *::sql. Were not updated to v1. check-in: d46922cc52 user: andreask tags: trunk | |
2013-12-02
| ||
17:44 | Version bumped to 1.0. Regenerated docs. check-in: 2e15301ff5 user: aku tags: cmdr-1-0, release, release-1-0, trunk, v1.0 | |
Changes
Changes to help_json.tcl.
︙ | ︙ | |||
11 12 13 14 15 16 17 | # Meta platform tcl # Meta summary Formatting help as JSON object. # Meta description Formatting help as JSON object. # Meta subject {command line} # Meta require {Tcl 8.5-} # Meta require debug # Meta require debug::caller | | | | | | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | # Meta platform tcl # Meta summary Formatting help as JSON object. # Meta description Formatting help as JSON object. # Meta subject {command line} # Meta require {Tcl 8.5-} # Meta require debug # Meta require debug::caller # Meta require {cmdr::help 1} # Meta require {cmdr::util 1} # Meta require json::write # @@ Meta End # # ## ### ##### ######## ############# ##################### ## Requisites package require Tcl 8.5 package require debug package require debug::caller package require cmdr::help 1 package require cmdr::util 1 package require json::write # # ## ### ##### ######## ############# ##################### debug define cmdr/help/json debug level cmdr/help/json debug prefix cmdr/help/json {[debug caller] | } |
︙ | ︙ |
Changes to help_sql.tcl.
︙ | ︙ | |||
11 12 13 14 15 16 17 | # Meta platform tcl # Meta summary Formatting help as series of SQL commands. # Meta description Formatting help as series of SQL commands. # Meta subject {command line} # Meta require {Tcl 8.5-} # Meta require debug # Meta require debug::caller | | | | | | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | # Meta platform tcl # Meta summary Formatting help as series of SQL commands. # Meta description Formatting help as series of SQL commands. # Meta subject {command line} # Meta require {Tcl 8.5-} # Meta require debug # Meta require debug::caller # Meta require {cmdr::help 1} # Meta require {cmdr::util 1} # @@ Meta End # # ## ### ##### ######## ############# ##################### ## Requisites package require Tcl 8.5 package require debug package require debug::caller package require cmdr::help 1 package require cmdr::util 1 # # ## ### ##### ######## ############# ##################### debug define cmdr/help/sql debug level cmdr/help/sql debug prefix cmdr/help/sql {[debug caller] | } |
︙ | ︙ |