mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Hardcode urlpaths instead of getting from db
Effort to garauntee locations of known files
This commit is contained in:
parent
d534bb1535
commit
abf907ea6a
1 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
<?
|
||||
include_once("pkgfuncs_po.inc");
|
||||
include_once("config.inc");
|
||||
|
||||
# define variables used during pkgsearch
|
||||
#
|
||||
|
@ -350,7 +351,9 @@ function package_details($id=0, $SID="") {
|
|||
print "<tr>\n";
|
||||
print " <td class='boxSoft' colspan='2'><span class='f3'>";
|
||||
if ($row["LocationID"] == 2) {
|
||||
print "<a href='".$row['URLPath']."'>".__("Tarball")."</a> :: <a href='".dirname($row['URLPath'])."/".$row['Name']."'>".__("Files")."</a> :: <a href='".dirname($row['URLPath'])."/".$row['Name']."/PKGBUILD'>PKGBUILD</a></span></td>";
|
||||
global $URL_DIR;
|
||||
$urlpath = $URL_DIR.$row["Name"]."/".$row["Name"];
|
||||
print "<a href='$urlpath.tar.gz'>".__("Tarball")."</a> :: <a href='$urlpath'>".__("Files")."</a> :: <a href='$urlpath/PKGBUILD'>PKGBUILD</a></span></td>";
|
||||
} elseif ($row["LocationID"] == 3) {
|
||||
print "<a href='http://cvs.archlinux.org/cgi-bin/viewcvs.cgi/" . $row["Category"] . "/" . $row["Name"] . "/?cvsroot=AUR&only_with_tag=CURRENT'>CVS</td>";
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue