From 5a910a7623d5beacc43ca7ec1da9bf0fa08ef643 Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Tue, 22 Jul 2008 13:08:29 -0400 Subject: Support an abstract bug filing layer. Different products and distributions could support completely different bug filing system (or none at all, for that matter) so support an abstraction that allows us to use multiple kinds of bug files. We still need to commit that abstraction somewhere and also make sure we allow full customization through the product.img. --- installclasses/fedora.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'installclasses/fedora.py') diff --git a/installclasses/fedora.py b/installclasses/fedora.py index 6c282a925..c1923a47a 100644 --- a/installclasses/fedora.py +++ b/installclasses/fedora.py @@ -19,6 +19,7 @@ from installclass import BaseInstallClass from constants import * +from filer import * from flags import flags import os, types import iutil @@ -48,6 +49,8 @@ class InstallClass(BaseInstallClass): (N_("Software Development"), ["development-libs", "development-tools", "gnome-software-development", "x-software-development"],), (N_("Web server"), ["web-server"])] + bugFiler = BugzillaFiler(bugUrl="https://bugzilla.redhat.com/xmlrpc.cgi") + def getPackagePaths(self, uri): if not type(uri) == types.ListType: uri = [uri,] -- cgit