Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | minor help text fix. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
65a8db6ae3e66216b64a0e887c37d23f |
| User & Date: | stephan 2012-03-11 10:56:31.053 |
Context
|
2012-03-11
| ||
| 18:26 | Further refinements to the help message that appears when Fossil is invoked with no arguments. ... (check-in: 93f48ce0cb user: drh tags: trunk) | |
| 10:56 | minor help text fix. ... (check-in: 65a8db6ae3 user: stephan tags: trunk) | |
|
2012-03-10
| ||
| 17:48 | Added /json/wiki/preview. ... (check-in: 0165fa184e user: stephan tags: trunk) | |
Changes
Changes to src/main.c.
| ︙ | ︙ | |||
445 446 447 448 449 450 451 |
zCmdName = "cgi";
g.isHTTP = 1;
}else if( argc<2 ){
fossil_print(
"Usage: %s COMMAND ...\n"
" or: %s help -- for a list of common commands\n"
" or: %s help COMMMAND -- for help with the named command\n"
| | | 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 |
zCmdName = "cgi";
g.isHTTP = 1;
}else if( argc<2 ){
fossil_print(
"Usage: %s COMMAND ...\n"
" or: %s help -- for a list of common commands\n"
" or: %s help COMMMAND -- for help with the named command\n"
" or: %s help commands -- for a list of all commands\n",
argv[0], argv[0], argv[0], argv[0]);
fossil_exit(1);
}else{
g.isHTTP = 0;
g.fQuiet = find_option("quiet", 0, 0)!=0;
g.fSqlTrace = find_option("sqltrace", 0, 0)!=0;
g.fSqlStats = find_option("sqlstats", 0, 0)!=0;
|
| ︙ | ︙ |