Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Build fix |
|---|---|
| Timelines: | family | ancestors | descendants | both | cleanX-no-clean-glob |
| Files: | files | file ages | folders |
| SHA1: |
4f4bb9fd0256849a9e6756abaf51365c |
| User & Date: | jan.nijtmans 2015-02-24 05:50:00.000 |
Context
|
2015-02-24
| ||
| 06:40 | Let -x imply --emptydirs and --dotfiles check-in: 8c3e6404b0 user: jan.nijtmans tags: cleanX-no-clean-glob | |
| 05:50 | Build fix check-in: 4f4bb9fd02 user: jan.nijtmans tags: cleanX-no-clean-glob | |
| 04:40 | Merge cleanX check-in: c4750a1e85 user: jan.nijtmans tags: cleanX-no-clean-glob | |
Changes
Changes to src/main.c.
| ︙ | ︙ | |||
1423 1424 1425 1426 1427 1428 1429 |
int n = 0;
assert( g.db==0 );
blob_init(&base, g.zRepositoryName, -1);
sqlite3_open(":memory:", &g.db);
db_multi_exec("CREATE TABLE sfile(x TEXT);");
db_multi_exec("CREATE TABLE vfile(pathname);");
| | | 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 |
int n = 0;
assert( g.db==0 );
blob_init(&base, g.zRepositoryName, -1);
sqlite3_open(":memory:", &g.db);
db_multi_exec("CREATE TABLE sfile(x TEXT);");
db_multi_exec("CREATE TABLE vfile(pathname);");
vfile_scan(&base, blob_size(&base), 0, 0);
db_multi_exec("DELETE FROM sfile WHERE x NOT GLOB '*.fossil'");
n = db_int(0, "SELECT count(*) FROM sfile");
if( n>0 ){
Stmt q;
@ <h1>Available Repositories:</h1>
@ <ol>
db_prepare(&q, "SELECT x, substr(x,-7,-100000)||'/home'"
|
| ︙ | ︙ |