mirror of https://github.com/BOINC/boinc.git
136 lines
2.5 KiB
PHP
136 lines
2.5 KiB
PHP
<?php
|
|
require_once("docutil.php");
|
|
|
|
function show_link($language, $name, $url) {
|
|
list_item($language, "<a href=$url>$name</a>");
|
|
}
|
|
|
|
page_head("Web sites for BOINC participants");
|
|
echo "
|
|
Information for BOINC participants is available in several languages
|
|
(also see
|
|
<a href=guis.php>GUIs and add-on software</a>).
|
|
|
|
";
|
|
list_start();
|
|
show_link(
|
|
"Chinese",
|
|
"www.equn.com/boinchina",
|
|
"http://www.equn.com/boinchina"
|
|
);
|
|
show_link(
|
|
"Czech",
|
|
"www.boinc.cz",
|
|
"http://www.boinc.cz/"
|
|
);
|
|
show_link(
|
|
"Danish",
|
|
"setiboinc.dk",
|
|
"http://setiboinc.dk"
|
|
);
|
|
show_link(
|
|
"Danish",
|
|
"www.boinc.dk",
|
|
"http://www.boinc.dk"
|
|
);
|
|
show_link(
|
|
"Danish",
|
|
"www.setihome.dk",
|
|
"http://www.setihome.dk"
|
|
);
|
|
show_link(
|
|
"Dutch",
|
|
"www.seti-nl.org",
|
|
"http://www.seti-nl.org/content.php?c=boinc_berkeley_main"
|
|
);
|
|
show_link(
|
|
"English",
|
|
"BOINC Volunteers",
|
|
"http://www.geocities.com/boinc_volunteers/"
|
|
);
|
|
show_link(
|
|
"Estonian",
|
|
"boinc.tmac.pri.ee",
|
|
"http://boinc.tmac.pri.ee"
|
|
);
|
|
show_link(
|
|
"Finnish",
|
|
"Universe Examiners",
|
|
"http://www.universe-examiners.org/boinc_faq.php"
|
|
);
|
|
show_link(
|
|
"French",
|
|
"www.boinc-fr.net",
|
|
"http://www.boinc-fr.net"
|
|
);
|
|
show_link(
|
|
"French",
|
|
"boinc-quebec.org",
|
|
"http://boinc-quebec.org"
|
|
);
|
|
show_link(
|
|
"German",
|
|
"www.boinc.de",
|
|
"http://www.boinc.de/"
|
|
);
|
|
show_link(
|
|
"German",
|
|
"BOINC - LUBECA (Lübeck, Germany)",
|
|
"http://www.boinc-lubeca.de/"
|
|
);
|
|
show_link(
|
|
"German",
|
|
"www.boinc-forum.de",
|
|
"http://www.boinc-forum.de/"
|
|
);
|
|
show_link(
|
|
"German (message board)",
|
|
"Official eMule @ BOINC Team Page",
|
|
"http://www.emuleatboinc.de/Board"
|
|
);
|
|
//list_item("Italian",
|
|
// "<a href=http://boinc.homeunix.org/>boinc.homeunix.org</a>"
|
|
//);
|
|
show_link(
|
|
"Japanese",
|
|
"translation by Komori Hitoshi",
|
|
"http://boinc.oocp.org/"
|
|
);
|
|
show_link(
|
|
"Polish",
|
|
"www.boinc.pl",
|
|
"http://www.boinc.pl"
|
|
);
|
|
show_link(
|
|
"Russian",
|
|
"www.boinc.narod.ru",
|
|
"http://www.boinc.narod.ru"
|
|
);
|
|
show_link(
|
|
"Serbian",
|
|
"BOINC@Serbia",
|
|
"http://www.boincatserbia.co.sr/"
|
|
);
|
|
show_link(
|
|
"Slovak",
|
|
"BOINC translation by slavko.sk",
|
|
"http://slavko.sk/boinc"
|
|
);
|
|
show_link(
|
|
"Spanish",
|
|
"BOINC España</a>",
|
|
"http://boincspain.shyper.com/"
|
|
);
|
|
show_link(
|
|
"Turkish",
|
|
"www.turksetiteam.org",
|
|
"http://www.turksetiteam.org/boinc/index.html"
|
|
);
|
|
list_end();
|
|
echo "
|
|
If you'd like to add a web site to this list, please
|
|
<a href=mailto:davea@ssl.berkeley.edu>contact us</a>.
|
|
";
|
|
page_tail();
|
|
?>
|