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="Fedora Artwork Project"; $project->project_name="redhat-artwork"; $project->cvs_module="redhat-artwork"; $project->bugzilla_component="redhat-artwork"; $project->mailing_list="fedora-desktop-list"; /* Note: The TODO list is a filename which is * the project_name with a .todo extension */ /* Project description */ $project->desc="
Making things look pretty is the name of the game... Icons, desktop backgrounds, and themes are all parts of the Fedora Artwork Project, sponsored by Red Hat
"; /* 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("Diana Fong","dfong@redhat.com","Artist & Designer"); $project->addMaintainer("John Palmeri","johnp@redhat.com", "Package Maintainer"); $project->addContributor("Owen Taylor","otaylor@redhat.com", "Rendering System Lead"); $project->addContributor("Bryan Clark","bclark@redhat.com", "UI Hitman"); $project->addContributor("Alex Larsson","alexl@redhat.com", "Widgeteer"); /* 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/"); $extra=""; $project->addMisc("Participate","Get involved in this project at FedoraArt."); /***********************************************************************/ /************************* End project content *************************/ /***********************************************************************/ $template->options['title'].=': '.$project->display_name.', sponsored by Red Hat'; /* Standard template footer */ $template->displayHeader(); /* Display the project content */ $project->displayProject(); /* Standard template footer */ $template->displayFooter('$Date: 2005/11/29 17:30:30 $'); ?>