mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 09:43:03 +00:00
renamed _() function to __() to avoid gettext conflict
This commit is contained in:
parent
d92682fbfd
commit
74594e516d
9 changed files with 145 additions and 19 deletions
|
@ -1,4 +1,32 @@
|
|||
<?
|
||||
include_once("aur_po.inc");
|
||||
|
||||
# Define global variables
|
||||
#
|
||||
|
||||
|
||||
# connect to the database
|
||||
#
|
||||
function db_connect() {
|
||||
# NOTE: modify these variables if your MySQL setup is different
|
||||
#
|
||||
$AUR_db_host = "localhost:/tmp/mysql.sock";
|
||||
$AUR_db_name = "AUR";
|
||||
$AUR_db_user = "aur"; # XXX use something better when deploying
|
||||
$AUR_db_pass = "aur"; # XXX use something better when deploying
|
||||
|
||||
$handle = mysql_pconnect($AUR_db_host, $AUR_db_user, $AUR_db_pass);
|
||||
if (!$handle) {
|
||||
die("Error connecting to AUR database: " . mysql_error());
|
||||
}
|
||||
|
||||
mysql_select_db($AUR_db_name, $handle) or
|
||||
die("Error selecting AUR database: " . mysql_error());
|
||||
|
||||
return $handle;
|
||||
}
|
||||
|
||||
|
||||
# common header
|
||||
#
|
||||
function html_header() {
|
||||
|
@ -13,8 +41,9 @@ function html_header() {
|
|||
print "<table cellspacing='0' ";
|
||||
print "style='background-color: #000; width: 100%;'>\n";
|
||||
print " <tr>\n";
|
||||
print " <td class='preHeader'><span class='preHeader'>AUR: An ";
|
||||
print "ArchLinux project</span></td>\n";
|
||||
print " <td class='preHeader'><span class='preHeader'>";
|
||||
print __("%s: An ArchLinux project", array("AUR"));
|
||||
print "</span></td>\n";
|
||||
print " </tr>\n";
|
||||
print " <tr>\n";
|
||||
print " <td class='headerFill'>\n";
|
||||
|
@ -28,16 +57,43 @@ function html_header() {
|
|||
print " </tr>\n";
|
||||
print " </table>\n";
|
||||
print " </tr>\n";
|
||||
print "</table>\n";
|
||||
|
||||
# Menu items
|
||||
#
|
||||
print " <tr>\n";
|
||||
print " <td class='mainLinks' align='center'>";
|
||||
print " <span class='f2'><span class='black'>.:</span>";
|
||||
print " <a href='/index.php'>".__("Home")."</a> ";
|
||||
print " <span class='black'> - </span> ";
|
||||
print " <a href='/account.php'>".__("Accounts")."</a> ";
|
||||
print " <span class='black'> - </span> ";
|
||||
print " <a href='/pkgsearch.php'>".__("Packages")."</a> ";
|
||||
print " <span class='black'> - </span> ";
|
||||
print " <a href='/pkgvote.php'>".__("Vote")."</a> ";
|
||||
print " <span class='black'> - </span> ";
|
||||
print " <a href='/pkgmgmnt.php'>".__("Manage")."</a> ";
|
||||
print " <span class='black'> - </span> ";
|
||||
print " <a href='/pkgsubmit.php'>".__("Submit")."</a> ";
|
||||
print " <span class='black'> - </span> ";
|
||||
print " <a href='/logout.php'>".__("Logout")."</a> ";
|
||||
print " <span class='black'>:.</span></span>";
|
||||
print " </td>";
|
||||
print " </tr>";
|
||||
print " <tr>\n";
|
||||
print " <td class='contentDisplay'>\n";
|
||||
print "<!-- Start of main content -->\n\n";
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
# common footer
|
||||
#
|
||||
function html_footer($ver="") {
|
||||
print "\n\n<!-- End of main content -->";
|
||||
print " </td>\n";
|
||||
print " </tr>\n";
|
||||
print "</table>\n";
|
||||
print "<p>\n";
|
||||
if ($ver) {
|
||||
print "<table border='0' cellpadding='0' cellspacing='0' width='100%'>\n";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue