Differences From Artifact [950d48b3d9]:
- File src/skins.c — part of check-in [12333d9545] at 2015-01-22 01:43:04 on branch skins-refactor — Break out the various built-in skins into separate CSS, header, and footer text files stored under subfolders of the skins/ directory in the source tree. This should make it much easier to edit built-in skins and to add new built-in skins. (user: drh size: 7886) [more...]
To Artifact [a30c40f242]:
- File src/skins.c — part of check-in [51935f265a] at 2015-01-22 15:47:50 on branch trunk — Add Étienne Deparis's GitHub-like skin to the set of built-ins. (user: drh size: 7953)
| ︙ | |||
43 44 45 46 47 48 49 50 51 52 53 54 55 56 | 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | + |
} aBuiltinSkin[] = {
{ "Default", "default", 0 },
{ "Plain Gray, No Logo", "plain_gray", 0 },
{ "Khaki, No Logo", "khaki", 0 },
{ "Black & White, Menu on Left", "black_and_white", 0 },
{ "Shadow boxes & Rounded Corners", "rounded1", 0 },
{ "Enhanced Default", "enhanced1", 0 },
{ "Similar to GitHub", "etienne1", 0 },
};
/*
** For a skin named zSkinName, compute the name of the CONFIG table
** entry where that skin is stored and return it.
**
** Return NULL if zSkinName is NULL or an empty string.
|
| ︙ |