*** empty log message ***

svn path=/trunk/boinc/; revision=6266
This commit is contained in:
David Anderson 2005-05-29 07:19:27 +00:00
parent 29bcf23da8
commit cc5322f1df
2 changed files with 27 additions and 1 deletions

24
doc/int_upload.php Normal file
View File

@ -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();
?>

View File

@ -19,7 +19,6 @@ function site($url, $name) {
page_head("Web sites for BOINC participants");
list_start();
echo "
<h2>Project status</h2>
<a href=http://boincprojectstatus.ath.cx/boinc/>BOINC project status</a>
@ -28,6 +27,9 @@ echo "
stats_sites();
echo "
<h2>Informational sites</h2>
";
list_start();
echo "
<tr><th>Language</th><th>Site</th></tr>
";