mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-14 00:40:45 +00:00
99 lines
3.6 KiB
PHP
99 lines
3.6 KiB
PHP
<!-- menus -->
|
|
<?
|
|
function menuItemLink ($url, $desc)
|
|
{
|
|
echo '<A CLASS="menus" HREF="' . $url . '">' . $desc . '</A><BR>';
|
|
}
|
|
|
|
function menuSectionHeader ($name, $fgColor , $bgColor, $intBgColor)
|
|
{
|
|
echo "\n<!-- menuSectionHeader(" . $name . ') -->' .
|
|
'<TABLE cellSpacing="0" cellPadding="3" width="100%" border=0 bgColor="' . $bgColor . '">' .
|
|
' <TR bgColor="' . $bgColor . '">' .
|
|
' <TD align="center">' .
|
|
' <IMG src="/img/blank.gif" height="1" width="135" alt="" border="0"><BR>' .
|
|
' <SPAN class="titlebar">' . $name . '</SPAN>' .
|
|
' </TD>' .
|
|
' </TR>' .
|
|
' <TR align="right" bgColor="' . $intBgColor . '">' .
|
|
' <TD>';
|
|
}
|
|
|
|
function menuSectionFooter ()
|
|
{
|
|
echo ' </TD>' .
|
|
' </TR>' .
|
|
'</TABLE>';
|
|
}
|
|
|
|
function qfMenu ()
|
|
{
|
|
menuSectionHeader ("Project", 'white', menuHeadColor, menuBgColor);
|
|
menuItemLink ("/", "Latest News");
|
|
menuItemLink ("/news.php", "Old News");
|
|
menuItemLink ("/files.php", "Downloads");
|
|
menuItemLink ("http://sourceforge.net/bugs/?group_id=882", "Bug Reports");
|
|
menuItemLink ("http://sourceforge.net/mail/?group_id=882", "Mailing Lists");
|
|
menuItemLink ("/board/", "Web Forum");
|
|
menuSectionFooter ();
|
|
}
|
|
|
|
function develMenu ()
|
|
{
|
|
menuSectionHeader ("Developers", 'white', menuHeadColor, menuBgColor);
|
|
menuItemLink ("http://sourceforge.net/cvs/?group_id=882", "CVS Access");
|
|
menuItemLink ("/devtools.php", "Developer Tools");
|
|
menuItemLink ("/plans.php", "Developer Plans");
|
|
menuItemLink ("/progress.php", "Progress");
|
|
menuItemLink ("/sotc/", "State of the Code");
|
|
menuItemLink ("/research/", "Research Center");
|
|
// menuItemLink ("http://sourceforge.net/patch/?group_id=882", "Patch Manager");
|
|
// menuItemLink ("http://sourceforge.net/support/?group_id=882", "Support Manager");
|
|
menuItemLink ("http://sourceforge.net/pm/?group_id=882", "Task Manager");
|
|
menuSectionFooter ();
|
|
}
|
|
|
|
function sfMenu ()
|
|
{
|
|
menuSectionHeader ("SourceForge", 'white', menuHeadColor, menuBgColor);
|
|
menuItemLink ("http://sourceforge.net/", "Homepage");
|
|
menuItemLink ("http://sourceforge.net/snippet/", "Code Snippet Library");
|
|
menuItemLink ("http://sourceforge.net/softwaremap/", "Software Map");
|
|
menuItemLink ("http://sourceforge.net/new/", "New Releases");
|
|
menuItemLink ("http://sourceforge.net/docs/site/", "Site Documentation");
|
|
menuItemLink ("http://sourceforge.net/top/", "Top Projects");
|
|
menuItemLink ("http://sourceforge.net/mirrors/", "Other Site Mirrors");
|
|
menuSectionFooter ();
|
|
}
|
|
|
|
function searchMenu ()
|
|
{
|
|
menuSectionHeader ("Search", 'white', menuHeadColor, menuBgColor);
|
|
echo '<CENTER><FONT size="-2">' .
|
|
'<FORM action="search.php" method="POST">' .
|
|
' <SELECT name="type_of_search">' .
|
|
' <OPTION value="news">News</OPTION>' .
|
|
// ' <OPTION value="site">Site</OPTION>' .
|
|
' <OPTION value="bugs">Bug Tracking</OPTION>' .
|
|
' <OPTION value="lists">Mailing Lists</OPTION>' .
|
|
' <OPTION value="patches">Patches</OPTION>' .
|
|
' </SELECT>' .
|
|
' <BR>' .
|
|
' <INPUT TYPE="CHECKBOX" NAME="exact" VALUE="1" CHECKED> Require Exact Match' .
|
|
' <BR>' .
|
|
' <INPUT TYPE="HIDDEN" NAME="forum_id" VALUE="">' .
|
|
' <INPUT TYPE="HIDDEN" NAME="is_bug_page" VALUE="">' .
|
|
' <INPUT TYPE="HIDDEN" NAME="group_id" VALUE="882">' .
|
|
' <INPUT TYPE="text" NAME="words" SIZE="15" VALUE="">' .
|
|
' <BR>' .
|
|
' <INPUT TYPE="submit" NAME="Search" VALUE="Search">' .
|
|
'</FORM></FONT>' .
|
|
'</CENTER>';
|
|
menuSectionFooter ();
|
|
}
|
|
|
|
qfMenu ();
|
|
develMenu ();
|
|
// sfMenu ();
|
|
searchMenu ();
|
|
?>
|