Changeset 11858 for websites/jwatch.jp

Show
Ignore:
Timestamp:
05/18/08 12:38:40 (5 years ago)
Author:
lopnor
Message:

websites/jwatch.jp: try using http-engine, but doesn\'t work yet :(

Location:
websites/jwatch.jp/trunk
Files:
1 added
2 modified

Legend:

Unmodified
Added
Removed
  • websites/jwatch.jp/trunk/root/src/index.tt2

    r11386 r11858  
    22[% FOREACH e IN eventlist %] 
    33■[% e.datetime.strftime("%H:%M") %] [% e.game.homeclub.shortname %][% e.score.home || 0 %]-[% e.score.away || 0 %][% e.game.awayclub.shortname %] [% e.gametime %]min. <br> 
    4  [% IF e.type == 'goal' %]&#63671;[% e.club.shortname %][% e.player1name %]がゴール! 
     4 [% IF e.type == 'goal' %]&#63671;[% e.club.shortname %] [% e.player1name %]がゴール! 
    55[% ELSIF e.type == 'change' %][% e.club.shortname %]  OUT:[% e.player1name %]→IN:[% e.player2name %] 
    6 [% ELSIF e.type == 'yellow' %]<font color="yellow">■</font>[% e.referee.shortname %]が[% e.club.shortname %][% e.player1name %]にイエロー! 
    7 [% ELSIF e.type == 'red' %]<font color="red">■</font>[% e.referee.shortname %]が[% e.club.shortname %][% e.player1name %]にレッド! 
     6[% ELSIF e.type == 'yellow' %]<font color="yellow">■</font>[% e.referee.shortname %]が[% e.club.shortname %] [% e.player1name %]にイエロー! 
     7[% ELSIF e.type == 'red' %]<font color="red">■</font>[% e.referee.shortname %]が[% e.club.shortname %] [% e.player1name %]にレッド! 
    88[% ELSIF e.type == 'member' %]メンバー発表。主審は[% e.referee.shortname %]。 
    99[% ELSIF e.type == 'end' %]試合終了! 
     
    1414■ 今日の試合<br> 
    1515[% FOREACH g IN gamelist %] 
    16 [% g.homeclub.shortname %][% g.score.home || 0 %]-[% g.score.away || 0 %][% g.awayclub.shortname %][% g.referee.shortname %]<br> 
     16[% g.homeclub.shortname %][% g.score.home || 0 %]-[% g.score.away || 0 %][% g.awayclub.shortname %] [% g.referee.shortname %]<br> 
    1717 [% g.kickoff.strftime("%H:%M") %]<br> 
    1818[% END %] 
  • websites/jwatch.jp/trunk/root/src/ttsite.css

    r11302 r11858  
    11 
    2 html { 
    3     height: 100%; 
    4 } 
    5  
    6 body {  
    7     background-color: [% site.col.page %]; 
    8     color: [% site.col.text %]; 
    9     margin: 0px; 
    10     padding: 0px; 
    11 /* 
    12     height: 100%; 
    13 */ 
    14 } 
    15  
    16 #header { 
    17     background-color: [% site.col.head %]; 
    18     border-bottom: 1px solid [% site.col.line %]; 
    19 } 
    20  
    21 #footer { 
    22     background-color: [% site.col.head %]; 
    23     text-align: center; 
    24     border-top: 1px solid [% site.col.line %]; 
    25     position: absolute; 
    26 /* 
    27     bottom: 0; 
    28 */ 
    29     left: 0px; 
    30     width: 100%; 
    31     padding: 4px; 
    32 } 
    33  
    34 #content { 
    35     padding: 10px; 
    36 } 
    37  
    38 h1.title { 
    39     padding: 4px; 
    40     margin: 0px; 
    41 } 
    42  
    43 .message { 
    44     color: [% site.col.message %]; 
    45 } 
    46  
    47 .error { 
    48     color: [% site.col.error %]; 
    49 }