[Bug 647010] [NEW] Screenshot in installer shows f-spot rather than Shotwell

2010-09-24 Thread Dennis Craven
Public bug reported:

During installation of the Maverick beta CD, the lovely slideshow in the
"View, store and edit photos" page still displays a screenshot of f-spot
even though I believe it was replaced by Shotwell.

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
Screenshot in installer shows f-spot rather than Shotwell
https://bugs.launchpad.net/bugs/647010
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


Re: [Bug 474790] Re: DeviceKit should ignore SmartWare partitions when using Western Digital external drives

2009-11-16 Thread Dennis Craven
On Sun, Nov 15, 2009 at 8:08 AM, Martin Pitt 
wrote:

> Sorry, that wasn't meant to be closed again.
>
> >  ENV{DKD_PARTITION_TABLE__SCHEME}=="apm", \
>
> You used two underscores here (between TABLE and SCHEME). Can you please
> remove one and try again?
>
>
Oops! My bad. Getting rid of the double underscore typo does work. Sorry.

So, the entry that works is this:

 ENV{DKD_PARTITION_TABLE_SCHEME}=="apm", \
  ENV{ID_CDROM}=="?*", ENV{ID_FS_TYPE}=="udf",
ENV{ID_FS_LABEL}=="WD_SmartWare", \
  ENV{DKD_PRESENTATION_HIDE}="1"

Thanks Martin!

-- 
DeviceKit should ignore SmartWare partitions when using Western Digital 
external drives
https://bugs.launchpad.net/bugs/474790
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


Re: [Bug 474790] Re: DeviceKit should ignore SmartWare partitions when using Western Digital external drives

2009-11-13 Thread Dennis Craven
On Fri, Nov 13, 2009 at 12:11 PM, Martin Pitt
wrote:

> Argh. Does it work if you fix my obvious "DKD_PARTITION_SCHEME" typo to
> "DKD_PARTITION_TABLE_SCHEME"?
>
>
So I modified your submitted patch as you suggested to this:

 ENV{DKD_PARTITION_TABLE__SCHEME}=="apm", \
  ENV{ID_CDROM}=="?*", ENV{ID_FS_TYPE}=="udf",
ENV{ID_FS_LABEL}=="WD_SmartWare", \
  ENV{DKD_PRESENTATION_HIDE}="1"


And it still does not work.

Just to reiterate, this is the line I'm using in my own instance, and it
does work:

SUBSYSTEM=="block", ENV{ID_CDROM}=="?*", ENV{ID_SERIAL}=="WD_Virtual_CD*",
ENV{DKD_PRESENTATION_HIDE}="1"

This has been confirmed on two different machines with two different WD
drives. Both machines using Karmic.

-- 
DeviceKit should ignore SmartWare partitions when using Western Digital 
external drives
https://bugs.launchpad.net/bugs/474790
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 474790] Re: DeviceKit should ignore SmartWare partitions when using Western Digital external drives

2009-11-12 Thread Dennis Craven
Hi Martin,

I wanted to mention that the patch submitted for this bug does not work.
Once the patch is applied, the SmartWare partition still mounts as
before. Should I be making this comment here or upstream? Or both?

-- 
DeviceKit should ignore SmartWare partitions when using Western Digital 
external drives
https://bugs.launchpad.net/bugs/474790
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


Re: [Bug 296867] Re: empathy needs to support OTR encryption

2009-11-09 Thread Dennis Craven
Okay we get it. OTR is important to everyone and everyone thinks it's bad
that it's the default IM client in Ubuntu. The fact remains that these
comments are of no use in a bug report (neither is this one for that
matter).

The relevant developers are working on this bug and also get the point.
What's done is done, and the consequential issues are being addressed as
best as possible. Please refrain from polluting the bug report with
complaints and declarations that you will use alternate clients. These types
of comments are better suited in a forum or maybe a blog.

-- 
empathy needs to support OTR encryption
https://bugs.launchpad.net/bugs/296867
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 474790] Re: DeviceKit should ignore SmartWare partitions when using Western Digital external drives

2009-11-09 Thread Dennis Craven
As useful as it probably isn't, here's a patch that adds the rule as
described above. It's patched against the current karmic package.

** Attachment added: "Hide WD SmartWare volumes when using WD portable drives."
   http://launchpadlibrarian.net/35431775/devicekit-disks_007-2.ubuntu4.debdiff

-- 
DeviceKit should ignore SmartWare partitions when using Western Digital 
external drives
https://bugs.launchpad.net/bugs/474790
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 474790] Re: DeviceKit should ignore SmartWare partitions when using Western Digital external drives

2009-11-09 Thread Dennis Craven
So. Here is what I did...

First I tried to create a rule matching what Martin suggested in comment #2. I 
added a rule to/lib/udev/rules.d/95-devkit-disks.rules.  It looked like this:
ENV{ID_FS_TYPE}=="WD_SmartWare", ENV{DKD_PARTITION_SCHEME}=="apm", 
ENV{DKD_PRESENTATION_HIDE}="1"

This rule for some reason did not match/work. After restarting udev (is
this even necessary?) and plugging in the drive, that rule was ignored
and the SmartWare partition mounted as a CD.

Based on the autogenerated entry in /etc/udev/rules.d/70-persistent-cd.rules 
when the drive is detected, I tried adding this rule to the 
/lib/udev/rules.d/95-devkit-disks.rules file:
SUBSYSTEM=="block", ENV{ID_CDROM}=="?*", ENV{ID_SERIAL}=="WD_Virtual_CD*", 
ENV{DKD_PRESENTATION_HIDE}="1"

This worked fine, and the drive is hidden. Is this an appropriate and
sufficiently generic rule in that it will work across other people's
systems? Notice the * expression when specifying ID_SERIAL.

-- 
DeviceKit should ignore SmartWare partitions when using Western Digital 
external drives
https://bugs.launchpad.net/bugs/474790
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 474790] Re: DeviceKit should ignore SmartWare partitions when using Western Digital external drives

2009-11-09 Thread Dennis Craven
Please ignore my last comment (#3). The file is indeed there. I looked
in etc instead :/

-- 
DeviceKit should ignore SmartWare partitions when using Western Digital 
external drives
https://bugs.launchpad.net/bugs/474790
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


Re: [Bug 474790] Re: DeviceKit should ignore SmartWare partitions when using Western Digital external drives

2009-11-09 Thread Dennis Craven
On Sat, Nov 7, 2009 at 3:07 AM, Martin Pitt 
wrote:

> Dennis, /lib/udev/rules.d/95-devkit-disks.rules has those rules now
> (which partitions to hide). It's a bit sad that this doesn't have a
> DKD_PARTITION_TYPE, so we need to do the matching based on the SCHEME
> (apm) and ID_FS_LABEL.
>

Hmm.. That file is missing from my system. I'll look further into this.
Thanks for the tip Martin!

-- 
DeviceKit should ignore SmartWare partitions when using Western Digital 
external drives
https://bugs.launchpad.net/bugs/474790
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 474790] Re: DeviceKit should ignore SmartWare partitions when using Western Digital external drives

2009-11-04 Thread Dennis Craven
I've tried fixing this myself so that I could upload a patch to one of
the rules files but the rules files are a mess since this is an "updated
from Jaunty" machine (HAL-->DeviceKit). I don't know what files are
obeyed.

The only way I got this to be ignored is to add
"ENV{DKD_PRESENTATION_HIDE}="1"" to the appropriate line in 70
-persistent-cd.rules, however I get the feeling this is not the right
way to fix the problem.

-- 
DeviceKit should ignore SmartWare partitions when using Western Digital 
external drives
https://bugs.launchpad.net/bugs/474790
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 474790] [NEW] DeviceKit should ignore SmartWare partitions when using Western Digital external drives

2009-11-04 Thread Dennis Craven
Public bug reported:

Binary package hint: devicekit-disks

Release of Ubuntu: Karmic
Package Version: 007-2ubuntu3
Expected Results: When a WD external drive is plugged in, the SmartWare Virtual 
CD is not detected or mounted.
Actual Results: The SmartWare Virtual CD is detected and mounted.

The SmartWare Virtual CD partition on these drives is useless in Linux.
It includes Windows/Mac utilities only, and is not usable space. This
portion of the drive should probably be ignored on Linux desktops.

Here is relevent output of "devkit-disks --dump":
Showing information for /org/freedesktop/DeviceKit/Disks/devices/sr1
  native-path: 
/sys/devices/pci:00/:00:1d.7/usb2/2-2/2-2:1.0/host14/target14:0:0/14:0:0:1/block/sr1
  device:  11:1
  device-file: /dev/sr1
by-id: 
/dev/disk/by-id/usb-WD_Virtual_CD_070A_575839304137395737383234-0:1
by-path:   
/dev/disk/by-path/pci-:00:1d.7-usb-0:2:1.0-scsi-0:0:0:1
  detected at: Wed 04 Nov 2009 04:38:44 PM EST
  system internal: 0
  removable:   1
  has media:   1 (detected at Wed 04 Nov 2009 04:38:44 PM EST)
detects change:1
detection by polling:  1
detection inhibitable: 1
detection inhibited:   0
  is read only:0
  is mounted:  0
  mount paths: 
  mounted by uid:  0
  presentation hide:   1
  presentation nopolicy:   0
  presentation name:   
  presentation icon:   
  size:700448768
  block size:  2048
  job underway:no
  usage:   filesystem
  type:udf
  version: 
  uuid:
  label:   WD SmartWare
  optical disc:
blank: 0
appendable:0
closed:0
num tracks:0
num audio tracks:  0
num sessions:  0
  drive:
vendor:WD
model: Virtual CD 070A
revision:  1028
serial:575839304137395737383234
detachable:1
can spindown:  0
rotational media:  1
ejectable: 1
media: optical_cd
  compat:  optical_cd optical_mrw optical_mrw_w
interface: usb
if speed:  48000 bits/s
ATA SMART: not available




And the output of "udevadm info -q all -n /dev/sr1" is:

P: 
/devices/pci:00/:00:1d.7/usb2/2-2/2-2:1.0/host14/target14:0:0/14:0:0:1/block/sr1
N: sr1
S: block/11:1
S: scd1
S: disk/by-id/usb-WD_Virtual_CD_070A_575839304137395737383234-0:1
S: disk/by-path/pci-:00:1d.7-usb-0:2:1.0-scsi-0:0:0:1
S: disk/by-label/WD\x20SmartWare
S: cdrom3
E: UDEV_LOG=3
E: 
DEVPATH=/devices/pci:00/:00:1d.7/usb2/2-2/2-2:1.0/host14/target14:0:0/14:0:0:1/block/sr1
E: MAJOR=11
E: MINOR=1
E: DEVNAME=/dev/sr1
E: DEVTYPE=disk
E: SUBSYSTEM=block
E: ID_CDROM=1
E: ID_CDROM_MRW=1
E: ID_CDROM_MRW_W=1
E: ID_CDROM_MEDIA=1
E: ID_VENDOR=WD
E: ID_VENDOR_ENC=WD\x20\x20\x20\x20\x20\x20
E: ID_VENDOR_ID=1058
E: ID_MODEL=Virtual_CD_070A
E: ID_MODEL_ENC=Virtual\x20CD\x20070A\x20
E: ID_MODEL_ID=070a
E: ID_REVISION=1028
E: ID_SERIAL=WD_Virtual_CD_070A_575839304137395737383234-0:1
E: ID_SERIAL_SHORT=575839304137395737383234
E: ID_TYPE=cd
E: ID_INSTANCE=0:1
E: ID_BUS=usb
E: ID_USB_INTERFACES=:080650:
E: ID_USB_INTERFACE_NUM=00
E: ID_USB_DRIVER=usb-storage
E: ID_PATH=pci-:00:1d.7-usb-0:2:1.0-scsi-0:0:0:1
E: ID_FS_LABEL=WD_SmartWare
E: ID_FS_LABEL_ENC=WD\x20SmartWare
E: ID_FS_TYPE=udf
E: ID_FS_USAGE=filesystem
E: ACL_MANAGE=1
E: GENERATED=1
E: DKD_PRESENTATION_HIDE=0
E: DKD_MEDIA_AVAILABLE=1
E: DKD_PARTITION_TABLE=1
E: DKD_PARTITION_TABLE_SCHEME=apm
E: DKD_PRESENTATION_NOPOLICY=0
E: DEVLINKS=/dev/block/11:1 /dev/scd1 
/dev/disk/by-id/usb-WD_Virtual_CD_070A_575839304137395737383234-0:1 
/dev/disk/by-path/pci-:00:1d.7-usb-0:2:1.0-scsi-0:0:0:1 
/dev/disk/by-label/WD\x20SmartWare /dev/cdrom3v/sr1":

** Affects: devicekit-disks (Ubuntu)
 Importance: Undecided
 Status: New

-- 
DeviceKit should ignore SmartWare partitions when using Western Digital 
external drives
https://bugs.launchpad.net/bugs/474790
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 397614] Re: package python-dateutil 1.4.1-2 failed to install/upgrade: subprocess post-installation script returned error exit status 139

2009-10-23 Thread Dennis Craven
** Tags added: packaging

-- 
package python-dateutil 1.4.1-2 failed to install/upgrade: subprocess 
post-installation script returned error exit status 139
https://bugs.launchpad.net/bugs/397614
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 458224] [NEW] package libantlr2.7-cil 2.7.7-11ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 9

2009-10-22 Thread Dennis Craven
Public bug reported:

Binary package hint: antlr

Release of Ubuntu: Karmic
Package Version:libantlr2.7-cil 2.7.7-11ubuntu1

ProblemType: Package
Architecture: amd64
Date: Thu Oct 22 10:42:25 2009
Dependencies:
 
DistroRelease: Ubuntu 9.10
ErrorMessage: subprocess installed post-installation script returned error exit 
status 9
NonfreeKernelModules: wl nvidia
Package: libantlr2.7-cil 2.7.7-11ubuntu1
PackageArchitecture: all
ProcVersionSignature: Ubuntu 2.6.31-13.45-generic
SourcePackage: antlr
Title: package libantlr2.7-cil 2.7.7-11ubuntu1 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 9
Uname: Linux 2.6.31-13-generic x86_64

** Affects: antlr (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package

-- 
package libantlr2.7-cil 2.7.7-11ubuntu1 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 9
https://bugs.launchpad.net/bugs/458224
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 458224] Re: package libantlr2.7-cil 2.7.7-11ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 9

2009-10-22 Thread Dennis Craven

** Attachment added: "AptOrdering.txt"
   http://launchpadlibrarian.net/34147341/AptOrdering.txt

** Attachment added: "Dmesg.txt"
   http://launchpadlibrarian.net/34147342/Dmesg.txt

** Attachment added: "DpkgTerminalLog.gz"
   http://launchpadlibrarian.net/34147343/DpkgTerminalLog.gz

-- 
package libantlr2.7-cil 2.7.7-11ubuntu1 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 9
https://bugs.launchpad.net/bugs/458224
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 285062] Re: apport-gtk crashed with KeyError in __getitem__()

2009-10-21 Thread Dennis Craven
Exactly the same scenario here as Alex Levin experienced in #6. I opened
hamster-applet's overview (also built from git) and it crashed. While
attempting to report this bug with apport, apport crashed.

The crash happened as it was attempting to gather bug and crash info for
hamster-applet. It was immediately after I clicked the "Report
problem..." button. In fact, that dialog (for the hamster-applet) is
still up and I can reproduce the apport crash just by clicking that
button again. I wish I could get more useful info while I'm in this
state...

-- 
apport-gtk crashed with KeyError in __getitem__()
https://bugs.launchpad.net/bugs/285062
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 397619] Re: Last.fm radio not working

2009-10-20 Thread Dennis Craven
*** This bug is a duplicate of bug 415037 ***
https://bugs.launchpad.net/bugs/415037

** This bug is no longer a duplicate of bug 397674
   banshee can no longer play last.fm streams
** This bug has been marked a duplicate of bug 415037
   icons for mounted and unmounted filesystems hard to distinguish

-- 
Last.fm radio not working
https://bugs.launchpad.net/bugs/397619
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 397674] Re: banshee can no longer play last.fm streams

2009-10-20 Thread Dennis Craven
*** This bug is a duplicate of bug 415937 ***
https://bugs.launchpad.net/bugs/415937

** This bug has been marked a duplicate of bug 415937
   Error Loading Last.fm Station - The remote server returned an error: (410) 
Gone.

-- 
banshee can no longer play last.fm streams
https://bugs.launchpad.net/bugs/397674
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 423904] Re: gnome-terminal does not respect --working-directory argument

2009-09-10 Thread Dennis Craven
After further investigation, I've discovered the problem was between my
chair and keyboard. I'll close this.

Thanks for your persistence :)

** Changed in: gnome-terminal (Ubuntu)
   Status: Incomplete => Invalid

-- 
gnome-terminal does not respect --working-directory argument
https://bugs.launchpad.net/bugs/423904
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 423904] Re: gnome-terminal does not respect --working-directory argument

2009-09-07 Thread Dennis Craven
I just updated to gnome-terminal version 2.27.92-0ubuntu1 in amd64
Karmic, and the issue persists. Re-opening.

** Changed in: gnome-terminal (Ubuntu)
   Status: Fix Released => New

-- 
gnome-terminal does not respect --working-directory argument
https://bugs.launchpad.net/bugs/423904
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 423904] Re: gnome-terminal does not respect --working-directory argument

2009-09-03 Thread Dennis Craven

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/31282669/Dependencies.txt

** Attachment added: "ProcMaps.txt"
   http://launchpadlibrarian.net/31282670/ProcMaps.txt

** Attachment added: "ProcStatus.txt"
   http://launchpadlibrarian.net/31282671/ProcStatus.txt

-- 
gnome-terminal does not respect --working-directory argument
https://bugs.launchpad.net/bugs/423904
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 423904] [NEW] gnome-terminal does not respect --working-directory argument

2009-09-03 Thread Dennis Craven
Public bug reported:

Binary package hint: gnome-terminal

When executing the following command:

$ gnome-terminal --working-directory=/home/foo/bar

The --working-directory argument is not honoured.

This also applies to a 32-bit system.

Release of Ubuntu: Jaunty
Package Version: Installed: 2.26.0-0ubuntu2
Expected Results: New gnome-terminal window opens with the specified working 
directory (/home/foo/bar).
Actual Results: New gnome-terminal window opens with the default working 
directory ($HOME).

ProblemType: Bug
Architecture: amd64
DistroRelease: Ubuntu 9.04
ExecutablePath: /usr/bin/gnome-terminal
NonfreeKernelModules: wl nvidia
Package: gnome-terminal 2.26.0-0ubuntu2
ProcEnviron:
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: gnome-terminal
Uname: Linux 2.6.28-15-generic x86_64

** Affects: gnome-terminal (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug

-- 
gnome-terminal does not respect --working-directory argument
https://bugs.launchpad.net/bugs/423904
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 395299] Re: gdm 2.26 has no graphical configuration tool

2009-07-09 Thread Dennis Craven
I think what Sebastien is saying (if I may), is that the bug has already
been pointed out, and confirmed. Continued discussion of the flavour
currently seen in the latter half of this bug report is unnecessary
noise and does not contribute to the resolution of the bug itself. In
fact, it is more likely a distraction for the developers tasked with
resolving the issue.  Chat like this is better suited to other mediums
like the community forum. Thanks.

-- 
gdm 2.26 has no graphical configuration tool
https://bugs.launchpad.net/bugs/395299
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 380710] Re: [needs-packaging] uget

2009-07-07 Thread Dennis Craven
This package has been uploaded to REVU here:
http://revu.ubuntuwire.com/p/uget. Thanks!

-- 
[needs-packaging] uget
https://bugs.launchpad.net/bugs/380710
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 380710] Re: [needs-packaging] uget

2009-07-07 Thread Dennis Craven
** Changed in: ubuntu
 Assignee: (unassigned) => Dennis Craven (dcraven)

** Changed in: ubuntu
   Status: New => In Progress

-- 
[needs-packaging] uget
https://bugs.launchpad.net/bugs/380710
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 395529] Re: [needs-packaging] gentoo file manager for gtk2 (currently 15.5) should be in repos

2009-07-07 Thread Dennis Craven
A new revision of the above patch that references this LP bug in the
appropriate format (thanks Brian) is attached.

** Attachment added: "The updated diff.gz for the 15.5 package (rev 2)."
   http://launchpadlibrarian.net/28776559/gentoo_0.15.5-1ubuntu1.diff.gz

-- 
[needs-packaging] gentoo file manager for gtk2 (currently 15.5) should be in 
repos
https://bugs.launchpad.net/bugs/395529
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 395626] Re: Mnemosyne doesn't recommend TeX tools

2009-07-07 Thread Dennis Craven
Thanks for the tip Brian, that's good to know. I'm not sure if I should
upload a new diff or if it's been already done. So I'll upload one
anyway.

This new attachment is just like the previous one, but with this LP bug
referenced appropriately.

** Attachment added: "Add dvipng package as a Suggest in the debian/control 
file (rev 2)."
   http://launchpadlibrarian.net/28776419/mnemosyne_1.2.1-1ubuntu2.debdiff

-- 
Mnemosyne doesn't recommend TeX tools
https://bugs.launchpad.net/bugs/395626
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 395767] Re: Lyx does not support dark themes

2009-07-07 Thread Dennis Craven
>From upstream:

i also think this is the problem of qt configuration, lyx should just adopt 
whatsoever you define there.
do the comboboxes in preferences share the same problem? if not reopen this bug.

Therefore I'll mark this bug as Invalid. Please feel free to comment
here in the case where the suggested resolution (qt4 configuration) is
not sufficient.

** Changed in: lyx (Ubuntu)
   Status: New => Invalid

-- 
Lyx does not support dark themes
https://bugs.launchpad.net/bugs/395767
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 395529] Re: [needs-packaging] gentoo file manager for gtk2 (currently 15.5) should be in repos

2009-07-06 Thread Dennis Craven
I'm updated this package, but it will need to be reviewed by ubuntu-
universe-sponsors before it is uploaded. I'm attaching the diff.gz and
adding ubuntu-universe-sponsors to the subscribers list. Thanks for the
bug report.

** Attachment added: "The updated diff.gz for the 15.5 package."
   http://launchpadlibrarian.net/28752125/gentoo_0.15.5-1ubuntu1.diff.gz

-- 
[needs-packaging] gentoo file manager for gtk2 (currently 15.5) should be in 
repos
https://bugs.launchpad.net/bugs/395529
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 396194] Re: build-dep f-spot doesn't install libmono-cairo1.0-cil

2009-07-06 Thread Dennis Craven
FWIW, I'm on Karmic, and I have a mono-cairo.pc provided by libmono-
cairo2.0-cil on which f-spot depends on. This one satisfies the above
dependancy.

But, i'll have to let someone more knowledgeable than I handle this
further. If I figure out how, I'll have a look at the Jaunty package to
see if it really is not listed as a Build-Deps. Thanks.

-- 
build-dep f-spot doesn't install libmono-cairo1.0-cil
https://bugs.launchpad.net/bugs/396194
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 396194] Re: build-dep f-spot doesn't install libmono-cairo1.0-cil

2009-07-06 Thread Dennis Craven
Thanks for the bug. Looking at the f-spot package indicates that
libmono-cairo2.0-cil is a Build-Dep rather than libmono-cairo1.0-cil.

You have noticed that libmono-cairo1.0-cil is still a valid requirement
for building f-spot?

-- 
build-dep f-spot doesn't install libmono-cairo1.0-cil
https://bugs.launchpad.net/bugs/396194
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 396194] Re: build-dep f-spot doesn't install libmono-cairo1.0-cil

2009-07-06 Thread Dennis Craven
** Tags added: packaging

-- 
build-dep f-spot doesn't install libmono-cairo1.0-cil
https://bugs.launchpad.net/bugs/396194
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 392589] Re: Papercut: Default setting for remembering password should be remember until logout

2009-07-06 Thread Dennis Craven
** Also affects: nautilus via
   http://bugzilla.gnome.org/show_bug.cgi?id=587909
   Importance: Unknown
   Status: Unknown

-- 
Papercut:  Default setting for remembering password should be remember until 
logout
https://bugs.launchpad.net/bugs/392589
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 396196] Re: totem crashes when i open a video file

2009-07-06 Thread Dennis Craven
*** This bug is a duplicate of bug 396197 ***
https://bugs.launchpad.net/bugs/396197

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 396197, so it is being marked as such. Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** This bug has been marked a duplicate of bug 396197
   totem crashes when i open a video file

-- 
totem crashes when i open a video file
https://bugs.launchpad.net/bugs/396196
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 396229] Re: login window

2009-07-06 Thread Dennis Craven
*** This bug is a duplicate of bug 395299 ***
https://bugs.launchpad.net/bugs/395299

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 395299, so it is being marked as such. Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** This bug has been marked a duplicate of bug 395299
   gdm 2.26 has no graphical configuration tool

-- 
login window
https://bugs.launchpad.net/bugs/396229
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 395576] Re: Please upgrade gnome-web-photo to 0.8

2009-07-05 Thread Dennis Craven
I've made an attempt at updating this package. I'll upload the diff.gz
to this bug and add ubuntu-universe-sponsors to the list of subscribers.

** Attachment added: "The updated diff.gz for the 0.8 package."
   http://launchpadlibrarian.net/28715665/gnome-web-photo_0.8-0ubuntu1.diff.gz

-- 
Please upgrade gnome-web-photo to 0.8
https://bugs.launchpad.net/bugs/395576
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 395576] Re: Please upgrade gnome-web-photo to 0.8

2009-07-05 Thread Dennis Craven
** Tags added: needs-packaging

-- 
Please upgrade gnome-web-photo to 0.8
https://bugs.launchpad.net/bugs/395576
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 395708] Re: Firefox 3.5 distribution package not configured correctly

2009-07-05 Thread Dennis Craven
*** This bug is a duplicate of bug 365965 ***
https://bugs.launchpad.net/bugs/365965

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported and is a
duplicate of bug 365965, so it is being marked as such. Please look at
the other bug report to see if there is any missing information that you
can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Tags added: packaging

** This bug has been marked a duplicate of bug 365965
   Firefox3.5 recommends ubufox but should suggest ubufox

-- 
Firefox 3.5 distribution package not configured correctly
https://bugs.launchpad.net/bugs/395708
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 395698] Re: Autologin gets disabled on upgrade

2009-07-05 Thread Dennis Craven
** Tags added: regression-potential

-- 
Autologin gets disabled on upgrade
https://bugs.launchpad.net/bugs/395698
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 395767] Re: Lyx does not support dark themes

2009-07-05 Thread Dennis Craven
Thank you for your bug report. This bug has been reported to the
developers of the software. You can track it and make comments at:
http://www.lyx.org/trac/ticket/6050


** Bug watch added: www.lyx.org/trac/ #6050
   http://www.lyx.org/trac/ticket/6050

** Also affects: lyx via
   http://www.lyx.org/trac/ticket/6050
   Importance: Unknown
   Status: Unknown

-- 
Lyx does not support dark themes
https://bugs.launchpad.net/bugs/395767
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 395767] Re: Lyx does not support dark themes

2009-07-05 Thread Dennis Craven
** Tags added: screenshot

-- 
Lyx does not support dark themes
https://bugs.launchpad.net/bugs/395767
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 395808] Re: gdmsetup is missing in karmic

2009-07-05 Thread Dennis Craven
I can confirm this. I'm going to attach the output of "dpkg -L gdm" in
case it's relevant.

** Attachment added: "Output of 'dpkg -L gdm' command."
   http://launchpadlibrarian.net/28713963/gdm-files.txt

** Changed in: gdm (Ubuntu)
   Status: New => Confirmed

-- 
gdmsetup is missing in karmic
https://bugs.launchpad.net/bugs/395808
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 395641] Re: metacity compositing not displayed in system->preferences->appearance

2009-07-05 Thread Dennis Craven
Thank you for the bug report. I'm changing affected package to gnome-
control-center as I feel it more directly impacts that package.

** Package changed: metacity (Ubuntu) => gnome-control-center (Ubuntu)

-- 
metacity compositing not displayed in system->preferences->appearance
https://bugs.launchpad.net/bugs/395641
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 395669] Re: firefox-3.5 install on Kubuntu requires Gnome packages

2009-07-05 Thread Dennis Craven
*** This bug is a duplicate of bug 365965 ***
https://bugs.launchpad.net/bugs/365965

Thank you for taking the time to report this bug and helping to make
Ubuntu better. This particular bug has already been reported as you
suggest and is a duplicate of bug 365965, so it is being marked as such.
Please look at the other bug report to see if there is any missing
information that you can provide, or to see if there is a workaround for
the bug.  Additionally, any further discussion regarding the bug should
occur in the other report.  Please continue to report any other bugs you
may find.

** This bug has been marked a duplicate of bug 365965
   Firefox3.5 recommends ubufox but should suggest ubufox

-- 
firefox-3.5 install on Kubuntu requires Gnome packages
https://bugs.launchpad.net/bugs/395669
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 395626] Re: Mnemosyne doesn't recommend TeX tools

2009-07-05 Thread Dennis Craven
I thought the Recommends relationship might be too strong for this case.
The attached patch adds the dvipng package as a Suggests instead. Please
let me know if this diff is appropriate as it is my first attempt at
making such a change.

** Attachment added: "Add dvipng package as a Suggest in the debian/control 
file."
   http://launchpadlibrarian.net/28713553/mnemosyne_1.2.1-1ubuntu2.debdiff

-- 
Mnemosyne doesn't recommend TeX tools
https://bugs.launchpad.net/bugs/395626
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 395619] Re: Very difficult to select multiple files in list view

2009-07-05 Thread Dennis Craven
Thanks for filing this bug Johnny.

When this happens, are the three intended files selected as well and the
expansion of Folder 1 is some weird side-effect? I can't reproduce this
on nautilus 1:2.27.2-0ubuntu1.

The more info the better of course. :)

-- 
Very difficult to select multiple files in list view
https://bugs.launchpad.net/bugs/395619
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 395626] Re: Mnemosyne doesn't recommend TeX tools

2009-07-05 Thread Dennis Craven
** Tags added: packaging

-- 
Mnemosyne doesn't recommend TeX tools
https://bugs.launchpad.net/bugs/395626
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 378938] Re: low laptop volume with 82801l / ALC269

2009-06-26 Thread Dennis Craven
** Changed in: alsa-driver (Ubuntu)
   Status: New => Confirmed

-- 
low laptop volume with 82801l / ALC269
https://bugs.launchpad.net/bugs/378938
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 391905] Re: warzone 2100 should store its configuration information in ~/.config/.warzone2100-2.1, not ~/.warzone2100-2.1

2009-06-25 Thread Dennis Craven
Done -> http://developer.wz2100.net/ticket/659

That does make sense doesn't it.  Thank you :)

** Bug watch added: developer.wz2100.net/ #659
   http://developer.wz2100.net/ticket/659

-- 
warzone 2100 should store its configuration information in 
~/.config/.warzone2100-2.1, not ~/.warzone2100-2.1
https://bugs.launchpad.net/bugs/391905
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 391920] Re: desktop effect wont start/work.

2009-06-24 Thread Dennis Craven
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 at
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 actually encountered (in as much detail as possible).
3. The type of graphics card/accelerator installed in your system. If you need 
help getting this information, please ask.
Thanks! 

** Changed in: ubuntu
   Status: New => Incomplete

-- 
desktop effect wont start/work.
https://bugs.launchpad.net/bugs/391920
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 391359] Re: Feature request: System restore

2009-06-24 Thread Dennis Craven
Thank you for taking the time to make Ubuntu better. Since what you
submitted is a Feature Request to improve Ubuntu, you are invited to
post your idea in Ubuntu Brainstorm at [WWW]
https://brainstorm.ubuntu.com/ where it can be discussed, voted by the
community and reviewed by developers. Thanks for taking the time to
share your opinion!

-- 
Feature request: System restore
https://bugs.launchpad.net/bugs/391359
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 391905] Re: warzone 2100 should store its configuration information in ~/.config/.warzone2100-2.1, not ~/.warzone2100-2.1

2009-06-24 Thread Dennis Craven
Changing affected package to warzone2100. To satisfy this issue storing
user config files in $XDG_CONFIG_HOME will need to be implemented
upstream. Thanks for the bug!

** Package changed: ubuntu => warzone2100 (Ubuntu)

-- 
warzone 2100 should store its configuration information in 
~/.config/.warzone2100-2.1, not ~/.warzone2100-2.1
https://bugs.launchpad.net/bugs/391905
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 391925] Re: Sessions dialog can have multiple instances

2009-06-24 Thread Dennis Craven
I've sent this issue upstream:
http://bugzilla.gnome.org/show_bug.cgi?id=586911

Thanks!

** Bug watch added: GNOME Bug Tracker #586911
   http://bugzilla.gnome.org/show_bug.cgi?id=586911

-- 
Sessions dialog can have multiple instances
https://bugs.launchpad.net/bugs/391925
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 391925] Re: Sessions dialog can have multiple instances

2009-06-24 Thread Dennis Craven
Thanks for the bug DutchTest. I'm setting the affected package to gnome-
session. I'll check upstream to see if a similar bug exists.

** Package changed: ubuntu => gnome-session (Ubuntu)

** Changed in: gnome-session (Ubuntu)
   Status: New => Confirmed

-- 
Sessions dialog can have multiple instances
https://bugs.launchpad.net/bugs/391925
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 93607] Re: Broken URLs in Yelp viewer

2009-06-24 Thread Dennis Craven
So I don't see "Desktop Effect" in yelp anymore. As of Karmic I see that
it mush be replaced with "Visual Effects". This link works fine for me.

Is this bug still happening in Jaunty for anyone? I'm using yelp 2.27.1.
If not, it should be closed. Thanks.

-- 
Broken URLs in Yelp viewer
https://bugs.launchpad.net/bugs/93607
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 50318] Re: manpage rendered wrong

2009-06-24 Thread Dennis Craven
I can still confirm the s/"/q issue in yelp 2.27.1.

See screenshot attached.

** Attachment added: "Xorg.conf man page displayed with double quotes displayed 
as letter 'q'."
   http://launchpadlibrarian.net/28324801/screenshot_001.png

-- 
manpage rendered wrong
https://bugs.launchpad.net/bugs/50318
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 36094] Re: right click should open a context menu

2009-06-24 Thread Dennis Craven
When I click on a link in yelp 2.27.1 I get the option to "Open Link",
"Open Link in New Window" or "Copy Link Address".

When I click on anything else, I see nothing, which I don't think is a
bug.

Is that satisfactory to the submitter? There  is little detail in the
original post as to expected behaviour, and I don't recall if this
behaviour existed in Dapper. Thanks for the bug!

-- 
right click should open a context menu
https://bugs.launchpad.net/bugs/36094
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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


[Bug 173636] Re: Gnome Help stops responding until Firefox closes

2009-06-24 Thread Dennis Craven
This bug was last commented on in mid-2008 and I cannot reproduce it in
Jaunty/Karmic. I'm going to mark it Invalid so that it will expire if no
more activity happens. If it still happens for someone, please leave a
comment so that it will remain active. Thanks.

** Changed in: yelp (Ubuntu)
   Status: Confirmed => Invalid

** Changed in: yelp (Ubuntu)
 Assignee: Ubuntu Desktop Bugs (desktop-bugs) => (unassigned)

-- 
Gnome Help stops responding until Firefox closes
https://bugs.launchpad.net/bugs/173636
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 140979] Re: The requested URI "man:Nautilus(1)" is invalid

2009-06-24 Thread Dennis Craven
This has been fixed in nautilus and is not a bug in yelp (Ubuntu).
Therefore I'm going to mark this bug as invalid for yelp (Ubuntu).

** Changed in: yelp (Ubuntu)
   Status: Triaged => Invalid

-- 
The requested URI "man:Nautilus(1)" is invalid
https://bugs.launchpad.net/bugs/140979
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 390186] Re: sudo's password problems

2009-06-24 Thread Dennis Craven
The submitter seems satisfied with the resolution (or lack thereof) to
this bug. I'm going to mark it Invalid. Thank you Juan, for the bug
report. If you have further comments regarding this bug, please feel
free to add them and the bug will remain active.

** Changed in: sudo (Ubuntu)
   Status: New => Invalid

-- 
sudo's password problems
https://bugs.launchpad.net/bugs/390186
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 390209] Re: Karmic - help centre unable to load page

2009-06-23 Thread Dennis Craven
Thanks for filing this bug. Does the Help Center work as expected when you run 
it like this?
"yelp ghelp:desktop-effects"

Changing affected package to yelp.

** Package changed: ubuntu => yelp (Ubuntu)

-- 
Karmic - help centre unable to load page
https://bugs.launchpad.net/bugs/390209
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 391135] Re: 503 Service Unavailable

2009-06-23 Thread Dennis Craven
I see a 404 because that file does not exist on the server in that
location. See the index here:

http://security.ubuntu.com/ubuntu/pool/main/u/udev/

Thanks.

-- 
503 Service Unavailable
https://bugs.launchpad.net/bugs/391135
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 391351] Re: [needs-packaging] mediacoder

2009-06-23 Thread Dennis Craven
Does this distribution package such things that require wine to run? I
can't think of another package like this.

-- 
[needs-packaging] mediacoder
https://bugs.launchpad.net/bugs/391351
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 390194] Re: Python-devel not found during HPlip install

2009-06-23 Thread Dennis Craven
Thanks for filing the bug. I'm going to mark this bug as invalid since
the problem seems to be resolved if I read the comments correctly. If
this decision is incorrect, please feel free to reopen and add more
comments as you see fit. Thanks.

** Changed in: ubuntu
   Status: New => Invalid

-- 
Python-devel not found during HPlip install
https://bugs.launchpad.net/bugs/390194
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 390186] Re: sudo's password problems

2009-06-23 Thread Dennis Craven
Putting sudo as the affected package for this bug.

** Package changed: ubuntu => sudo (Ubuntu)

-- 
sudo's password problems
https://bugs.launchpad.net/bugs/390186
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 390186] Re: sudo's password problems

2009-06-23 Thread Dennis Craven
I'm pretty sure this is expected behavior. Is this bug suggesting that
the password in this scenario should echo asterisks or something back to
the user with each character?

Applications often do this intentionally so that someone looking over
your shoulder has no clues as to the size of your password.

-- 
sudo's password problems
https://bugs.launchpad.net/bugs/390186
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 390063] Re: beagle-crawl-system failing

2009-06-22 Thread Dennis Craven
Changing affected package to beagle. Thanks.

** Package changed: ubuntu => beagle (Ubuntu)

-- 
beagle-crawl-system failing
https://bugs.launchpad.net/bugs/390063
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 390404] Re: Playing solitaire in full screen the leave full screen button does allow you to exit full screen to go back to the tool bar

2009-06-22 Thread Dennis Craven
I just wanted to add that I could not reproduce this bug in either
Jaunty or Karmic.

-- 
Playing solitaire in full screen the leave full screen button does allow you to 
exit full screen to go back to the tool bar
https://bugs.launchpad.net/bugs/390404
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 390404] Re: Playing solitaire in full screen the leave full screen button does allow you to exit full screen to go back to the tool bar

2009-06-22 Thread Dennis Craven
Assigning bug to gnome-games package. Thanks.

** Package changed: ubuntu => gnome-games (Ubuntu)

-- 
Playing solitaire in full screen the leave full screen button does allow you to 
exit full screen to go back to the tool bar
https://bugs.launchpad.net/bugs/390404
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 390723] Re: icons dissapear from bottom panel on reboot

2009-06-22 Thread Dennis Craven
Adding gnome-panel as the affected package. Thanks.

** Package changed: ubuntu => gnome-panel (Ubuntu)

-- 
icons dissapear from bottom panel on reboot
https://bugs.launchpad.net/bugs/390723
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 390726] Re: Ubuntu 9.04 x64, upgrade to kernel 2.6.28-13 -- EE NVIDIA (0) Failed to load the NVIDIA Kernel module!

2009-06-22 Thread Dennis Craven
For what it's worth, I've seen a similar error on kernel upgrades before
(upgrading to Karmic will suffice likely). I'd suggest that you login
with the lower resolution as you describe in your report, and navigate
to System -> Administration -> Hardware Drivers and see if you can
install some new drivers. It might be worth a shot.

-- 
Ubuntu 9.04 x64, upgrade to kernel 2.6.28-13 -- EE NVIDIA (0) Failed to load 
the NVIDIA Kernel module!
https://bugs.launchpad.net/bugs/390726
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 390902] Re: Icons in Human Theme should all be .svg

2009-06-22 Thread Dennis Craven
I believe this bug should be filed against the human-icon-theme package.
Thanks.

** Package changed: ubuntu => human-icon-theme (Ubuntu)

-- 
Icons in Human Theme should all be .svg
https://bugs.launchpad.net/bugs/390902
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 255373] Re: No .desktop file in visualboyadvance-gtk package.

2008-08-06 Thread Dennis Craven

** Attachment added: "VisualBoy Advance .desktop file for menu presence."
   http://launchpadlibrarian.net/16587489/visualboyadvance.desktop

-- 
No .desktop file in visualboyadvance-gtk package.
https://bugs.launchpad.net/bugs/255373
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 255373] [NEW] No .desktop file in visualboyadvance-gtk package.

2008-08-06 Thread Dennis Craven
Public bug reported:

Binary package hint: visualboyadvance-gtk

This package should probably contain a .desktop file so that it is
included in the Games menu. Users install it and do not know how to run
it without knowing the "dpkg -L visualboyadvance-gtk" command. This is
found in Hardy.

Expected: Upon installation, the new app (the GUI frontend at least) appears in 
the Games menu.
What Happened: Nothing appeared in the menu, and how to run the application was 
not easily discoverable.

** Affects: visualboyadvance (Ubuntu)
 Importance: Undecided
 Status: New

-- 
No .desktop file in visualboyadvance-gtk package.
https://bugs.launchpad.net/bugs/255373
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 192992] Re: [hardy] pycentral crashed with ValueError in parse_versions()

2008-02-18 Thread Dennis Craven
Confirming. Error received during upgrade to bzr_1.1~rc1-1_i386.deb.

-- 
[hardy] pycentral crashed with ValueError in parse_versions()
https://bugs.launchpad.net/bugs/192992
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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