Header and navbar consistent with Arch site redesign

-- Loui Chang
Change is_tu to check_user_privileges
Change div#archdev-navbar style

Signed-off-by: Loui Chang <louipc.ist@gmail.com>
This commit is contained in:
Denis Kobozev 2010-06-25 10:12:29 -04:00 committed by Loui Chang
parent b5bc6ab742
commit b22f66b3ee
5 changed files with 82 additions and 36 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

View file

@ -0,0 +1,41 @@
/*
* ARCH GLOBAL NAVBAR
*
* We're forcing all generic selectors with !important
* to help prevent other stylesheets from interfering.
*
*/
/* container for the entire bar */
#archnavbar { height: 40px !important; padding: 10px 15px !important; background: #333 !important; border-bottom: 5px #08c solid !important; }
/* logo trickery -- GIF for IE6 and PNG for the rest */
#archnavbarlogo { float: left !important; margin: 0 !important; padding: 0 !important; height: 40px !important; width: 190px !important; }
/* IE6 doesn't support alpha PNGs so we serve it a GIF */
#archnavbarlogo { background: url('archlogo.gif') no-repeat !important; }
/* and use a proper PNG for all other modern browsers */
html > body #archnavbarlogo { background: url('archlogo.png') no-repeat !important; }
/* move the heading/paragraph text offscreen */
#archnavbarlogo p { margin: 0 !important; padding: 0 !important; text-indent: -9999px !important; }
#archnavbarlogo h1 { margin: 0 !important; padding: 0 !important; text-indent: -9999px !important; }
/* make the link the same size as the logo */
#archnavbarlogo a { display: block !important; height: 40px !important; width: 190px !important; }
/* display the list inline, float it to the right and style it */
#archnavbar ul { display: inline !important; float: right !important; list-style: none !important; margin: 0 !important; padding: 0 !important; }
#archnavbar ul li { float: left !important; font-size: 14px !important; font-family: sans-serif !important; line-height: 45px !important; padding-right: 15px !important; padding-left: 15px !important; }
/* style the links */
#archnavbar ul#archnavbarlist li a { color: #999; font-weight: normal !important; text-decoration: none !important; }
#archnavbar ul li a:hover { color: white !important; text-decoration: underline !important; }
/* archdev navbar */
div#archdev-navbar { margin: 1.5em 25px; }
div#archdev-navbar ul { list-style: none; margin: -0.5em 0; padding: 0; }
div#archdev-navbar li { display: inline; margin: 0; padding: 0; font-size: 0.9em; }
div#archdev-navbar li a { padding: 0 0.5em; color: #07b; }
/* highlight current website */
#archnavbar.anb-aur ul li#anb-aur a { color: white !important; }

View file

@ -422,6 +422,14 @@ function uid_from_email($email="")
return $row[0];
}
# check user privileges
#
function check_user_privileges()
{
$type = account_from_sid($_COOKIE['AURSID']);
return ($type == 'Trusted User' || $type == 'Developer');
}
/**
* Generate clean url with edited/added user values
*

View file

@ -8,47 +8,44 @@
<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='stylesheet' type='text/css' href='css/archnavbar/archnavbar.css' />
<link rel='shortcut icon' href='images/favicon.ico' />
<link rel='alternate' type='application/rss+xml' title='Newest Packages RSS' href='rss.php' />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<div id="title">
<div id="logo"><h1 id="archtitle"><a href="http://www.archlinux.org/" title="Arch Linux (Home)">Arch Linux</a></h1></div>
<div id="archnavbar" class="anb-aur">
<div id="archnavbarlogo"><h1><a href="/" title="Return to the main page">Arch Linux</a></h1></div>
<div id="archnavbarmenu">
<ul id="archnavbarlist">
<li id="anb-home"><a href="http://archlinux.org/" title="Arch news, packages, projects and more">Home</a></li>
<li id="anb-packages"><a href="http://archlinux.org/packages/" title="Arch Package Database">Packages</a></li>
<li id="anb-forums"><a href="http://bbs.archlinux.org/" title="Community forums">Forums</a></li>
<li id="anb-wiki"><a href="http://wiki.archlinux.org/" title="Community documentation">Wiki</a></li>
<li id="anb-bugs"><a href="http://bugs.archlinux.org/" title="Report and track bugs">Bugs</a></li>
<li id="anb-aur"><a href="http://aur.archlinux.org/" title="Arch Linux User Repository">AUR</a></li>
<li id="anb-download"><a href="http://archlinux.org/download/" title="Get Arch Linux">Download</a></li>
</ul>
</div>
<div id="main_nav">
<a href="http://www.archlinux.org/">Home</a>
<a href="http://bbs.archlinux.org/">Forums</a>
<a href="http://wiki.archlinux.org/">Wiki</a>
<a href="http://bugs.archlinux.org/">Bugs</a>
<a class="selected" href="index.php">AUR</a>
<a href="http://www.archlinux.org/download/">Download</a>
</div>
<div id="sub_nav">
<a href="index.php">AUR <?php print __("Home"); ?></a>
<a href="account.php"><?php print __("Accounts"); ?></a>
<a href="packages.php"><?php print __("Packages"); ?></a>
<a href="http://bugs.archlinux.org/index.php?tasks=all&amp;project=2"><?php print __("Bugs"); ?></a>
<a href="http://archlinux.org/mailman/listinfo/aur-general">
<?php print __("Discussion"); ?></a>
<?php
if (isset($_COOKIE["AURSID"])) {
$SID = $_COOKIE['AURSID'];
$atype = account_from_sid($SID);
if ($atype == "Trusted User" || $atype == "Developer") {
?>
<a href="tu.php"><?php print __("Trusted User"); ?></a>
<?php
}
?>
<a href="packages.php?SeB=m&K=<?php print username_from_sid($_COOKIE["AURSID"]); ?>"><?php print __("My Packages"); ?></a>
<a href="pkgsubmit.php"><?php print __("Submit"); ?></a>
<?php
}
?>
</div><!-- #archnavbar -->
<div id="archdev-navbar">
<ul>
<li><a href="index.php">AUR <?php print __("Home"); ?></a></li>
<li><a href="account.php"><?php print __("Accounts"); ?></a></li>
<li><a href="packages.php"><?php print __("Packages"); ?></a>
<li><a href="http://bugs.archlinux.org/index.php?tasks=all&amp;project=2"><?php print __("Bugs"); ?></a></li>
<li><a href="http://archlinux.org/mailman/listinfo/aur-general"><?php print __("Discussion"); ?></a></li>
<?php if (isset($_COOKIE['AURSID'])): ?>
<?php if (check_user_privileges()): ?><li><a href="tu.php"><?php print __("Trusted User"); ?></a><?php endif; ?>
<li><a href="packages.php?SeB=m&K=<?php print username_from_sid($_COOKIE["AURSID"]); ?>"><?php print __("My Packages"); ?></a></li>
<li><a href="pkgsubmit.php"><?php print __("Submit"); ?></a></li>
<?php endif; ?>
</ul>
</div><!-- #archdev-navbar -->
</div>
<?php include("login_form.php"); ?>
<div id="lang_sub">
<?php
reset($SUPPORTED_LANGS);