mirror of https://github.com/BOINC/boinc.git
41 lines
1.1 KiB
PHP
41 lines
1.1 KiB
PHP
<?php
|
|
|
|
require_once("../inc/db.inc");
|
|
require_once("../inc/util.inc");
|
|
require_once("../inc/download_network.inc");
|
|
|
|
init_session();
|
|
|
|
page_head("Download BOINC add-on software");
|
|
echo "
|
|
<p>
|
|
You can download applications in several categories.
|
|
<ul>
|
|
<li>
|
|
These applications are not endorsed by ".PROJECT." and
|
|
you use them at your own risk.
|
|
<li>
|
|
We do not provide instructions for installing these applications.
|
|
However, the author may have provided some help on installing or
|
|
uninstalling the application.
|
|
If this is not enough you should contact the author.
|
|
Instructions for installing and running BOINC are
|
|
<a href=http://boinc.berkeley.edu/participate.php>here</a>.
|
|
<li>
|
|
The <a href='http://www.boinc.dk/index.php?page=mirror_file_list'>BOINC Download Network</a>
|
|
is designed and maintained by <a href='http://www.boinc.dk'>BOINC.dk</a> as a service for the BOINC community.
|
|
Visit the BOINC Download Network site to add
|
|
an entry to this list.
|
|
|
|
</ul>
|
|
";
|
|
BOINC_download_network_print_download_links();
|
|
echo "
|
|
<p>
|
|
<p>
|
|
<p>
|
|
</font>
|
|
";
|
|
page_tail();
|
|
?>
|