xmltv2html 0.6.0 → 0.6.1

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.
Files changed (3) hide show
  1. data/ChangeLog +64 -0
  2. data/bin/xmltv2html.rb +9 -6
  3. metadata +2 -2
data/ChangeLog CHANGED
@@ -1,4 +1,68 @@
1
1
  ------------------------------------------------------------------------
2
+ r170 | kvh | 2005-12-21 13:41:03 -0500 (Wed, 21 Dec 2005) | 1 line
3
+ Changed paths:
4
+ M /trunk/bin/xmltv2html.rb
5
+ M /trunk/xmltv2html.gemspec
6
+
7
+ release 0.6.1
8
+ ------------------------------------------------------------------------
9
+ r169 | kvh | 2005-12-21 12:57:39 -0500 (Wed, 21 Dec 2005) | 1 line
10
+ Changed paths:
11
+ M /trunk/bin/xmltv2html.rb
12
+
13
+ fix URLS
14
+ ------------------------------------------------------------------------
15
+ r168 | kvh | 2005-12-21 12:44:14 -0500 (Wed, 21 Dec 2005) | 1 line
16
+ Changed paths:
17
+ A /trunk/files/xmltv2htmlrc.displayday
18
+ A /trunk/files/xmltv2htmlrc.oddchannelinterval
19
+ A /trunk/files/xmltv2htmlrc.oddtimeinterval
20
+ A /trunk/files/xmltv2htmlrc.outputlinks
21
+
22
+ add new tests
23
+ ------------------------------------------------------------------------
24
+ r167 | kvh | 2005-12-21 12:44:06 -0500 (Wed, 21 Dec 2005) | 1 line
25
+ Changed paths:
26
+ M /trunk/testing.sh
27
+
28
+ add new tests
29
+ ------------------------------------------------------------------------
30
+ r166 | kvh | 2005-12-20 14:51:48 -0500 (Tue, 20 Dec 2005) | 1 line
31
+ Changed paths:
32
+ A /trunk/files/xmltv2htmlrc.nomarkup
33
+ M /trunk/testing.sh
34
+
35
+ add test for nomarkup
36
+ ------------------------------------------------------------------------
37
+ r165 | kvh | 2005-12-20 14:44:32 -0500 (Tue, 20 Dec 2005) | 1 line
38
+ Changed paths:
39
+ A /trunk/files/xmltv2htmlrc.favorites
40
+ A /trunk/files/xmltv2htmlrc.favorites.output
41
+ A /trunk/files/xmltv2htmlrc.nochannelinterval
42
+ A /trunk/files/xmltv2htmlrc.nochanneltimeinterval
43
+ A /trunk/files/xmltv2htmlrc.notimeinterval
44
+ A /trunk/testing.sh
45
+
46
+ add testing script/rcs
47
+ ------------------------------------------------------------------------
48
+ r164 | kvh | 2005-12-20 14:44:00 -0500 (Tue, 20 Dec 2005) | 1 line
49
+ Changed paths:
50
+ M /trunk/bin/xmltv2html.rb
51
+
52
+ fix when times_interval == 0
53
+ ------------------------------------------------------------------------
54
+ r163 | kvh | 2005-12-17 18:51:26 -0500 (Sat, 17 Dec 2005) | 1 line
55
+ Changed paths:
56
+ D /trunk/create_rc
57
+
58
+ remove unused file
59
+ ------------------------------------------------------------------------
60
+ r162 | kvh | 2005-12-17 18:51:00 -0500 (Sat, 17 Dec 2005) | 1 line
61
+ Changed paths:
62
+ M /trunk/make_distribution_files
63
+
64
+ correct saving files to depot
65
+ ------------------------------------------------------------------------
2
66
  r161 | kvh | 2005-12-17 17:49:07 -0500 (Sat, 17 Dec 2005) | 1 line
3
67
  Changed paths:
4
68
  M /trunk/INSTALL
data/bin/xmltv2html.rb CHANGED
@@ -3,7 +3,7 @@
3
3
  #
4
4
  # xmltv2html.rb - A Ruby script to transform the XMLTV output into HTML.
5
5
  #
6
- # Version : 0.6.0
6
+ # Version : 0.6.1
7
7
  # Author : Kurt V. Hindenburg <public@kurt.hindenburg.name>
8
8
  #
9
9
  # Copyright (C) 2003, 2004, 2005 Kurt V. Hindenburg
@@ -61,7 +61,7 @@ Written by Kurt V. Hindenburg <public@kurt.hindenburg.name>
61
61
  * xmltv2html.css - An optional CSS file used in the HTML output.
62
62
  * xmltv2htmlrc - An optional configuration file.
63
63
  = SEE ALSO
64
- * ((<"xmltv2html.rb home page - http://kurt.hindenburg.name/projects/xmltv2html"|URL:http://kurt.hindenburg.name/projects/xmltv2html>))
64
+ * ((<"xmltv2html.rb home page - http://xmltv2html.rubyforge.org/"|URL:http://xmltv2html.rubyforge.org/>))
65
65
  * ((<"xmltv home page - http://sourceforge.net/projects/xmltv"|URL:http://sourceforge.net/projects/xmltv>))
66
66
  * ((<"REXML home page - http://www.germane-software.com/software/rexml"|URL:http://www.germane-software.com/software/rexml>))
67
67
  = BUGS
@@ -77,8 +77,8 @@ require 'time'
77
77
  require 'set'
78
78
 
79
79
 
80
- XMLTV2HTML_VERSION="0.6.0"
81
- XMLTV2HTML_DATE="Dec 18, 2005"
80
+ XMLTV2HTML_VERSION="0.6.1"
81
+ XMLTV2HTML_DATE="Dec 21, 2005"
82
82
 
83
83
  class Time
84
84
  class << self
@@ -864,7 +864,10 @@ class XMLTV2HTML2
864
864
  i += 1
865
865
  }
866
866
  @out.outputChannelEnd
867
- @out.table_times if times_counter % @@options['times_interval'] == 0
867
+ if @@options['times_interval'] > 0 and
868
+ ((times_counter % @@options['times_interval']) == 0)
869
+ @out.table_times
870
+ end
868
871
  times_counter += 1
869
872
  }
870
873
 
@@ -1208,7 +1211,7 @@ class Html
1208
1211
  # print 'Links: '
1209
1212
  print '<a class="links" href="http://sourceforge.net/projects/xmltv">xmltv</a>'
1210
1213
  nl
1211
- print '<a class="links" href="http://kurt.hindenburg.name">xmltv2html</a>'
1214
+ print '<a class="links" href="http://xmltv2html.rubyforge.org/">xmltv2html</a>'
1212
1215
  nl
1213
1216
  end
1214
1217
 
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.11
3
3
  specification_version: 1
4
4
  name: xmltv2html
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.6.0
7
- date: 2005-12-17 00:00:00 -05:00
6
+ version: 0.6.1
7
+ date: 2005-12-21 00:00:00 -05:00
8
8
  summary: xmltv2html generates a HTML page from the output of XMLTV.
9
9
  require_paths:
10
10
  - lib