Bug 75102
Summary: | hardcode gnome-libs to htmlview | ||
---|---|---|---|
Product: | [Retired] Red Hat Linux | Reporter: | Sven Neuhaus <sven-redhat> |
Component: | gnome-libs | Assignee: | Havoc Pennington <hp> |
Status: | CLOSED RAWHIDE | QA Contact: | David Lawrence <dkl> |
Severity: | medium | Docs Contact: | |
Priority: | medium | ||
Version: | 8.0 | CC: | b.mt, jrb, katzj, kfd, pbrown, twaugh |
Target Milestone: | --- | Keywords: | Triaged |
Target Release: | --- | ||
Hardware: | i386 | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2003-02-07 14:07:31 UTC | Type: | --- |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: | |||
Bug Depends On: | |||
Bug Blocks: | 79578 |
Description
Sven Neuhaus
2002-10-04 15:41:57 UTC
Evolution isn't quite caught up to the newer GNOME control panel. Didn't someone make htmlview read a config setting? If so we could just hardwire the GNOME 1.4 stuff to htmlview and then it would track GNOME 2. Yes, twaugh made htmlview look at the gconf setting OK, moving to gnome-libs; we'll ignore the .gnome config file, and hardwire htmlview for GNOME 1 apps. *** Bug 80128 has been marked as a duplicate of this bug. *** Bug 80128 points out that we need to handle mailto: as well, is it total crack to make htmlview do that? Or does it already? The Preferred Applications control panel doesn't seem to have a choice for email, though. We could add one pretty quickly I suppose. It doesn't, currently. It could easily be added if you like. As to whether or not it's total crack, I'm not sure. ;-) The htmlview magic is just this at the moment: if [ "x`/sbin/pidof gnome-session`" != "x" ]; then - X11BROWSERS="$X11BROWSERS_GENERIC $X11BROWSERS_GNOME $X11BROWSERS_KDE" + GCONF=$(gconftool-2 -g /desktop/gnome/url-handlers/unknown/command \ + 2>/dev/null | sed -e 's/%s//') + X11BROWSERS="$GCONF $X11BROWSERS_GENERIC $X11BROWSERS_GNOME $X11BROWSERS_KDE" TERMS="$CONSOLE $TERMS_GENERIC $TERMS_GNOME $TERMS_KDE" else X11BROWSERS="$X11BROWSERS_GENERIC $X11BROWSERS_KDE $X11BROWSERS_GNOME" TERMS="$CONSOLE $TERMS_GENERIC $TERMS_KDE $TERMS_GNOME" fi It isn't particularly robust or anything. Hope %s is at the end, etc. *** Bug 71327 has been marked as a duplicate of this bug. *** *** Bug 74669 has been marked as a duplicate of this bug. *** *** Bug 76201 has been marked as a duplicate of this bug. *** Clicking links in GNOME 1.4 apps such as evolution should now always run htmlview. Fix confirmed with gnome-libs-1.4.1.2.90-31. |