First try of getting the web page to work via CVS.

git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@400 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
puggles 2003-12-13 03:52:54 +00:00
parent 8625b93f73
commit 878f58d35b
4 changed files with 164 additions and 0 deletions

3
.gitattributes vendored
View File

@ -85,3 +85,6 @@ freeglut/freeglut/src/templates/cpp_template svn_keywords=Author+Date+Id+Revisio
freeglut/freeglut/src/templates/header_template svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/stamp-h svn_keywords=Author+Date+Id+Revision
freeglut/freeglut/stamp-h.in svn_keywords=Author+Date+Id+Revision
freeglut/web-src/freeglut-style.css svn_keywords=Author+Date+Id+Revision
freeglut/web-src/index.php svn_keywords=Author+Date+Id+Revision
freeglut/web-src/template.php svn_keywords=Author+Date+Id+Revision

View File

@ -0,0 +1,89 @@
BODY {
margin-top: 0px ;
background-color: #FFFFFF;
color: #000000;
}
A {
text-decoration: none;
color: #DDAADD;
}
A.hover {
text-decoration: underline;
}
BLOCKQUOTE {
color: #FFFFFF ;
border: 2px #222222 solid ;
background-color: #333333 ;
padding: 3px;
}
.textheader {
font-size: 1.4em;
border-bottom: 1px #111166 solid ;
width: 100%;
}
.navbar-left {
color: #000000 ;
background-color: #333333 ;
position: absolute ;
left: 0px ;
width: 100px ;
float: left ;
border: 2px #222222 solid ;
}
.navbar-header {
font-size: 1.2em;
color: #AAAAAA;
background-color: transparent;
text-align: center;
}
.navbar-item {
font-size: 1.0em ;
color: #FFFF00 ;
background-color: transparent ;
border: 1px #111111 solid ;
margin-top: 0px;
padding: 3px;
text-align: center;
}
.smallblock {
font-size: 1.0em;
color: #FFFFFF;
background-color: #221A22;
border: 1px #111111 solid ;
padding: 2px;
}
.main-side {
margin-left: 110px;
margin-right: 10px;
}
.title {
font-size: 1.8em;
color: #FFFFFF;
background-color: transparent;
padding: 5px;
text-align: center;
}
.block {
font-size: 1.0em;
border: 2px #333333 solid ;
padding: 3px;
background-color: #111111;
}
.block-title {
font-size: 1.4em;
border: 2px #665533 solid ;
padding: 3px;
background-color: #333333;
}

View File

@ -0,0 +1,43 @@
<?PHP
require("template.php");
setPageTitle("Front Page");
generateHeader();
?>
<div class="textheader">What?</div>
<p>freeglut is a completely OpenSourced alternative to the OpenGL Utility Toolkit (GLUT) library. GLUT was originally written by Mark Kilgard to support the sample programs in the second edition OpenGL 'RedBook'. Since then, GLUT has been used in a wide variety of practical applications because it is simple, universally available and highly portable.</p>
<p>GLUT (and hence freeglut) allows the user to create and manage windows containing OpenGL contexts on a wide range of platforms and also read the mouse, keyboard and joystick functions.</p>
<p>freeglut is released under the X-Consortium license.</p>
<div class="textheader">Why?</div>
<p>The original GLUT library seems to have been abandoned with the most recent version (3.7) dating back to August 1998. It's license does not allow anyone to distribute modified library code. This would be OK, if not for the fact that GLUT is getting old and really needs improvement. Also, GLUT's license is incompatible with some software distributions (eg Xfree86).</p>
<div class="textheader">Who?</div>
<p>freeglut was originally written by Pawel W. Olszta with contributions from Andreas Umbach and Steve Baker. Steve is now the official owner/maintainer of freeglut.</p>
<div class="textheader">When?</div>
<p>Pawel started freeglut development on December 1st, 1999. The project is now a virtually 100% replacement for the original GLUT with only a few departures (such as the abandonment of SGI-specific features such as the Dials&Buttons box and Dynamic Video Resolution).</p>
<div class="textheader">Downloads...</div>
<p>Below are file links for the freeglut project. README files are included, or you can check the install documentation. Have fun!</p>
<div class="textheader">Prepackaged Releases</div>
<p>The freeglut project does not support packaged versions of freeglut excepting, of course, the tarballs distributed here. However, various members of the community have put time and effort into providing source or binary rollups, and we thank them for their efforts. Here's a list which is likely incomplete:</p>
<p>Andy Piper's RedHat Fedora RPMs</p>
<p>If you have problems with these packages, please contact their maintainers - we of the freeglut team probably can't help.</p>
<div class="textheader">Questions?</div>
<p>Don't be afraid to ask for help. We don't bite. Much.</p>
<p>Send freeglut related questions to the appropriate freeglut mailing list:</p>
<ul>
<li>freeglut-developer [Subscribe],</li>
<li>freeglut-announce [Subscribe], and</li>
<li>freeglut-bugs [Subscribe]</li>
</ul>
<?PHP
generateFooter();
?>

View File

@ -0,0 +1,29 @@
<?PHP
global($site_title, $title);
$site_title = "The freeglut Project";
$title = $site_title . " :: The Next Generation of GLUT";
function generateHeader() {
?>
<HTML>
<HEAD>
<title><? echo $title ?></title>
<link rel="stylesheet" type="text/css" href="freeglut-style.css">
</HEAD>
<BODY>
<?
}
function generateFooter() {
?>
</BODY>
</HTML>
<?
}
function setPageTitle($title_inc) {
global($site_title, $title);
$title = $site_title . " :: " . $title_inc;
}
?>