| Missing assets - warvox - VoIP based wardialing tool, forked from rapid7/warvox. | |
| Log | |
| Files | |
| Refs | |
| README | |
| --- | |
| commit 8fbc16b98fa9c135884a2c644af7ffadbe6a2752 | |
| parent c078c54129840102135ff8b7cee15f5176b09e3a | |
| Author: HD Moore <[email protected]> | |
| Date: Mon, 31 Dec 2012 00:14:21 -0600 | |
| Missing assets | |
| Diffstat: | |
| A app/assets/images/logo_bigger.png | 0 | |
| A app/views/home/check.html.erb | 104 +++++++++++++++++++++++++++++… | |
| 2 files changed, 104 insertions(+), 0 deletions(-) | |
| --- | |
| diff --git a/app/assets/images/logo_bigger.png b/app/assets/images/logo_bigger.… | |
| Binary files differ. | |
| diff --git a/app/views/home/check.html.erb b/app/views/home/check.html.erb | |
| @@ -0,0 +1,104 @@ | |
| + | |
| +<h1>Getting Started Checklist</h1> | |
| + | |
| +<!-- | |
| + @has_project = ( Project.count > 0 ) | |
| + @has_provider = ( Provider.count > 0 ) | |
| + @has_job = ( DialJob.count > 0 ) | |
| + @has_result = ( DialResult.where(:completed => true ).count … | |
| + @has_analysis = ( DialResult.where(:processed => true ).count … | |
| +--> | |
| + | |
| +<br/> | |
| + | |
| +<div class="check-item">1. Create a project to encapsulate your work</div> | |
| +<div class="check-result"> | |
| + <% if @has_project %> | |
| + <div class="alert alert-success"> | |
| + <strong>Looks good!</strong> | |
| + <p>You have created a new project.</p> | |
| + </div> | |
| + <% else %> | |
| + <div class="alert alert-error"> | |
| + <strong>Woops!</strong> | |
| + <p>You need to <a href="<%= new_project_path %>">creat… | |
| + </div> | |
| + <% end %> | |
| +</div> | |
| + | |
| + | |
| +<div class="check-item">2. Configure at least one VoIP Provider</div> | |
| +<div class="check-result"> | |
| + <% if @has_provider %> | |
| + <div class="alert alert-success"> | |
| + <strong>Perfect!</strong> | |
| + <p>You have a VoIP provider configured.</p> | |
| + </div> | |
| + <% else %> | |
| + <div class="alert alert-error"> | |
| + <strong>This is the hard one</strong> | |
| + <p>You need to <a href="<%= providers_path %>">configu… | |
| + </div> | |
| + <% end %> | |
| +</div> | |
| + | |
| + | |
| +<div class="check-item">3. Dial a list of telephone numbers</div> | |
| +<div class="check-result"> | |
| + <% if @has_job %> | |
| + <div class="alert alert-success"> | |
| + <strong>Congratulations!</strong> | |
| + <p>You have already launched a dialer job.</p> | |
| + </div> | |
| + <% else %> | |
| + <div class="alert alert-error"> | |
| + <strong>Ring Ring!</strong> | |
| + <% if @has_project %> | |
| + <p>You need to <a href="<%= new_dial_job_path(… | |
| + <% else %> | |
| + <p>You need to <a href="<%= new_project_path %… | |
| + <% end %> | |
| + </div> | |
| + <% end %> | |
| +</div> | |
| + | |
| + | |
| +<div class="check-item">4. Gather an audio sample from at least one line</div> | |
| +<div class="check-result"> | |
| + <% if @has_result %> | |
| + <div class="alert alert-success"> | |
| + <strong>Woohoo!</strong> | |
| + <p>You have already captured some audio data.</p> | |
| + </div> | |
| + <% else %> | |
| + <div class="alert alert-error"> | |
| + <strong>Sad Trombone!</strong> | |
| + <% if @has_project %> | |
| + <p>You need to dial some numbers that answer. | |
| + Double check your VoIP settings and make sure … | |
| + <% else %> | |
| + <p>You need to <a href="<%= new_project_path %… | |
| + <% end %> | |
| + </div> | |
| + <% end %> | |
| +</div> | |
| + | |
| + | |
| +<div class="check-item">5. Analyze captured audio samples and extract signatur… | |
| +<div class="check-result"> | |
| + <% if @has_analysis %> | |
| + <div class="alert alert-success"> | |
| + <strong>Dayum!</strong> | |
| + <p>You are good to go.</p> | |
| + </div> | |
| + <% else %> | |
| + <div class="alert alert-error"> | |
| + <strong>Crunch Time</strong> | |
| + <% if @has_project and @has_result %> | |
| + <p>Access the <a href="<%= analyze_path(Projec… | |
| + <% else %> | |
| + <p>You need to create a project and successful… | |
| + <% end %> | |
| + </div> | |
| + <% end %> | |
| +</div> |