849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
|
}else{
@ <li>%s(z)</li>
}
}
@ </ul></div>
}
style_finish_page("help");
}
/*
** WEBPAGE: test-all-help
**
** Show all help text on a single page. Useful for proof-reading.
*/
|
|
|
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
|
}else{
@ <li>%s(z)</li>
}
}
@ </ul></div>
}
style_finish_page();
}
/*
** WEBPAGE: test-all-help
**
** Show all help text on a single page. Useful for proof-reading.
*/
|
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
|
@ <dt><big><b>%s(aCommand[i].zName)</b></big> (%s(zDesc))</dt>
@ <dd>
help_to_html(aCommand[i].zHelp, cgi_output_blob());
@ </dd>
}
@ </dl>
blob_reset(&buf);
style_finish_page("help");
}
static void multi_column_list(const char **azWord, int nWord){
int i, j, len;
int mxLen = 0;
int nCol;
int nRow;
|
|
|
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
|
@ <dt><big><b>%s(aCommand[i].zName)</b></big> (%s(zDesc))</dt>
@ <dd>
help_to_html(aCommand[i].zHelp, cgi_output_blob());
@ </dd>
}
@ </dl>
blob_reset(&buf);
style_finish_page();
}
static void multi_column_list(const char **azWord, int nWord){
int i, j, len;
int mxLen = 0;
int nCol;
int nRow;
|