include("site.inc");
$template = new Page;
$template->initCommon();
include("project.inc");
/***********************************************************************/
/***********************************************************************/
/* Initialize the project */
$project = new Project;
/***********************************************************************/
/************************ Begin project content ************************/
/***********************************************************************/
/* Display name is the proper name of the project --
* it is displayed at the top of the page */
$project->display_name="Benchmarks";
$project->project_name="benchmarks";
#$project->cvs_module="benchmarks";
#$project->bugzilla_component="benchmarks";
$project->mailing_list="fedora-devel-list";
/* Note: The TODO list is a filename which is
* the project_name with a .todo extension */
/* Project description */
$project->desc="
The goals of the Benchmarks Project are:
- Develop infrastructure to accurately and repeatably measure performance
- Identify significant performance problems
- Generate patches to correct performance problems
- Verify changes improve performance
- Track system performance metrics
";
/* If the project uses Rawhide, then set the value to TRUE */
$project->rawhide=TRUE;
/* Other useful variables (uncomment to use) */
$project->cvsroot=":pserver:anonymous@rhlinux.redhat.com:/usr/local/CVS";
#$project->mailing_list_prefix="https://listman.redhat.com/mailman/listinfo/";
/* Contacts */
/* Format: "Full Name", "email@hostname", "Title"
* Note: Title is optional. If omitted, then the title is "Maintainer" */
$project->addMaintainer("Will Cohen","wcohen@redhat.com");
/* Contributors are optional */
/* Note: Title is optional. If omitted, then the title is "Contributor" */
#$project->addContributor("Pusher Robot","pusher@redhat.com");
/* Screenshots */
/* Format: "Basefilename.ext", "Short image description"
* Note: Thumbnails must have -thumb before the .ext for the filenames. */
#$project->addScreenshot("firstboot1.png","First screenshot for Firstboot");
/* Directory prefix for the images */
#$project->screenshot_prefix="/projects/config-tools/images/";
/* Documentation */
#$project->addDocumentation("$RELEASE_NAME Manuals","http://www.redhat.com/docs/manuals/linux/");
/***********************************************************************/
/************************* End project content *************************/
/***********************************************************************/
$template->options['title'].=': '.$project->display_name;
/* Standard template footer */
$template->displayHeader();
/* Display the project content */
$project->displayProject();
/* Standard template footer */
$template->displayFooter();
?>