xmltv2html 0.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/COPYING +99 -0
- data/ChangeLog +776 -0
- data/README +41 -0
- data/bin/xmltv2html.rb +1155 -0
- data/contrib/README +3 -0
- data/contrib/kvh/generate_html +68 -0
- data/contrib/kvh/tvlistings +15 -0
- data/contrib/kvh/tvlistings_index +82 -0
- data/contrib/kvh/update-tvlistings +136 -0
- data/popup.js +227 -0
- data/xmltv2html.css +75 -0
- data/xmltv2htmlrc +102 -0
- metadata +64 -0
data/README
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
WHAT IS IT?
|
4
|
+
-----------
|
5
|
+
|
6
|
+
xmltv2html is a Ruby script that transforms the output of XMLTV into HTML.
|
7
|
+
This is different from other XMLTV -> HTML programs in that the times
|
8
|
+
are on the horizontal axis and the channels on the vertical axis.
|
9
|
+
|
10
|
+
http://kurt.hindenburg.name/projects/xmltv2html/xmltv2html.html
|
11
|
+
|
12
|
+
XMLTV : http://sourceforge.net/projects/xmltv
|
13
|
+
RUBY : http://www.ruby-lang.org/en/
|
14
|
+
REXML : http://www.germane-software.com/software/rexml
|
15
|
+
|
16
|
+
|
17
|
+
INSTALLATION
|
18
|
+
------------
|
19
|
+
|
20
|
+
Please see the INSTALL file for details of how to install xmltv2html.
|
21
|
+
|
22
|
+
|
23
|
+
USAGE
|
24
|
+
-----
|
25
|
+
|
26
|
+
% xmltv2html.rb < xmltv-output.xml > listing.html
|
27
|
+
% xmltv2html.rb --help
|
28
|
+
|
29
|
+
Please see the man page or HTML documentation for more details.
|
30
|
+
|
31
|
+
|
32
|
+
LICENCE
|
33
|
+
-------
|
34
|
+
|
35
|
+
This program is free software; you can redistribute it and/or modify
|
36
|
+
it under the terms of the GNU General Public License as published by
|
37
|
+
the Free Software Foundation; either version 2, or (at your option)
|
38
|
+
any later version.
|
39
|
+
|
40
|
+
Please see the file COPYING for the terms of the licence.
|
41
|
+
|