Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | fix formatting style as per https://fossil-scm.org/forum/forumpost/a711fb4fa0 |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
9769c4f756390a715df90e91c0f23eec |
| User & Date: | rdb 2022-01-15 07:15:58.923 |
Context
|
2022-01-15
| ||
| 13:58 | Cherrypicked [5fd1ca6f] (was checked in to wrong branch). check-in: 8d456a5b77 user: stephan tags: trunk | |
| 10:09 | Merged in trunk. check-in: d11cbb637b user: stephan tags: markdown-tagrefs | |
| 08:33 | tls: fixes fossil ssl-config load-cert --filename so that the cert and keys are combined and stored in the config table. fossil ui --tls and fossil server --tls now reads the certificate from the config table field ssl-cert. check-in: c2562490d4 user: rdb tags: tls-server-fix | |
| 07:15 | fix formatting style as per https://fossil-scm.org/forum/forumpost/a711fb4fa0 check-in: 9769c4f756 user: rdb tags: trunk | |
| 04:41 | ssl-config show typo fixes reported in [forum:/forumpost/dde10203ae3dfe36 | forum post dde10203ae3dfe36]. check-in: 2d3bee3b67 user: stephan tags: trunk | |
Changes
Changes to src/db.c.
| ︙ | ︙ | |||
2821 2822 2823 2824 2825 2826 2827 |
db_open_config(0, 0);
if( zTemplate ) db_attach(zTemplate, "settingSrc");
db_begin_transaction();
if( bUseSha1 ){
g.eHashPolicy = HPOLICY_SHA1;
db_set_int("hash-policy", HPOLICY_SHA1, 0);
}
| | | | 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 |
db_open_config(0, 0);
if( zTemplate ) db_attach(zTemplate, "settingSrc");
db_begin_transaction();
if( bUseSha1 ){
g.eHashPolicy = HPOLICY_SHA1;
db_set_int("hash-policy", HPOLICY_SHA1, 0);
}
if( zProjectName ) db_set("project-name", zProjectName, 0);
if( zProjectDesc ) db_set("project-description", zProjectDesc, 0);
if( zDate==0 ) zDate = "now";
db_initial_setup(zTemplate, zDate, zDefaultUser);
db_end_transaction(0);
if( zTemplate ) db_detach("settingSrc");
if( zProjectName ) fossil_print("project-name: %s\n", zProjectName);
if( zProjectDesc ) fossil_print("project-description: %s\n", zProjectDesc);
fossil_print("project-id: %s\n", db_get("project-code", 0));
|
| ︙ | ︙ |