summaryrefslogtreecommitdiffstats
path: root/installclass.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-07-17 05:46:32 +0000
committerJeremy Katz <katzj@redhat.com>2002-07-17 05:46:32 +0000
commit3365968c0067cdd781efe666222cb84ee9434afd (patch)
tree724a24be09c26f054f73799b35f01c0aa254d516 /installclass.py
parentc7ebfa7640c594ba133a5b223129e20e2c8fa32f (diff)
downloadanaconda-3365968c0067cdd781efe666222cb84ee9434afd.tar.gz
anaconda-3365968c0067cdd781efe666222cb84ee9434afd.tar.xz
anaconda-3365968c0067cdd781efe666222cb84ee9434afd.zip
make language support group selection a tad bit cleaner and move it to be before package-selection so that the size is right
Diffstat (limited to 'installclass.py')
-rw-r--r--installclass.py23
1 files changed, 1 insertions, 22 deletions
diff --git a/installclass.py b/installclass.py
index 4a4bec73c..3fb1b8150 100644
--- a/installclass.py
+++ b/installclass.py
@@ -57,27 +57,6 @@ class BaseInstallClass:
# we can use a different install data class
installDataClass = InstallData
- # FIXME: THIS IS A HORRIBLE HACK AND MUST GO AWAY
- def selectDependentHiddenGroups(self, id):
- sup = id.langSupport.supported
- if len(sup) == 0:
- sup = id.langSupport.getAllSupported()
-
- for group in id.comps.compsxml.groups.values():
- for name in sup:
- try:
- lang = id.langSupport.langInfoByName[name][0]
- langs = language.expandLangs(lang)
- except:
- continue
- if group.langonly in langs:
- if not id.comps.compsDict.has_key(group.name):
- log("Where did the %s component go?"
- %(group.name,))
- continue
- id.comps.compsDict[group.name].select()
- return
-
def postAction(self, rootPath, serial):
pass
@@ -139,8 +118,8 @@ class BaseInstallClass:
"accounts",
"authentication",
"readcomps",
+ "selectlangpackages",
"package-selection",
- "package-group-select-hack",
"handleX11pkgs",
"checkdeps",
"dependencies",