diff options
author | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-05-31 23:44:01 +0000 |
---|---|---|
committer | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2007-05-31 23:44:01 +0000 |
commit | 4bb2cc172549bcf9f86a94e5d3d0d5ade5f91dfe (patch) | |
tree | 1594cf050f0f23da64c41b02d739a9e4e1808e21 /doc | |
parent | 5d74b90e216827453c87eeb0addae5bb081c40f5 (diff) | |
download | vdr-plugin-live-4bb2cc172549bcf9f86a94e5d3d0d5ade5f91dfe.tar.gz vdr-plugin-live-4bb2cc172549bcf9f86a94e5d3d0d5ade5f91dfe.tar.bz2 |
- Added doc/ChangeLog
- Added doc/css-themeing.txt
- Implemented support for site wide style overrides. Fixes Bug #339
- Updated all pages to use the override mechanism.
- Added needed files to Makefile
- Introduced USRDIR configuration variable to Makefile.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ChangeLog | 13 | ||||
-rw-r--r-- | doc/css-themeing.txt | 27 |
2 files changed, 40 insertions, 0 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog new file mode 100644 index 0000000..e1f3988 --- /dev/null +++ b/doc/ChangeLog @@ -0,0 +1,13 @@ +2007-06-01 Dieter Hametner <dh+vdr@gekrumbel.de> + + These changes fix bug entry #339 + * css-themeing.txt: describe how to do css themeing. + * content.ecpp: + - check for additional parameter and use it as mime + type. + - use compile time variable USRDIR for path to the files + loaded via content.ecpp + * pageelems.ecpp: link to css/siteprefs.css + * pages/*.ecpp: changed style link to pageelems.stylesheet + component. + * tntconfig.cpp: added MapUrl for css<something>/cssfile.
\ No newline at end of file diff --git a/doc/css-themeing.txt b/doc/css-themeing.txt new file mode 100644 index 0000000..be84e26 --- /dev/null +++ b/doc/css-themeing.txt @@ -0,0 +1,27 @@ +How to do live theming with CSS. +================================ + +Live supports CSS theming. While the structure of the html pages is +given by the plugin, there is the possibility to change the look +through CSS. + +Currently a predefined, compiled into the plugin stylesheet 'styles.css' is +delivered first. Then a stylesheet 'css/siteprefs.css' is sent to the +browser. 'css/siteprefs.css' is a normal file that is found in +USRDIR. The default of USRDIR is /usr/share/vdr-plugin-live. This +can be changed at compile time by setting the USRDIR variable +(i.E. USRDIR=/tmp/live make) + +One of the next steps will be a mechanism to select additional style +files and images through a theme setting in vdr. The different themes +will be also located in theme related subdirs beneath USRDIR. + + +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. |