mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=7232
This commit is contained in:
parent
bd6828c7d1
commit
f1206c6222
|
@ -1,13 +1,16 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
require_once("../inc/util.inc");
|
||||||
require_once("../inc/xml.inc");
|
require_once("../inc/xml.inc");
|
||||||
|
|
||||||
xml_header();
|
xml_header();
|
||||||
echo "
|
|
||||||
<project_config>
|
$config = get_config();
|
||||||
<name>Example name</name>
|
$name = parse_config($config, "long_name");
|
||||||
<min_passwd_length>7</min_passwd_length>
|
|
||||||
</project_config>
|
echo "<project_config>\n";
|
||||||
";
|
echo " <name>$name</name>\n";
|
||||||
|
echo " <min_passwd_length>7</min_passwd_length>\n";
|
||||||
|
echo "</project_config>\n";
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Reference in New Issue