1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
|
Live themeing in a few steps
============================
- Copy the 'themes' directory from the sources to
$VDRCONFIG/plugins/live (default: /video/vdr/plugins/live)
- Go to setup page, select the desired theme from the list box.
You can add own themes by creating in themes a subdirectory with your
theme. Read further for more detailed information about themeing.
How to do Live themeing with CSS
================================
Live supports CSS themeing. While the structure and layout of the HTML
pages is given by the plugin, there is the possibility to change the
look through CSS and exchanged images.
Themable resources
------------------
CSS style sheets and referenced images are themeable. This means, a theme
can replace the colors in the its 'theme.css' style sheet as well as the
icons in the theme's 'img' directory.
Access scheme for the CSS style sheets
--------------------------------------
Each Live page requests at least three style sheets in the following
order:
1. 'styles.css' (the build-in style sheet) is requested.
2. The theme's master style sheet 'theme.css' is requested.
3. A site preferences style sheet is requested ('siteprefs.css')
Location for the style sheets
-----------------------------
The initial style sheet 'styles.css' provides a basic layout. It is a
built-in style sheet and can not be altered after Live is compiled and
installed.
The theme's style sheet 'theme.css' is requested through following URL:
themes/<themename>/css/theme.css
The site preference style sheet is requested through this URL:
css/siteprefs.css
Access scheme for themeable images
----------------------------------
All themeable images in the pages, that Live delivers to the browser are
accessed through the URL
themes/<themename>/img/<imagename>
If a image is not found under that URL, the image is searched in
img/<imagename>
And if not found there, an attempt to deliver a built-in image is taken.
Location of the resources in the file system
--------------------------------------------
All themeable content must be present in the directory specified by
'GetConfigDir'. At runtime, 'GetConfigDir' returns the position in
the file system where the plugin's configuration file is stored. The
location is build from the VDR config path appended with the plugin's
name (i.e., /var/lib/vdr/plugins/live). The themes are located in the
'themes' subdirectory of the above path.
Structure of a theme package
----------------------------
A theme provides distinct colors and icons for the display of the
various pages. The general page layout is defined by the global
style sheet 'styles.css', whereas a style sheet 'themes.css' just
provides the coloring.
A theme package consists of directory with the theme's name. It must
contain the subdirectories 'css' and 'img'. Under 'css' and 'img',
no other subdirectories are allowed for security reasons (see below).
In the subdirectory 'css', a style sheet 'theme.css' must exist for
defining color properties that are referenced by styles in 'styles.css'.
Additional images referenced through the style sheet and images
replacing the default images go to the 'img' subdirectory. Replacing
images must have the same name like the image to be replaced. Note
that icons should have a native dimension of 16x16 pixels for best
representation in the page layout, else they will be scaled to match.
The Live distribution comes with a few predefined theme packages. You
should look into them to better understand this structure.
Selecting a theme in Live
-------------------------
In the live setup page, the user can select the desired theme. When
the settings are saved, the selected theme becomes active. Live detects
the available themes dynamically by scanning the 'themes' directory in
plugin's config directory for available themes and creates the select
box from this information.
So, the installation of a new theme can easily be done by unpacking a
theme archive in the 'themes' directory. This assumes that the theme
archive follows the structure of a theme package as described above.
Security provisions
-------------------
Live will map every URL starting with themes/<themename>/css or
themes/<themename>/img to exactly these directories under the location
of the themes directory. This means that any path components after 'img'
or 'css' are discarded. Only the basename of the URL is appended to these
directories. This is to prevent possible malicious requests to other
locations in the file system by adding '..' to the requested path. The
downside of this is that a theme designer cannot make use of additional
directories below the 'img' and 'css' subdirectories.
User Contribution
=================
If you created a nice new look, you can provide it to us. We will try
to include it into the Live distribution.
If you need special HTML support for your styling needs, don't hesitate
to submit a suggestion.
|