Update of /cvsroot/phpcvsview/phpcvsview/Themes/Default
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28319/Themes/Default
Modified Files:
theme.php
Log Message:
Enabled download package support for Modules.
Index: theme.php
===================================================================
RCS file: /cvsroot/phpcvsview/phpcvsview/Themes/Default/theme.php,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** theme.php 4 Feb 2005 04:21:51 -0000 1.13
--- theme.php 4 Feb 2005 04:51:09 -0000 1.14
***************
*** 198,207 ****
function addModules($ModPath, $Modules)
{
! global $RowClass, $ModuleIcon, $env;
foreach ($Modules as $Key => $Val) {
// Add the row data here.
$HREF = str_replace("//", "/", $env['script_name']."?mp=$ModPath/".$Val."/");
echo "<tr class=\"$RowClass\">";
! echo "<td class=\"min\"> </td>";
echo "<td class=\"min\"><a href=\"$HREF\"><img alt=\"MOD\" src=\"".$env['script_path']."/$ModuleIcon\" /></a></td>";
echo "<td class=\"min\"><a href=\"$HREF\">".$Key."</a></td>";
--- 198,211 ----
function addModules($ModPath, $Modules)
{
! global $RowClass, $DownloadIcon, $ModuleIcon, $env;
foreach ($Modules as $Key => $Val) {
// Add the row data here.
$HREF = str_replace("//", "/", $env['script_name']."?mp=$ModPath/".$Val."/");
echo "<tr class=\"$RowClass\">";
! if ($Val != "CVSROOT" && $Val != "Attic") {
! echo "<td class=\"min\"><a href=\"$HREF&dp\"><img alt=\"D/L\" src=\"".$env['script_path']."/$DownloadIcon\" /></a></td>";
! } else {
! echo "<td class=\"min\"> </td>";
! }
echo "<td class=\"min\"><a href=\"$HREF\"><img alt=\"MOD\" src=\"".$env['script_path']."/$ModuleIcon\" /></a></td>";
echo "<td class=\"min\"><a href=\"$HREF\">".$Key."</a></td>";
|