\n"; $edit_cat.= "
"; $edit_cat.= ""; $edit_cat.= "" . __("Category") . ": "; $edit_cat.= " "; $edit_cat.= "
"; $edit_cat.= ""; } else { $edit_cat = "" . __("Category") . ": " . $row['Category'] . ""; } if ($row["SubmitterUID"]) { $submitter = username_from_id($row["SubmitterUID"]); if ($SID) { $submitter = '' . htmlspecialchars($submitter) . ''; } } else { $submitter = "None"; } if ($row["MaintainerUID"]) { $maintainer = username_from_id($row["MaintainerUID"]); if ($SID) { $maintainer = '' . htmlspecialchars($maintainer) . ''; } } else { $maintainer = "None"; } $votes = __('Votes') . ': ' . $row['NumVotes']; if ($atype == "Developer" or $atype == "Trusted User") { $votes = "$votes"; } # In case of wanting to put a custom message $msg = __('unknown'); $license = empty($row['License']) ? $msg : $row['License']; # Print the timestamps for last updates $updated_time = ($row["ModifiedTS"] == 0) ? $msg : gmdate("r", intval($row["ModifiedTS"])); $submitted_time = ($row["SubmittedTS"] == 0) ? $msg : gmdate("r", intval($row["SubmittedTS"])); $out_of_date_time = ($row["OutOfDateTS"] == 0) ? $msg : gmdate("r", intval($row["OutOfDateTS"])); ?>
".__("Tarball")." :: ";
print "".__("PKGBUILD")."";
if ($row["OutOfDateTS"] !== NULL) {
echo "
".__("This package has been flagged out of date.")." (${out_of_date_time})";
}
?>
';
}
if (count($deps) > 0) {
echo "". __("Dependencies")."";
while (list($k, $darr) = each($deps)) {
# darr: (DepName, DepCondition, PackageID), where ID is NULL if it didn't exist
if (!is_null($darr[2])) {
echo " ".$darr[0].$darr[1]."";
} else {
echo " ".$darr[0].$darr[1]."";
}
}
if (count($requiredby) > 0) {
echo '
';
}
}
if (count($requiredby) > 0) {
echo "". __("Required by")."";
while (list($k, $darr) = each($requiredby)) {
# darr: (PackageName, PackageID)
echo " ".$darr[0]."";
}
}
if (count($deps) > 0 || count($requiredby) > 0) {
echo '