mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Made some things in config.inc.proto that should be constants constants
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
This commit is contained in:
parent
5546779ad0
commit
c764f078f1
4 changed files with 70 additions and 63 deletions
|
@ -12,26 +12,6 @@ include_once("aur_po.inc");
|
|||
# is using...
|
||||
#
|
||||
|
||||
# Define global variables
|
||||
#
|
||||
$LOGIN_TIMEOUT = 7200; # number of idle seconds before timeout
|
||||
$SUPPORTED_LANGS = array( # what languages we have translations for
|
||||
"en" => "English",
|
||||
"pl" => "Polski",
|
||||
"it" => "Italiano",
|
||||
"ca" => "Català",
|
||||
"pt" => "Português",
|
||||
# Eventually we will comment these in, when they are ready - PJM - 4/2005
|
||||
"es" => "Español",
|
||||
"de" => "Deutsch",
|
||||
"ru" => "Русский",
|
||||
"fr" => "Français",
|
||||
);
|
||||
|
||||
# debugging variables
|
||||
#
|
||||
$QBUG = 1; # toggle query logging to /var/tmp/aurq.log
|
||||
$DBUG = 1; # use dbug($msg) to log to /var/tmp/aurd.log
|
||||
|
||||
|
||||
# return an array of info for each Trusted user
|
||||
|
@ -296,7 +276,7 @@ function db_query($query="", $db_handle="") {
|
|||
$db_handle = db_connect();
|
||||
}
|
||||
if ($QBUG) {
|
||||
$fp = fopen("/var/tmp/aurq.log", "a");
|
||||
$fp = fopen(AURQ_LOG, "a");
|
||||
fwrite($fp, $query . "\n");
|
||||
fclose($fp);
|
||||
}
|
||||
|
@ -479,7 +459,7 @@ function html_footer($ver="") {
|
|||
# debug logging
|
||||
#
|
||||
function dbug($msg) {
|
||||
$fp = fopen("/var/tmp/aurd.log", "a");
|
||||
$fp = fopen(AURD_LOG, "a");
|
||||
fwrite($fp, $msg . "\n");
|
||||
fclose($fp);
|
||||
return;
|
||||
|
|
|
@ -1,15 +1,43 @@
|
|||
<?php
|
||||
# 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";
|
||||
$AUR_db_pass = "aur";
|
||||
define( "AUR_db_host", "localhost:/tmp/mysql.sock" );
|
||||
define( "AUR_db_name", "aur" );
|
||||
define( "AUR_db_user", "aur" );
|
||||
define( "AUR_db_pass", "aur" );
|
||||
|
||||
# Configuration of directories where things live
|
||||
$UPLOAD_DIR = "/home/aur/unsupported-temp/";
|
||||
$INCOMING_DIR = "/home/aur/unsupported/";
|
||||
$URL_DIR = "/packages/";
|
||||
define( "UPLOAD_DIR", "/home/aur/unsupported-temp/" );
|
||||
define( "INCOMING_DIR", "/home/aur/unsupported/" );
|
||||
define( "URL_DIR", "/packages/" );
|
||||
|
||||
define( "AURQ_LOG", "/home/aur/aurq.log" );
|
||||
define( "AURD_LOG", "/home/aur/aurd.log" );
|
||||
|
||||
define( "USERNAME_MIN_LEN", 3 );
|
||||
define( "USERNAME_MAX_LEN", 16 );
|
||||
define( "PASSWD_MIN_LEN", 4 );
|
||||
define( "PASSWD_MAX_LEN", 128 );
|
||||
|
||||
|
||||
$LOGIN_TIMEOUT = 7200; # number of idle seconds before timeout
|
||||
|
||||
# debugging variables
|
||||
#
|
||||
$QBUG = 1; # toggle query logging to /var/tmp/aurq.log
|
||||
$DBUG = 1; # use dbug($msg) to log to /var/tmp/aurd.log
|
||||
|
||||
$SUPPORTED_LANGS = array( # what languages we have translations for
|
||||
"en" => "English",
|
||||
"pl" => "Polski",
|
||||
"it" => "Italiano",
|
||||
"ca" => "Català",
|
||||
"pt" => "Português",
|
||||
"es" => "Español",
|
||||
"de" => "Deutsch",
|
||||
"ru" => "Русский",
|
||||
"fr" => "Français"
|
||||
);
|
||||
|
||||
# vim: ts=2 sw=2 noet ft=php
|
||||
?>
|
||||
|
|
|
@ -365,8 +365,7 @@ function package_details($id=0, $SID="") {
|
|||
print "<tr>\n";
|
||||
print " <td class='boxSoft' colspan='2'><span class='f3'>";
|
||||
if ($row["LocationID"] == 2) {
|
||||
global $URL_DIR;
|
||||
$urlpath = $URL_DIR.$row["Name"]."/".$row["Name"];
|
||||
$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
Add a link
Reference in a new issue