*** empty log message ***

svn path=/trunk/boinc/; revision=11114
This commit is contained in:
David Anderson 2006-09-06 15:51:26 +00:00
parent a63a0c0eb7
commit 8f5dfd9397
5 changed files with 74 additions and 15 deletions

View File

@ -9824,4 +9824,10 @@ Walt 5 Sept 2006
- compile fix for Linux unicode build
clientgui/
ViewProjects.cpp
ViewProjects.cpp
David 6 Sept 2006
- compile warning fix
client/
time_stats.C

View File

@ -126,12 +126,12 @@ void TIME_STATS::update(bool is_active) {
}
}
last_update = gstate.now;
if (log_flags.time_debug) {
msg_printf(0, MSG_INFO, "dt %f w2 %f on %f; active %f; conn %f",
dt, w2, on_frac, active_frac, connected_frac
);
}
}
if (log_flags.time_debug) {
msg_printf(0, MSG_INFO, "dt %f w2 %f on %f; active %f; conn %f",
dt, w2, on_frac, active_frac, connected_frac
);
}
}
void TIME_STATS::update_cpu_efficiency(double cpu_wall_time, double cpu_time) {

View File

@ -62,7 +62,7 @@ function show_participate() {
to cure diseases, study global warming,
discover pulsars,
and do many other types of scientific research.
It's easy:
It's safe, secure, and easy:
<ol>
<li> <a href=projects.php><font size=+1>Choose</font></a> projects
<li> <a href=download.php><font size=+1>Download</font></a> and run BOINC software
@ -92,8 +92,8 @@ function show_create() {
A BOINC project with a single Linux server
can provide computing power equivalent
to a cluster with tens of thousands of CPUs.
Learn how to <a href=create_project.php><b>create
and operate a BOINC project</b></a>.
Learn how to <a href=create_project.php>create
and operate a BOINC project</a>.
<ul>
<li> <b>Scientists</b>: if your group has moderate
programming, web, sysadmin, and hardware resources,

View File

@ -4,6 +4,24 @@ require_once("docutil.php");
page_head("Web Remote Procedure Calls (RPCs)");
echo "
<h3>Contents</h3>
<ul>
<li> <a href=#overview>Overview</a>
<li> <a href=#create_account>Create account</a>
<li> <a href=#lookup_account>Lookup account</a>
<li> <a href=#am_get_info>Get account info</a>
<li> <a href=#am_set_info>Set account info</a>
<li> <a href=#am_set_host_info>Set host info</a>
<li> <a href=#show_user>Get account/host credit info</a>
<li> <a href=#create_team>Create team</a>
<li> <a href=#team_lookup>Lookup teams by name</a>
<li> <a href=#team_lookup_id>Lookup team by ID</a>
<li> <a href=#team_email_list>Get team member list</a>
<li> <a href=#edit_forum_preferences_action>Set forum preferences</a>
</ul>
<a name=overview></a>
<h3>Overview</h3>
<p>
BOINC projects export a number of Web RPCs
that can be used to create, query and update
@ -33,6 +51,7 @@ otherwise use the project's master URL.
</ul>
<a name=create_account></a>
<h3>Create account</h3>
";
@ -66,6 +85,7 @@ list_item(
list_end();
echo "
<a name=lookup_account></a>
<h3>Look up account</h3>
";
list_start();
@ -95,6 +115,7 @@ list_item(
list_end();
echo "
<a name=am_get_info></a>
<h3>Get account info</h3>
";
@ -132,6 +153,7 @@ or
list_item("action", "returns data associated with the given account");
list_end();
echo "
<a name=am_set_info></a>
<h3>Set account info</h3>
";
list_start();
@ -168,6 +190,7 @@ list_item("action",
list_end();
echo "
<a name=am_set_host_info></a>
<h3>Set host info</h3>
";
list_start();
@ -189,6 +212,7 @@ list_item("action",
);
list_end();
echo "
<a name=show_user></a>
<h3>Get account/host credit information</h3>
";
list_start();
@ -256,6 +280,7 @@ list_item("action",
);
list_end();
echo "
<a name=create_team></a>
<h3>Create team</h3>
";
list_start();
@ -289,7 +314,8 @@ list_item("action",
);
list_end();
echo "
<h3>Look up teams</h3>
<a name=team_lookup></a>
<h3>Look up teams by name</h3>
";
list_start();
list_item("URL",
@ -330,6 +356,31 @@ list_item("action",
list_end();
echo "
<a name=team_lookup_id></a>
<h3>Look up team by ID</h3>
";
list_start();
list_item("URL",
"project/team_lookup.php?team_id=N"
);
list_item("input",
"Team ID"
);
list_item("output",
html_text("<team>
<id>5</id>
<name>BOINC@AUSTRALIA</name>
<country>Australia</country>
</team>
")
);
list_item("action",
"Show info on team with the given ID."
);
list_end();
echo "
<a name=team_email_list></a>
<h3>Get team member list</h3>
";
list_start();
@ -364,7 +415,9 @@ list_item('action',
);
list_end();
echo "<h3>Set forum preferences</h3>
echo "
<a name=edit_forum_preferences_action></a>
<h3>Set forum preferences</h3>
";
list_start();

View File

@ -14,23 +14,23 @@ code {
a:link {
color: blue;
text-decoration: none;
font-weight: bold;
#font-weight: bold;
}
a:visited {
color: blue;
text-decoration: none;
font-weight: bold;
#font-weight: bold;
}
a:active {
color: blue;
font-weight: bold;
#font-weight: bold;
}
a:hover {
color: rgb(200,80,80);
font-weight: bold;
#font-weight: bold;
}
body , table , input , select {