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="Internationalization Project"; $project->project_name="fedora-i18n"; #$project->bugzilla_component="fedora-i18n"; /* List multiple mailing lists */ $project->mailing_list_prefix="https://listman.redhat.com/mailman/listinfo/"; $project->addMailingList("fedora-i18n-list", "Discussions about internationalization of Fedora core"); /* Note: The TODO list is a filename which is * the project_name with a .todo extension */ /* Project description */ $project->desc="

The goal of the Internationalization Project are to:

"; /* Contacts */ $project->addMaintainer("Leon Ho","llch@redhat.com"); $project->addContributor("Jens Petersen","petersen@redhat.com"); $project->addContributor("Yu Shao","yshao@redhat.com"); $project->addContributor("Akira Tagoh","tagoh@redhat.com"); $project->addContributor("Lawrence Lim","llim@redhat.com"); /* Extra stuff */ $project->addMisc("Bug Reporting, Testing, and Quality Assurance", "

Before you file a bug, please read through the list of current and previous bugs for the cooresponding software package to determine if your bug has already been filed. If your bug does not exists, enter a bug report using the Bugzilla bug entry page. If your bug exists and has not been fixed, add additional information to the existing bug. If your bug exists and has been fixed, upgrade to the version in the bug report to determine if the bug was properly fixed. If it was not, reopen the bug.

Some other interesting Bugzilla queries:

"); $project->addMisc("IIIMF (Intranet/Internet Input Method Framework)", "

Be part of the revolution! Intranet/Internet Input Method Framework (IIIMF) is the next generation Input Method Framework set to replace the legacy X Window System Input Method (XIM) used by existing Input Methods such as chinput, xcin, kinput2, ami and many others.

"); /***********************************************************************/ /************************* 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/11/29 17:31:01 $'); ?>