. require_once("../inc/db_ops.inc"); require_once("../inc/util_ops.inc"); require_once("../inc/uotd.inc"); require_once("../project/project.inc"); function svn_revision($path) { $out = array(); $cmd = "svn info http://boinc.berkeley.edu/svn/$path"; if (defined("SVN_CONFIG_DIRECTORY")) { $cmd .= " --config-dir ". SVN_CONFIG_DIRECTORY; } exec($cmd, $out); foreach ($out as $line) { $x = strstr($line, "Last Changed Rev: "); if ($x) { $y = substr($x, strlen("Last Changed Rev: ")); return (int) $y; } } return null; } $config = get_config(); $cgi_url = parse_config($config, ""); $stripchart_cgi_url = parse_config($config, ""); db_init(); $title = "Project Management"; admin_page_head($title); // Notification area echo "\n"; echo "

Browse database: Computing User management
"; // Result Summaries: $show_deprecated = get_str("show_deprecated", true); $show_only = array("all"); // Add all appids you want to display, or "all" $result = mysql_query("select id, name, deprecated from app"); while ($app = mysql_fetch_object($result)) { if (in_array($app->id, $show_only) || ( in_array("all", $show_only) && (!$app->deprecated || $show_deprecated) )) { echo " Results for $app->name:

"; } } mysql_free_result($result); if ($show_deprecated) { echo "Hide deprecated applications"; } else { echo "Show deprecated applications"; } // Periodic tasks echo "

Periodic or special tasks

"; admin_page_tail(); $cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit ?>