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="Cluster Suite/GFS"; $project->project_name="csgfs"; $project->mailing_list="linux-cluster"; /* Note: The TODO list is a filename which is * the project_name with a .todo extension */ /* Project description */ $project->desc="

Cluster Suite/GFS integration into Fedora Core.

Cluster Suite & GFS consist of several kernel modules and user level tools designed to provide clustering support (Cluster Suite) and a shared filesystem (GFS).

The project utilizes the following packages

"; /* If the project uses Rawhide, then set the value to TRUE */ $project->rawhide=FALSE; /* Other useful variables (uncomment to use) */ /* Contacts */ /* Format: "Full Name", "email@hostname", "Title" * Note: Title is optional. If omitted, then your title is "Maintainer" */ $project->addMaintainer("Jon Brassow","brassow@redhat.com"); $project->addMaintainer("Patrick Caulfield","pcaulfie@redhat.com"); $project->addMaintainer("Chris Feist","cfeist@redhat.com"); $project->addMaintainer("Alasdair Kergon","agk@redhat.com"); $project->addMaintainer("Ben Marzinski","bmarzinski@redhat.com"); $project->addMaintainer("Heinz Mauelshagen","heinzm@redhat.com"); $project->addMaintainer("Dave Teigland","dteigland@redhat.com"); $project->addMaintainer("Wendy Cheng","wcheng@redhat.com"); /* Screenshots */ /* Format: "Basefilename.ext", "Short image description" * Note: Thumbnails must have -thumb before the .ext for the filenames. */ //$project->addScreenshot("redhat-artwork-packages.png","Screenshot for redhat-config-packages"); /* Directory prefix for the images */ //$project->screenshot_prefix="/projects/artwork-tools/images/"; /* Documentation */ //$project->addDocumentation("$RELEASE_NAME Manuals","http://www.redhat.com/docs/manuals/linux/"); //$project->addDocumentation("NSA SELinux Information","http://www.nsa.gov/selinux/"); //$project->addDocumentation("Fedora Core SELinux FAQ","/docs/selinux-faq/"); //$project->addDocumentation("Understanding and Customizing the Apache HTTP SELinux Policy","/docs/selinux-apache-fc3/"); $extra=""; $project->addMisc("",""); /***********************************************************************/ /************************* 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/10/14 16:02:27 $'); ?>