Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Improvements to the way that the CSS URL is generated. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
8298f4e360104dcabc418569d88047de |
| User & Date: | drh 2015-10-05 17:41:02.914 |
Context
|
2015-10-07
| ||
| 17:31 | Update the built-in SQLite to the first 3.8.12 beta. ... (check-in: b4b551aa66 user: drh tags: trunk) | |
|
2015-10-05
| ||
| 17:41 | Improvements to the way that the CSS URL is generated. ... (check-in: 8298f4e360 user: drh tags: trunk) | |
| 13:15 | Enhancements to the /timewarps page. ... (check-in: c9b0b7cacb user: drh tags: trunk) | |
Changes
Changes to src/style.c.
| ︙ | ︙ | |||
358 359 360 361 362 363 364 |
*/
static void url_var(
const char *zVarPrefix,
const char *zConfigName,
const char *zPageName
){
char *zVarName = mprintf("%s_url", zVarPrefix);
| | | 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 |
*/
static void url_var(
const char *zVarPrefix,
const char *zConfigName,
const char *zPageName
){
char *zVarName = mprintf("%s_url", zVarPrefix);
char *zUrl = mprintf("%R/%s?id=%x", zPageName,
skin_id(zConfigName));
Th_Store(zVarName, zUrl);
free(zUrl);
free(zVarName);
}
/*
|
| ︙ | ︙ |