website/parts/menu.php
2002-08-29 19:54:12 +00:00

98 lines
3.4 KiB
PHP

<!-- menus -->
<?
function menuItemLink ($name, $url, $desc)
{
global $currPage;
if ($name == $currPage) {
echo "<STRONG>$desc</STRONG><BR>";
} else {
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 ("about", "/about.php", "About");
menuItemLink ("home", "/", "Latest News");
menuItemLink ("news", "/news.php", "Old News");
menuItemLink ("docs", "/documentation.php", "Documentation");
menuItemLink ("shots", "/screenshots.php", "Screenshots");
menuItemLink ("files", "/files.php", "Downloads");
menuItemLink ("bugs", "/bugs/", "Bug Tracker");
menuItemLink ("lists", "/lists.php", "Mailing Lists");
// menuItemLink ("board", "/board/", "Web Forum");
menuSectionFooter ();
}
function develMenu ()
{
menuSectionHeader ("Developers", 'white', menuHeadColor, menuBgColor);
menuItemLink ("cvs", "/cgi-bin/viewcvs.cgi/", "Browse CVS");
menuItemLink ("devtools", "/devtools.php", "Developer Tools");
// menuItemLink ("plans", "/plans.php", "Developer Plans");
menuItemLink ("progress", "/progress.php", "Progress");
// menuItemLink ("sotc", "/sotc/", "State of the Code");
// menuItemLink ("research", "/research/", "Research Center");
// menuItemLink ("patches", "http://sourceforge.net/patch/?group_id=882", "Patch Manager");
// menuItemLink ("support", "http://sourceforge.net/support/?group_id=882", "Support Manager");
// menuItemLink ("tasks", "http://sourceforge.net/pm/?group_id=882", "Task Manager");
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="-announce">Announcements</OPTION>' .
' <OPTION value="-bugs">Bug Discussions</OPTION>' .
' <OPTION value="-cvs">CVS Logs</OPTION>' .
' <OPTION value="-devel">Developer Talk</OPTION>' .
' <OPTION value="-user">User Discussions</OPTION>' .
// ' <OPTION value="patches">Patches</OPTION>' .
' </SELECT>' .
' <BR>' .
' <INPUT TYPE="CHECKBOX" NAME="exact" VALUE="1" CHECKED>&nbsp;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 ();
searchMenu ();
?>