Added styling to some pages which previously were "outside" the site
[cocanwiki.git] / scripts / stats.ml
index b8ef2f1..b7ddab7 100644 (file)
@@ -1,7 +1,7 @@
 (* COCANWIKI - a wiki written in Objective CAML.
  * Written by Richard W.M. Jones <rich@merjis.com>.
  * Copyright (C) 2004 Merjis Ltd.
- * $Id: stats.ml,v 1.5 2006/03/27 18:09:47 rich Exp $
+ * $Id: stats.ml,v 1.6 2006/03/28 16:24:08 rich Exp $
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -28,8 +28,7 @@ open Cocanwiki
 open Cocanwiki_template
 open Cocanwiki_server_settings
 
-let run r (q : cgi) dbh hostid
-    { canonical_hostname = canonical_hostname } _ =
+let run r (q : cgi) dbh hostid { canonical_hostname = canonical_hostname } _ =
   let template = get_template dbh hostid "stats.html" in
 
   let page = q#param "page" in
@@ -51,8 +50,8 @@ let run r (q : cgi) dbh hostid
     let year, week, _ = Date.to_business date in
     year, week in
 
-  template#set "year" (Int32.to_string year);
-  template#set "week" (Int32.to_string week);
+  template#set "year" (string_of_int year);
+  template#set "week" (string_of_int week);
 
   (* Standard hashing function which we also use in tools/rocket/analysis.ml *)
   let hash s = Digest.to_hex (Digest.string s) in