summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2006-10-04 15:30:07 +0000
committerDavid Cantrell <dcantrell@redhat.com>2006-10-04 15:30:07 +0000
commit3da0595550a28d701dbda4cc92a64326adf9cb72 (patch)
tree3f10558ae77304091bb9c209f0e933242b9a2975 /iw
parentbe5f04fdf8399bec0af24d359e54df62a9bd2e37 (diff)
downloadanaconda-3da0595550a28d701dbda4cc92a64326adf9cb72.tar.gz
anaconda-3da0595550a28d701dbda4cc92a64326adf9cb72.tar.xz
anaconda-3da0595550a28d701dbda4cc92a64326adf9cb72.zip
* iw/release_notes.py (ReleaseNotesViewer): Disable request_url,
link_clicked, and request_object callbacks for now because they work quite right and it's better to be able to view just the release notes than nothing at all.
Diffstat (limited to 'iw')
-rw-r--r--iw/release_notes.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/iw/release_notes.py b/iw/release_notes.py
index 02514db87..a4371d742 100644
--- a/iw/release_notes.py
+++ b/iw/release_notes.py
@@ -35,9 +35,10 @@ class ReleaseNotesViewer:
self.vue = gtkhtml2.View()
self.opener = urllib.FancyURLopener()
- self.doc.connect('request_url', self.requestURLCallBack)
- self.doc.connect('link_clicked', self.linkClickedCallBack)
- self.vue.connect('request_object', self.requestObjectCallBack)
+ # FIXME: these do not work, disabling for FC6 --dcantrell
+ #self.doc.connect('request_url', self.requestURLCallBack)
+ #self.doc.connect('link_clicked', self.linkClickedCallBack)
+ #self.vue.connect('request_object', self.requestObjectCallBack)
self.topDir = None
self.width = None