mirror of https://github.com/BOINC/boinc.git
109 lines
3.2 KiB
PHP
109 lines
3.2 KiB
PHP
<?php
|
|
require_once("docutil.php");
|
|
|
|
page_head("Community and resources");
|
|
|
|
echo "
|
|
<h2>Participants</h2>
|
|
<p>
|
|
To ask questions, or to report bugs in the BOINC client software,
|
|
please go to the
|
|
<a href=http://setiweb.ssl.berkeley.edu/sah/forum_help_desk.php>Message
|
|
board area</a> of SETI@home.
|
|
|
|
<p>
|
|
There are
|
|
<a href=links.php>web sites for BOINC participants</a>
|
|
in various languages.
|
|
|
|
<p>
|
|
See also
|
|
<a href=http://setiweb.ssl.berkeley.edu/sah/download_network.php>GUIs and add-on software for BOINC</a>.
|
|
|
|
<h2>Mailing lists</h2>
|
|
|
|
The follow mailing lists are available.
|
|
Click to subscribe or post to a list.
|
|
<dl>
|
|
<dt>
|
|
<a href=http://ssl.berkeley.edu/mailman/listinfo/boinc_projects>boinc_projects</a>
|
|
<dd>
|
|
This list is for people operating BOINC projects.
|
|
Use it to ask questions, report bugs, or request enhancements to
|
|
the BOINC server software.
|
|
Announcements of modifications and upgrades to BOINC will posted here.
|
|
|
|
<dt>
|
|
<a href=http://ssl.berkeley.edu/mailman/listinfo/boinc_dev>boinc_dev</a>
|
|
<dd>
|
|
This list is for people developing, debugging or porting the BOINC software.
|
|
|
|
<dt>
|
|
<a href=http://www.ssl.berkeley.edu/mailman/listinfo/boinc_stats>boinc_stats</a>
|
|
<dd>
|
|
This list is for people developing web sites showing statistics
|
|
for BOINC projects.
|
|
|
|
<dt>
|
|
<a href=http://www.ssl.berkeley.edu/mailman/listinfo/boinc_opt>boinc_opt</a>
|
|
<dd>
|
|
This list is for people porting and optimizing BOINC applications.
|
|
|
|
</dl>
|
|
<h2>Getting source code</h2>
|
|
<p>
|
|
At any given point there are two different versions
|
|
of the BOINC source code (maintained as separate CVS projects):
|
|
<ul>
|
|
<li> <b>boinc</b> is the development version.
|
|
It may be unstable, and it may not be compatible with public BOINC projects.
|
|
<li> <b>boinc_public</b> is the stable version.
|
|
It generally is the version being used
|
|
(on both client and server) by public BOINC projects.
|
|
</ul>
|
|
You can get the BOINC source code in several ways:
|
|
<ul>
|
|
<li>
|
|
<a href=source/>Download</a> a tarball or .zip file
|
|
(generated nightly).
|
|
<li>
|
|
Browse the CVS repository via a
|
|
<a href=http://boinc.berkeley.edu/cgi-bin/cvsweb.cgi/>web-based interface</a>.
|
|
<li>
|
|
Access the CVS repository directly, e.g. with a command like
|
|
<pre>
|
|
cvs -d :pserver:anonymous@alien.ssl.berkeley.edu:/home/cvs/cvsroot checkout boinc
|
|
<pre>
|
|
</ul>
|
|
<p>
|
|
Source code for a typical BOINC application,
|
|
SETI@home, is <a href=http://boinc.berkeley.edu/seti_source/>here</a>.
|
|
<h2>Bug database</h2>
|
|
<p>
|
|
You can browse the BOINC
|
|
<a href=http://setiathome.ssl.berkeley.edu/taskbase/database.cgi>bug-tracking database</a>.
|
|
|
|
<h2>News feeds</h2>
|
|
<p>
|
|
RSS-based news feeds are available from BOINC
|
|
and from several BOINC-based projects:
|
|
<ul>
|
|
<li> BOINC: http://boinc.berkeley.edu/rss_main.php
|
|
<li> BOINC alpha test: http://setiboinc.ssl.berkeley.edu/boinc_alpha/rss_main.php
|
|
<li> BOINC beta test: http://setiboinc.ssl.berkeley.edu/ap/rss_main.php
|
|
</ul>
|
|
<h2>Other</h2>
|
|
A good summary of distributed computing projects,
|
|
including those based on BOINC, is at
|
|
<a href=http://www.aspenleaf.com/distributed/>www.aspenleaf.com</a>.
|
|
<p>
|
|
For inquiries about BOINC, contact Dr. David P. Anderson,
|
|
the director of the BOINC project, at davea at ssl.berkeley.edu.
|
|
If you have problems with the BOINC software for Windows please email
|
|
Rom Walton: rwalton at ssl.berkeley.edu.
|
|
|
|
";
|
|
|
|
page_tail();
|
|
?>
|