diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2010-08-17 17:32:11 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2010-08-17 17:32:11 -0400 |
commit | 5df6a315c4b995e5a09e555548dc6d04b316fea3 (patch) | |
tree | 0533a0ef3d5d81aa63fa2ff3d637cf88b770805d /usr | |
parent | f6f5fde13718e29670783173e99b2f3707614151 (diff) | |
download | pfsense-5df6a315c4b995e5a09e555548dc6d04b316fea3.zip pfsense-5df6a315c4b995e5a09e555548dc6d04b316fea3.tar.gz |
Add Supported by BSD Perimter field
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/pkg_mgr.php | 12 | ||||
-rwxr-xr-x | usr/local/www/pkg_mgr_installed.php | 11 |
2 files changed, 21 insertions, 2 deletions
diff --git a/usr/local/www/pkg_mgr.php b/usr/local/www/pkg_mgr.php index 7500489..25bed4d 100755 --- a/usr/local/www/pkg_mgr.php +++ b/usr/local/www/pkg_mgr.php @@ -102,10 +102,11 @@ include("head.inc"); <table class="tabcont sortable" width="100%" border="0" cellpadding="6" cellspacing="0"> <tr> <td width="10%" class="listhdrr"><?=gettext("Package Name"); ?></td> - <td width="25%" class="listhdrr"><?=gettext("Category"); ?></td> + <td width="20%" class="listhdrr"><?=gettext("Category"); ?></td> <!-- <td width="10%" class="listhdrr">Size</td> --> <td width="5%" class="listhdrr"><?=gettext("Status"); ?></td> <td width="5%" class="listhdrr"><?=gettext("Package Info"); ?></td> + <td width="5%" class="listhdrr"><?=gettext("Supported by BSD Perimeter"); ?></td> <td width="50%" class="listhdr"><?=gettext("Description"); ?></td> </tr> <?php @@ -199,6 +200,15 @@ include("head.inc"); } ?> </td> + <td class="listr" style="overflow: hidden;"> + <?php + if($index['supportedbybsdperimeter']) + echo "YES"; + else + echo "NO"; + + ?> + </td> <td class="listbg" class="listbg" style="overflow: hidden;"> <?= $index['descr'] ?> </td> diff --git a/usr/local/www/pkg_mgr_installed.php b/usr/local/www/pkg_mgr_installed.php index 2708c78..7915f3e 100755 --- a/usr/local/www/pkg_mgr_installed.php +++ b/usr/local/www/pkg_mgr_installed.php @@ -74,8 +74,9 @@ include("head.inc"); <table class="tabcont" width="100%" border="0" cellpadding="6" cellspacing="0"> <tr> <td width="10%" class="listhdrr"><?=gettext("Package Name"); ?></td> - <td width="20%" class="listhdrr"><?=gettext("Category"); ?></td> + <td width="15%" class="listhdrr"><?=gettext("Category"); ?></td> <td width="10%" class="listhdrr"><?=gettext("Package Info"); ?></td> + <td width="5%" class="listhdrr"><?=gettext("Supported by BSD Perimter"); ?></td> <td width="15%" class="listhdrr"><?=gettext("Package Version"); ?></td> <td width="45%" class="listhdr"><?=gettext("Description"); ?></td> </tr> @@ -138,6 +139,14 @@ include("head.inc"); } ?> </td> + <td class="listr"> + <?php + if($pkg['supportedbybsdperimeter']) + echo "YES"; + else + echo "NO"; + ?> + </td> <td class="<?=$tdclass;?>"> <?=$pkgver;?> </td> |