2004-02-09 05:11:05 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once("docutil.php");
|
|
|
|
|
|
|
|
page_head("The project configuration file");
|
2004-11-15 15:50:47 +00:00
|
|
|
echo "<!-- \$Id$ -->\n";
|
2004-02-09 05:11:05 +00:00
|
|
|
|
|
|
|
echo"
|
2006-07-17 16:38:53 +00:00
|
|
|
A project's configuration is described by a file
|
2004-02-09 05:11:05 +00:00
|
|
|
named <b>config.xml</b> in the project's directory.
|
2006-05-09 18:25:15 +00:00
|
|
|
This file is created, with default values, by the
|
|
|
|
<a href=make_project.php>make_project</a> script.
|
2006-07-17 16:38:53 +00:00
|
|
|
However, you will need to change or add some items
|
2006-05-09 18:25:15 +00:00
|
|
|
during the life of your project.
|
|
|
|
<p>
|
2006-07-17 16:38:53 +00:00
|
|
|
The format of config.xml file is:
|
|
|
|
", html_text("
|
2004-02-09 05:11:05 +00:00
|
|
|
<boinc>
|
|
|
|
<config>
|
2006-07-17 16:38:53 +00:00
|
|
|
[ configuration options ]
|
2004-02-09 05:11:05 +00:00
|
|
|
</config>
|
|
|
|
<daemons>
|
2006-07-17 16:38:53 +00:00
|
|
|
[ list of daemons ]
|
2004-02-09 05:11:05 +00:00
|
|
|
</daemons>
|
|
|
|
<tasks>
|
2006-07-17 16:38:53 +00:00
|
|
|
[ list of periodic tasks ]
|
2004-02-09 05:11:05 +00:00
|
|
|
</tasks>
|
2004-11-15 14:46:15 +00:00
|
|
|
|
2004-02-09 05:11:05 +00:00
|
|
|
</boinc>
|
2006-07-17 16:38:53 +00:00
|
|
|
"),"
|
|
|
|
Details on:
|
|
|
|
<ul>
|
|
|
|
<li> <a href=project_options.php>Configuration options</a>
|
|
|
|
<li> <a href=project_daemons.php>Daemons</a>
|
|
|
|
<li> <a href=project_tasks.php>Periodic tasks</a>
|
|
|
|
</ul>
|
2004-12-02 22:56:49 +00:00
|
|
|
";
|
2006-02-25 07:09:50 +00:00
|
|
|
|
2004-02-09 05:11:05 +00:00
|
|
|
page_tail();
|
|
|
|
?>
|