~ubuntu-branches/ubuntu/lucid/boinc/lucid

« back to all changes in this revision

Viewing changes to doc/delete_file.php

  • Committer: Bazaar Package Importer
  • Author(s): Frank S. Thomas, Frank S. Thomas
  • Date: 2008-05-31 08:02:47 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20080531080247-4ce890lp2rc768cr
Tags: 6.2.7-1
[ Frank S. Thomas ]
* New upstream release.
  - BOINC Manager: Redraw disk usage charts immediately after connecting to
    a (different) client. (closes: 463823)
* debian/copyright:
  - Added the instructions from debian/README.Debian-source about how
    repackaged BOINC tarballs can be reproduced because DevRef now
    recommends to put this here instead of in the afore-mentioned file.
  - Updated for the new release.
* Removed the obsolete debian/README.Debian-source.
* For consistency upstream renamed the core client and the command tool
  ("boinc_client" to "boinc" and "boinc_cmd" to "boinccmd"). Done the same
  in all packages and created symlinks with the old names for the binaries
  and man pages. Also added an entry in debian/boinc-client.NEWS explaining
  this change.
* debian/rules: Do not list Makefile.ins in the clean target individually,
  just remove all that can be found.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
require_once("docutil.php");
3
 
page_head("Deleting files");
4
 
echo "
5
 
To delete a file from a host, use the function
6
 
<pre>
7
 
delete_file(int host_id, const char* file_name)
8
 
</pre>
9
 
or the command line program (run from the project root dir)
10
 
<pre>
11
 
delete_file -host_id X -file_name Y
12
 
</pre>
13
 
<p>
14
 
delete_file() creates a message for the specific host and adds it to 
15
 
the msg_to_host table.
16
 
This message instructs the client to delete the file.
17
 
The message is included in the next scheduler reply to the host.
18
 
The message XML has the form ", html_text("
19
 
<delete_file_info>file_name</delete_file_info>
20
 
"),"
21
 
";
22
 
page_tail();
23
 
?>