2005-08-09 18:46:53 +00:00
|
|
|
<?php
|
|
|
|
|
2005-08-10 23:53:33 +00:00
|
|
|
require_once("../inc/util.inc");
|
2005-08-09 18:46:53 +00:00
|
|
|
require_once("../inc/xml.inc");
|
|
|
|
|
|
|
|
xml_header();
|
2005-08-10 23:53:33 +00:00
|
|
|
|
2005-08-31 18:20:06 +00:00
|
|
|
$config = get_config();
|
|
|
|
$name = parse_config($config, "<long_name>");
|
2005-08-10 23:53:33 +00:00
|
|
|
|
2005-08-26 22:26:26 +00:00
|
|
|
echo "<project_config>
|
|
|
|
<name>$name</name>
|
2005-08-31 18:20:06 +00:00
|
|
|
";
|
|
|
|
|
|
|
|
if (parse_bool($config, "disable_account_creation")) {
|
|
|
|
echo " <account_creation_disabled/>\n";
|
|
|
|
}
|
|
|
|
echo "
|
2005-08-26 22:26:26 +00:00
|
|
|
<min_passwd_length>6</min_passwd_length>
|
|
|
|
</project_config>
|
|
|
|
";
|
2005-08-09 18:46:53 +00:00
|
|
|
|
|
|
|
?>
|