| Index: sitescripts/filterhits/static/query.html |
| diff --git a/sitescripts/filterhits/static/query.html b/sitescripts/filterhits/static/query.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8c6706ba4883bb2a6989611bbb22586ad246bc24 |
| --- /dev/null |
| +++ b/sitescripts/filterhits/static/query.html |
| @@ -0,0 +1,31 @@ |
| +<!DOCTYPE html> |
|
Sebastian Noack
2015/02/11 16:00:12
This web interface is currently not specified in t
kzar
2015/02/17 10:52:24
https://issues.adblockplus.org/ticket/395?action=d
|
| +<html> |
| + <head> |
| + <title>Filterhits statistics query</title> |
| + <link rel="stylesheet" href="datatables/jquery.dataTables.min.css" /> |
| + </head> |
| + <body> |
| + <table> |
| + <tr> |
| + <td><label for="filter">Filter: </label></td> |
| + <td><input type="text" id="filter" name="filter" /></td> |
| + </tr> |
| + <tr> |
| + <td><label for="domain">Domain: </label></td> |
| + <td><input type="text" id="domain" name="domain" /></td> |
| + </tr> |
| + </table> |
| + <table id="results" cellspacing="0" width="100%"> |
| + <thead> |
| + <tr> |
| + <th>Filter</th> |
| + <th>Domain</th> |
| + <th>Hits</th> |
| + </tr> |
| + </thead> |
| + </table> |
| + <script type="text/javascript" src="datatables/jquery.js"></script> |
| + <script type="text/javascript" src="datatables/jquery.dataTables.min.js"></script> |
| + <script type="text/javascript" src="query.js"></script> |
| + </body> |
| +</html> |