summaryrefslogtreecommitdiffstats
path: root/network/gwibber/known-issues.txt
diff options
context:
space:
mode:
author Larry Hajali2010-05-13 01:00:01 +0200
committer Michiel van Wessem2010-05-13 01:00:01 +0200
commit9a16c49703edec5f2b9b8cae7ab1a76ff6241e75 (patch)
tree2e93aabca93bde10d5ae50951c195d76f4eea8b1 /network/gwibber/known-issues.txt
parenta28f7b3acbd093fe344acaccb28d433cca025940 (diff)
downloadslackbuilds-9a16c49703edec5f2b9b8cae7ab1a76ff6241e75.tar.gz
network/gwibber: Added to 13.0 repository
Diffstat (limited to 'network/gwibber/known-issues.txt')
-rw-r--r--network/gwibber/known-issues.txt28
1 files changed, 28 insertions, 0 deletions
diff --git a/network/gwibber/known-issues.txt b/network/gwibber/known-issues.txt
new file mode 100644
index 0000000000..91057167a2
--- /dev/null
+++ b/network/gwibber/known-issues.txt
@@ -0,0 +1,28 @@
+Know issue: When using gwibber, links that are opened in an external
+browser may not open. Running gwibber from the command line will most
+likely give you a similar error like the following.
+
+Traceback (most recent call last):
+ File "/usr/lib/python2.6/site-packages/gwibber/client.py", line 757, in <lambda>
+ actHelpOnline.connect("activate", lambda *a: gintegration.load_url("https://answers.launchpad.net/gwibber"))
+ File "/usr/lib/python2.6/site-packages/gwibber/gintegration.py", line 57, in load_url
+ def load_url(url): gnome.url_show(url)
+glib.GError: There was an error launching the default action command associated with this location.
+
+This is most likely a link to a nonexistent firefox directory that hasn't
+been updated by GConf upon firefox upgrades. You can verify this by running:
+
+gconftool-2 -g /desktop/gnome/url-handlers/https/command
+
+This command should return something like:
+
+/usr/lib/firefox-3.5.2/firefox "%s"
+
+You can use the symlink to firefox instead, as to avoid future issues
+with firefox upgrades. To use the symlinks run the following commands.
+Change commands for lib64 where appropriate.
+
+gconftool-2 -s -t string /desktop/gnome/url-handlers/https/command '/usr/lib/firefox/firefox "%s"'
+gconftool-2 -s -t string /desktop/gnome/url-handlers/http/command '/usr/lib/firefox/firefox "%s"'
+gconftool-2 -s -t string /desktop/gnome/url-handlers/ftp/command '/usr/lib/firefox/firefox "%s"'
+gconftool-2 -s -t string /desktop/gnome/url-handlers/chrome/command '/usr/lib/firefox/firefox "%s"'