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

« back to all changes in this revision

Viewing changes to doc/tool_xadd.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
 
 
3
 
require_once("docutil.php");
4
 
page_head("xadd - tool for adding database items");
5
 
 
6
 
echo "
7
 
<b>xadd</b> adds platform and application records to the BOINC database.
8
 
Information is read from an XML file <b>project.xml</b>
9
 
in the project's root directory.
10
 
Run <code>xadd</code> from the project root directory, i.e.:
11
 
<pre>
12
 
cd ~/projects/project_name
13
 
bin/xadd
14
 
</pre>
15
 
 
16
 
<p>
17
 
The contents of <b>project.xml</b> should look like this:
18
 
 
19
 
<pre>", htmlspecialchars("
20
 
  <boinc>
21
 
    <app>
22
 
        <name>setiathome</name>
23
 
        <user_friendly_name>SETI@home</user_friendly_name>
24
 
        [ <beta>1</beta> ]
25
 
    </app>
26
 
    ...
27
 
    <platform>
28
 
        <name>anonymous</name>
29
 
        <user_friendly_name>anonymous</user_friendly_name>
30
 
    </platform>
31
 
    <platform>
32
 
        <name>i686-pc-linux-gnu</name>
33
 
        <user_friendly_name>Linux/x86</user_friendly_name>
34
 
    </platform>
35
 
    <platform>
36
 
        <name>windows_intelx86</name>
37
 
        <user_friendly_name>Windows/x86</user_friendly_name>
38
 
    </platform>
39
 
    <platform>
40
 
        <name>powerpc-apple-darwin</name>
41
 
        <user_friendly_name>Mac OS X</user_friendly_name>
42
 
    </platform>
43
 
    ...
44
 
  </boinc>
45
 
"), "</pre>
46
 
 
47
 
<p>
48
 
The 'name' of each item should be short
49
 
and without spaces or other special characters.
50
 
The 'user friendly name' (shown to end users) has no restrictions.
51
 
An example project.xml file is in source/tools/.
52
 
<p>
53
 
<code>xadd</code> only adds new items;
54
 
entries that conflict with existing database entries are ignored.
55
 
";
56
 
page_tail();
57
 
 
58
 
?>
59