Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Add a terse explanation to the /skins page, and a link to /skins from the /sitemap. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
685c7d0581eff140ceccc8feb79a45a2 |
| User & Date: | drh 2021-01-27 21:12:02.275 |
Context
|
2021-01-28
| ||
| 01:01 | Allow multiple layers of /skn_X skin specifications at the beginning of the PATH_INFO. Use the last one. Skip over and discard all the others. check-in: 5af8a1a937 user: drh tags: trunk | |
|
2021-01-27
| ||
| 21:12 | Add a terse explanation to the /skins page, and a link to /skins from the /sitemap. check-in: 685c7d0581 user: drh tags: trunk | |
| 21:06 | Add the /skins webpage. check-in: d8ad5a2ec7 user: drh tags: trunk | |
Changes
Changes to src/sitemap.c.
| ︙ | ︙ | |||
258 259 260 261 262 263 264 265 266 267 268 269 270 271 |
@ <li>%z(href("%R/setup"))Administration Pages</a>
@ <ul>
@ <li>%z(href("%R/modreq"))Pending Moderation Requests</a></li>
@ <li>%z(href("%R/admin_log"))Admin log</a></li>
@ <li>%z(href("%R/cachestat"))Status of the web-page cache</a></li>
@ </ul></li>
}
@ <li>%z(href("%R/sitemap-test"))Test Pages</a></li>
if( isPopup ){
@ <li>%z(href("%R/sitemap"))Site Map</a></li>
}
@ </ul>
if( !isPopup ){
style_finish_page();
| > | 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
@ <li>%z(href("%R/setup"))Administration Pages</a>
@ <ul>
@ <li>%z(href("%R/modreq"))Pending Moderation Requests</a></li>
@ <li>%z(href("%R/admin_log"))Admin log</a></li>
@ <li>%z(href("%R/cachestat"))Status of the web-page cache</a></li>
@ </ul></li>
}
@ <li>%z(href("%R/skins"))Skins</a></li>
@ <li>%z(href("%R/sitemap-test"))Test Pages</a></li>
if( isPopup ){
@ <li>%z(href("%R/sitemap"))Site Map</a></li>
}
@ </ul>
if( !isPopup ){
style_finish_page();
|
| ︙ | ︙ |
Changes to src/skins.c.
| ︙ | ︙ | |||
1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 |
nBase -= strlen(zPattern)-1;
zBase[nBase] = 0;
}
fossil_free(zPattern);
}
login_check_credentials();
style_header("Skins");
@ <ul>
if( pAltSkin==0 && zAltSkinDir==0 && iDraftSkin==0 ){
@ <li> Standard skin for this repository ← <i>Currently in use</i>
}else{
@ <li> %z(href("%s/skins",zBase))Standard skin for this repository</a>
}
for(i=0; i<count(aBuiltinSkin); i++){
| > | 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 |
nBase -= strlen(zPattern)-1;
zBase[nBase] = 0;
}
fossil_free(zPattern);
}
login_check_credentials();
style_header("Skins");
@ <p>The following skins are available for this repository:</p>
@ <ul>
if( pAltSkin==0 && zAltSkinDir==0 && iDraftSkin==0 ){
@ <li> Standard skin for this repository ← <i>Currently in use</i>
}else{
@ <li> %z(href("%s/skins",zBase))Standard skin for this repository</a>
}
for(i=0; i<count(aBuiltinSkin); i++){
|
| ︙ | ︙ |
Changes to www/index.wiki.
| ︙ | ︙ | |||
26 27 28 29 30 31 32 |
In addition to doing [./concepts.wiki | distributed version control]
like Git and Mercurial,
Fossil also supports [./bugtheory.wiki | bug tracking],
[./wikitheory.wiki | wiki], [./forum.wiki | forum], [./chat.md | chat], and
[./event.wiki | technotes].
2. <b>Built-in Web Interface</b> -
| | < < | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
In addition to doing [./concepts.wiki | distributed version control]
like Git and Mercurial,
Fossil also supports [./bugtheory.wiki | bug tracking],
[./wikitheory.wiki | wiki], [./forum.wiki | forum], [./chat.md | chat], and
[./event.wiki | technotes].
2. <b>Built-in Web Interface</b> -
Fossil has a built-in, [/skins | themeable], [./serverext.wiki | extensible],
and intuitive [./webui.wiki | web interface]
with a rich variety of information pages
([./webpage-ex.md|examples]) promoting situational awareness.
<p>
This entire website is just a running instance of Fossil.
The pages you see here are all [./wikitheory.wiki | wiki] or
[./embeddeddoc.wiki | embedded documentation] or (in the case of
|
| ︙ | ︙ |