| Fix footers - warvox - VoIP based wardialing tool, forked from rapid7/warvox. | |
| Log | |
| Files | |
| Refs | |
| README | |
| --- | |
| commit abdba490445e784e7f3d0101abf47bf1183d23bd | |
| parent cf46e5b6167ba78a1e91bb20c2c6805e65167374 | |
| Author: HD Moore <[email protected]> | |
| Date: Tue, 26 Aug 2014 12:00:27 -0500 | |
| Fix footers | |
| Diffstat: | |
| M app/views/layouts/application.html… | 11 ++--------- | |
| M app/views/layouts/login.html.erb | 9 ++------- | |
| M app/views/shared/_footer.html.erb | 2 +- | |
| 3 files changed, 5 insertions(+), 17 deletions(-) | |
| --- | |
| diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/applica… | |
| @@ -15,14 +15,7 @@ | |
| <%= yield :view_javascript %> | |
| <%= stylesheet_link_tag "application", :media => "all" %> | |
| <%= yield :view_stylesheets %> | |
| - | |
| - | |
| - <%= favicon_link_tag '/assets/apple-touch-icon-144x144-precomposed.png', :… | |
| - <%= favicon_link_tag '/assets/apple-touch-icon-114x114-precomposed.png', :… | |
| - <%= favicon_link_tag '/assets/apple-touch-icon-72x72-precomposed.png', :re… | |
| - <%= favicon_link_tag '/assets/apple-touch-icon-precomposed.png', :rel => '… | |
| - <%= favicon_link_tag '/assets/favicon.ico', :rel => 'shortcut icon' %> | |
| - | |
| + <%= favicon_link_tag '/assets/favicon.ico', :rel => 'shortcut icon' %> | |
| <%= javascript_tag do %> | |
| $(document).ready(function() { | |
| @@ -92,7 +85,7 @@ | |
| </div> | |
| <footer class="footer"> | |
| - <p>WarVOX v<%=WarVOX::VERSION %> © Rapid7, Inc. 2009-20… | |
| + <p>WarVOX v<%=WarVOX::VERSION %> © 2009-<%= Time.now.ye… | |
| </footer> | |
| </div> | |
| diff --git a/app/views/layouts/login.html.erb b/app/views/layouts/login.html.erb | |
| @@ -13,12 +13,7 @@ | |
| <%= javascript_include_tag "application" %> | |
| <%= stylesheet_link_tag "application", :media => "all" %> | |
| - | |
| - <%= favicon_link_tag 'images/apple-touch-icon-144x144-precomposed.png', :r… | |
| - <%= favicon_link_tag 'images/apple-touch-icon-114x114-precomposed.png', :r… | |
| - <%= favicon_link_tag 'images/apple-touch-icon-72x72-precomposed.png', :rel… | |
| - <%= favicon_link_tag 'images/apple-touch-icon-precomposed.png', :rel => 'a… | |
| - <%= favicon_link_tag 'images/favicon.ico', :rel => 'shortcut icon' %> | |
| + <%= favicon_link_tag '/assets/favicon.ico', :rel => 'shortcut icon' %> | |
| <%= javascript_tag do %> | |
| $(document).ready(function() { | |
| @@ -34,7 +29,7 @@ | |
| </div> | |
| <footer class="footer"> | |
| - <p>WarVOX v<%=WarVOX::VERSION %> © Rapid7, Inc. 2009-2013</p> | |
| + <p>WarVOX v<%=WarVOX::VERSION %> © 2009-<%= Time.now.year%> Rapid7 … | |
| </footer> | |
| </body> | |
| diff --git a/app/views/shared/_footer.html.erb b/app/views/shared/_footer.html.… | |
| @@ -1,5 +1,5 @@ | |
| <div id="footer"> | |
| <div id='copyright'> | |
| - Copyright ©2009-2013 Rapid7, Inc.<br/> | |
| + WarVOX v<%=WarVOX::VERSION %> ©2009-<%= Time.now.year%> Rapid7 … | |
| </div> | |
| </div> |