Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Improved documentation of the repolist-skin setting. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
02bdcf5e9f71d7f560902da675f303da |
| User & Date: | drh 2019-07-29 20:02:01.678 |
Context
|
2019-07-30
| ||
| 10:28 | Restore the full CGI extension documentation that was somehow truncated by an earlier commit. check-in: 4130a22cee user: drh tags: trunk | |
| 01:17 | Merge in updates from trunk. check-in: 7e7258b3ed user: andybradford tags: test-updates | |
|
2019-07-29
| ||
| 20:02 | Improved documentation of the repolist-skin setting. check-in: 02bdcf5e9f user: drh tags: trunk | |
| 18:17 | When doing a repository list, use the first repository that has a non-zero value for the "repolist-skin" setting as the skin for the list. If the "repolist-skin" setting is 2 and if the repository list is coming from a directory scan, the omit that repository from the list. All repositories are always shown, regardless of the "repolist-skin" setting for a "fossil all ui" or "fossil all server" generated repository list. check-in: 8f5399bc7b user: drh tags: trunk | |
Changes
Changes to src/db.c.
| ︙ | ︙ | |||
3422 3423 3424 3425 3426 3427 3428 | ** SETTING: repo-cksum boolean default=on ** Compute checksums over all files in each checkout as a double-check ** of correctness. Disable this on large repositories for a performance ** improvement. */ /* ** SETTING: repolist-skin width=2 default=0 | | | | > > > > > | > > > > > > > > > | 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 |
** SETTING: repo-cksum boolean default=on
** Compute checksums over all files in each checkout as a double-check
** of correctness. Disable this on large repositories for a performance
** improvement.
*/
/*
** SETTING: repolist-skin width=2 default=0
** If non-zero then use this repository as the skin for a repository list
** such as created by the one of:
**
** 1) fossil server DIRECTORY --repolist
** 2) fossil ui DIRECTORY --repolist
** 3) fossil http DIRECTORY --repolist
** 4) (The "repolist" option in a CGI script)
** 5) fossil all ui
** 6) fossil all server
**
** All repositories are searched (in lexicographical order) and the first
** repository with a non-zero "repolist-skin" value is used as the skin
** for the repository list page. If none of the repositories on the list
** have a non-zero "repolist-skin" setting then the repository list is
** displayed using unadorned HTML ("skinless").
**
** If repolist-skin has a value of 2, then the repository is omitted from
** the list in use cases 1 through 4, but not for 5 and 6.
*/
/*
** SETTING: self-register boolean default=off
** Allow users to register themselves through the HTTP UI.
** This is useful if you want to see other names than
** "Anonymous" in e.g. ticketing system. On the other hand
** users can not be deleted.
|
| ︙ | ︙ |
Changes to www/changes.wiki.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<title>Change Log</title>
<a name='v2_10'></a>
<h2>Changes for Version 2.10 (pending)</h2>
* Added support for [./serverext.wiki|CGI-based Server Extensions].
* Enhance the hierarchical display of Forum threads to do less
indentation and to provide links back to the previous message
in the thread. Provide sequential numbers for all messages in
a forum thread.
* Change the default [./hashpolicy.wiki|hash policy] to SHA3.
* Documentation improvements
| > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<title>Change Log</title>
<a name='v2_10'></a>
<h2>Changes for Version 2.10 (pending)</h2>
* Added support for [./serverext.wiki|CGI-based Server Extensions].
* Added the [/help?cmd=repolist-skin|repolist-skin] setting used to
add style to repository list pages.
* Enhance the hierarchical display of Forum threads to do less
indentation and to provide links back to the previous message
in the thread. Provide sequential numbers for all messages in
a forum thread.
* Change the default [./hashpolicy.wiki|hash policy] to SHA3.
* Documentation improvements
|
| ︙ | ︙ |