Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Give user "nobody" clone permission by default. This change requested on the mailing list. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
479a2fe0f765cfb3176cb1d59d432c4f |
| User & Date: | drh 2011-01-18 19:09:43.490 |
Context
|
2011-01-18
| ||
| 20:47 | Preserve timestamps across an "update" to reduce I/O on the next "status". Ticket [809a9612055340d06]. check-in: ffe1b60a36 user: drh tags: trunk | |
| 19:09 | Give user "nobody" clone permission by default. This change requested on the mailing list. check-in: 479a2fe0f7 user: drh tags: trunk | |
| 18:58 | Add --host and --https options to the http command. Ticket [0ffa37e70e885cfc]. check-in: ff0e506e42 user: drh tags: trunk | |
Changes
Changes to src/db.c.
| ︙ | ︙ | |||
1044 1045 1046 1047 1048 1049 1050 |
db_multi_exec(
"INSERT INTO user(login, pw, cap, info)"
"VALUES(%Q,lower(hex(randomblob(3))),'s','')", zUser
);
if( !setupUserOnly ){
db_multi_exec(
"INSERT INTO user(login,pw,cap,info)"
| | | | 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 |
db_multi_exec(
"INSERT INTO user(login, pw, cap, info)"
"VALUES(%Q,lower(hex(randomblob(3))),'s','')", zUser
);
if( !setupUserOnly ){
db_multi_exec(
"INSERT INTO user(login,pw,cap,info)"
" VALUES('anonymous',hex(randomblob(8)),'hmncz','Anon');"
"INSERT INTO user(login,pw,cap,info)"
" VALUES('nobody','','gjor','Nobody');"
"INSERT INTO user(login,pw,cap,info)"
" VALUES('developer','','dei','Dev');"
"INSERT INTO user(login,pw,cap,info)"
" VALUES('reader','','kptw','Reader');"
);
}
}
|
| ︙ | ︙ |