Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Further refinements to the help message that appears when Fossil is invoked with no arguments. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
93f48ce0cb4cf56bd7a98ba8e064a2da |
| User & Date: | drh 2012-03-11 18:26:23.266 |
Context
|
2012-03-15
| ||
| 17:34 | Fix a typo on the Setup/Access page. ... (check-in: e67a77dfec user: drh tags: trunk) | |
|
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) | |
Changes
Changes to src/main.c.
| ︙ | ︙ | |||
444 445 446 447 448 449 450 |
if( fossil_getenv("GATEWAY_INTERFACE")!=0 && !find_option("nocgi", 0, 0)){
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"
| | < | | 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 |
if( fossil_getenv("GATEWAY_INTERFACE")!=0 && !find_option("nocgi", 0, 0)){
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",
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;
g.fSystemTrace = find_option("systemtrace", 0, 0)!=0;
|
| ︙ | ︙ |