Differences From:
File
src/info.c
part of check-in
[53f04b180c]
- Change the date markers in file info pages to use the same CSS tags as
the timeline.
by
drh on
2009-08-11 15:14:22.
[view]
To:
File
src/info.c
part of check-in
[00ac7945a9]
- Disconnect the global configuration database in ~/.fossil from the
respository database in most cases. This allows multiple "sync" or
"commit" operations to be running on different repositories at the same time.
by
drh on
2009-08-13 14:27:24.
[view]
@@ -98,9 +98,9 @@
if( g.argc!=2 && g.argc!=3 ){
usage("?FILENAME|ARTIFACT-ID?");
}
if( g.argc==3 && (fsize = file_size(g.argv[2]))>0 && (fsize&0x1ff)==0 ){
- db_open_config();
+ db_open_config(0);
db_record_repository_filename(g.argv[2]);
db_open_repository(g.argv[2]);
printf("project-code: %s\n", db_get("project-code", "<none>"));
printf("project-name: %s\n", db_get("project-name", "<unnamed>"));