Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch ticket-1038e224fa Excluding Merge-Ins
This is equivalent to a diff from d27cddf17c to 9f3622b22a
|
2012-11-27
| ||
| 13:15 | Make the --admin-user for the "init" command also be the login user. Ticket [1038e224fa3956] check-in: 4eb637fd25 user: drh tags: trunk | |
| 12:10 | merge trunk check-in: 2e1f2e69d5 user: jan.nijtmans tags: improve_commit_warning | |
| 11:26 | merge trunk check-in: 71cd228b0e user: jan.nijtmans tags: ticket-d17d6e5b17 | |
| 11:10 | Suggested fix for [1038e224fa] Closed-Leaf check-in: 9f3622b22a user: jan.nijtmans tags: ticket-1038e224fa | |
| 09:46 | merge trunk check-in: 35f5c40c72 user: jan.nijtmans tags: convert_before_commit_v2 | |
| 09:42 | blob_to_utf8_no_bom(): the starts_with_utf16(le|be)_bom calls were swapped. check-in: d27cddf17c user: jan.nijtmans tags: trunk | |
| 00:23 | Assume that the NetSurf browser is operated by a human. check-in: 77cd6e0dfb user: drh tags: trunk | |
Changes to src/db.c.
| ︙ | |||
1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 | 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 | + + + |
"INSERT INTO config(name,value,mtime)"
" VALUES('project-code', lower(hex(randomblob(20))),now());"
);
}
if( !db_is_global("autosync") ) db_set_int("autosync", 1, 0);
if( !db_is_global("localauth") ) db_set_int("localauth", 0, 0);
db_create_default_users(0, zDefaultUser);
if (zDefaultUser){
g.zLogin = zDefaultUser;
}
user_select();
if( zTemplate ){
/*
** Copy all settings from the supplied template repository.
*/
db_multi_exec(
|
| ︙ |