[Bug 153301] Re: weather applet won't use automatic-proxy-configuration
This bug may be fixed but it's not working for me. The reason in my case though is that the weather applet (and gnome proxy in general) doesn't seem able to deal with proxy authentication which is required on my site. 1250239082.625136 172.16.1.3 TCP_DENIED/407 1906 GET http://weather.noaa.gov/cgi-bin/mgetmetar.pl? - NONE/- text/html Gavin -- weather applet won't use automatic-proxy-configuration https://bugs.launchpad.net/bugs/153301 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is a bug assignee. -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs
[Bug 413469] [NEW] weather applet won't do proxy authentication
Public bug reported: Binary package hint: gnome-applets Hi, I have a proxy server configured in GNOME with a wpad.dat script for my network. I have the gnome application on my desktop. I don't get any data. When I tell the applet to reload, i see this in our Squid logs. 1250239255.714 0 172.16.1.3 TCP_DENIED/407 1906 GET http://weather.noaa.gov/cgi-bin/mgetmetar.pl? - NONE/- text/html We require proxy authentication on this network but gnome or the applet don't seem to know how to deal with that. If I add an exclusion for this site in squid I can get the weather data through, but this is not really something I want to do and no doubt many other gnome users are not in a position to modify their network proxy. Gavin ** Affects: gnome-applets (Ubuntu) Importance: Undecided Status: New -- weather applet won't do proxy authentication https://bugs.launchpad.net/bugs/413469 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to gnome-applets in ubuntu. -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs
[Bug 413469] Re: weather applet won't do proxy authentication
Currently Jaunty Jackalope. I can upgrade a spare laptop to Karmic and test if that's likely to have a fix? -- weather applet won't do proxy authentication https://bugs.launchpad.net/bugs/413469 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is a bug assignee. -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs
[Bug 414392] [NEW] [karmic] applet not updating battery charge (still says 92% when down to 1%)
Public bug reported: Binary package hint: gnome-power-manager On an acer aspire one, the battery light started flashing. I looked at the gnome applet and it said the battery was 99.3% full. The /proc/acpi info had the correct data however. I haven't managed to repeat this as yet. As soon as I plugged in the power cable the applet refreshed, changed icon and started showing the correct figure for the battery. I'm going to attach a screenshot which sums it up. ** Affects: gnome-power-manager (Ubuntu) Importance: Undecided Status: New -- [karmic] applet not updating battery charge (still says 92% when down to 1%) https://bugs.launchpad.net/bugs/414392 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to gnome-power-manager in ubuntu. -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs
[Bug 414392] Re: [karmic] applet not updating battery charge (still says 92% when down to 1%)
this screenshot shows the mouseover on the applet showing 99.8% while the /proc/acpi/ data is totally contradictory, saying 3%. ** Attachment added: "screenshot showing contradicition between applet and /proc/acpi" http://launchpadlibrarian.net/30387712/Screenshot-1.png -- [karmic] applet not updating battery charge (still says 92% when down to 1%) https://bugs.launchpad.net/bugs/414392 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to gnome-power-manager in ubuntu. -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs
[Bug 414392] Re: [karmic] applet not updating battery charge (still says 92% when down to 1%)
On reflection, my interpretation of the sums is a little wrong. It's 3% of an hour left. Either way, 99.2% battery charge seems way off. -- [karmic] applet not updating battery charge (still says 92% when down to 1%) https://bugs.launchpad.net/bugs/414392 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to gnome-power-manager in ubuntu. -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs
[Bug 180261] Re: Adding a new user with "Real Name" containing an apostrophe fails
I've submitted a patch upstream to system-tools-backends which hopefully should resolve this bug. http://bugzilla.gnome.org/show_bug.cgi?id=519273 This should hopefully be committed upstream soon and filter down in the next update. -- Adding a new user with "Real Name" containing an apostrophe fails https://bugs.launchpad.net/bugs/180261 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is a bug assignee. -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs
[Bug 379944] Re: User administration, groups are not sortable; users-admin
While perhaps not an exact duplicate, it seems this bug relates to bug 259163 -- User administration, groups are not sortable; users-admin https://bugs.launchpad.net/bugs/379944 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to gnome-system-tools in ubuntu. -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs
[Bug 259163] Re: users-admin does not sort when Name/Login/Homedir field clicked
I've been looking through the code for this and am adding some notes here in case they help anyone else (or me to recall later). As Jordan observes, these errors are telling us about the problem: (users-admin:724): Gtk-CRITICAL **: gtk_tree_sortable_get_sort_column_id: assertion `GTK_IS_TREE_SORTABLE (sortable)' failed (users-admin:724): GLib-GObject-WARNING **: invalid cast from `GtkTreeModelFilter' to `GtkTreeSortable' (users-admin:724): Gtk-CRITICAL **: gtk_tree_sortable_has_default_sort_func: assertion `GTK_IS_TREE_SORTABLE (sortable)' failed (users-admin:724): GLib-GObject-WARNING **: invalid cast from `GtkTreeModelFilter' to `GtkTreeSortable' (users-admin:724): Gtk-CRITICAL **: gtk_tree_sortable_set_sort_column_id: assertion `GTK_IS_TREE_SORTABLE (sortable)' failed What seems to be happening is that the function create_users_model() in users-table.c is creating a GTKTreeModel of type GTK_TREE_MODEL_FILTER instead of eg. plain type GTK_TREE_MODEL. When the code in create_users_table() calls gtk_tree_sortable_set_sort_column_id() this fails because the GTK_TREE_MODEL_FILTER is not sortable. There is some discussion on this issue and a proposed solution here: http://mail.gnome.org/archives/gtk-list/2005-February/msg00177.html This is all I have gleaned so far and may be well wide of the mark, but I shall persevere. -- users-admin does not sort when Name/Login/Homedir field clicked https://bugs.launchpad.net/bugs/259163 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to gnome-system-tools in ubuntu. -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs
[Bug 259163] Re: users-admin does not sort when Name/Login/Homedir field clicked
I've reported this bug upstream to the gnome developers and linked that bug to this launchpad bug. ** Bug watch added: GNOME Bug Tracker #593107 http://bugzilla.gnome.org/show_bug.cgi?id=593107 ** Also affects: gst via http://bugzilla.gnome.org/show_bug.cgi?id=593107 Importance: Unknown Status: Unknown -- users-admin does not sort when Name/Login/Homedir field clicked https://bugs.launchpad.net/bugs/259163 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to gnome-system-tools in ubuntu. -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs
[Bug 849772] [NEW] [natty] GPM applet doesn't update "on power" status 30 minutes after power cable pulled
Public bug reported: I have an Acer Aspire One (model zg5). When I pull the power cable, the acpi command updates output within a few seconds to Battery 0: Discharging, 91%, 06:14:30 remaining However, even half an hour later, the GPM icon still says I'm on power. Also, the battery graphing utilities don't seem to be getting and useful data either. ProblemType: Bug DistroRelease: Ubuntu 11.04 Package: gnome-power-manager 2.32.0-2ubuntu2.1 ProcVersionSignature: Ubuntu 2.6.38-11.49-generic 2.6.38.8 Uname: Linux 2.6.38-11-generic i686 Architecture: i386 Date: Wed Sep 14 09:16:59 2011 EcryptfsInUse: Yes GnomeSessionIdleInhibited: No GnomeSessionInhibitors: None GnomeSessionSuspendInhibited: No Lsusb: Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub MachineType: Acer AOA150 ProcEnviron: LANGUAGE=en_IE:en PATH=(custom, user) LANG=en_IE.UTF-8 SHELL=/bin/bash ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.38-11-generic root=UUID=ec98ddfb-6ff3-42ed-9543-7508e56b5447 ro crashkernel=384M-2G:64M,2G-:128M quiet splash vt.handoff=7 SourcePackage: gnome-power-manager UpgradeStatus: Upgraded to natty on 2011-05-01 (135 days ago) dmi.bios.date: 05/09/2008 dmi.bios.vendor: Acer dmi.bios.version: v0.3301 dmi.board.asset.tag: Base Board Asset Tag dmi.board.vendor: Acer dmi.board.version: Base Board Version dmi.chassis.type: 1 dmi.chassis.vendor: Chassis Manufacturer dmi.chassis.version: Chassis Version dmi.modalias: dmi:bvnAcer:bvrv0.3301:bd05/09/2008:svnAcer:pnAOA150:pvr1:rvnAcer:rn:rvrBaseBoardVersion:cvnChassisManufacturer:ct1:cvrChassisVersion: dmi.product.name: AOA150 dmi.product.version: 1 dmi.sys.vendor: Acer ** Affects: gnome-power-manager (Ubuntu) Importance: Undecided Status: New ** Tags: apport-bug i386 natty -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to gnome-power-manager in Ubuntu. https://bugs.launchpad.net/bugs/849772 Title: [natty] GPM applet doesn't update "on power" status 30 minutes after power cable pulled To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gnome-power-manager/+bug/849772/+subscriptions -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs
[Bug 849772] Re: [natty] GPM applet doesn't update "on power" status 30 minutes after power cable pulled
** Attachment added: "screenshot showing acpi output, GPM applet state and Graphs" https://bugs.launchpad.net/bugs/849772/+attachment/2401408/+files/Screenshot.png -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to gnome-power-manager in Ubuntu. https://bugs.launchpad.net/bugs/849772 Title: [natty] GPM applet doesn't update "on power" status 30 minutes after power cable pulled To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/gnome-power-manager/+bug/849772/+subscriptions -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs
[Bug 379944] Re: User administration, groups are not sortable; users-admin
Hi, laserjock says he has a fix for this. https://lists.ubuntu.com/archives/edubuntu- devel/2010-January/003224.html Hopefully he'll pass it on soon :-) Gavin -- User administration, groups are not sortable; users-admin https://bugs.launchpad.net/bugs/379944 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to gnome-system-tools in ubuntu. -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs
[Bug 379944] Re: User administration, groups are not sortable; users-admin
Oops, sorry, that's for bug 259163 -- User administration, groups are not sortable; users-admin https://bugs.launchpad.net/bugs/379944 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to gnome-system-tools in ubuntu. -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs
[Bug 259163] Re: users-admin does not sort when Name/Login/Homedir field clicked
It's a while since I've actually looked at this. There was a "bug day" coming up among edubuntu developers and I mentioned this bug as one which was causing problems for some people. Jordan said he had a fix, though I'm not sure what version that was against. On an LTSP system, it's not uncommon to have hundreds of users. As it was, the gnome users-admin showed an (effectively) unsorted list of people which made it very difficult to use with large numbers of accounts. For this reason, some users had installed the KDE user admin tool. https://lists.ubuntu.com/archives/edubuntu- users/2009-June/thread.html#5363 (the thread entitled "Directory tools for Edubuntu server") The first step that seemed worthwhile was to fix sorting of users so you could find people. Searching might also help. Does the new version add some feature to help in this scenario? -- users-admin does not sort when Name/Login/Homedir field clicked https://bugs.launchpad.net/bugs/259163 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to gnome-system-tools in ubuntu. -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs
[Bug 355180] Re: [jaunty] screen brightness dims on AC power despite config to leave at 100%
I don't think it is fixed to be honest. The problem is a bit intermittent, but I'm pretty certain I still see it. -- [jaunty] screen brightness dims on AC power despite config to leave at 100% https://bugs.launchpad.net/bugs/355180 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to gnome-power-manager in ubuntu. -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs
[Bug 180261] Re: Adding a new user with "Real Name" containing an apostrophe fails
Many thanks for everyone's the work on this, particularly Milan. Gavin -- Adding a new user with "Real Name" containing an apostrophe fails https://bugs.launchpad.net/bugs/180261 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is a bug assignee. -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs
[Bug 339491] [NEW] [jaunty] strange desktop flickering makes desktop unusable, killing GSD is workaround
Public bug reported: Binary package hint: gnome-settings-daemon Hi, I ran an upgrade last night which upgraded a large number of packages, presumably including the core gnome stuff. When I logged in this morning gnome was very slow to start up. When everything was finally present the screen elements kept flickering horizontally (it's hard to describe to be honest) in a very distracting way. I was going to kill GSD (from experience I suspected it was reprobing constantly), but then it stopped after a minute or so. I thought all was okay. Then after another five minutes or so, the flickering started again. I killed GSD and the issue immediately went away. I'm attaching my .gnome-session-errors. Gavin ** Affects: gnome-settings-daemon (Ubuntu) Importance: Undecided Status: New -- [jaunty] strange desktop flickering makes desktop unusable, killing GSD is workaround https://bugs.launchpad.net/bugs/339491 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to gnome-settings-daemon in ubuntu. -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs
[Bug 339491] Re: [jaunty] strange desktop flickering makes desktop unusable, killing GSD is workaround
** Attachment added: "gnome session errors file from the session" http://launchpadlibrarian.net/23602397/.xsession-errors -- [jaunty] strange desktop flickering makes desktop unusable, killing GSD is workaround https://bugs.launchpad.net/bugs/339491 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to gnome-settings-daemon in ubuntu. -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs
[Bug 339491] Re: strange desktop flickering makes desktop unusable
Hi, It seems a reliable way for me to prompt the flickering to start is to unplug or replug the power cable. Whatever process goes on, at the point the flickering happens, there's no output coming from the gsd instance with debug: gnome-settings-daemon --no-daemon --debug Attached is the full output ** Attachment added: "gsd-debug-output.txt" http://launchpadlibrarian.net/23843859/gsd-debug-output.txt -- strange desktop flickering makes desktop unusable https://bugs.launchpad.net/bugs/339491 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is a bug assignee. -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs
[Bug 339491] Re: strange desktop flickering makes desktop unusable
Having realised that I should pass the --no-daemon --debug when using gdb, here's another backtrace using those options. I've run 'killall -3 gnome-settings-daemon' during the flickering (which comes and goes) and taken a backtrace. ** Attachment added: "gdb-gnome-settings-daemon3.txt" http://launchpadlibrarian.net/23844196/gdb-gnome-settings-daemon3.txt -- strange desktop flickering makes desktop unusable https://bugs.launchpad.net/bugs/339491 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is a bug assignee. -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs
[Bug 339491] Re: strange desktop flickering makes desktop unusable
I managed to get a backtrace on the second attempt. If you look at the file attached, it has a failed attempt first, then a second attach, then a backtrace. When the screen started flickering, I killed GSD with signal 3, then took the backtrace as suggested in the wiki. Let me know if this is okay or not. ** Attachment added: "gdb-gnome-settings-daemon2.txt" http://launchpadlibrarian.net/23843582/gdb-gnome-settings-daemon2.txt -- strange desktop flickering makes desktop unusable https://bugs.launchpad.net/bugs/339491 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is a bug assignee. -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs
[Bug 339491] Re: strange desktop flickering makes desktop unusable
A recent set of package upgrades appears to have fixed this issue. I'm no longer seeing it now. agavi...@bambi:~$ apt-cache policy gnome-settings-daemon gnome-settings-daemon: Installed: 2.26.0-0ubuntu2 Candidate: 2.26.0-0ubuntu2 Version table: *** 2.26.0-0ubuntu2 0 500 http://ie.archive.ubuntu.com jaunty/main Packages 100 /var/lib/dpkg/status -- strange desktop flickering makes desktop unusable https://bugs.launchpad.net/bugs/339491 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is a bug assignee. -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs
[Bug 355180] [NEW] [jaunty] screen brightness dims on AC power despite config to leave at 100%
Public bug reported: Binary package hint: gnome-power-manager I have a Dell Latitude D410 laptop running the latest testing version of Jaunty. While I'm typing here, I have the laptop on AC power. I find the screen keeps dimming down to about 60%. I then use the hotkey to brighten the screen up again. Within a minute or two it has dimmed back down again. The power management settings "On AC power" are set to Put computer to sleep when inactive: Never When laptop is closed: blank screen Put display to sleep when inactive for: 15 minutes Set display brightness to: 100% Dim display when idle: unchecked "On Battery Power": Put computer to sleep when inactive: Never When laptop is closed: blank screen When battery power is critically low: Shutdown Put display to sleep when inactive for: 11 minutes Reduce backlight brightness: checked Dim display when idle: checked The gnome tray applet confirms that I do have AC power on. This problem is consistently irritating. I'm in a bright room and really need the full backlight. gavi...@bambi:~$ apt-cache policy gnome-power-manager gnome-power-manager: Installed: 2.24.2-2ubuntu7 Candidate: 2.24.2-2ubuntu7 Version table: *** 2.24.2-2ubuntu7 0 500 http://ie.archive.ubuntu.com jaunty/main Packages 100 /var/lib/dpkg/status gavi...@bambi:~$ lsb_release -rd Description:Ubuntu jaunty (development branch) Release:9.04 ** Affects: gnome-power-manager (Ubuntu) Importance: Undecided Status: New -- [jaunty] screen brightness dims on AC power despite config to leave at 100% https://bugs.launchpad.net/bugs/355180 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to gnome-power-manager in ubuntu. -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs
[Bug 355180] Re: [jaunty] screen brightness dims on AC power despite config to leave at 100%
Oops. I may have jumped the gun on this. I was running an upgrade as I typed and the above versions are post-upgrade. Since the reboot, I'm not seeing the issue. This may be fixed already. Gavin -- [jaunty] screen brightness dims on AC power despite config to leave at 100% https://bugs.launchpad.net/bugs/355180 You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to gnome-power-manager in ubuntu. -- desktop-bugs mailing list desktop-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/desktop-bugs