diff options
author | dvserg <dv_serg@mail.ru> | 2011-02-11 07:58:01 +0300 |
---|---|---|
committer | dvserg <dv_serg@mail.ru> | 2011-02-11 07:58:01 +0300 |
commit | c55a0f6a758e7fd13dcee2e3627395fe0a6e3d4f (patch) | |
tree | 80172223e17fbc046e74f9586be32be8851b8f02 /config/squidGuard/squidguard.php | |
parent | 339ebaee41cbd13e14d5f02c3adfb30229031ff4 (diff) | |
download | pfsense-packages-c55a0f6a758e7fd13dcee2e3627395fe0a6e3d4f.tar.gz pfsense-packages-c55a0f6a758e7fd13dcee2e3627395fe0a6e3d4f.tar.bz2 pfsense-packages-c55a0f6a758e7fd13dcee2e3627395fe0a6e3d4f.zip |
Blacklist modification and bug fixes
Diffstat (limited to 'config/squidGuard/squidguard.php')
-rw-r--r-- | config/squidGuard/squidguard.php | 109 |
1 files changed, 109 insertions, 0 deletions
diff --git a/config/squidGuard/squidguard.php b/config/squidGuard/squidguard.php new file mode 100644 index 00000000..b6c36a87 --- /dev/null +++ b/config/squidGuard/squidguard.php @@ -0,0 +1,109 @@ +<?php +/* $Id$ */ +/* + sg_log.inc + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, + INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. +*/ + +$pgtitle = "Proxy filter SquidGuard"; + +require_once('globals.inc'); +require_once('config.inc'); +require_once("guiconfig.inc"); +require_once('util.inc'); +require_once('pfsense-utils.inc'); +require_once('pkg-utils.inc'); +require_once('service-utils.inc'); + +include("head.inc"); + +if (file_exists("/usr/local/pkg/squidguard.inc")) { + require_once("/usr/local/pkg/squidguard.inc"); +} + +$selfpath = "/squidGuard/squidguard.php"; + +?> + +<!-- HTML --> +<body link="#0000CC" vlink="#0000CC" alink="#0000CC"> +<?php include("fbegin.inc"); ?> +<form action="sg_log.php" method="post"> +<table width="100%" border="0" cellpadding="0" cellspacing="0"> +<!-- Tabs --> + <tr> + <td> +<?php +/* $tab_array = array(); + $tab_array[] = array(gettext("Proxy Filter"), true, "$selfpath"); + $tab_array[] = array(gettext("General settings"), false, "/pkg_edit.php?xml=squidguard.xml&id=0"); + $tab_array[] = array(gettext("Default"), false, "/pkg_edit.php?xml=squidguard_default.xml&id=0"); + $tab_array[] = array(gettext("ACL"), false, "/pkg.php?xml=squidguard_acl.xml"); + $tab_array[] = array(gettext("Destinations"), false, "/pkg.php?xml=squidguard_dest.xml"); + $tab_array[] = array(gettext("Times"), false, "/pkg.php?xml=squidguard_time.xml"); + $tab_array[] = array(gettext("Rewrites"), false, "/pkg.php?xml=squidguard_rewr.xml"); + display_top_tabs($tab_array); +*/ + require_once("/usr/local/www/squidGuard/squidguard_tabs.inc"); + squidguard_tabs_show( 0 ); +?> + </td> + </tr> + <tr> + <td> + <div id="mainarea"> + <table class="tabcont" width="100%" border="0" cellpadding="0" cellspacing="0"> + <tr> + <td> +<table width="100%" border="0" cellpadding="0" cellspacing="0"> +<!-- Service --> + <tr> + <td class="listhdrr">Service</td> + <td class="listhdrr">Status </td> + <td class="listhdrr"> </td> + <td class="listhdrr">Version</td> + </tr> +</table> + + </td> + </tr> + <tr> + <td> + </td> + </tr> + </table> + </div> + </td> + </tr> +</table> +</form> + +<?php include("fend.inc"); ?> + +<script type="text/javascript"> + NiftyCheck(); + Rounded("div#mainarea","bl br","#FFF","#eeeeee","smooth"); +</script> +</body> +</html>
\ No newline at end of file |