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="Virtualization"; $project->project_name="virtualization"; $project->mailing_list="fedora-devel-list"; /* Note: The TODO list is a filename which is * the project_name with a .todo extension */ /* Project description */ $project->desc="
Virtualization as a technology is interesting for a number of real-world uses. Presently, we are working towards integrating the Xen virtual machine infrastructure into Fedora Core.
"; /* If the project uses Rawhide, then set the value to TRUE */ $project->rawhide=TRUE; /* 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("Jeremy Katz","katzj@redhat.com"); $project->addMaintainer("Rik van Riel","riel@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("Fedora + Xen Quickstart","http://www.fedoraproject.org/wiki/FedoraXenQuickstart"); $project->addDocumentation("Upstream Xen Documentation","http://www.cl.cam.ac.uk/Research/SRG/netos/xen/documentation.html"); $extra=""; $project->addMisc("",""); /***********************************************************************/ /************************* End project content *************************/ /***********************************************************************/ $template->options['title'].=': '.$project->display_name; /* Standard template footer */ $template->displayHeader(); /* Display the project content */ $project->displayProject(); ?>For those interested in working on things related to virtualization in Fedora Core, this is a list of tasks that we're currently working on. Help with any of them would be more than welcome.