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="Red Hat Installation Program (Anaconda)"; $project->project_name="anaconda"; $project->cvs_module="anaconda"; $project->bugzilla_component="anaconda"; /* Note: The TODO list is a filename which is * the project_name with a .todo extension */ /* Project description */ $project->desc="
Anaconda is the installation program for Red Hat distributions. During installation, the system's hardware is identified and configured, and the appropriate file systems for the system's architecture are created. Finally, it allows the user to install the operating system software on the system. Optionally, it can upgrade existing Red Hat installations. Anaconda can run in a fully interactive mode (text or graphical), or in a kickstart mode, which is allows the installation to be scripted for unattended operation. This makes deploying hundreds or thousands of systems very easy.
Anaconda is written in Python and C, and is distributed under the GPL. The graphical frontend is written with PyGtk. Using a scripting language (Python) for the majority of the code allows for easily distribution of updates and the quick development of new features.
"; /* 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("Jeremy Katz","katzj@redhat.com"); $project->addContributor("David Cantrell","dcantrell@redhat.com"); $project->addContributor("Chris Lumens","clumens@redhat.com"); $project->addContributor("Paul Nasrat","pnasrat@redhat.com"); $project->addContributor("Peter Jones","pjones@redhat.com"); /* Screenshots */ /* Format: "Basefilename.ext", "Short image description" * Note: Thumbnails must have -thumb before the .ext for the filenames. */ $project->addScreenshot("screenshot-0000.png","Screenshot for choosing installation type"); $project->addScreenshot("screenshot-0001.png","Screenshot for time zone selection"); $project->addScreenshot("screenshot-0002.png","Screenshot for software selection"); $project->addScreenshot("screenshot-0003.png","Screenshot for package installation"); /* Directory prefix for the images */ $project->screenshot_prefix="/projects/anaconda-installer/images/"; /* List multiple mailing lists */ $project->addMailingList("anaconda-devel-list", "Discussions of modifying anaconda and Red Hat distributions"); $project->addMailingList("kickstart-list", "Discussions of deployment of systems via kickstart"); /* Documentation */ //$project->addDocumentation("$RELEASE_NAME Installation Guide","/docs/install-guide/"); $project->addDocumentation("Red Hat Linux 9 Installation Guide","http://www.redhat.com/docs/manuals/linux/RHL-9-Manual/install-guide/"); $project->addDocumentation("Red Hat Linux 9 Customization Guide","http://www.redhat.com/docs/manuals/linux/RHL-9-Manual/custom-guide/part-install-info.html"); #$project->addDocumentation("Various Usage Tips", "usage_tips.php"); $project->addDocumentation("Checking your media", "mediacheck.php", "Documentation on how to check your installation media for errors"); $project->addDocumentation("Editing the Comps File", "comps.php", "Documentation on how to edit thecomps.xml
file");
$project->addDocumentation("", "", "The anaconda
binary RPM contains additional documentation in /usr/share/docs/anaconda-<version>/
");
/***********************************************************************/
/************************* 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: 2006/01/09 22:12:19 $');
?>