[Bug 215784] Re: VLC does not open files with Plus-signs in name

2009-06-20 Thread Daniel J Blueman
This patch is not relevant in the new version; the new URL handling
doesn't special-case the '+' symbol like it did (brokenly) previously.

-- 
VLC does not open files with Plus-signs in name
https://bugs.launchpad.net/bugs/215784
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 215784] Re: VLC does not open files with Plus-signs in name

2009-06-19 Thread Hew McLachlan
We are closing this bug report because it lacks the information we need
to investigate the problem, as described in the previous comments.
Please reopen it if you can give us the missing information, and don't
hesitate to submit bug reports in the future. To reopen the bug report
you can click on the current status, under the Status column, and change
the Status back to New. Thanks again!

** Changed in: vlc (Ubuntu)
   Status: Incomplete = Invalid

-- 
VLC does not open files with Plus-signs in name
https://bugs.launchpad.net/bugs/215784
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 215784] Re: VLC does not open files with Plus-signs in name

2008-12-08 Thread Luca Falavigna
Upstream removed affected code due to a function duplication (see
http://git.videolan.org/?p=vlc.git;a=commitdiff;h=6b5014ade2790fa8aa9dae1205e38b755525162b).
Is it still relevant with newer versions?

** Changed in: vlc (Ubuntu)
   Importance: Undecided = Low
   Status: In Progress = Incomplete

-- 
VLC does not open files with Plus-signs in name
https://bugs.launchpad.net/bugs/215784
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 215784] Re: VLC does not open files with Plus-signs in name

2008-10-09 Thread John Dong
Since this bug has been filed and confirmed, 0.9.x has been introduced
in Intrepid. Does this release resolve the issue?

As for Hardy, I agree this is a bug that should be fixed particularly
since the fix is so simple. However, the above patch needs to be
reformatted as a StableReleaseUpdate:

(1) The target should be against hardy-proposed with a clearly-worded
concise description of the bug fixed, along with a (LP: 123456) link
back to this bug.

(2) The patch should use the native patch system in the VLC package.


If you are interested in making those changes for sponsorship, please do so. If 
you aren't, please let us know so someone else can take a stab at it.


Thanks for your detective work, everyone.

-- 
VLC does not open files with Plus-signs in name
https://bugs.launchpad.net/bugs/215784
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 215784] Re: VLC does not open files with Plus-signs in name

2008-09-07 Thread Daniel J Blueman
Testing the debdiff, it corrects the behaviour of URL parsing with a '+'
sign. Looks good!

-- 
VLC does not open files with Plus-signs in name
https://bugs.launchpad.net/bugs/215784
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 215784] Re: VLC does not open files with Plus-signs in name

2008-09-06 Thread Martin Kaufmann
Here is an Debdiff with your patch included


** Attachment added: vlc.debdiff
   http://launchpadlibrarian.net/17353231/vlc.debdiff

-- 
VLC does not open files with Plus-signs in name
https://bugs.launchpad.net/bugs/215784
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 215784] Re: VLC does not open files with Plus-signs in name

2008-09-06 Thread Daniel J Blueman
Fantastic to have the debdiff too...how do we get a MOTU developer to
review and, if it looks good, upload an updated package?

-- 
VLC does not open files with Plus-signs in name
https://bugs.launchpad.net/bugs/215784
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 215784] Re: VLC does not open files with Plus-signs in name

2008-09-06 Thread Martin Kaufmann
we are just subscribe them to this bug. Can you test my debdiff?

-- 
VLC does not open files with Plus-signs in name
https://bugs.launchpad.net/bugs/215784
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 215784] Re: VLC does not open files with Plus-signs in name

2008-08-25 Thread Daniel J Blueman
I hit this bug again, and I would say it represents a major usability
problem for VLC, itself a prime desktop app.

VLC does a 'dumb' substitution of the '+' symbol with space in the
source, which breaks URL parsing; I expect this was added as a hack
previously, when apps didn't use '%20' to represent the space in an RFC-
compliant manner.

Fix is thus:

--- src/input/input.c~  2008-08-25 12:37:44.943073369 +0100
+++ src/input/input.c   2008-08-25 12:37:44.948073326 +0100
@@ -2420,11 +2420,6 @@
 
 *psz++ = strtol( val, NULL, 16 );
 }
-else if( *p == '+' )
-{
-*psz++ = ' ';
-p++;
-}
 else
 {
 *psz++ = *p++;


** Attachment added: Fix
   http://launchpadlibrarian.net/17059277/vlc.patch

** Changed in: vlc (Ubuntu)
Sourcepackagename: meta-gnome2 = vlc
   Status: Incomplete = In Progress

-- 
VLC does not open files with Plus-signs in name
https://bugs.launchpad.net/bugs/215784
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 215784] Re: VLC does not open files with Plus-signs in name

2008-06-14 Thread mahiyar
I can reconfirm the bug in Ubuntu Hardy. If you right click any avi file
and select open with vlc for playing it gives an error cannot open the
file even if the volume is mounted. The same file can be opened
using vlc's menu.

-- 
VLC does not open files with Plus-signs in name
https://bugs.launchpad.net/bugs/215784
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 215784] Re: VLC does not open files with Plus-signs in name

2008-04-12 Thread Wolf Rogner
I simply installed Ubuntu 8.04b.

After upgrading a few days ago, it stopped working.

There is nothing I did

Just right click and select Open with VLC media player

I did not change anything.

And it keeps doing it ever since thursday

-- 
VLC does not open files with Plus-signs in name
https://bugs.launchpad.net/bugs/215784
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 215784] Re: VLC does not open files with Plus-signs in name

2008-04-11 Thread Pedro Villavicencio
Thank you for taking the time to report this bug and helping to make Ubuntu 
better. Unfortunately we can't fix it, because your description didn't include 
enough information. You may find it helpful to read How to report bugs 
effectively http://www.chiark.greenend.org.uk/~sgtatham/bugs.html. We'd be 
grateful if you would then provide a more complete description of the problem. 
 We have instructions on debugging some types of problems. 
http://wiki.ubuntu.com/DebuggingProcedures
At a minimum, we need:
1. the specific steps or actions you took that caused you to encounter the 
problem,
2. the behavior you expected, and
3. the behavior you actually encountered (in as much detail as possible).
Thanks!

** Changed in: meta-gnome2 (Ubuntu)
   Status: New = Incomplete

-- 
VLC does not open files with Plus-signs in name
https://bugs.launchpad.net/bugs/215784
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