import personal_desktop from rhpl.translate import N_ import os class InstallClass(personal_desktop.InstallClass): name = N_("Workstation") pixmap = "workstation.png" description = N_("This option installs a graphical desktop " "environment with tools for software " "development and system administration. ") sortPriority = 2 def setGroupSelection(self, comps): personal_desktop.InstallClass.setGroupSelection(self, comps) comps["Emacs"].select() comps["GNOME Software Development"].select() comps["X Software Development"].select() comps["Development Tools"].select() def __init__(self, expert): personal_desktop.InstallClass.__init__(self, expert)