fix security issue
[selectricity-live] / vendor / plugins / sitealizer / lib / app / views / sitealizer / _browsers.rhtml
1 <% max_total = @browsers.inject(0) {|m,a| a[:total].to_i > m ? a[:total].to_i : m }%>
2 <br><br>
3
4 <table align=center width=90% border=1 cellpadding=3>
5 <tr nowrap>
6 <th width=1>#</th>      
7 <th width=10>Hits</th>
8 <th>Browser</th>
9 <th width=70>Version</th>
10 <th width=10>Percentage</th>
11 <th width=200></th>
12 </tr>
13 <% i=1; @browsers.each do |browser| width=((browser[:total].to_f/max_total)*200).round; width = 1 if width < 1 %>
14 <tr nowrap>
15 <td align=center><%= i %></td>
16 <td align=center><%= browser[:total] %></td>
17 <td><%= browser[:browser][:type] %></td>
18 <td align=left><%= browser[:browser][:version] ? browser[:browser][:version] : 'Unknown' %>&nbsp;</td>
19 <td align=center><%= sprintf("%000.2f",(browser[:total].to_f/@total_hits)*100) %>%</td>
20 <td align=left><%=image_tag 'sitealizer/bar.gif', :width => width, :height => 3%></td>
21 </tr>
22 <%i+=1; end %>
23 </table>

Benjamin Mako Hill || Want to submit a patch?