[Bug 565330] Re: Extended text selection does not work
Don't know if this is of importance but I can confirm this extremely annoying bug for 32bit-Architecture. -- Extended text selection does not work https://bugs.launchpad.net/bugs/565330 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 544358] Re: "copy" does not work when doing selection with "shift" key
I can confirm this behaviour for xfce4-terminal. Think this bug is connected to https://bugs.launchpad.net/ubuntu/+source/xfce4-terminal/+bug/565330 (Sorry, don't know the correct syntax to post a link in launchpad and didn't find any information about that. So just the plain URL above...) -- "copy" does not work when doing selection with "shift" key https://bugs.launchpad.net/bugs/544358 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 362891] Re: Some SIP providers return 403 Forbidden (No RFC 1918 IP allowed)
Hey, you have to add "%limit" to account name, not registrar: https://bugzilla.gnome.org/show_bug.cgi?id=592012 After doing so restart Ekiga (!) and you should be done. At least it worked for me with 1und1 ;) -- Some SIP providers return 403 Forbidden (No RFC 1918 IP allowed) https://bugs.launchpad.net/bugs/362891 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 661775] Re: completion for "mplayer -(cd|dvd)-device" should also complete directory names
** Patch added: "adds directory completion to the -(cd|dvd)-device switches." https://bugs.launchpad.net/bugs/661775/+attachment/1696635/+files/mplayer-dvd-completion.patch ** Description changed: Binary package hint: bash-completion - The mplayer switch "-cd-device" and "-dvd-device" expect a device file or directory in which to find their data. + The mplayer switch "-cdrom-device" and "-dvd-device" expect a device file or directory in which to find their data. bash-completion version 1:1.2-2ubuntu1 will only complete devices, not directories. However, this is desirable, e.g., in case of videos in DVD format that are saved on a file system. Patch to change this behavior is attached. -- completion for "mplayer -(cd|dvd)-device" should also complete directory names https://bugs.launchpad.net/bugs/661775 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 661775] [NEW] completion for "mplayer -(cd|dvd)-device" should also complete directory names
Public bug reported: Binary package hint: bash-completion The mplayer switch "-cdrom-device" and "-dvd-device" expect a device file or directory in which to find their data. bash-completion version 1:1.2-2ubuntu1 will only complete devices, not directories. However, this is desirable, e.g., in case of videos in DVD format that are saved on a file system. Patch to change this behavior is attached. ** Affects: bash-completion (Ubuntu) Importance: Undecided Status: New -- completion for "mplayer -(cd|dvd)-device" should also complete directory names https://bugs.launchpad.net/bugs/661775 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 661775] Re: completion for "mplayer -(cd|dvd)-device" should also complete directory names
Sorry, last patch had whitespace issues. updated version. ** Patch added: "adds directory completion to the -(cdrom|dvd)-device switches." https://bugs.launchpad.net/ubuntu/+source/bash-completion/+bug/661775/+attachment/1696637/+files/mplayer-dvd-completion.patch -- completion for "mplayer -(cd|dvd)-device" should also complete directory names https://bugs.launchpad.net/bugs/661775 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 661775] Re: completion for "mplayer -(cd|dvd)-device" should also complete directory names
Hm, they are there... they are command line options. manpage excerpt (man mplayer) -dvd-device (DVD only) Specify the DVD device or .iso filename (default: /dev/dvd). You can also specify a directory that contains files previā ously copied directly from a DVD (with e.g. vobcopy). -cdrom-device Specify the CD-ROM device (default: /dev/cdrom). Come to think of it, it probably doesn't make too much sense to provide -cdrom-device with a tab completion for directories. -dvd-device could probably get completion for *.iso files on top of directories though. -- completion for "mplayer -(cd|dvd)-device" should also complete directory names https://bugs.launchpad.net/bugs/661775 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 661775] Re: completion for "mplayer -(cd|dvd)-device" should also complete directory names
** Patch removed: "adds directory completion to the -(cd|dvd)-device switches." https://bugs.launchpad.net/ubuntu/+source/bash-completion/+bug/661775/+attachment/1696635/+files/mplayer-dvd-completion.patch -- completion for "mplayer -(cd|dvd)-device" should also complete directory names https://bugs.launchpad.net/bugs/661775 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 661775] Re: completion for "mplayer -(cd|dvd)-device" should also complete directory names
Do you get auto-completion for both devices and directories? Say, as an example, we have a DVD drive accessible through /dev/dvd0, and a directory /path/to/dvd that contains a VIDEO_TS folder with DVD-format videos. I then notice the following: Current behavior: $ mplayer -dvd-device /dev/dv results in $ mplayer -dvd-device /dev/dvd0 However $ mplayer -dvd-device /path/to/d results in no found matches, i.e., nothing at all happens: $ mplayer -dvd-device /path/to/d The patch changes the behavior of the latter to complete the path to "/pat/to/dvd". After some thinking, I changed the patch on my side and will upload the new version. The behavior after the patch is now: 1) for -cdrom-device it does not change the current behavior at all, because mplayer's manpage does not specify whether it is sensible or even possible to use directories or ISO images for this option, and I don't have any Video CDs here to test it. 2) for -dvd-device it also, in addition to the current completion behavior, takes into account .iso files and directories in the completion, because mplayer can read DVDs from ISO images or directories. I will add the new patch to show the difference (it's only one line). Though I'm not sure, if other people can not reproduce the behavior, if it makes sense to pursue this bug. However, it would be weird if I was stung by a configuration problem that only occurs in my setup? Also, I'm not sure whether it is the best idea to provide a patch for an /etc/ file, i.e., the location after the installation of the bash-completion package. But I guess that's something that the maintainer should decide? -- completion for "mplayer -(cd|dvd)-device" should also complete directory names https://bugs.launchpad.net/bugs/661775 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 661775] Re: completion for "mplayer -(cd|dvd)-device" should also complete directory names
Do you get auto-completion for both devices and directories? Say, as an example, we have a DVD drive accessible through /dev/dvd0, and a directory /path/to/dvd that contains a VIDEO_TS folder with DVD-format videos. I then notice the following: Current behavior: $ mplayer -dvd-device /dev/dv results in $ mplayer -dvd-device /dev/dvd0 However $ mplayer -dvd-device /path/to/d results in no found matches, i.e., nothing at all happens: $ mplayer -dvd-device /path/to/d The patch changes the behavior of the latter to complete the path to "/pat/to/dvd". After some thinking, I changed the patch on my side and will upload the new version. The behavior after the patch is now: 1) for -cdrom-device it does not change the current behavior at all, because mplayer's manpage does not specify whether it is sensible or even possible to use directories or ISO images for this option, and I don't have any Video CDs here to test it. 2) for -dvd-device it also, in addition to the current completion behavior, takes into account .iso files and directories in the completion, because mplayer can read DVDs from ISO images or directories. I will add the new patch to show the difference (it's only one line). Though I'm not sure, if other people can not reproduce the behavior, if it makes sense to pursue this bug. However, it would be weird if I was stung by a configuration problem that only occurs in my setup? Also, I'm not sure whether it is the best idea to provide a patch for an /etc/ file, i.e., the location after the installation of the bash-completion package. But I guess that's something that the maintainer should decide? ** Patch added: "revised completion patch for mplayer completion" https://bugs.launchpad.net/ubuntu/+source/bash-completion/+bug/661775/+attachment/1701959/+files/mplayer-dvd-completion-2.patch -- completion for "mplayer -(cd|dvd)-device" should also complete directory names https://bugs.launchpad.net/bugs/661775 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 626977] [NEW] keyboard shortcuts with shift and numbers or special characters not working
Public bug reported: 1) Release of Ubuntu: 10.04.1 LTS with Xfce (Xubuntu) following bug occured in 9.10 of Xubuntu 2) Version of the package: don't know if the bug is related to package xfce-keyboard-shortcuts. If so I have 4.6.3-2 installed. 3) What I expected to happen: adding a new shortcut including shift-key and a special character or shift-key and a number (on a german keyboard layout) should add the working shortcut 4) What happend instead: the shortcut key is translated to (key) and therefore not working. X) Example: entering , results in semicolon which is (comma) on german keyboard layout entering + results in asterisk which is (plus) on german keyboard layout entering 1 results in exclam which is (1) on german keyboard layout ... ** Affects: ubuntu Importance: Undecided Status: New ** Tags: keyboard shift shortcut xfce -- keyboard shortcuts with shift and numbers or special characters not working https://bugs.launchpad.net/bugs/626977 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 626977] Re: keyboard shortcuts with shift and numbers or special characters not working
it should be "following bug already occured in 9.10 of Xubuntu and still exists" -- keyboard shortcuts with shift and numbers or special characters not working https://bugs.launchpad.net/bugs/626977 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