OSDN Git Service

Show players who have accessed in the last 30 minutes with
[shogi-server/shogi-server.git] / mk_html
diff --git a/mk_html b/mk_html
index 02e41ae..bc4a5bf 100755 (executable)
--- a/mk_html
+++ b/mk_html
@@ -118,9 +118,10 @@ def main
     
     player_decoration = "default"
 
-    case (Time.now - last_modified)/(60*60*24)
-    when (0..1) then player_decoration = "today"
-    when (0..7) then player_decoration = "this_week"
+    case (Time.now - last_modified)/60 # minutes
+    when (0..30)        then player_decoration = "current"
+    when (0..(1*60*24)) then player_decoration = "today"
+    when (0..(7*60*24)) then player_decoration = "this_week"
     end
     
     case key
@@ -158,9 +159,9 @@ def main
         <%= "%.3f" % [win_rate] %> </td>
     <td class="last_modified">
         <%= show_date(last_modified) %> </td>
-% if $wdoor & yss_rate
+% if $wdoor
     <td class="rate">
-        <%= rate != 0 ? "%5d"  % [ 2300 - yss_rate + rate ] : "N/A" %> </td>
+        <%= rate != 0 && yss_rate > 0 ? ("%5d"  % [2300 - yss_rate + rate]) : "N/A" %> </td>
 % end
   </tr>
 % end
@@ -204,8 +205,9 @@ __END__
     .rate, .ngames, .win_rate {text-align: right;}
     .last_modified {text-align: center;}
     .gps, .yowai_gps {background-color: lightgreen;}
-    .today     {background-color: #FFD700;}
-    .this_week {background-color: #FFDAB9;}
+    .current   {background-color: #FFFF00;}
+    .today     {background-color: #FFFF77;}
+    .this_week {background-color: #FFFFAA;}
 
     #bd {text-align: center;}
     #ft {text-align: right;}