Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Include name of command or page in help title |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9b15ec0d6c4f4d329d997d4e90698625 |
User & Date: | andygoth 2016-11-05 14:15:55.541 |
Context
2016-11-05
| ||
14:17 | Ignore empty command name in help page so that /help/ is treated the same as /help ... (check-in: e237cea4 user: andygoth tags: trunk) | |
14:15 | Include name of command or page in help title ... (check-in: 9b15ec0d user: andygoth tags: trunk) | |
14:12 | Remove "Command-line" from name of help page which documents web pages as well as commands ... (check-in: ccd4ca87 user: andygoth tags: trunk) | |
Changes
Changes to src/dispatch.c.
︙ | ︙ | |||
231 232 233 234 235 236 237 | ** Show the built-in help text for CMD. CMD can be a command-line interface ** command or a page name from the web interface. */ void help_page(void){ const char *zCmd = P("cmd"); if( zCmd==0 ) zCmd = P("name"); | < > > | 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 | ** Show the built-in help text for CMD. CMD can be a command-line interface ** command or a page name from the web interface. */ void help_page(void){ const char *zCmd = P("cmd"); if( zCmd==0 ) zCmd = P("name"); if( zCmd ){ int rc; const CmdOrPage *pCmd = 0; style_header("Help: %s", zCmd); style_submenu_element("Command-List", "%s/help", g.zTop); if( *zCmd=='/' ){ /* Some of the webpages require query parameters in order to work. ** @ <h1>The "<a href='%R%s(zCmd)'>%s(zCmd)</a>" page:</h1> */ @ <h1>The "%s(zCmd)" page:</h1> }else{ |
︙ | ︙ | |||
260 261 262 263 264 265 266 267 268 269 270 271 272 273 | @ <blockquote> help_to_html(pCmd->zHelp, cgi_output_blob()); @ </blockquote> } } }else{ int i, j, n; @ <h1>Available commands:</h1> @ <table border="0"><tr> for(i=j=0; i<MX_COMMAND; i++){ const char *z = aCommand[i].zName; if( '/'==*z || strncmp(z,"test",4)==0 ) continue; j++; | > > | 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 | @ <blockquote> help_to_html(pCmd->zHelp, cgi_output_blob()); @ </blockquote> } } }else{ int i, j, n; style_header("Help"); @ <h1>Available commands:</h1> @ <table border="0"><tr> for(i=j=0; i<MX_COMMAND; i++){ const char *z = aCommand[i].zName; if( '/'==*z || strncmp(z,"test",4)==0 ) continue; j++; |
︙ | ︙ |