Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Reviewed all Usage: messages for consistency and fixed a few where the fossil command was named in the call to usage(), causing the displayed usage to show the command name twice. Affected commands are bisect options, test-fileage, test-set-mtime, whatis, remote-url, and tag list. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
57f1eaecb80dcf27271d6bf380f71a03 |
| User & Date: | rberteig 2016-03-24 18:23:45.920 |
Context
|
2016-03-29
| ||
| 10:38 | Update the built-in SQLite to 3.12.0 final. check-in: 996705f5aa user: drh tags: trunk | |
|
2016-03-24
| ||
| 18:23 | Reviewed all Usage: messages for consistency and fixed a few where the fossil command was named in the call to usage(), causing the displayed usage to show the command name twice. Affected commands are bisect options, test-fileage, test-set-mtime, whatis, remote-url, and tag list. check-in: 57f1eaecb8 user: rberteig tags: trunk | |
|
2016-03-22
| ||
| 16:34 | Update the built-in SQLite to the second 3.12.0 beta. check-in: 314f194227 user: drh tags: trunk | |
Changes
Changes to src/bisect.c.
| ︙ | ︙ | |||
429 430 431 432 433 434 435 |
break;
}
}
if( i>=sizeof(aBisectOption)/sizeof(aBisectOption[0]) ){
fossil_fatal("no such bisect option: %s", g.argv[3]);
}
}else{
| | | 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 |
break;
}
}
if( i>=sizeof(aBisectOption)/sizeof(aBisectOption[0]) ){
fossil_fatal("no such bisect option: %s", g.argv[3]);
}
}else{
usage("options ?NAME? ?VALUE?");
}
}else if( strncmp(zCmd, "reset", n)==0 ){
db_multi_exec(
"DELETE FROM vvar WHERE name IN "
" ('bisect-good', 'bisect-bad', 'bisect-log')"
);
}else if( strcmp(zCmd, "ui")==0 ){
|
| ︙ | ︙ |
Changes to src/browse.c.
| ︙ | ︙ | |||
977 978 979 980 981 982 983 |
*/
void test_fileage_cmd(void){
int mid;
Stmt q;
const char *zGlob = find_option("glob",0,1);
db_find_and_open_repository(0,0);
verify_all_options();
| | | 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 |
*/
void test_fileage_cmd(void){
int mid;
Stmt q;
const char *zGlob = find_option("glob",0,1);
db_find_and_open_repository(0,0);
verify_all_options();
if( g.argc!=3 ) usage("CHECKIN");
mid = name_to_typed_rid(g.argv[2],"ci");
compute_fileage(mid, zGlob);
db_prepare(&q,
"SELECT fid, mid, julianday('now') - mtime, pathname"
" FROM fileage"
);
while( db_step(&q)==SQLITE_ROW ){
|
| ︙ | ︙ |
Changes to src/file.c.
| ︙ | ︙ | |||
517 518 519 520 521 522 523 |
** Sets the mtime of the named file to the date/time shown.
*/
void test_set_mtime(void){
const char *zFile;
char *zDate;
i64 iMTime;
if( g.argc!=4 ){
| | | 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 |
** Sets the mtime of the named file to the date/time shown.
*/
void test_set_mtime(void){
const char *zFile;
char *zDate;
i64 iMTime;
if( g.argc!=4 ){
usage("FILENAME DATE/TIME");
}
db_open_or_attach(":memory:", "mem", 0);
iMTime = db_int64(0, "SELECT strftime('%%s',%Q)", g.argv[3]);
zFile = g.argv[2];
file_set_mtime(zFile, iMTime);
iMTime = file_wd_mtime(zFile);
zDate = db_text(0, "SELECT datetime(%lld, 'unixepoch')", iMTime);
|
| ︙ | ︙ |
Changes to src/name.c.
| ︙ | ︙ | |||
688 689 690 691 692 693 694 |
db_find_and_open_repository(0,0);
verboseFlag = find_option("verbose","v",0)!=0;
zType = find_option("type",0,1);
/* We should be done with options.. */
verify_all_options();
| | | 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 |
db_find_and_open_repository(0,0);
verboseFlag = find_option("verbose","v",0)!=0;
zType = find_option("type",0,1);
/* We should be done with options.. */
verify_all_options();
if( g.argc<3 ) usage("NAME ...");
for(i=2; i<g.argc; i++){
zName = g.argv[i];
if( i>2 ) fossil_print("%.79c\n",'-');
rid = symbolic_name_to_rid(zName, zType);
if( rid<0 ){
Stmt q;
int cnt = 0;
|
| ︙ | ︙ |
Changes to src/sync.c.
| ︙ | ︙ | |||
314 315 316 317 318 319 320 |
char *zUrl;
db_find_and_open_repository(0, 0);
/* We should be done with options.. */
verify_all_options();
if( g.argc!=2 && g.argc!=3 ){
| | | 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 |
char *zUrl;
db_find_and_open_repository(0, 0);
/* We should be done with options.. */
verify_all_options();
if( g.argc!=2 && g.argc!=3 ){
usage("?URL|off?");
}
if( g.argc==3 ){
db_unset("last-sync-url", 0);
db_unset("last-sync-pw", 0);
db_unset("http-auth", 0);
if( is_false(g.argv[2]) ) return;
url_parse(g.argv[2], URL_REMEMBER|URL_PROMPT_PW|URL_ASK_REMEMBER_PW);
|
| ︙ | ︙ |
Changes to src/tag.c.
| ︙ | ︙ | |||
518 519 520 521 522 523 524 |
fossil_print("%s=%s\n", zName, zValue);
}else{
fossil_print("%s\n", zName);
}
}
db_finalize(&q);
}else{
| | | 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 |
fossil_print("%s=%s\n", zName, zValue);
}else{
fossil_print("%s\n", zName);
}
}
db_finalize(&q);
}else{
usage("list ?CHECK-IN?");
}
}else
{
goto tag_cmd_usage;
}
/* Cleanup */
|
| ︙ | ︙ |