mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Added header, footer, and login form templates
Implemented the first two in web/lib/aur.inc. Signed-off-by: Loui Chang <louipc.ist@gmail.com>
This commit is contained in:
parent
016e8796c3
commit
878d0bb39a
4 changed files with 121 additions and 81 deletions
|
@ -1,4 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
|
set_include_path(get_include_path() . PATH_SEPARATOR . '../template');
|
||||||
header('Content-Type: text/html; charset=utf-8');
|
header('Content-Type: text/html; charset=utf-8');
|
||||||
header('Cache-Control: no-cache, must-revalidate');
|
header('Cache-Control: no-cache, must-revalidate');
|
||||||
header('Expires: Tue, 11 Oct 1988 22:00:00 GMT'); // quite a special day
|
header('Expires: Tue, 11 Oct 1988 22:00:00 GMT'); // quite a special day
|
||||||
|
@ -336,76 +337,9 @@ function html_header() {
|
||||||
global $_SERVER;
|
global $_SERVER;
|
||||||
global $_COOKIE;
|
global $_COOKIE;
|
||||||
global $LANG;
|
global $LANG;
|
||||||
echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
|
global $SUPPORTED_LANGS;
|
||||||
echo "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"";
|
|
||||||
echo " \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n";
|
|
||||||
echo "<html xmlns=\"http://www.w3.org/1999/xhtml\"";
|
|
||||||
echo " xml:lang=\"".$LANG."\" lang=\"".$LANG."\">\n";
|
|
||||||
echo "<head>\n";
|
|
||||||
echo "<title>AUR (".$LANG.")</title>\n";
|
|
||||||
echo "<link rel='stylesheet' type='text/css' href='/css/fonts.css'/>\n";
|
|
||||||
echo "<link rel='stylesheet' type='text/css' href='/css/containers.css'/>\n";
|
|
||||||
echo "<link rel='stylesheet' type='text/css' href='/css/arch.css'/>\n";
|
|
||||||
echo "<link rel='shortcut icon' href='/images/favicon.ico'/>\n";
|
|
||||||
echo "<link rel='alternate' type='application/rss+xml' title='Newest Packages RSS' href='/rss2.php' />\n";
|
|
||||||
echo "<meta http-equiv=\"Content-Type\"";
|
|
||||||
echo " content=\"text/html; charset=UTF-8\" />\n";
|
|
||||||
echo "</head>\n";
|
|
||||||
echo "<body bgcolor='white'>\n";
|
|
||||||
echo <<<END1
|
|
||||||
<div id="head_container">
|
|
||||||
<div id="title">
|
|
||||||
<div id="logo"><a href="/"><img src="/images/logo.png" alt="Arch Logo" /></a></div>
|
|
||||||
<div id="titleimg"><a href="/"><img src="/images/title.png" alt="Arch Linux" /></a></div>
|
|
||||||
</div>
|
|
||||||
<div style="float: right; color: #eeeeee; font-size: small">
|
|
||||||
</div>
|
|
||||||
<div id="main_nav">
|
|
||||||
<ul>
|
|
||||||
<li><a href="http://www.archlinux.org/download/">Get Arch</a></li>
|
|
||||||
<li class="selected"><a href="http://aur.archlinux.org">AUR</a></li>
|
|
||||||
<li><a href="http://bugs.archlinux.org">Bugs</a></li>
|
|
||||||
<li><a href="http://wiki.archlinux.org">Wiki</a></li>
|
|
||||||
<li><a href="http://bbs.archlinux.org">Forums</a></li>
|
|
||||||
<li><a href="http://www.archlinux.org">Home</a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div id="sub_nav">
|
|
||||||
<ul>
|
|
||||||
|
|
||||||
END1;
|
include('header.php');
|
||||||
if ($_COOKIE["AURSID"]) {
|
|
||||||
# This is a usability change, so we can go to My Packages page
|
|
||||||
# with just one click
|
|
||||||
# Added by: dsa <dsandrade@gmail.com>
|
|
||||||
echo ' <li><a href="/logout.php">'.__("Logout")."</a></li>\n";
|
|
||||||
echo ' <li><a href="/pkgsubmit.php">'.__("Submit")."</a></li>\n";
|
|
||||||
echo ' <li><a href="/packages.php?do_MyPackages=1">'.__("My Packages")."</a></li>\n";
|
|
||||||
}
|
|
||||||
echo ' <li><a href="http://www.archlinux.org/mailman/listinfo/aur-general/">'.__("Discussion")."</a></li>\n";
|
|
||||||
echo ' <li><a href="http://bugs.archlinux.org/index.php?tasks=all&project=2">'.__("Bugs")."</a></li>\n";
|
|
||||||
echo ' <li><a href="/packages.php">'.__("Packages")."</a></li>\n";
|
|
||||||
echo ' <li><a href="/account.php">'.__("Accounts")."</a></li>\n";
|
|
||||||
echo ' <li><a href="/index.php">AUR '.__("Home")."</a></li>\n";
|
|
||||||
echo " </ul>\n";
|
|
||||||
echo " </div>\n";
|
|
||||||
echo ' <div id="lang_sub">'."\n";
|
|
||||||
echo " <ul>\n";
|
|
||||||
echo " <li><a href='".$_SERVER["PHP_SELF"]."?setlang=ru' title='Русский'>RU</a></li>\n";
|
|
||||||
echo " <li><a href='".$_SERVER["PHP_SELF"]."?setlang=fr' title='Français'>FR</a></li>\n";
|
|
||||||
echo " <li><a href='".$_SERVER["PHP_SELF"]."?setlang=de' title='Deutsch'>DE</a></li>\n";
|
|
||||||
echo " <li><a href='".$_SERVER["PHP_SELF"]."?setlang=es' title='Español'>ES</a></li>\n";
|
|
||||||
echo " <li><a href='".$_SERVER["PHP_SELF"]."?setlang=pt' title='Português'>PT</a></li>\n";
|
|
||||||
echo " <li><a href='".$_SERVER["PHP_SELF"]."?setlang=ca' title='Català'>CA</a></li>\n";
|
|
||||||
echo " <li><a href='".$_SERVER["PHP_SELF"]."?setlang=it' title='Italiano'>IT</a></li>\n";
|
|
||||||
echo " <li><a href='".$_SERVER["PHP_SELF"]."?setlang=pl' title='Polski'>PL</a></li>\n";
|
|
||||||
echo " <li><a href='".$_SERVER["PHP_SELF"]."?setlang=en' title='English'>EN</a></li>\n";
|
|
||||||
echo " <li>Lang: </li>\n";
|
|
||||||
echo " </ul>\n";
|
|
||||||
echo " </div>\n";
|
|
||||||
echo "</div>\n";
|
|
||||||
echo "<div id=\"maincontent\">\n";
|
|
||||||
echo "<!-- Start of main content -->\n\n";
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -413,17 +347,7 @@ END1;
|
||||||
# common footer
|
# common footer
|
||||||
#
|
#
|
||||||
function html_footer($ver="") {
|
function html_footer($ver="") {
|
||||||
print "\n\n<!-- End of main content -->\n";
|
include('footer.php');
|
||||||
print " <br />\n";
|
|
||||||
if ($ver) {
|
|
||||||
print "<p>\n";
|
|
||||||
print "<table border='0' cellpadding='0' cellspacing='0' width='97%'>\n";
|
|
||||||
print "<tr><td align='right'><span class='fix'>".$ver."</span></td></tr>\n";
|
|
||||||
print "</table>\n";
|
|
||||||
print "</p>\n";
|
|
||||||
}
|
|
||||||
print "</div>\n";
|
|
||||||
print "</body>\n</html>";
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
11
web/template/footer.php
Normal file
11
web/template/footer.php
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
|
||||||
|
<!-- End of main content -->
|
||||||
|
<br />
|
||||||
|
<?php
|
||||||
|
if ($ver) {
|
||||||
|
print "<p style=\"text-align: right\">$ver</p>\n";
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
72
web/template/header.php
Normal file
72
web/template/header.php
Normal file
|
@ -0,0 +1,72 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||||
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml"
|
||||||
|
xml:lang="<?php print "$LANG\" lang=\"$LANG"; ?>">
|
||||||
|
<head>
|
||||||
|
<title>AUR (<?php print $LANG; ?>)</title>
|
||||||
|
<link rel='stylesheet' type='text/css' href='/css/fonts.css' />
|
||||||
|
<link rel='stylesheet' type='text/css' href='/css/containers.css' />
|
||||||
|
<link rel='stylesheet' type='text/css' href='/css/arch.css' />
|
||||||
|
<link rel='shortcut icon' href='images/favicon.ico' />
|
||||||
|
<link rel='alternate' type='application/rss+xml'
|
||||||
|
title='Newest Packages RSS' href='rss2.php' />
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||||
|
</head>
|
||||||
|
<body bgcolor='white'>
|
||||||
|
<div id="head_container">
|
||||||
|
<div id="title">
|
||||||
|
<div id="logo"><a href="/"><img src="images/logo.png"
|
||||||
|
alt="Arch Logo" /></a></div>
|
||||||
|
<div id="titleimg"><a href="/"><img src="images/title.png"
|
||||||
|
alt="Arch Linux" /></a></div>
|
||||||
|
</div>
|
||||||
|
<div style="float: right; color: #eeeeee; font-size: small">
|
||||||
|
</div>
|
||||||
|
<div id="main_nav">
|
||||||
|
<ul>
|
||||||
|
<li><a href="http://www.archlinux.org/download/">Get Arch</a></li>
|
||||||
|
<li class="selected"><a href="http://aur.archlinux.org">AUR</a></li>
|
||||||
|
<li><a href="http://bugs.archlinux.org">Bugs</a></li>
|
||||||
|
<li><a href="http://wiki.archlinux.org">Wiki</a></li>
|
||||||
|
<li><a href="http://bbs.archlinux.org">Forums</a></li>
|
||||||
|
<li><a href="http://www.archlinux.org">Home</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div id="sub_nav">
|
||||||
|
<ul>
|
||||||
|
<?php
|
||||||
|
if (isset($_COOKIE["AURSID"])) {
|
||||||
|
echo ' <li><a href="/logout.php">'.__("Logout")."</a></li>\n";
|
||||||
|
echo ' <li><a href="/pkgsubmit.php">'.__("Submit")."</a></li>\n";
|
||||||
|
echo ' <li><a href="/packages.php?do_MyPackages=1">'
|
||||||
|
.__("My Packages")."</a></li>\n";
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
<li><a href="http://www.archlinux.org/mailman/listinfo/tur-users/">
|
||||||
|
<?php print __("Discussion"); ?></a></li>
|
||||||
|
<li><a href="http://bugs.archlinux.org/index.php?tasks=all&project=2"><?php print __("Bugs"); ?></a></li>
|
||||||
|
<li><a href="packages.php"><?php print __("Packages"); ?></a></li>
|
||||||
|
<li><a href="account.php"><?php print __("Accounts"); ?></a></li>
|
||||||
|
<li><a href="index.php">AUR <?php print __("Home"); ?></a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div id="lang_sub">
|
||||||
|
<ul>
|
||||||
|
<?php
|
||||||
|
reset($SUPPORTED_LANGS);
|
||||||
|
foreach ($SUPPORTED_LANGS as $lang => $lang_name) {
|
||||||
|
print '<li><a href="'
|
||||||
|
. $_SERVER["PHP_SELF"]."?setlang=$lang\""
|
||||||
|
. " title=\"" . $SUPPORTED_LANGS[$lang]. "\">"
|
||||||
|
. strtoupper($lang) . "</a></li>\n";
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
<li>Lang: </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="maincontent">
|
||||||
|
<!-- Start of main content -->
|
||||||
|
|
||||||
|
|
33
web/template/login_form.php
Normal file
33
web/template/login_form.php
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
<?php
|
||||||
|
# Now present the user login stuff
|
||||||
|
if (!isset($_COOKIE["AURSID"])):
|
||||||
|
|
||||||
|
# the user is not logged in, give them login widgets
|
||||||
|
#
|
||||||
|
if (!empty($login['error'])) {
|
||||||
|
print '<div class="error">' . $login['error']
|
||||||
|
. '</div>';
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
|
||||||
|
<form action="<?php print $_SERVER['PHP_SELF']; ?>" method="post">
|
||||||
|
<label class="lbox"><?php print __("Username"); ?><br />
|
||||||
|
<input type="text" name="user" size="30"
|
||||||
|
maxlength="<?php print USERNAME_MAX_LEN;?>"></label>
|
||||||
|
|
||||||
|
<label class="lbox"><?php print __("Password"); ?><br />
|
||||||
|
<input type="password" name="passwd" size="30"
|
||||||
|
maxlength="<?php print PASSWD_MAX_LEN; ?>"></label>
|
||||||
|
<br />
|
||||||
|
<input type="submit" class="button"
|
||||||
|
value="<?php print __("Login"); ?>">
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
else:
|
||||||
|
print __("Logged-in as: %h%s%h",
|
||||||
|
array("<b>", username_from_sid($_COOKIE["AURSID"]), "</b>"));
|
||||||
|
endif;
|
||||||
|
|
||||||
|
# vim: ts=2 sw=2 noet ft=php
|
||||||
|
?>
|
Loading…
Add table
Reference in a new issue