*** empty log message ***

svn path=/trunk/boinc/; revision=7232
This commit is contained in:
Rom Walton 2005-08-10 23:53:33 +00:00
parent bd6828c7d1
commit f1206c6222
1 changed files with 9 additions and 6 deletions

View File

@ -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";
?> ?>