Add in a "view PHP source" option to all webpages that links to CVS. Clean up the template file a little more for kicks. :)
git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@419 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
parent
4dcf24793a
commit
5e4c0b6c11
@ -56,20 +56,36 @@ function printMenuItem($item, $current_page) {
|
||||
|
||||
function generateSideBar($current_page) {
|
||||
global $sidebarentries;
|
||||
echo "<div class=\"navbar-left\">";
|
||||
echo "<div class=\"navbar-left\">"; # Open the navbar
|
||||
|
||||
# Print out the logo!
|
||||
echo "<div class=\"navbar-header\"><a href=\"/\"><img src=\"/images/freeglut_logo.png\" border=\"0\"></a></div>
|
||||
<div class=\"navbar-smalltext\">The Free OpenGL Utility Toolkit</div><br>";
|
||||
|
||||
# Print out each sidebar entry one by one...
|
||||
reset($sidebarentries);
|
||||
while (next($sidebarentries)) {
|
||||
printMenuItem(current($sidebarentries), $current_page);
|
||||
}
|
||||
|
||||
echo "<br>
|
||||
<div class=\"navbar-header\"><a href=\"http://sourceforge.net/\"><img src=\"http://sourceforge.net/sflogo.php?group_id=1032&type=4\" border=\"0\"></a></div>";
|
||||
# This allows a user to view our PHP source... it's in CVS anyway, and why not spread the love of
|
||||
# slick web page design? ;)
|
||||
$cvs_location = "http://cvs.sourceforge.net/viewcvs.py/freeglut/freeglut/web-src$current_page?view=auto";
|
||||
|
||||
# Print the SourceForge logo button and the "View source" link
|
||||
echo "
|
||||
<br>
|
||||
<div class=\"navbar-header\">
|
||||
<a href=\"http://sourceforge.net/\"><img src=\"http://sourceforge.net/sflogo.php?group_id=1032&type=4\" border=\"0\"></a>
|
||||
</div>
|
||||
<br>
|
||||
<div class=\"navbar-smalltext\" style=\"font-style: normal;\">
|
||||
<a href=\"$cvs_location\">View PHP Source</a>
|
||||
</div>
|
||||
";
|
||||
|
||||
echo "</div>"; # Close the navbar.
|
||||
|
||||
echo "</div>";
|
||||
}
|
||||
|
||||
function setPageTitle($title_inc) {
|
||||
@ -78,3 +94,4 @@ function setPageTitle($title_inc) {
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
|
Reference in New Issue
Block a user