Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Remove "Testpage:" from title of all-in-one help text page |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
d8506df183ea1dbdc1990869486e7d5d |
User & Date: | andygoth 2016-11-05 14:07:10 |
Context
2016-11-05
| ||
14:10 | Cherrypick timeline help text updates from [5703ccb2e0] check-in: 9807c1da user: andygoth tags: trunk | |
14:07 | Remove "Testpage:" from title of all-in-one help text page check-in: d8506df1 user: andygoth tags: trunk | |
14:04 | Replace Show/Hide Cookies in test_env page with a checkbox check-in: 7814e9b5 user: andygoth tags: trunk | |
Changes
Changes to src/dispatch.c.
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 |
/*
** WEBPAGE: test-all-help
**
** Show all help text on a single page. Useful for proof-reading.
*/
void test_all_help_page(void){
int i;
style_header("Testpage: All Help Text");
for(i=0; i<MX_COMMAND; i++){
if( memcmp(aCommand[i].zName, "test", 4)==0 ) continue;
@ <h2>%s(aCommand[i].zName):</h2>
@ <blockquote>
help_to_html(aCommand[i].zHelp, cgi_output_blob());
@ </blockquote>
}
|
| |
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 |
/* ** WEBPAGE: test-all-help ** ** Show all help text on a single page. Useful for proof-reading. */ void test_all_help_page(void){ int i; style_header("All Help Text"); for(i=0; i<MX_COMMAND; i++){ if( memcmp(aCommand[i].zName, "test", 4)==0 ) continue; @ <h2>%s(aCommand[i].zName):</h2> @ <blockquote> help_to_html(aCommand[i].zHelp, cgi_output_blob()); @ </blockquote> } |