Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix error on "/dir" page: "SQLITE_ERROR: no such table: main.vfile" |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
d38f204d3b02815ad648988d28d56cfa |
| User & Date: | joel 2013-04-22 03:50:55.826 |
Context
|
2013-04-23
| ||
| 08:40 | Add --limit as alias to --count in "fossil timeline" for consistancy with other commands. Add many short options, like "-a" for "--all" and "-c" for "--closed" (The JSON part already had those) ... (check-in: 8b17c2360a user: jan.nijtmans tags: trunk) | |
|
2013-04-22
| ||
| 12:29 | Merge with trunk, and fix a bug crept in the previous commit ... (check-in: 0ae51a20a0 user: ashish tags: ashish-ipv6) | |
| 03:50 | Fix error on "/dir" page: "SQLITE_ERROR: no such table: main.vfile" ... (check-in: d38f204d3b user: joel tags: trunk) | |
| 01:33 | Add class hooks to "/dir" pages to allow for filetype-specific styling. ... (check-in: 7ccbf6ee66 user: joel tags: trunk) | |
Changes
Changes to src/add.c.
| ︙ | ︙ | |||
399 400 401 402 403 404 405 406 |
}
#else
caseSensitive = 1; /* Unix */
#endif
caseSensitive = db_get_boolean("case-sensitive",caseSensitive);
}
if( !caseSensitive ){
db_multi_exec(
| > | | > | 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 |
}
#else
caseSensitive = 1; /* Unix */
#endif
caseSensitive = db_get_boolean("case-sensitive",caseSensitive);
}
if( !caseSensitive ){
db_must_be_within_tree();
db_multi_exec(
"CREATE INDEX IF NOT EXISTS %s.vfile_nocase "
" ON vfile(pathname COLLATE nocase)",
db_name("localdb")
);
}
}
return caseSensitive;
}
/*
|
| ︙ | ︙ |