Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix last merge |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | repolist-theme |
Files: | files | file ages | folders |
SHA3-256: | 3fcd4e06d969abf6985aed731f15d7e9 |
User & Date: | milouse 2019-05-29 08:09:08 |
Context
2019-05-29
| ||
08:09 | Fix last merge Leaf check-in: 3fcd4e06d9 user: milouse tags: repolist-theme | |
07:43 | Merge last trunk check-in: ecc09e8683 user: milouse tags: repolist-theme | |
Changes
Changes to src/repolist.c.
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
*/ void repo_list_init_th1_vars(void){ Th_Store("nonce", style_nonce()); /* undefined when run via `fossil test-list-page */ if( g.zBaseURL ) { Th_Store("home", g.zTop); Th_Store("baseurl", g.zBaseURL); Th_Store("secureurl", login_wants_https_redirect() ? g.zHttpsURL : g.zBaseURL); }else{ Th_Store("home", "/"); Th_Store("baseurl", "/"); Th_Store("secureurl", "/"); } /* fixed values since not available in repolist's g.db */ Th_Store("title", "Fossil Repositories"); |
| |
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
*/ void repo_list_init_th1_vars(void){ Th_Store("nonce", style_nonce()); /* undefined when run via `fossil test-list-page */ if( g.zBaseURL ) { Th_Store("home", g.zTop); Th_Store("baseurl", g.zBaseURL); Th_Store("secureurl", fossil_wants_https(1) ? g.zHttpsURL : g.zBaseURL); }else{ Th_Store("home", "/"); Th_Store("baseurl", "/"); Th_Store("secureurl", "/"); } /* fixed values since not available in repolist's g.db */ Th_Store("title", "Fossil Repositories"); |