analyze.html.erb - warvox - VoIP based wardialing tool, forked from rapid7/warvox.
 (HTM) git clone git://jay.scot/warvox
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
       analyze.html.erb (546B)
       ---
            1 <% if @dial_data_todo.length > 0 %>
            2 
            3 <h1 class='title'>
            4         Analyzing Audio for <%= @dial_data_total-@dial_data_done %> of <%= @dial_data_total %> Calls...
            5 </h1>
            6 
            7 <table width='100%' align='center' border=0 cellspacing=0 cellpadding=6>
            8 <tr>
            9 <% if @dial_data_done > 0 %>
           10         <td align='center'>
           11                 <%= render :partial => 'shared/graphs/lines_by_type' %>
           12         </td>
           13 <% end %>
           14 </tr>
           15 </table>
           16 
           17 <script language="javascript">
           18         setTimeout("location.reload(true);", 10000);
           19 </script>
           20 
           21 <% else %>
           22 
           23 <h1 class='title'>No Completed Calls Found</h1>
           24 
           25 <% end %>
           26 
           27 <br />