]> git.openstreetmap.org Git - rails.git/blobdiff - script/statistics
Merge pull request #3104 from fredrik-lindseth/patch-1
[rails.git] / script / statistics
index 33205fe62f39193ccf0ea47af843de891ffb8243..ffc672b0bdf3f34925f6eb919ac855a2c67529e6 100755 (executable)
@@ -11,7 +11,8 @@ puts "<title>OpenStreetMap Statistics</title>"
 puts "<style>th { text-align: left }</style>"
 puts "</head>"
 puts "<body>"
-puts "<h2>OpenStreetMap stats report run at #{start_time}</h2>"
+puts "<h1>OpenStreetMap stats</h1>"
+puts "<h2>Report run at #{start_time}</h2>"
 
 begin
   ActiveRecord::Base.transaction do
@@ -29,7 +30,7 @@ begin
     puts "<tr><td>Number of relations</td><td>#{relation_count}</td></tr>"
     puts "</table>"
 
-    puts "<h2>Top 50 users for uploads of GPS data</h2>"
+    puts '<h2 id="top-traces">Top 50 users for uploads of GPS data</h2>'
     puts "<table>"
     puts "<tr><th>User</th><th>Number of Points</th></tr>"
 
@@ -40,7 +41,7 @@ begin
 
     puts "</table>"
 
-    puts "<h2>Number of users editing over the past...</h2>"
+    puts '<h2 id="number-of-editors">Number of users editing over the past...</h2>'
     puts "<table>"
     puts "<tr><th>Data Type</th><th>Day</th><th>Week</th><th>Month</th></tr>"
 
@@ -58,7 +59,7 @@ begin
 
     puts "</table>"
 
-    puts "<h2>Top users editing over the past...</h2>"
+    puts '<h2 id="top-editors">Top users editing over the past...</h2>'
     puts "<table>"
     puts "<tr><th>Day</th><th>Week</th><th>Month</th></tr>"
 
@@ -86,7 +87,7 @@ rescue StandardError => e
   puts "<p><em>Exception: #{e}</em><br />#{e.backtrace.join('<br />')}</p>"
 end
 
-puts "<p>Report took #{(Time.new - start_time)} seconds to run</p>"
+puts "<p>Report took #{Time.new - start_time} seconds to run</p>"
 puts "</body>"
 puts "</html>"