/[mplayer-eee-tv]/program/xmltv.pl
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /program/xmltv.pl

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 24 by dpavlin, Sat Oct 31 14:35:51 2009 UTC revision 25 by dpavlin, Sat Oct 31 14:47:07 2009 UTC
# Line 22  print qq| Line 22  print qq|
22  td {  td {
23          font-family:sans-serif;          font-family:sans-serif;
24          vertical-align: top;          vertical-align: top;
25            background: #eee;
26  }  }
27    
28  ,hour {  th,odd {
29          border-top: 1px dashed #ccc;          background: #eef;
30    }
31    
32    th.even {
33            background: #fcc;
34  }  }
35    
36  .hhmm {  .hhmm {
# Line 39  td { Line 44  td {
44  </head>  </head>
45  <body>  <body>
46    
47  <table border=1 >  <table>
48  <tr><td></td>  <tr><td></td>
49  |;  |;
50    
# Line 98  foreach my $hh ( 0 .. 23 ) { Line 103  foreach my $hh ( 0 .. 23 ) {
103                          }                          }
104                  }                  }
105    
106                  my ($th,$class) = ('','');                  my $class = $hh % 2 == 0 ? 'even' : 'odd';
107                     ($th,$class) = ( "<th rowspan=60>$hh</th>", ' class="hour"' ) if $mm == 0;  
108                  print qq|<tr$class>$th|, join('', @td), qq|</tr>\n|;                  my $th = '';
109                       $th = qq|<th rowspan=60 class=$class>$hh</th>| if $mm == 0;
110    
111                    print qq|<tr>$th|, join('', @td), qq|</tr>\n|;
112          }          }
113  }  }
114    

Legend:
Removed from v.24  
changed lines
  Added in v.25

  ViewVC Help
Powered by ViewVC 1.1.26