diff options
author | Mike Fulbright <msf@redhat.com> | 2002-07-19 04:55:18 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2002-07-19 04:55:18 +0000 |
commit | 5966633716eee84e062a2e86610c60cc310c3122 (patch) | |
tree | e73e464a53f7c5d51f41f0e3bdbd7bd8b8bd984a /comps.py | |
parent | a3c3bc8d98328d1ce4f153957054ada2228129a4 (diff) | |
download | anaconda-5966633716eee84e062a2e86610c60cc310c3122.tar.gz anaconda-5966633716eee84e062a2e86610c60cc310c3122.tar.xz anaconda-5966633716eee84e062a2e86610c60cc310c3122.zip |
add description for minimal and move X to Desktop section
Diffstat (limited to 'comps.py')
-rw-r--r-- | comps.py | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -973,7 +973,8 @@ class ComponentSet: # this is a temporary way to set order of packages def orderPackageGroups(curgroups): compsParents = ["Desktops", "Applications", "Servers", "Development", "System"] - compsHierarchy = { "Desktops" : ["GNOME Desktop Environment", + compsHierarchy = { "Desktops" : ["X Window System", + "GNOME Desktop Environment", "KDE Desktop Environment"], "Applications" : ["Editors", "Engineering and Scientific", @@ -1003,8 +1004,8 @@ def orderPackageGroups(curgroups): "KDE Software Development"], "System" : [ "Administration Tools", "System Tools", - "Printing Support", - "X Window System"] } + "Printing Support" + ] } curgrpnames = [] for grp in curgroups: @@ -1046,6 +1047,10 @@ def getCompGroupDescription(comp): return _("This group includes all the packages available. Note that " "this is substantially more packages than just the ones " "in all the other package groups on this page.") + elif comp.name == u"Base": + return _("Choose this group to get the minimal possible set of " + "packages. Useful for creating small router/firewall " + "boxes, for example.") descr = comp.description if descr: |