Diederick Niehorster's web page changes as listed in an e-mail dated 11/29/09, 8:35 PM

git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@857 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
fayjf 2009-12-03 04:12:54 +00:00
parent 51c968449c
commit cf68c85c42
5 changed files with 11 additions and 29 deletions

1
.gitattributes vendored
View File

@ -132,7 +132,6 @@ freeglut/freeglut/src/freeglutdll.def svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/src/templates/cpp_template svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/src/templates/header_template svn_keywords=Author+Date+Id+Revision
freeglut/web-src/basic_page.php svn_keywords=Author+Date+Id+Revision
freeglut/web-src/dinfo.php svn_keywords=Author+Date+Id+Revision
freeglut/web-src/docs/api.php svn_keywords=Author+Date+Id+Revision
freeglut/web-src/docs/install.php svn_keywords=Author+Date+Id+Revision
freeglut/web-src/freeglut-style.css svn_keywords=Author+Date+Id+Revision

View File

@ -1,11 +0,0 @@
<?php
require("template.php");
# Now set the title of the page:
setPageTitle("Info for Developers");
# Make the header.
generateHeader($_SERVER['PHP_SELF']);
?>
<?php generateFooter(); ?>

View File

@ -31,10 +31,10 @@ It's by contributions that truly wonderful pieces of open and free software come
<li>Use freeglut in your projects!</li>
<li>Tell us what you like.</li>
<li>Tell us what you'd change.</li>
<li>Report bugs.</li>
<li><a href="http://sourceforge.net/tracker/?func=browse&amp;group_id=1032&amp;atid=101032">Report bugs.</a></li>
<li>Write documentation.</li>
<li>Spread the word about the project.</li>
<li>Join our development mailing list.</li>
<li><a href="http://lists.sourceforge.net/lists/listinfo/freeglut-developer">Join</a> our development mailing list.</li>
<li>If you changed a feature, send us a patch -- others might benefit from your work!</li>
</ul>
@ -43,11 +43,6 @@ But simply, become involved!
The project is not just software, it's the people that contribute, too.
</p>
<div class="textheader">We can always use a hand.</div>
<p>Below you'll find how to get the latest CVS copy, API documentation,
and probably some ideas on why you should use freeglut.</p>
<div class="textheader">Go to SourceForge and...</div>
<ul>
@ -55,12 +50,11 @@ and probably some ideas on why you should use freeglut.</p>
<li><a href="http://sourceforge.net/tracker/?func=browse&amp;group_id=1032&amp;atid=101032">Review current bug reports</a></li>
</ul>
<div class="textheader"><a name="cvs"></a>Anonymous CVS Access</div>
<p>To check out the most up to date development copy of freeglut, issue the following commands at your command line. When prompted for a password for anonymous, simply press the Enter key.</p>
<div class="textheader"><a name="svn"></a>Anonymous SVN Access</div>
<p>To check out the most up to date development copy of freeglut, issue the following commands at your command line. See also <a href="http://sourceforge.net/svn/?group_id=1032">SourceForge's Anonymous SVN Instructions</a>.</p>
<pre>
cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/freeglut login
cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/freeglut co freeglut
svn co https://freeglut.svn.sourceforge.net/svnroot/freeglut/trunk/freeglut/freeglut freeglut
</pre>
<?php generateFooter(); ?>

View File

@ -61,7 +61,7 @@ generateHeader($_SERVER['PHP_SELF']);
</p>
-->
<p>
<a href="http://www.transmissionzero.co.uk/software/freeglut-devel/">Martin Payne's Windows binaries</a><br/>
<a href="http://www.transmissionzero.co.uk/software/freeglut-devel/">Martin Payne's Windows binaries (MSVC and MinGW)</a><br/>
<a href="http://tisch.sf.net/freeglut-2.6.0-mpx-latest.patch">Florian Echtler's MPX Patch</a>
</p>
@ -69,8 +69,8 @@ generateHeader($_SERVER['PHP_SELF']);
<div class="textheader">Development Releases</div>
<p>
<a href="http://freeglut.sourceforge.net/dist/freeglut-nightly.tar.gz">Nightly SVN Tarball</a> -- This is currently disabled<br/>
<a href="http://sourceforge.net/svn/?group_id=1032">Anonymous SVN Instructions</a>
<a href="http://freeglut.svn.sourceforge.net/viewvc/freeglut/trunk/freeglut/freeglut.tar.gz?view=tar">SVN trunk tarball</a><br/>
<a href="help.php#svn">Anonymous SVN Instructions</a>
</p>
</div>

View File

@ -76,9 +76,9 @@ function generateSideBar($current_page)
while (next($sidebarentries))
printMenuItem(current($sidebarentries), $current_page);
# This allows a user to view our PHP source... it's in CVS anyway, and why not spread the love of
# This allows a user to view our PHP source... it's in SVN 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";
$svn_location = "http://freeglut.svn.sourceforge.net/viewvc/freeglut/trunk/freeglut/web-src$current_page?view=markup";
# Print the SourceForge logo button and the "View source" link
?>
@ -101,7 +101,7 @@ function generateSideBar($current_page)
</span>
<br/><br/>
<span class="navbar-smalltext" style="font-style: normal;">
<? echo "\t<a href=\"$cvs_location\">View PHP Source</a>"; ?>
<? echo "\t<a href=\"$svn_location\">View PHP Source</a>"; ?>
</span>
</div>
<?