Changeset 14539
- Timestamp:
- Aug 7, 2000, 4:22:45 PM (25 years ago)
- Location:
- tags/trunk/tools/database/www
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified tags/trunk/tools/database/www/Odin32DBHelpers.php3 ¶
r14489 r14539 1068 1068 if (isset($array["apigroupname"])) 1069 1069 Odin32DBInfoRow1("API Group", $array, "apigroupname", "apigrouprefcode", "apigrouprefcode","",""); 1070 Odin32DBInfoRow1("File", $array, "filename", "filerefcode", "filerefcode","not available",""); 1070 Odin32DBInfoRow1("File", $array, "filename", "filerefcode", "filerefcode", "not available", 1071 " (<a href=\"cvs.phtml#".$array["line"]."?sFile=./src/".$array["dllname"]."/".$array["filename"].",v&sRevision=\">cvs</a>)"); 1071 1072 if ($array["line"] > 0) 1072 1073 Odin32DBInfoRow1("Line", $array, "line", "", "","",""); … … 1552 1553 Odin32DBNaslov("General", "general"); 1553 1554 echo "\n<table width=100% border=3 cellpadding=0>\n"; 1554 Odin32DBInfoRow1("Name", $array, "name","","","",""); 1555 Odin32DBInfoRow1("Name", $array, "name","","","", 1556 " (<a href=\"cvs.phtml?sFile=./src/".$array["dllname"]."/".$array["name"].",v&sRevision=\">cvs</a>)"); 1555 1557 Odin32DBInfoRow1("Revision", $array, "revision","","","",""); 1556 1558 Odin32DBInfoRow1("Changed", $array, "lastdatetime","","","",""); -
TabularUnified tags/trunk/tools/database/www/cvs.php3 ¶
r14538 r14539 1 1 <?php 2 2 3 require "Odin32DB helpers.php3";3 require "Odin32DBHelpers.php3"; 4 4 5 5 /* 6 6 * Configuration: 7 7 */ 8 $sCVSROOT = ".";9 8 $sCVSROOT = "g:/cvsroot"; 10 9 $sCVSROOT = "d:/odin32/cvs/cvsroot"; 10 $sCVSROOT = "./cvsroot"; 11 $sIconsUrl = "/icons"; 12 $sIconsUrl = "http://www.netlabs.org/icons"; 11 13 12 14 … … 1047 1049 { 1048 1050 global $sCVSROOT; 1051 global $sIconsUrl; 1049 1052 $timer = Odin32DBTimerStart("List Directory"); 1050 1053 … … 1224 1227 echo "<tr>\n", 1225 1228 " <td", $sBgColor , ">", 1226 "<font size=-1><a href=\"cvs.php?sDir=",$sParentDir,"\"><img src=\" /icons/back.gif\" border=0> Parent Directory</a></font></td>\n",1229 "<font size=-1><a href=\"cvs.php?sDir=",$sParentDir,"\"><img src=\"$sIconsUrl/back.gif\" border=0> Parent Directory</a></font></td>\n", 1227 1230 " <td$sBgColor> </td>\n", 1228 1231 " <td$sBgColor> </td>\n", … … 1235 1238 $sBgColor = ($i++ % 2) ? "" : " bgcolor=#f0f0f0"; 1236 1239 echo "<tr>\n", 1237 " <td$sBgColor><font size=-1><a href=\"cvs.php?sDir=$sDir/$sVal\"><img src=\" /icons/dir.gif\" border=0> $sVal</a></font></td>\n",1240 " <td$sBgColor><font size=-1><a href=\"cvs.php?sDir=$sDir/$sVal\"><img src=\"$sIconsUrl/dir.gif\" border=0> $sVal</a></font></td>\n", 1238 1241 " <td$sBgColor> </td>\n", 1239 1242 " <td$sBgColor> </td>\n", … … 1253 1256 $sIcon = isset($asIcon[$sKey]) ? $asIcon[$sKey] : "<i> error </i>"; 1254 1257 echo "<tr>\n", 1255 " <td$sBgColor><font size=-1><a href=\"cvs.php?sFile=$sDir/$sKey\"><img src=\" /icons/$sIcon\" border=0>",substr($sKey, 0, -2),"</a></font></td>\n",1258 " <td$sBgColor><font size=-1><a href=\"cvs.php?sFile=$sDir/$sKey\"><img src=\"$sIconsUrl/$sIcon\" border=0>",substr($sKey, 0, -2),"</a></font></td>\n", 1256 1259 " <td$sBgColor><font size=-1><a href=\"cvs.php?sFile=$sDir/$sKey&sRevision=$sRev\">$sRev</a></font></td>\n", 1257 1260 " <td$sBgColor><font size=-1>$sAge</font></td>\n",
Note:
See TracChangeset
for help on using the changeset viewer.