<?
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="Kickstart Configurator";
$project->project_name="redhat-config-kickstart";
$project->cvs_module="redhat-config-kickstart";
$project->bugzilla_component="redhat-config-kickstart";
$project->mailing_list="fedora-config-list";

/* Note: The TODO list is a filename which is 
 * the project_name with a .todo extension */

/* Project description */
$project->desc="<p>$project->display_name provides a graphical interface for creating kickstart files.  
These files are used by anaconda to allow for automated installations.</p>";

/* 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 your title is "Maintainer" */
$project->addMaintainer("Brent Fox","bfox@redhat.com");
/* Contributors are optional */
/* Note: Title is optional. If omitted, then the title is "Contributor" */
$project->addContributor("Tammy Fox","tfox@redhat.com", "Developer");

/* Screenshots */
/* Format: "Basefilename.ext", "Short image description"
 * Note: Thumbnails must have -thumb before the .ext for the filenames. */
$project->addScreenshot("redhat-config-kickstart1.png","Screenshot for the basic configuration page");
$project->addScreenshot("redhat-config-kickstart2.png","Screenshot for the installation type page");
$project->addScreenshot("redhat-config-kickstart3.png","Screenshot for the partitioning page");
$project->addScreenshot("redhat-config-kickstart4.png","Screenshot for the authentication page");
$project->addScreenshot("redhat-config-kickstart5.png","Screenshot for the firewall page");
$project->addScreenshot("redhat-config-kickstart6.png","Screenshot for the package selection page");

/* 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('$Date: 2005/03/30 17:47:25 $');

?>