-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.php
65 lines (55 loc) · 2.38 KB
/
help.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
require("template.php");
# Now set the title of the page:
setPageTitle("How You Can Help");
# Make the header.
generateHeader($_SERVER['PHP_SELF']);
?>
<div class="img-right">
<img src="images/OGL.png" alt="OpenGL" /><br/>
This is OpenGL at its finest.
</div>
<div class="textheader">This is better than GLUT.</div>
<p>freeglut started out as a GLUT clone, but now it's something much
better than that. It's a GLUT replacement. Here are the features you
have wanted -- and if you have ideas for more, share them (see below),
or fork our <a href="https://github.com/freeglut/freeglut">github
repository</a> and implement them! freeglut is under continuous
development. See <a href=progress.php>here</a> for the list of work that is
still to be done.</p>
<div class="textheader">Everyone can help</div>
<p>
Free software projects depend on the community around them for their growth.
It's by contributions that truly wonderful pieces of open and free software come to be.
Contributions can be nearly anything. The point is involvement!</p>
<p>Examples:
<ul>
<li>Attack one of the <a href="progress.php">points on our todo list</a></li>
<li>Use freeglut in your projects!</li>
<li>Tell us what you like.</li>
<li>Tell us what you'd change.</li>
<li><a href="https://github.com/freeglut/freeglut/issues">Report bugs.</a></li>
<li>Write documentation.</li>
<li>Spread the word about the project.</li>
<li><a href="http://lists.sourceforge.net/lists/listinfo/freeglut-developer">Join</a> our development mailing list.</li>
<li>If you changed or added a feature, create
<a href="https://github.com/freeglut/freeglut/pull">a pull request on github</a>,
or send us a patch on the mailing list -- others might benefit from your work!</li>
</ul></p>
<p>
But simply, become involved!
The project is not just software, it's the people that contribute, too.
</p>
<div class="textheader">future freeglut</div>
<p>
<a href=progress.php>Click here</a> for an overview of the major work,
its status and planned milestones for future versions of freeglut. Help on
any of these plans, as well as suggestions and/or patches for anything
else are very welcome!
</p>
<div class="textheader"><a name="svn"></a>Getting the latest source code</div>
<p>To get the most up to date development copy of freeglut, use the following command:</p>
<pre>
git clone https://github.com/freeglut/freeglut
</pre>
<?php generateFooter(); ?>