mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=6266
This commit is contained in:
parent
29bcf23da8
commit
cc5322f1df
|
@ -0,0 +1,24 @@
|
||||||
|
<?php
|
||||||
|
require_once("docutil.php");
|
||||||
|
page_head("Intermediate upload");
|
||||||
|
echo "
|
||||||
|
Long-running applications can upload their output files
|
||||||
|
before the result as a whole is finished.
|
||||||
|
To initiate the upload of an output file, call
|
||||||
|
<pre>
|
||||||
|
extern int boinc_upload_file(std::string& name);
|
||||||
|
</pre>
|
||||||
|
where 'name' is the logical name of the file.
|
||||||
|
The application cannot modify the file after making this call.
|
||||||
|
<p>
|
||||||
|
To check on the status of a file being uploaded, call
|
||||||
|
<pre>
|
||||||
|
extern int boinc_upload_status(std::string& name);
|
||||||
|
</pre>
|
||||||
|
This will return zero if the upload of the file is finished
|
||||||
|
successfully.
|
||||||
|
|
||||||
|
";
|
||||||
|
|
||||||
|
page_tail();
|
||||||
|
?>
|
|
@ -19,7 +19,6 @@ function site($url, $name) {
|
||||||
|
|
||||||
page_head("Web sites for BOINC participants");
|
page_head("Web sites for BOINC participants");
|
||||||
|
|
||||||
list_start();
|
|
||||||
echo "
|
echo "
|
||||||
<h2>Project status</h2>
|
<h2>Project status</h2>
|
||||||
<a href=http://boincprojectstatus.ath.cx/boinc/>BOINC project status</a>
|
<a href=http://boincprojectstatus.ath.cx/boinc/>BOINC project status</a>
|
||||||
|
@ -28,6 +27,9 @@ echo "
|
||||||
stats_sites();
|
stats_sites();
|
||||||
echo "
|
echo "
|
||||||
<h2>Informational sites</h2>
|
<h2>Informational sites</h2>
|
||||||
|
";
|
||||||
|
list_start();
|
||||||
|
echo "
|
||||||
<tr><th>Language</th><th>Site</th></tr>
|
<tr><th>Language</th><th>Site</th></tr>
|
||||||
";
|
";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue