mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=2994
This commit is contained in:
parent
36b6c7bdb5
commit
4eae25b461
|
@ -30,7 +30,7 @@ if (project_is_stopped()) {
|
|||
<p>
|
||||
<ul>
|
||||
<li><a href=".URL_BASE."info.php>Rules and policies <b>[read this first]</b></a>
|
||||
<li><a href=intro.php>Getting started</a>
|
||||
<li><a href=http://boinc.berkeley.edu/intro_user.php>Getting started</a>
|
||||
<li><a href=".URL_BASE."create_account_form.php>Create account</a>
|
||||
<li><a href=apps.php>Applications</a>
|
||||
<li><a href=debug.php>Download debugging files</a>
|
||||
|
@ -48,6 +48,9 @@ if (project_is_stopped()) {
|
|||
<li><a href=".URL_BASE."profile_menu.php>User profiles</a>
|
||||
<li><a href=".URL_BASE."forum/>Message boards</a>
|
||||
<li><a href=".URL_BASE."forum/help_desk.php>Questions and problems</a>
|
||||
";
|
||||
project_community();
|
||||
echo "
|
||||
</ul>
|
||||
<h3><a href=stats.php>Project totals and leader boards</a></h3>
|
||||
<ul>
|
||||
|
|
|
@ -18,11 +18,18 @@ and the files are
|
|||
|
||||
<p>
|
||||
This data can be summarized and represented as Web pages.
|
||||
An example (implemented using PHP) is at
|
||||
<a href=http://www.boinc.dk/index.php?page=statistics>http://www.boinc.dk</a>.
|
||||
If you are interested in using or contributing to this code,
|
||||
please contact the developer,
|
||||
<a href=mailto:stats@boinc.dk>Janus Kristensen</a>.
|
||||
Examples:
|
||||
<ul>
|
||||
<li>
|
||||
<a href=http://www.boinc.dk/index.php?page=statistics>http://www.boinc.dk</a>,
|
||||
developed by <a href=mailto:stats@boinc.dk>Janus Kristensen</a>.
|
||||
<li>
|
||||
<a href=http://www.saschapfalz.de/boincstats/boinc-stats.php>boincstats</a>,
|
||||
developed by Sascha Pfalz.
|
||||
</ul>
|
||||
Both systems are implemented using PHP.
|
||||
If you are interested in participating in these efforts,
|
||||
please contact the developers.
|
||||
";
|
||||
|
||||
page_tail();
|
||||
|
|
|
@ -267,8 +267,7 @@ database_classes_ = [ Project,
|
|||
Team,
|
||||
Host,
|
||||
Workunit,
|
||||
Result,
|
||||
Workseq ]
|
||||
Result ]
|
||||
|
||||
Projects = Project._table
|
||||
Platforms = Platform._table
|
||||
|
@ -280,6 +279,5 @@ Teams = Team._table
|
|||
Hosts = Host._table
|
||||
Workunits = Workunit._table
|
||||
Results = Result._table
|
||||
Workseqs = Workseq._table
|
||||
|
||||
init_table_classes(database_classes_,{'canonical_result': Result})
|
||||
|
|
|
@ -53,10 +53,6 @@ class front_Result:
|
|||
def __repr__(self):
|
||||
return '<Result#%s %s WU#%s %s>'%(self.id, self.name, self.workunit.id, self.workunit.name)
|
||||
|
||||
class front_Workseq:
|
||||
def __repr__(self):
|
||||
return '<Workseq#%s>'%(self.id)
|
||||
|
||||
MixIn(database.Project, front_Project)
|
||||
MixIn(database.Platform, front_Platform)
|
||||
MixIn(database.CoreVersion, front_CoreVersion)
|
||||
|
@ -67,4 +63,3 @@ MixIn(database.Team, front_Team)
|
|||
MixIn(database.Host, front_Host)
|
||||
MixIn(database.Workunit, front_Workunit)
|
||||
MixIn(database.Result, front_Result)
|
||||
MixIn(database.Workseq, front_Workseq)
|
||||
|
|
Loading…
Reference in New Issue