Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Minor typo fix in a comment. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
8581e376c341a5985836ee4b3041ca38 |
| User & Date: | drh 2024-08-23 15:53:44.135 |
Context
|
2024-08-23
| ||
| 16:10 | More information about cookies on the /cookies page. check-in: 10949f5300 user: drh tags: trunk | |
| 15:53 | Minor typo fix in a comment. check-in: 8581e376c3 user: drh tags: trunk | |
| 15:42 | Improved instructions for setting a common captcha-secret across a login-group on the /setup_login_group page. check-in: 404f15501b user: drh tags: trunk | |
Changes
Changes to src/login.c.
| ︙ | ︙ | |||
842 843 844 845 846 847 848 |
@ for user <b>%h(g.zLogin)</b></p>
}
if( db_table_exists("repository","forumpost") ){
@ <hr><p>
@ <a href="%R/timeline?ss=v&y=f&vfx&u=%t(g.zLogin)">Forum
@ post timeline</a> for user <b>%h(g.zLogin)</b></p>
}
| > | | | | | > | 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 |
@ for user <b>%h(g.zLogin)</b></p>
}
if( db_table_exists("repository","forumpost") ){
@ <hr><p>
@ <a href="%R/timeline?ss=v&y=f&vfx&u=%t(g.zLogin)">Forum
@ post timeline</a> for user <b>%h(g.zLogin)</b></p>
}
}
@ <hr><p>
@ Select your preferred <a href="%R/skins">site skin</a>.
@ </p>
@ <hr><p>
@ Manage your <a href="%R/cookies">cookies</a>.</p>
if( login_is_individual() ){
if( g.perm.Password ){
char *zRPW = fossil_random_password(12);
@ <hr>
@ <p>Change Password for user <b>%h(g.zLogin)</b>:</p>
form_begin(0, "%R/login");
@ <table>
@ <tr><td class="form_label" id="oldpw">Old Password:</td>
|
| ︙ | ︙ |
Changes to src/skins.c.
| ︙ | ︙ | |||
1343 1344 1345 1346 1347 1348 1349 |
builtin_request_js("skin.js");
style_finish_page();
}
/*
** WEBPAGE: skins
**
| | | 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 |
builtin_request_js("skin.js");
style_finish_page();
}
/*
** WEBPAGE: skins
**
** Show a list of all of the built-in skins, plus the respository skin,
** and provide the user with an opportunity to change to any of them.
*/
void skins_page(void){
int i;
char *zBase = fossil_strdup(g.zTop);
size_t nBase = strlen(zBase);
login_check_credentials();
|
| ︙ | ︙ |