diff options
author | Jeremy Katz <katzj@redhat.com> | 2005-12-08 06:03:04 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2005-12-08 06:03:04 +0000 |
commit | 894a0653fde6a56909937e03e044570b6a8fd7fd (patch) | |
tree | 598fac75fdc132251ddc7700503d66133aedea6c /gui.py | |
parent | adaa65374ef56bb0c16abb5bad286c5a75c89236 (diff) | |
download | anaconda-894a0653fde6a56909937e03e044570b6a8fd7fd.tar.gz anaconda-894a0653fde6a56909937e03e044570b6a8fd7fd.tar.xz anaconda-894a0653fde6a56909937e03e044570b6a8fd7fd.zip |
2005-12-08 Jeremy Katz <katzj@redhat.com>
* installclasses/fedora.py (InstallClass.setGroupSelection): Get
default groups from the backend
* backend.py (AnacondaBackend.getDefaultGroups): Support for
getting default groups
* iw/GroupSelector.py: Guts of new group/package selection code.
Eventually will live in son of s-c-packages.
* ui/GroupSelector.glade: glade file for new group selection code
* iw/package_gui.py: Basic shell for GroupSelector use in anaconda
* yuminstall.py: Update for yum 2.5 API changes. Note that we now
*require* yum-2.5.0-0.20051207 or newer
(isPackageInstalled): Add method to see if package is installed
for group selection.
(_catchallCategory): Add method to take uncategorized groups and
stick them somewhere
(getDefaultGroups): Backend method for finding the default
selected groups based on what comps says
* gui.py (stepToClass): Move to new group selection code.
Diffstat (limited to 'gui.py')
-rwxr-xr-x | gui.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -68,8 +68,7 @@ stepToClass = { "timezone" : ("timezone_gui", "TimezoneWindow"), "accounts" : ("account_gui", "AccountWindow"), "desktopchoice": ("desktop_choice_gui", "DesktopChoiceWindow"), - "package-selection" : ("package_gui", "PackageSelectionWindow"), - "group-selection": ("simple_pkgselect", "GroupSelectionWindow"), + "group-selection": ("package_gui", "GroupSelectionWindow"), "indivpackage" : ("package_gui", "IndividualPackageSelectionWindow"), "dependencies" : ("dependencies_gui", "UnresolvedDependenciesWindow"), "confirminstall" : ("confirm_gui", "InstallConfirmWindow"), |