Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Make timeline-plaintext the default for new repositories. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | ticket-enhancements |
| Files: | files | file ages | folders |
| SHA1: |
ae63f485715c09894345299a1f205f74 |
| User & Date: | drh 2012-11-23 23:00:42.976 |
Context
|
2012-11-23
| ||
| 23:25 | Display ticket titles as plaintext on the timeline. Provide a hyperlink to attachments on the timeline. check-in: c6a5efa12c user: drh tags: ticket-enhancements | |
| 23:00 | Make timeline-plaintext the default for new repositories. check-in: ae63f48571 user: drh tags: ticket-enhancements | |
| 22:29 | New and improved default ticket setup. check-in: 340040a8a5 user: drh tags: ticket-enhancements | |
Changes
Changes to src/db.c.
| ︙ | ︙ | |||
1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 |
" VALUES('server-code', lower(hex(randomblob(20))),now());"
"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);
user_select();
if( zTemplate ){
/*
** Copy all settings from the supplied template repository.
*/
| > > > | 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 |
" VALUES('server-code', lower(hex(randomblob(20))),now());"
"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);
if( !db_is_global("timeline-plaintext") ){
db_set_int("timeline-plaintext", 1, 0);
}
db_create_default_users(0, zDefaultUser);
user_select();
if( zTemplate ){
/*
** Copy all settings from the supplied template repository.
*/
|
| ︙ | ︙ |