[Bug 291847] Re: xdg-open mangles mailto: urls to ///f...@bar.com

2015-09-17 Thread Lasse Kärkkäinen
*** This bug is a duplicate of bug 294233 ***
https://bugs.launchpad.net/bugs/294233

I am now seeing this problem with xdg-open and xdg-email, but not gnome-
open (no extra slashes added). As bug #294233 discusses gnome-open, this
one is not a duplicate and should be re-opened and fixed.

Running xdg-open 1.1.0 rc3 on Ubuntu 15.10 (dev).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/291847

Title:
  xdg-open mangles mailto: urls to ///f...@bar.com

To manage notifications about this bug go to:
https://bugs.launchpad.net/bzr/+bug/291847/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 291847] Re: xdg-open mangles mailto: urls to ///f...@bar.com

2009-03-09 Thread Bug Watch Updater
*** This bug is a duplicate of bug 294233 ***
https://bugs.launchpad.net/bugs/294233

** Changed in: libgnome
   Status: Unknown = Invalid

-- 
xdg-open mangles mailto: urls to ///f...@bar.com
https://bugs.launchpad.net/bugs/291847
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 291847] Re: xdg-open mangles mailto: urls to ///f...@bar.com

2009-02-19 Thread Pedro Villavicencio
*** This bug is a duplicate of bug 294233 ***
https://bugs.launchpad.net/bugs/294233

same bug as 294233 , marking this as dup, did the same with the upstream
one.

** This bug has been marked a duplicate of bug 294233
   running gnome-open 'mailto:u...@acme.com' open thunderbird mail to 
///u...@acme.com

-- 
xdg-open mangles mailto: urls to ///f...@bar.com
https://bugs.launchpad.net/bugs/291847
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 291847] Re: xdg-open mangles mailto: urls to ///f...@bar.com

2009-02-17 Thread Pedro Villavicencio
corrected the upstream link, rejecting the xdg-utils upstream task as
well, thanks.

** Changed in: xdg-utils
   Importance: Unknown = Undecided
 Bugwatch: GNOME Bug Tracker #571441 = None
   Status: Unknown = New

** Changed in: xdg-utils
   Status: New = Invalid

** Changed in: libgnome (Ubuntu)
   Importance: Undecided = Low
 Assignee: (unassigned) = Ubuntu Desktop Bugs (desktop-bugs)
   Status: New = Triaged

** Also affects: libgnome via
   http://bugzilla.gnome.org/show_bug.cgi?id=571441
   Importance: Unknown
   Status: Unknown

-- 
xdg-open mangles mailto: urls to ///f...@bar.com
https://bugs.launchpad.net/bugs/291847
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 291847] Re: xdg-open mangles mailto: urls to ///f...@bar.com

2009-02-12 Thread Chris Jones
** Bug watch added: GNOME Bug Tracker #571441
   http://bugzilla.gnome.org/show_bug.cgi?id=571441

** Also affects: xdg-utils via
   http://bugzilla.gnome.org/show_bug.cgi?id=571441
   Importance: Unknown
   Status: Unknown

-- 
xdg-open mangles mailto: urls to ///f...@bar.com
https://bugs.launchpad.net/bugs/291847
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 291847] Re: xdg-open mangles mailto: urls to ///f...@bar.com

2009-02-11 Thread Scott James Remnant
I would imagine this bug comes from attempting to canonicalise URLs;
mailto:f...@bar.com is a URI, not a URL

-- 
xdg-open mangles mailto: urls to ///f...@bar.com
https://bugs.launchpad.net/bugs/291847
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 291847] Re: xdg-open mangles mailto: urls to ///f...@bar.com

2009-02-11 Thread Robert Collins
Actually, bzr should be using xdg-email. I think xdg-open should either
error or be more helpful when given a mailto: URI.

** Changed in: bzr
   Status: Fix Released = Confirmed

-- 
xdg-open mangles mailto: urls to ///f...@bar.com
https://bugs.launchpad.net/bugs/291847
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 291847] Re: xdg-open mangles mailto: urls to ///f...@bar.com

2009-02-11 Thread Scott James Remnant
** Changed in: xdg-utils (Ubuntu)
   Importance: Undecided = Low

-- 
xdg-open mangles mailto: urls to ///f...@bar.com
https://bugs.launchpad.net/bugs/291847
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 291847] Re: xdg-open mangles mailto: urls to ///f...@bar.com

2009-02-11 Thread Chris Jones
xdg-open is a very simple shell script which appears to do nothing to
modify the URL parameter before passing it to the chosen desktop handler
(so gnome-open for Ubuntu). Indeed, running:

gnome-open mailto:c...@tenshu.net

will produce the same prefixed ///

(xdg-email also calls gnome-open)

gnome-open is even shorter than xdg-open, albeit in C. It appears to be
doing the canonicalisation with calls to GIO.

It seems as though passing a mailto: URI to a GIO function that creates a GFile 
(e.g. g_file_new_for_commandline_arg() which gnome-open uses) may be slightly 
destructive, to quote GIO's ChangeLog.
On the (admittedly somewhat arbitrary and potentially spurious) basis that 
something called GFile has no business dealing with things that aren't files, 
I've attached a naive patch to make gnome-open not feed mailto URIs through 
GFile.

** Attachment added: Simple patch to avoid passing mailto URIs through GFile.
   http://launchpadlibrarian.net/22538982/unfail-mailto.diff

** Changed in: xdg-utils (Ubuntu)
   Status: New = Invalid

** Also affects: libgnome (Ubuntu)
   Importance: Undecided
   Status: New

-- 
xdg-open mangles mailto: urls to ///f...@bar.com
https://bugs.launchpad.net/bugs/291847
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 291847] Re: xdg-open mangles mailto: urls to ///f...@bar.com

2009-02-11 Thread Chris Jones
(if this is not to be fixed in gnome-open, but GFile then this bug
should be moved to glib2 rather than libgnome. I've invalidated the xdg-
utils task because that seems like an entirely worse place to fix it
than gnome-open)

-- 
xdg-open mangles mailto: urls to ///f...@bar.com
https://bugs.launchpad.net/bugs/291847
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 291847] Re: xdg-open mangles mailto: urls to ///f...@bar.com

2009-01-28 Thread Jelmer Vernooij
** Changed in: bzr
   Status: Confirmed = Fix Released

-- 
xdg-open mangles mailto: urls to ///f...@bar.com
https://bugs.launchpad.net/bugs/291847
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs