"); $stripchart_cgi_url = parse_config($config, ""); db_init(); $title = "Project Management"; admin_page_head($title); // Notification area echo "\n"; echo "

Browse database: Regular Operations: Special Operations:
"; // Application 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 " Result summary 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

"; // Stripcharts, logs, etc echo "
Stripcharts | Show/Grep all logs | Tail MySQL logs
"; admin_page_tail(); ?>