From webmaster at nebulon.de Sat Mar 1 04:44:29 2008 From: webmaster at nebulon.de (Johannes Zellner) Date: Fri, 29 Feb 2008 19:44:29 -0800 Subject: [Goodies-dev] xfce4-taskmanager still maintained? In-Reply-To: <20080229124251.GB13003@molly.corsac.net> References: <20080229124251.GB13003@molly.corsac.net> Message-ID: <200802291944.33462.webmaster@nebulon.de> Am Freitag 29 Februar 2008 04:42:51 schrieb Yves-Alexis Perez: > Hi, > > is there still a maintainer for xfce4-taskmanager, and is there somewhere > to report bugs to? No component in bugzilla, upstream websites seem to be > outdated: > > http://goodies.xfce.org/projects/applications/xfce4-taskmanager 0.3.2 > http://xfce4-taskmanager.nebulon.de/ 0.4.0-rc2 ("complete rewrite") more > than a year ago. > > There's a huge memory leak in xfce4-taskmanager amd the CPU display seems > to be buggy too. Is it a dead soft or is there some hope? > > Cheers, Hi, yeah I am the author of xfce4-taskmanager and yes it's pretty old code. Since I'm not using xfce very often anymore I did nothing especially for the 4.4 xfce release. But I try to put more attention on it in the future. Thanks for the "no component" hint, I'll try to get one in bugzilla. Greetings, Johannes -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 197 bytes Desc: This is a digitally signed message part. Url : http://foo-projects.org/pipermail/goodies-dev/attachments/20080229/ae2148fd/attachment.bin From marianobesio at gmail.com Sat Mar 1 06:30:28 2008 From: marianobesio at gmail.com (Mariano Besio) Date: Sat, 1 Mar 2008 03:30:28 -0200 Subject: [Goodies-dev] xfce4-sensors-plugin: hddtemp not setuid message In-Reply-To: <1204321167.3598.15.camel@TIM3000.workgroup> References: <97f478100802252044m19f48c24g8f932e543fe082b8@mail.gmail.com> <1204321167.3598.15.camel@TIM3000.workgroup> Message-ID: <97f478100802292130s687563c8i293dc3232c9eaad5@mail.gmail.com> 2008/2/29, Fabian Nowak : > > Am Dienstag, den 26.02.2008, 02:44 -0200 schrieb Mariano Besio: > > > Hi people, I've just installed version sensors plugin 0.10.99.4 from > > Debian reps (please keep reading), which is based on svn revision 3775 > > and the new plugin started to show a message each time its started > > saying that hddtemp is not being setuid root. The problem is that it > > seems to be setuid correctly and hddtemp can be executed as non-root > > > "Correct" (actually, setuid root is ugly): > -rwsr-xr-x 1 root root 26716 17. Feb 18:52 /usr/sbin/hddtemp > Yeah I also think that is "correct" :) but anyway, I don't believe that there is a nicer solution, besides using sockets. I also got this output: -rwsr-xr-x 1 root root 26716 2008-02-17 15:52 /usr/sbin/hddtemp so it seems to be "correct". > > > user without any trouble. So I decided to look after the code of svn > > version to fix it and found that get_hddtemp_value routine has on line > > 299 a validation with the access function against 0. Looking at access > > man pages, shouldn't this value be -1? I think that this is causing > > the message to appear when the disk string is "/dev/fd". > > > No, it looks for being executable in general but returning invalid > stuff; so it comes to the conclusion that the SMARt sensor cannot be > polled due to missing permissions. > Oh, yes now I see which is the idea. So that was why changing that value worked for me. Sorry for that, my mistake. > > Anyway, did some changes in svn, you might want to check them and > whether it's working better. If not, it might be nice to give me the > return codes and output to stdout and stderr of running hddtemp on valid > and invalid devices both with sudo/setuid root and without. I'm running hddtemp version 0.3-beta15. I've got this outputs: With setuid $ ll /usr/sbin/hddtemp ; hddtemp /dev/sda ; echo "\$? = "$? -rwsr-xr-x 1 root root 26716 2008-02-17 15:52 /usr/sbin/hddtemp /dev/sda: WDC WD1600JS-00MHB0: 56?C $? = 0 $ ll /usr/sbin/hddtemp ; hddtemp /dev/fd ; echo "\$? = "$? -rwsr-xr-x 1 root root 26716 2008-02-17 15:52 /usr/sbin/hddtemp ERROR: /dev/fd: can't determine bus type (or this bus type is unknown) $? = 1 $ ll /usr/sbin/hddtemp ; hddtemp /dev/null ; echo "\$? = "$? -rwsr-xr-x 1 root root 26716 2008-02-17 15:52 /usr/sbin/hddtemp ERROR: /dev/null: can't determine bus type (or this bus type is unknown) $? = 1 $ ll /usr/sbin/hddtemp ; hddtemp /dev/nodevice ; echo "\$? = "$? -rwsr-xr-x 1 root root 26716 2008-02-17 15:52 /usr/sbin/hddtemp /dev/nodevice: open: No existe el fichero o el directorio $? = 1 (this has the system locale output, translation: "No file or directory". I know this case should never happen as names are fetched form sys, just to be more informative) Without setuid $ ll /usr/sbin/hddtemp ; hddtemp /dev/sda ; echo "\$? = "$? -rwxr-xr-x 1 root root 26716 2008-02-17 15:52 /usr/sbin/hddtemp /dev/sda: open: Permiso denegado $? = 1 (again the locale, translation: "Permission denied") $ ll /usr/sbin/hddtemp ; hddtemp /dev/fd ; echo "\$? = "$? -rwxr-xr-x 1 root root 26716 2008-02-17 15:52 /usr/sbin/hddtemp ERROR: /dev/fd: can't determine bus type (or this bus type is unknown) $? = 1 $ ll /usr/sbin/hddtemp ; hddtemp /dev/null ; echo "\$? = "$? -rwxr-xr-x 1 root root 26716 2008-02-17 15:52 /usr/sbin/hddtemp ERROR: /dev/null: can't determine bus type (or this bus type is unknown) $? = 1 $ ll /usr/sbin/hddtemp ; hddtemp /dev/nodevice ; echo "\$? = "$? -rwxr-xr-x 1 root root 26716 2008-02-17 15:52 /usr/sbin/hddtemp /dev/nodevice: open: No existe el fichero o el directorio $? = 1 (translation: "No file or directory") Doing "grep exit *.c" on hddtemp code in http://download.savannah.nongnu.org/releases/hddtemp/ I've found that the author is using (or planning to use) these error codes: -2, -1, 1, 2, 3. He seems to use mostly 1. But as you had already written in some comments, those checks are version dependent. The changes in svn revision 4012 look fine. Don't misunderstand me, my doubt was more like a theoretical one. The svn version seems to be working OK, but IMHO the strings comparison for devices seems a bit hardwired. I don't want to be pedantic, but perhaps in this case you may want to look at the stat function instead of access, although the bitwise operations make code less maintainable. This weekend I'll try to see if the stat solution is viable to avoid this cases. Hope I haven't been too harsh, as you've seen in the locale, English is not my native language. Thanks for the answers and your time. Regards, Mariano From timystery at arcor.de Sat Mar 1 08:46:53 2008 From: timystery at arcor.de (Fabian Nowak) Date: Sat, 01 Mar 2008 08:46:53 +0100 Subject: [Goodies-dev] xfce4-sensors-plugin: hddtemp not setuid message In-Reply-To: <97f478100802292130s687563c8i293dc3232c9eaad5@mail.gmail.com> References: <97f478100802252044m19f48c24g8f932e543fe082b8@mail.gmail.com> <1204321167.3598.15.camel@TIM3000.workgroup> <97f478100802292130s687563c8i293dc3232c9eaad5@mail.gmail.com> Message-ID: <1204357613.3704.13.camel@TIM3000.workgroup> Hey Mariano, > > No, it looks for being executable in general but returning invalid > > stuff; so it comes to the conclusion that the SMARt sensor cannot be > > polled due to missing permissions. > > > > Oh, yes now I see which is the idea. So that was why changing that > value worked for me. Sorry for that, my mistake. No problem at all. > > > > Anyway, did some changes in svn, you might want to check them and > > whether it's working better. If not, it might be nice to give me the > > return codes and output to stdout and stderr of running hddtemp on valid > > and invalid devices both with sudo/setuid root and without. > > I'm running hddtemp version 0.3-beta15. I've got this outputs: > > With setuid > $ ll /usr/sbin/hddtemp ; hddtemp /dev/sda ; echo "\$? = "$? > -rwsr-xr-x 1 root root 26716 2008-02-17 15:52 /usr/sbin/hddtemp > /dev/sda: WDC WD1600JS-00MHB0: 56?C > $? = 0 > > $ ll /usr/sbin/hddtemp ; hddtemp /dev/fd ; echo "\$? = "$? > -rwsr-xr-x 1 root root 26716 2008-02-17 15:52 /usr/sbin/hddtemp > ERROR: /dev/fd: can't determine bus type (or this bus type is unknown) > $? = 1 > > $ ll /usr/sbin/hddtemp ; hddtemp /dev/null ; echo "\$? = "$? > -rwsr-xr-x 1 root root 26716 2008-02-17 15:52 /usr/sbin/hddtemp > ERROR: /dev/null: can't determine bus type (or this bus type is unknown) > $? = 1 > > $ ll /usr/sbin/hddtemp ; hddtemp /dev/nodevice ; echo "\$? = "$? > -rwsr-xr-x 1 root root 26716 2008-02-17 15:52 /usr/sbin/hddtemp > /dev/nodevice: open: No existe el fichero o el directorio > > $? = 1 > (this has the system locale output, translation: "No file or > directory". I know this case should never happen as names are fetched > form sys, just to be more informative) > > Without setuid > $ ll /usr/sbin/hddtemp ; hddtemp /dev/sda ; echo "\$? = "$? > -rwxr-xr-x 1 root root 26716 2008-02-17 15:52 /usr/sbin/hddtemp > /dev/sda: open: Permiso denegado > > $? = 1 > (again the locale, translation: "Permission denied") > > $ ll /usr/sbin/hddtemp ; hddtemp /dev/fd ; echo "\$? = "$? > -rwxr-xr-x 1 root root 26716 2008-02-17 15:52 /usr/sbin/hddtemp > ERROR: /dev/fd: can't determine bus type (or this bus type is unknown) > $? = 1 > > $ ll /usr/sbin/hddtemp ; hddtemp /dev/null ; echo "\$? = "$? > -rwxr-xr-x 1 root root 26716 2008-02-17 15:52 /usr/sbin/hddtemp > ERROR: /dev/null: can't determine bus type (or this bus type is unknown) > $? = 1 > > $ ll /usr/sbin/hddtemp ; hddtemp /dev/nodevice ; echo "\$? = "$? > -rwxr-xr-x 1 root root 26716 2008-02-17 15:52 /usr/sbin/hddtemp > /dev/nodevice: open: No existe el fichero o el directorio > > $? = 1 > (translation: "No file or directory") Thanks for the error codes - and your understanding of how bad it is to be used. > > Doing "grep exit *.c" on hddtemp code in > http://download.savannah.nongnu.org/releases/hddtemp/ I've found that > the author is using (or planning to use) these error codes: -2, -1, 1, > 2, 3. He seems to use mostly 1. But as you had already written in some > comments, those checks are version dependent. :) > The changes in svn revision 4012 look fine. Don't misunderstand me, my > doubt was more like a theoretical one. The svn version seems to be > working OK, but IMHO the strings comparison for devices seems a bit > hardwired. I don't want to be pedantic, but perhaps in this case you > may want to look at the stat function instead of access, although the > bitwise operations make code less maintainable. This weekend I'll try > to see if the stat solution is viable to avoid this cases. Yeah, this night I've also been wondering why not simply checking for setuid bit would work; but you know, there are rot users under X around this world... (some of them administrate our university servers...) and again, checking the way I do just enables "understanding" or "justifying" the return codes from the point of view of the plugin with regard to hddtemp's behaviour. For getting the device names, I don't think fstat is appropriate. Anyway, I'd really appreciate your investigations as I'm beginning to move out of my current flat for this month and won't have plenty of time. > > Hope I haven't been too harsh, as you've seen in the locale, English > is not my native language. No, it's all perfect; and you don't need to translate any German, Spanish, Italian, Portuguese, French for me, I can at least read and assemble them ;) > Thanks for the answers and your time. Regards, Again, you're welcome, thanks in return, cheers *gonnapaintaflatnow* Fabian From corsac at debian.org Sat Mar 1 10:45:52 2008 From: corsac at debian.org (Yves-Alexis Perez) Date: Sat, 01 Mar 2008 10:45:52 +0100 Subject: [Goodies-dev] xfce4-sensors-plugin: hddtemp not setuid message In-Reply-To: <97f478100802252044m19f48c24g8f932e543fe082b8@mail.gmail.com> References: <97f478100802252044m19f48c24g8f932e543fe082b8@mail.gmail.com> Message-ID: <1204364752.5328.11.camel@hidalgo> On mar, 2008-02-26 at 02:44 -0200, Mariano Besio wrote: > Hi people, I've just installed version sensors plugin 0.10.99.4 from > Debian reps (please keep reading), which is based on svn revision 3775 > and the new plugin started to show a message each time its started > saying that hddtemp is not being setuid root. The problem is that it > seems to be setuid correctly and hddtemp can be executed as non-root > user without any trouble. FWIW, it works here. -- Yves-Alexis -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part Url : http://foo-projects.org/pipermail/goodies-dev/attachments/20080301/6592589e/attachment.bin From e.r.m.davidson at sms.ed.ac.uk Sat Mar 1 13:19:23 2008 From: e.r.m.davidson at sms.ed.ac.uk (e.r.m.davidson@sms.ed.ac.uk) Date: Sat, 1 Mar 2008 12:19:23 +0000 (UTC) Subject: [Goodies-dev] ANN: thunar-thumbnailers version 0.3.1 released Message-ID: <20080301121923.BD8FAF29D8@mocha.foo-projects.org> Version 0.3.1. Added video/3gpp and video/x-matroska mimetypes (ffmpeg-thumbnailer) Download this release: http://goodies.xfce.org/releases/thunar-thumbnailers/thunar-thumbnailers-0.3.1.tar.bz2 Changelog: http://goodies.xfce.org/releases/thunar-thumbnailers/ChangeLog Project website: http://goodies.xfce.org/projects/thunar-plugins/thunar-thumbnailers/ From bugzilla-daemon at xfce.org Mon Mar 3 06:05:36 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Mon, 3 Mar 2008 05:05:36 +0000 (UTC) Subject: [Goodies-dev] [Bug 2642] unplugged battery should not produce low and critical battery warnings In-Reply-To: Message-ID: <20080303050536.89337F29D9@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=2642 jeffdrichards at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jeffdrichards at gmail.com ------- Comment #1 from jeffdrichards at gmail.com 2008-03-03 05:05 UTC ------- I just tested this bug with xfce version 4.4.2 battery plugin version 0.5.0 distribution: debian unstable kernel 2.6.24 compiled for amd64 and the results that with my battery removed and the AC power plugged in, the battery plugin is no longer running the low and critical battery commands that have been specified. The battery percentage shows 0% in these cases, but I do not see the results that the previous reporter outlined. I would recommend changing this bug to fixed. -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Mon Mar 3 14:16:26 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Mon, 3 Mar 2008 13:16:26 +0000 (UTC) Subject: [Goodies-dev] [Bug 3910] New: Show some Moon data in plugin Message-ID: DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3910 Summary: Show some Moon data in plugin Product: Xfce Panel Plugins Version: unspecified Platform: PC (x86) OS/Version: Linux Status: NEW Severity: enhancement Priority: Medium Component: weather AssignedTo: goodies-dev at xfce.org ReportedBy: kg.kilo at gmail.com User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.12) Gecko/20061201 Firefox/2.0.0.12 (Ubuntu-feisty) Build Identifier: I'd like to expand the functionality of the Xfce weather plugin and include Moon rise / Moon set data in the summary page, just like it is already available for the Sun. Maybe add some more data, like phase, age (in days), or an icon showing actual phase of Moon. I have a working source base to show all these data, but would like to hear some opinions first before sending a patch. Reproducible: Always Steps to Reproduce: NA Actual Results: NA Expected Results: NA The solution would be based on glunarclock's code - it is also GPLed so using the code would mean no legal difficulties. -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Tue Mar 4 03:51:59 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Tue, 4 Mar 2008 02:51:59 +0000 (UTC) Subject: [Goodies-dev] [Bug 3911] New: large spacing of sensor readouts in text ui mode Message-ID: DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3911 Summary: large spacing of sensor readouts in text ui mode Product: Xfce Panel Plugins Version: unspecified Platform: PC (x86) OS/Version: Linux Status: NEW Severity: trivial Priority: Medium Component: sensors AssignedTo: goodies-dev at xfce.org ReportedBy: carbonfreeze at gmail.com User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9b3) Gecko/2008021416 Firefox/3.0b3 Build Identifier: xubuntu 8.04 sensors version 0.10.99.4~svn-r377 xfce4-panel version 4.4.2-3ubuntu1 See attached image xfpanel sensors.png. Spacing between sensor items is quite large, it would be nice if this was adjustable without having to add multiple single-sensor plugins to the panel. Each sensors plugin added to the panel uses ~15mb RAM (resident), so the fewer the better. Adjusting text size of the sensor plugin does not reduce the space between the displayed sensors. See image sensors multiple.png. This image shows 3 sensor plugins, seperated by color (sensors plugin 1 = green, 2 = black, 3= blue). The third sensor plugin (blue) includes two temperature sensors. This kind of setup would work; the space between items is small enough, but in this case your running multiple sensor plugins = more RAM usage. Note the large space difference between the two images; they are both displaying 4 sensor items on the panel. Note the Orage clock plugin pushed almost completely off the panel edge in xfpanel sensors.png. Reproducible: Always Steps to Reproduce: -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Tue Mar 4 03:52:39 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Tue, 4 Mar 2008 02:52:39 +0000 (UTC) Subject: [Goodies-dev] [Bug 3911] large spacing of sensor readouts in text ui mode In-Reply-To: Message-ID: <20080304025239.1851EF29D9@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3911 ------- Comment #1 from carbonfreeze at gmail.com 2008-03-04 02:52 UTC ------- Created an attachment (id=1539) --> (http://bugzilla.xfce.org/attachment.cgi?id=1539&action=view) Single sensors plugin in panel -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Tue Mar 4 03:53:13 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Tue, 4 Mar 2008 02:53:13 +0000 (UTC) Subject: [Goodies-dev] [Bug 3911] large spacing of sensor readouts in text ui mode In-Reply-To: Message-ID: <20080304025313.D2BA4F29D9@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3911 ------- Comment #2 from carbonfreeze at gmail.com 2008-03-04 02:53 UTC ------- Created an attachment (id=1540) --> (http://bugzilla.xfce.org/attachment.cgi?id=1540&action=view) muliple sensor plugins on panel -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Tue Mar 4 03:58:01 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Tue, 4 Mar 2008 02:58:01 +0000 (UTC) Subject: [Goodies-dev] [Bug 3912] New: Add ability to remove temperature/RPM label from text ui style Message-ID: DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3912 Summary: Add ability to remove temperature/RPM label from text ui style Product: Xfce Panel Plugins Version: unspecified Platform: PC (x86) OS/Version: Linux Status: NEW Severity: enhancement Priority: Very Low Component: sensors AssignedTo: goodies-dev at xfce.org ReportedBy: carbonfreeze at gmail.com It would be nice if the label text for various sensors could be removed, instead of displaying "40.0 *C", the sensor would only display "40.0" (or even remove float completely, "40"). This would make using this plugin on low-res screens a bit easier on the available panel real-estate. -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Tue Mar 4 08:00:03 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Tue, 4 Mar 2008 07:00:03 +0000 (UTC) Subject: [Goodies-dev] [Bug 3912] Add ability to remove temperature/RPM label from text ui style In-Reply-To: Message-ID: <20080304070004.63956F29D9@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3912 ------- Comment #1 from corsac at debian.org 2008-03-04 07:00 UTC ------- (In reply to comment #0) > It would be nice if the label text for various sensors could be removed, > instead of displaying "40.0 *C", the sensor would only display "40.0" (or even > remove float completely, "40"). This would make using this plugin on low-res > screens a bit easier on the available panel real-estate. > Why not using the graphical UI? -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Tue Mar 4 08:05:32 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Tue, 4 Mar 2008 07:05:32 +0000 (UTC) Subject: [Goodies-dev] [Bug 3912] Add ability to remove temperature/RPM label from text ui style In-Reply-To: Message-ID: <20080304070532.E5CA2F29D9@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3912 ------- Comment #2 from carbonfreeze at gmail.com 2008-03-04 07:05 UTC ------- (In reply to comment #1) > Why not using the graphical UI? > Because the graphical UI does not provide values for the given sensor, only a bar graph. its not a major issue, just trying to reclaim some of my panel real-estate (1024x768). -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Tue Mar 4 08:06:45 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Tue, 4 Mar 2008 07:06:45 +0000 (UTC) Subject: [Goodies-dev] [Bug 3912] Add ability to remove temperature/RPM label from text ui style In-Reply-To: Message-ID: <20080304070645.5932BF29D9@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3912 ------- Comment #3 from corsac at debian.org 2008-03-04 07:06 UTC ------- (In reply to comment #2) > (In reply to comment #1) > > Why not using the graphical UI? > > > > Because the graphical UI does not provide values for the given sensor, only a > bar graph. its not a major issue, just trying to reclaim some of my panel > real-estate (1024x768). > They do provide a feedback, and the value is available on tooltip, if needed. -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Tue Mar 4 11:12:16 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Tue, 4 Mar 2008 10:12:16 +0000 (UTC) Subject: [Goodies-dev] [Bug 3912] Add ability to remove temperature/RPM label from text ui style In-Reply-To: Message-ID: <20080304101216.207E7F29D9@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3912 enrico.troeger at uvena.de changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |enrico.troeger at uvena.de ------- Comment #4 from enrico.troeger at uvena.de 2008-03-04 10:12 UTC ------- The requested feature would help also users like me who use a vertical panel, everything which is not displayed helps decreasing the panel width. The graphical interface isn't very helpful since it only displays a bar and not concrete values. Yes, they are shown in the tooltip but tooltips require the mouse pointer at the panel plugin. So, I would vote for it. -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From mike.massonnet at gmail.com Tue Mar 4 19:30:24 2008 From: mike.massonnet at gmail.com (mike.massonnet@gmail.com) Date: Tue, 4 Mar 2008 18:30:24 +0000 (UTC) Subject: [Goodies-dev] ANN: xfce4-clipman-plugin version 0.8.1 released Message-ID: <20080304183024.2A992F29D8@mocha.foo-projects.org> Hello Clipman users, This is a small version bump to fix a critical bug that has been lying around for a moment. See bug #3304 for reference. Other wishlists and normal bugs are postponned. Enjoy, mike Download this release: http://goodies.xfce.org/releases/xfce4-clipman-plugin/xfce4-clipman-plugin-0.8.1.tar.bz2 Changelog: http://goodies.xfce.org/releases/xfce4-clipman-plugin/ChangeLog Project website: http://goodies.xfce.org/projects/panel-plugins/xfce4-clipman-plugin/ From bugzilla-daemon at xfce.org Thu Mar 6 09:37:32 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Thu, 6 Mar 2008 08:37:32 +0000 (UTC) Subject: [Goodies-dev] [Bug 3923] New: cpugraph doesn't show in kiosk mode Message-ID: DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3923 Summary: cpugraph doesn't show in kiosk mode Product: Xfce Panel Plugins Version: unspecified Platform: PC (x86) OS/Version: Linux Status: NEW Severity: normal Priority: Medium Component: cpugraph AssignedTo: goodies-dev at xfce.org ReportedBy: mad at sharktooth.de User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.12) Gecko/20080208 Fedora/2.0.0.12-1.fc8 Firefox/2.0.0.12 Build Identifier: I configured kiosk mode with a restricted panel. Everything went fine. After the configuration was finished I removed the ~/.config directory from user root and test to test the kiosk mode. Restarting xfce worked flawless with root (no wonder here), even with user test it was ok. Problem is that the cpugraph I configured into the panel does not show in the panel of user test. Every other icon/applet is shown (Workspace, Launchers, DateTime, ...). When I deactivate the kiosk mode for the panel - deleting the line 'CustomizePanel=root' from kioskrc - and restart xfce the cpugraph is shown in the panel. Reproducible: Always Steps to Reproduce: 1.Create a panel with cpugraph as any user. 2.Copy the panel data from ~/.config/xfce4/panel to /etc/xdg/xfce4/panel. 3.Remove the ~/.config/xfce4/panel directory. 4.Activate kiosk mode (Adding 'CustomizePanel=root' to kioskrc). 5.Relogin user. Actual Results: cpugraph is not shown in panel, every other icon/app is shown. Expected Results: cpugraph should be visible in panel. # uname -a Linux localhost.localdomain 2.6.23.15-137.fc8 #1 SMP Sun Feb 10 17:48:34 EST 2008 i686 i686 i386 GNU/Linux # rpm -qa | grep xfce xfce4-icon-theme-4.4.2-1.fc8 libxfcegui4-4.4.2-1.fc8 xfce4-netload-plugin-0.4.0-6.fc8 libxfce4util-4.4.2-1.fc8 xfce-mcs-manager-4.4.2-1.fc8 xfce-mcs-plugins-4.4.2-2.fc8 xfce4-session-4.4.2-1.fc8 xfce4-panel-4.4.2-1.fc8 xfce4-screenshooter-plugin-1.0.0-6.fc8 xfce4-datetime-plugin-0.5.0-3.fc8 xfce4-session-engines-4.4.2-1.fc8 libxfce4mcs-4.4.2-1.fc8 xfce4-taskmanager-0.4.0-0.2.rc2.fc6 xfce-utils-4.4.2-3.fc8 xfce4-cpugraph-plugin-0.4.0-2.fc8 # cat /etc/fedora-release Fedora release 8 (Werewolf) -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Fri Mar 7 22:19:42 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Fri, 7 Mar 2008 21:19:42 +0000 (UTC) Subject: [Goodies-dev] [Bug 3923] cpugraph doesn't show in kiosk mode In-Reply-To: Message-ID: <20080307211942.27045F29DB@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3923 fedora at christoph-wickert.de changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fedora at christoph-wickert.de -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Fri Mar 7 23:06:19 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Fri, 7 Mar 2008 22:06:19 +0000 (UTC) Subject: [Goodies-dev] [Bug 3923] cpugraph doesn't show in kiosk mode In-Reply-To: Message-ID: <20080307220619.55CF0F29DB@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3923 ------- Comment #1 from mike.massonnet at gmail.com 2008-03-07 22:06 UTC ------- Can you provide the panel and kioskrc configuration files? Thanks -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From enrico.troeger at uvena.de Sat Mar 8 17:28:56 2008 From: enrico.troeger at uvena.de (enrico.troeger@uvena.de) Date: Sat, 8 Mar 2008 16:28:56 +0000 (UTC) Subject: [Goodies-dev] ANN: xfce4-dict-plugin version 0.3.0 released Message-ID: <20080308162856.F3E21F29D8@mocha.foo-projects.org> Hi, here is a new xfce4-dict-plugin release. In the main dialog there are now radio buttons to quickly change the search method(dict, web, aspell). A cool new feature was added: aspell support. This allows you to not only search for translations but also check certain words or phrases for spelling. This feature only works if you have the aspell binary installed on your system. Furthermore, there were some bugfixes and minor usability improvements. Check it out and have fun ;-). Download this release: http://goodies.xfce.org/releases/xfce4-dict-plugin/xfce4-dict-plugin-0.3.0.tar.gz Changelog: http://goodies.xfce.org/releases/xfce4-dict-plugin/ChangeLog Project website: http://goodies.xfce.org/projects/panel-plugins/xfce4-dict-plugin/ From bugzilla-daemon at xfce.org Mon Mar 10 08:36:54 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Mon, 10 Mar 2008 07:36:54 +0000 (UTC) Subject: [Goodies-dev] [Bug 3923] cpugraph doesn't show in kiosk mode In-Reply-To: Message-ID: <20080310073654.5D20CF29DA@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3923 ------- Comment #2 from mad at sharktooth.de 2008-03-10 07:36 UTC ------- Created an attachment (id=1554) --> (http://bugzilla.xfce.org/attachment.cgi?id=1554&action=view) Archive with kiosk a panel directory -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Mon Mar 10 21:56:16 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Mon, 10 Mar 2008 20:56:16 +0000 (UTC) Subject: [Goodies-dev] [Bug 3938] New: Compilation error due to conflicting types in /usr/include/sys and /usr/include/linux Message-ID: DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3938 Summary: Compilation error due to conflicting types in /usr/include/sys and /usr/include/linux Product: Xfce Panel Plugins Version: unspecified Platform: PC (x86_64) OS/Version: Linux Status: NEW Severity: normal Priority: Medium Component: battery AssignedTo: goodies-dev at xfce.org ReportedBy: adscvr at gmail.com User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9b3) Gecko/2008030818 Firefox/3.0b3 Build Identifier: I can't remember when I started to have this problem. I believe it was when upgrading kernel sources to 2.6.24. I've had this error message when I tried to compile the sources: In file included from ./libapm.h:21, from battery.c:39: /usr/include/sys/types.h:46: error: conflicting types for 'loff_t' /usr/include/linux/types.h:57: error: previous declaration of 'loff_t' was here /usr/include/sys/types.h:62: error: conflicting types for 'dev_t' /usr/include/linux/types.h:19: error: previous declaration of 'dev_t' was here In file included from /usr/include/sys/types.h:133, from ./libapm.h:21, from battery.c:39: /usr/include/time.h:105: error: conflicting types for 'timer_t' /usr/include/linux/types.h:28: error: previous declaration of 'timer_t' was here In file included from ./libapm.h:21, from battery.c:39: /usr/include/sys/types.h:198: error: conflicting types for 'int64_t' /usr/include/linux/types.h:125: error: previous declaration of 'int64_t' was here /usr/include/sys/types.h:204: error: conflicting types for 'u_int64_t' /usr/include/linux/types.h:124: error: previous declaration of 'u_int64_t' was here In file included from /usr/include/sys/types.h:220, from ./libapm.h:21, from battery.c:39: /usr/include/sys/select.h:78: error: conflicting types for 'fd_set' /usr/include/linux/types.h:18: error: previous declaration of 'fd_set' was here In file included from ./libapm.h:21, from battery.c:39: /usr/include/sys/types.h:235: error: conflicting types for 'blkcnt_t' /usr/include/linux/types.h:151: error: previous declaration of 'blkcnt_t' was here make[2]: *** [xfce4_battery_plugin-battery.o] Error 1 make[1]: *** [all-recursive] Error 1 make: *** [all] Error 2 This is the only thing that I can't compile. I use SVN. I have 2.6.24.3 kernel and GCC 4.2.3. Reproducible: Always Steps to Reproduce: 1. Download SVN tree. 2. Try to compile the sources. -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From enrico.troeger at uvena.de Tue Mar 11 18:23:00 2008 From: enrico.troeger at uvena.de (Enrico =?UTF-8?B?VHLDtmdlcg==?=) Date: Tue, 11 Mar 2008 18:23:00 +0100 Subject: [Goodies-dev] xfce4-dict-plugin vs. xfdict Message-ID: <20080311182300.13ca3a6d.enrico.troeger@uvena.de> Hi all, I'm planning to extend my xfce4-dict-plugin to _also_ be a stand-alone application. I.e., there will also be a xfdict binary which a) opens the plugin's main window if the plugin is loaded in the panel b) starts a usual stand-alone application if the panel is not loaded. So, Xfce also will get a stand-alone dictionary application ;-) and only a little new code is necessary because the main code is reused from the already existing panel plugin code. I still have two questions: a) should I build and install a shared library for the common code (main window, networking code, aspell support code)? Or is it sufficient to build a static library archive(.a) and link it into both binaries? A shared library would be better of course but it would cause more administrative work for a maybe small advantage. We are talking about approx. 1300 lines of source code which would be built into the library. b) how should I call the stand-alone app? xfdict, xfdict4, xfce4-dict, xfce-dict? I'm not really sure how the existing apps were named, some have the "4" in the name, others not. Some are prefixed with "xf", others with "xfce4-". So, what's the best for me? Regards, Enrico -- Get my GPG key from http://www.uvena.de/pub.key -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://foo-projects.org/pipermail/goodies-dev/attachments/20080311/720da405/attachment.bin From bugzilla-daemon at xfce.org Wed Mar 12 14:38:17 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Wed, 12 Mar 2008 13:38:17 +0000 (UTC) Subject: [Goodies-dev] [Bug 3910] Show some Moon data in plugin In-Reply-To: Message-ID: <20080312133817.D82E0F29D9@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3910 ------- Comment #1 from kg.kilo at gmail.com 2008-03-12 13:38 UTC ------- Created an attachment (id=1557) --> (http://bugzilla.xfce.org/attachment.cgi?id=1557&action=view) Initial patch, shows moonrise/moonset in summary page. Includes CalcEphem.c, Moon.c, MoonRise.c + headers from latest available glunarclock version. -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Thu Mar 13 08:16:22 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Thu, 13 Mar 2008 07:16:22 +0000 (UTC) Subject: [Goodies-dev] [Bug 3793] battery indicator is wrong In-Reply-To: Message-ID: <20080313071622.3E971F29DB@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3793 corsac at debian.org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |corsac at debian.org ------- Comment #3 from corsac at debian.org 2008-03-13 07:16 UTC ------- I assume this is because of the sysfs patch, wich behaves badly on some system, especially those where there is no /sys/class/power_supply/AC (wich is the only AC adapter the sysfs patch look at) -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Thu Mar 13 08:23:26 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Thu, 13 Mar 2008 07:23:26 +0000 (UTC) Subject: [Goodies-dev] [Bug 3533] battery-plugin unresponsive during /proc reads In-Reply-To: Message-ID: <20080313072326.D7E54F29D9@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3533 ------- Comment #7 from corsac at debian.org 2008-03-13 07:23 UTC ------- (In reply to comment #6) > AC is sometimes called ACAD in /sys/class/power_supply. I'll come with a > refreshed patch wich fixes this. > > Could this patch (or a variant) be integrated, now that 2.6.24 is out? Mhmh, in the end, we may have a situation. The sysfs patch doesn't work really great. Some users say the indicator is stuck at 28%. Some people don't have any /sys/class/power_supply/AC but other weird and non standard names. The plugin shouldn't look at fixed folder name but rather detect correctly AC/BAT folder names. This is becoming an issue, because ACPI_PROCFS_POWER is now deprecated and may be removed in 2.6.26. The hal-based branch is not yet stable (at least officially), and, well, depends on hal. Bartosz: could refresh your patch so it works correctly on all boxes? I tried to look at it, but this is a quite intrusive change so I'm really not sure. Nick: maybe the solution is to deprecate the 0.5.0 battery plugin early, and switch to hal (even if this add hal dependency on laptops). What do you think? -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Thu Mar 13 08:37:06 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Thu, 13 Mar 2008 07:37:06 +0000 (UTC) Subject: [Goodies-dev] [Bug 3533] battery-plugin unresponsive during /proc reads In-Reply-To: Message-ID: <20080313073706.3DAFCF29D9@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3533 nick at xfce.org changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|goodies-dev at xfce.org |nick at xfce.org ------- Comment #8 from nick at xfce.org 2008-03-13 07:37 UTC ------- I don't think the hal dependency is a show stopper. That said, I'm not really putting any time in acpi version, since I think it's a dead end. So for patch writer, I can only suggest to work on the hal-based version (please). -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. You are the assignee for the bug, or are watching the assignee. From malik_cjm at o2.pl Fri Mar 14 12:04:20 2008 From: malik_cjm at o2.pl (MaLiK) Date: Fri, 14 Mar 2008 12:04:20 +0100 Subject: [Goodies-dev] Clipman-plugin icon theme changed patch Message-ID: <20080314120420.05f04082@o2.pl> Hi I've create patch for the clipman-plugin, similar to the previous patch for the notes-plugin. Patch was made for the 4022 revision. Gretz MaLiK From mmassonnet at gmail.com Fri Mar 14 12:43:47 2008 From: mmassonnet at gmail.com (Mike Massonnet) Date: Fri, 14 Mar 2008 12:43:47 +0100 Subject: [Goodies-dev] Clipman-plugin icon theme changed patch In-Reply-To: <20080314120420.05f04082@o2.pl> References: <20080314120420.05f04082@o2.pl> Message-ID: <20080314114347.GI3123@failure.del> On Fri, Mar 14, 2008 at 12:04:20PM +0100, MaLiK wrote: > Hi Hello MaLiK, > I've create patch for the clipman-plugin, > similar to the previous patch for the notes-plugin. > > Patch was made for the 4022 revision. Can you please open a bug for the patches, because they are not trackable on the mailing list. Btw, I opened a branch for clipman, mmassonnet, where I will clean up stuff. It will soon or later replace trunk. > Gretz > MaLiK mike From jujucece at gmail.com Sat Mar 15 23:45:44 2008 From: jujucece at gmail.com (jujucece@gmail.com) Date: Sat, 15 Mar 2008 22:45:44 +0000 (UTC) Subject: [Goodies-dev] ANN: xfce4-genmon-plugin version 3.2 released Message-ID: <20080315224544.339CCF29D8@mocha.foo-projects.org> A new version correcting some bugs and adding some functionnalities. (See Changelog) Download this release: http://goodies.xfce.org/releases/xfce4-genmon-plugin/xfce4-genmon-plugin-3.2.tar.bz2 Changelog: http://goodies.xfce.org/releases/xfce4-genmon-plugin/ChangeLog Project website: http://goodies.xfce.org/projects/panel-plugins/xfce4-genmon-plugin/ From bugzilla-daemon at xfce.org Sat Mar 15 23:49:52 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Sat, 15 Mar 2008 22:49:52 +0000 (UTC) Subject: [Goodies-dev] [Bug 3878] Allow use of ~ in plugin In-Reply-To: Message-ID: <20080315224952.E0F32F29D9@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3878 ------- Comment #1 from jujucece at gmail.com 2008-03-15 22:49 UTC ------- This functionnality has been added to 3.2 version. -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Sat Mar 15 23:50:36 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Sat, 15 Mar 2008 22:50:36 +0000 (UTC) Subject: [Goodies-dev] [Bug 3896] process run by genmon plugin are zombified In-Reply-To: Message-ID: <20080315225036.0D44CF29D9@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3896 ------- Comment #2 from jujucece at gmail.com 2008-03-15 22:50 UTC ------- I don't want to change this behaviour because the change can cause the hung of the plugin, which is (for me) worse. -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Sat Mar 15 23:51:40 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Sat, 15 Mar 2008 22:51:40 +0000 (UTC) Subject: [Goodies-dev] [Bug 3624] Plugin disappears into panel In-Reply-To: Message-ID: <20080315225140.908A7F29DA@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3624 ------- Comment #2 from jujucece at gmail.com 2008-03-15 22:51 UTC ------- This bug has been resolved in the 3.2 version. If the spawn of the command fails, the plugin display XXX. -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Sat Mar 15 23:58:55 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Sat, 15 Mar 2008 22:58:55 +0000 (UTC) Subject: [Goodies-dev] [Bug 3896] process run by genmon plugin are zombified In-Reply-To: Message-ID: <20080315225855.31CCBF29D9@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3896 ------- Comment #3 from corsac at debian.org 2008-03-15 22:58 UTC ------- (In reply to comment #2) > I don't want to change this behaviour because the change can cause the hung of > the plugin, which is (for me) worse. Well, maybe there's another solution? Because letting zombies everywhere isn't really great either. -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Sun Mar 16 00:05:55 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Sat, 15 Mar 2008 23:05:55 +0000 (UTC) Subject: [Goodies-dev] [Bug 3896] process run by genmon plugin are zombified In-Reply-To: Message-ID: <20080315230555.30C3AF29D9@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3896 ------- Comment #4 from jujucece at gmail.com 2008-03-15 23:05 UTC ------- I know it's not a acceptable answer I made. But I think it's the script responsability to finish cleanly (manage timeout or things like that). It's surely possible to do better in the plugin, but I don't want to add too much complexity to the code. If somebody has an idea or a patch, he's welcomed ;) -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Sun Mar 16 00:14:04 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Sat, 15 Mar 2008 23:14:04 +0000 (UTC) Subject: [Goodies-dev] [Bug 3896] process run by genmon plugin are zombified In-Reply-To: Message-ID: <20080315231404.C3775F29D9@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3896 ------- Comment #5 from corsac at debian.org 2008-03-15 23:14 UTC ------- (In reply to comment #4) > It's surely possible to do better in the plugin, but I don't want to add too > much complexity to the code. > > If somebody has an idea or a patch, he's welcomed ;) I don't know how xfrun handles this, but maybe there are good ideas to pick there? -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Sun Mar 16 16:23:25 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Sun, 16 Mar 2008 15:23:25 +0000 (UTC) Subject: [Goodies-dev] [Bug 3896] process run by genmon plugin are zombified In-Reply-To: Message-ID: <20080316152325.3DA6FF29D9@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3896 ------- Comment #6 from mike.massonnet at gmail.com 2008-03-16 15:23 UTC ------- A start point can be revision 26432 (see bug #2983) -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From e.r.m.davidson at sms.ed.ac.uk Mon Mar 17 18:15:17 2008 From: e.r.m.davidson at sms.ed.ac.uk (e.r.m.davidson@sms.ed.ac.uk) Date: Mon, 17 Mar 2008 17:15:17 +0000 (UTC) Subject: [Goodies-dev] ANN: thunar-thumbnailers version 0.3.2 released Message-ID: <20080317171517.462F3F29D8@mocha.foo-projects.org> Version 0.3.2. Added more mimetypes to the raw-thumbnailer: image/x-canon-cr2 image/x-adobe-dng image/x-pentax-pef image/x-sigma-x3f image/x-sony-sr2 To the best of my knowledge, the only raw image format not supported now is image/x-panasonic-raw Download this release: http://goodies.xfce.org/releases/thunar-thumbnailers/thunar-thumbnailers-0.3.2.tar.bz2 Changelog: http://goodies.xfce.org/releases/thunar-thumbnailers/ChangeLog Project website: http://goodies.xfce.org/projects/thunar-plugins/thunar-thumbnailers/ From bugzilla-daemon at xfce.org Tue Mar 18 00:23:10 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Mon, 17 Mar 2008 23:23:10 +0000 (UTC) Subject: [Goodies-dev] [Bug 3938] Compilation error due to conflicting types in /usr/include/sys and /usr/include/linux In-Reply-To: Message-ID: <20080317232310.3D7E3F29D9@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3938 ------- Comment #1 from adscvr at gmail.com 2008-03-17 23:23 UTC ------- My glibc version is 2.7. -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Tue Mar 18 13:23:31 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Tue, 18 Mar 2008 12:23:31 +0000 (UTC) Subject: [Goodies-dev] [Bug 3938] Compilation error due to conflicting types in /usr/include/sys and /usr/include/linux In-Reply-To: Message-ID: <20080318122331.4F05FF29DA@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3938 fedora at christoph-wickert.de changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fedora at christoph-wickert.de -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Tue Mar 18 16:25:39 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Tue, 18 Mar 2008 15:25:39 +0000 (UTC) Subject: [Goodies-dev] [Bug 3938] Compilation error due to conflicting types in /usr/include/sys and /usr/include/linux In-Reply-To: Message-ID: <20080318152539.72926F29DA@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3938 drac at gentoo.org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |drac at gentoo.org ------- Comment #2 from drac at gentoo.org 2008-03-18 15:25 UTC ------- Users have reported this also to us at http://bugs.gentoo.org/show_bug.cgi?id=210218 -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Tue Mar 18 17:03:09 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Tue, 18 Mar 2008 16:03:09 +0000 (UTC) Subject: [Goodies-dev] [Bug 3938] Compilation error due to conflicting types in /usr/include/sys and /usr/include/linux In-Reply-To: Message-ID: <20080318160309.7117BF29DA@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3938 ------- Comment #3 from fedora at christoph-wickert.de 2008-03-18 16:03 UTC ------- Has also been reported for Fedora Development and 9 Beta, see http://linux.dell.com/files/fedora/FixBuildRequires/mock-results-core/i386/xfce4-battery-plugin-0.5.0-2.fc7.src.rpm/result/build.log -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Tue Mar 18 20:26:05 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Tue, 18 Mar 2008 19:26:05 +0000 (UTC) Subject: [Goodies-dev] [Bug 3938] Compilation error due to conflicting types in /usr/include/sys and /usr/include/linux In-Reply-To: Message-ID: <20080318192605.B486CF29DA@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3938 ------- Comment #4 from corsac at debian.org 2008-03-18 19:26 UTC ------- Created an attachment (id=1561) --> (http://bugzilla.xfce.org/attachment.cgi?id=1561&action=view) Fix FTBFS using 2.6.24 headers It seems that the attached patch fix this. -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Tue Mar 18 20:26:17 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Tue, 18 Mar 2008 19:26:17 +0000 (UTC) Subject: [Goodies-dev] [Bug 3938] Compilation error due to conflicting types in /usr/include/sys and /usr/include/linux In-Reply-To: Message-ID: <20080318192617.8CAC3F29D9@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3938 corsac at debian.org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |corsac at debian.org -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Wed Mar 19 11:01:05 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Wed, 19 Mar 2008 10:01:05 +0000 (UTC) Subject: [Goodies-dev] [Bug 3910] Show some Moon data in plugin In-Reply-To: Message-ID: <20080319100105.B6114F29D9@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3910 nick at xfce.org changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|goodies-dev at xfce.org |nick at xfce.org -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Thu Mar 20 03:15:56 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Thu, 20 Mar 2008 02:15:56 +0000 (UTC) Subject: [Goodies-dev] [Bug 3938] Compilation error due to conflicting types in /usr/include/sys and /usr/include/linux In-Reply-To: Message-ID: <20080320021557.20E3BF29DA@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3938 ------- Comment #5 from adscvr at gmail.com 2008-03-20 02:15 UTC ------- It worked with the patch. Thanks! -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Thu Mar 20 20:55:49 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Thu, 20 Mar 2008 19:55:49 +0000 (UTC) Subject: [Goodies-dev] [Bug 3953] New: Add ability to disable hddtemp missing warning, or do smart hddtemp detection Message-ID: DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3953 Summary: Add ability to disable hddtemp missing warning, or do smart hddtemp detection Product: Xfce Panel Plugins Version: unspecified Platform: PC (x86) OS/Version: Linux Status: NEW Severity: enhancement Priority: Very Low Component: sensors AssignedTo: goodies-dev at xfce.org ReportedBy: carbonfreeze at gmail.com XFCE 4.4.2, Xubuntu 8.04 Whenever I login with the sensors panel plugin in use, I get a warning about hddtemp binary being non-existent. It would be nice if I could disable this warning. -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From marianobesio at gmail.com Fri Mar 21 02:45:39 2008 From: marianobesio at gmail.com (Mariano Besio) Date: Thu, 20 Mar 2008 22:45:39 -0300 Subject: [Goodies-dev] xfce4-sensors-plugin: hddtemp not setuid message In-Reply-To: <1204357613.3704.13.camel@TIM3000.workgroup> References: <97f478100802252044m19f48c24g8f932e543fe082b8@mail.gmail.com> <1204321167.3598.15.camel@TIM3000.workgroup> <97f478100802292130s687563c8i293dc3232c9eaad5@mail.gmail.com> <1204357613.3704.13.camel@TIM3000.workgroup> Message-ID: <97f478100803201845m6343c8c9iec1bbd190c5c586e@mail.gmail.com> 2008/3/1, Fabian Nowak : > Hey Mariano, > > > > > No, it looks for being executable in general but returning invalid > > > stuff; so it comes to the conclusion that the SMARt sensor cannot be > > > polled due to missing permissions. > > > > > > > Oh, yes now I see which is the idea. So that was why changing that > > value worked for me. Sorry for that, my mistake. > > > No problem at all. > > > > > > > > Anyway, did some changes in svn, you might want to check them and > > > whether it's working better. If not, it might be nice to give me the > > > return codes and output to stdout and stderr of running hddtemp on valid > > > and invalid devices both with sudo/setuid root and without. > > > > I'm running hddtemp version 0.3-beta15. I've got this outputs: > > > > With setuid > > $ ll /usr/sbin/hddtemp ; hddtemp /dev/sda ; echo "\$? = "$? > > -rwsr-xr-x 1 root root 26716 2008-02-17 15:52 /usr/sbin/hddtemp > > /dev/sda: WDC WD1600JS-00MHB0: 56?C > > $? = 0 > > > > $ ll /usr/sbin/hddtemp ; hddtemp /dev/fd ; echo "\$? = "$? > > -rwsr-xr-x 1 root root 26716 2008-02-17 15:52 /usr/sbin/hddtemp > > ERROR: /dev/fd: can't determine bus type (or this bus type is unknown) > > $? = 1 > > > > $ ll /usr/sbin/hddtemp ; hddtemp /dev/null ; echo "\$? = "$? > > -rwsr-xr-x 1 root root 26716 2008-02-17 15:52 /usr/sbin/hddtemp > > ERROR: /dev/null: can't determine bus type (or this bus type is unknown) > > $? = 1 > > > > $ ll /usr/sbin/hddtemp ; hddtemp /dev/nodevice ; echo "\$? = "$? > > -rwsr-xr-x 1 root root 26716 2008-02-17 15:52 /usr/sbin/hddtemp > > /dev/nodevice: open: No existe el fichero o el directorio > > > > $? = 1 > > (this has the system locale output, translation: "No file or > > directory". I know this case should never happen as names are fetched > > form sys, just to be more informative) > > > > Without setuid > > $ ll /usr/sbin/hddtemp ; hddtemp /dev/sda ; echo "\$? = "$? > > -rwxr-xr-x 1 root root 26716 2008-02-17 15:52 /usr/sbin/hddtemp > > /dev/sda: open: Permiso denegado > > > > $? = 1 > > (again the locale, translation: "Permission denied") > > > > $ ll /usr/sbin/hddtemp ; hddtemp /dev/fd ; echo "\$? = "$? > > -rwxr-xr-x 1 root root 26716 2008-02-17 15:52 /usr/sbin/hddtemp > > ERROR: /dev/fd: can't determine bus type (or this bus type is unknown) > > $? = 1 > > > > $ ll /usr/sbin/hddtemp ; hddtemp /dev/null ; echo "\$? = "$? > > -rwxr-xr-x 1 root root 26716 2008-02-17 15:52 /usr/sbin/hddtemp > > ERROR: /dev/null: can't determine bus type (or this bus type is unknown) > > $? = 1 > > > > $ ll /usr/sbin/hddtemp ; hddtemp /dev/nodevice ; echo "\$? = "$? > > -rwxr-xr-x 1 root root 26716 2008-02-17 15:52 /usr/sbin/hddtemp > > /dev/nodevice: open: No existe el fichero o el directorio > > > > $? = 1 > > (translation: "No file or directory") > > > Thanks for the error codes - and your understanding of how bad it is to > be used. > > > > > > Doing "grep exit *.c" on hddtemp code in > > http://download.savannah.nongnu.org/releases/hddtemp/ I've found that > > the author is using (or planning to use) these error codes: -2, -1, 1, > > 2, 3. He seems to use mostly 1. But as you had already written in some > > comments, those checks are version dependent. > > :) > > > The changes in svn revision 4012 look fine. Don't misunderstand me, my > > doubt was more like a theoretical one. The svn version seems to be > > working OK, but IMHO the strings comparison for devices seems a bit > > hardwired. I don't want to be pedantic, but perhaps in this case you > > may want to look at the stat function instead of access, although the > > bitwise operations make code less maintainable. This weekend I'll try > > to see if the stat solution is viable to avoid this cases. > > > Yeah, this night I've also been wondering why not simply checking for > setuid bit would work; but you know, there are rot users under X around > this world... (some of them administrate our university servers...) and > again, checking the way I do just enables "understanding" or > "justifying" the return codes from the point of view of the plugin with > regard to hddtemp's behaviour. > > For getting the device names, I don't think fstat is appropriate. > > Anyway, I'd really appreciate your investigations as I'm beginning to > move out of my current flat for this month and won't have plenty of > time. > > > > > > Hope I haven't been too harsh, as you've seen in the locale, English > > is not my native language. > > > No, it's all perfect; and you don't need to translate any German, > Spanish, Italian, Portuguese, French for me, I can at least read and > assemble them ;) > > > > Thanks for the answers and your time. Regards, > > > Again, you're welcome, thanks in return, cheers > > *gonnapaintaflatnow* Fabian > Hi Fabien, I'm sorry I couldn't give you some feedback some days ago. University, among other things, kept me busy. Anyway I managed to make some refactoring in the patch I'm attaching. I've made some testing on it - even running it from root (I've never used X with root before :S) and seems to work. Have a look at it and take whatever you find useful (if something :D) from it. These are the the changes I made: - Although I couldn't find a way to get rid of strncmp's to get the devices, I changed the string comparison to get only those which I think that could have a sensor ("sd." and "hd."). - Separated check for error of permission and program. First check for suid or root, then check for any other errors. I hope that the error messages are clear enough. By the way, today I received a mail for a bug/enhancement [Goodies-dev] [Bug 3953]. I tried to replicate that on my system but I wasn't successful (I'm on Debian not Ubuntu, but versions are the same), even renaming hddtemp binary. IMHO seems to be a problem with Xubuntu's dependencies as xfce-sensors package does not depends on hddtemp package. Anyway, the bug report doesn't specifies plugin version. Thanks for your time, and best wishes on your new flat. Regards, Mariano -------------- next part -------------- A non-text attachment was scrubbed... Name: hddtemp.c.patch Type: text/x-patch Size: 5370 bytes Desc: not available Url : http://foo-projects.org/pipermail/goodies-dev/attachments/20080320/f00be1c3/hddtemp.c-0001.bin From stephan at xfce.org Sun Mar 23 13:11:44 2008 From: stephan at xfce.org (stephan@xfce.org) Date: Sun, 23 Mar 2008 12:11:44 +0000 (UTC) Subject: [Goodies-dev] ANN: ristretto version 0.0.18 released Message-ID: <20080323121144.64AB4F29D8@mocha.foo-projects.org> I am pleased to announce version 0.0.18 of the ristretto image viewer. It has a lot of bugfixes, Have fun :-) - Stephan ChangeLog: 2008-03-23: Release 0.0.18 * src/picture_viewer.c: - Improved zoom-box - Added rudimentary drag-n-drop support for opening images * src/navigator.c, src/main.c, src/main_window.c, src/picture_viewer.c: - Removed duplicate code for opening files and folders, moved this to the navigator (Bug #3866) * src/main.c: - Open files and folders when the main-loop is running, this way the window is already usable before the images are being opened. * src/main_window.c: - Add configuration option to toggle the folowing feature: - Prevent images to be scaled beyond 100% when maximizing the window - Resize images to fit to the window when restoring the window from maximize state. * src/main.c, src/main_window.c, src/navigator.c: - Prevent GUI freezes when opening a folder with a lot of files in them. - Fix segfaults when closing ristretto while it is opening a folder. * src/thumbnail_bar.c, src/thumbnail.c: - Restore of auto-center when clicking on a thumbnail. * src/main.c, src/main_window.c: - The Statusbar displays some feedback when opening files. Download this release: http://goodies.xfce.org/releases/ristretto/ristretto-0.0.18.tar.gz Changelog: http://goodies.xfce.org/releases/ristretto/ChangeLog Project website: http://goodies.xfce.org/projects/applications/ristretto/ From landry.breuil at gmail.com Mon Mar 24 20:45:52 2008 From: landry.breuil at gmail.com (landry.breuil@gmail.com) Date: Mon, 24 Mar 2008 19:45:52 +0000 (UTC) Subject: [Goodies-dev] ANN: xfce4-mpc-plugin version 0.3.3 released Message-ID: <20080324194552.6695BF29D8@mocha.foo-projects.org> Hi, i'm pleased to announce version 0.3.3 of my MPD-client panel plugin. It fixes several bugs : - playlist window is shown only if playlist is not empty - avoid displaying multiple instances of playlist window - fix a crash when MPD had dropped the connection - don't resize panel if width is set to < 26. - display of song title has been made more pretty in tooltip and playlist. Enjoy ! Download this release: http://goodies.xfce.org/releases/xfce4-mpc-plugin/xfce4-mpc-plugin-0.3.3.tar.gz Changelog: http://goodies.xfce.org/releases/xfce4-mpc-plugin/ChangeLog Project website: http://goodies.xfce.org/projects/panel-plugins/xfce4-mpc-plugin/ From bugzilla-daemon at xfce.org Mon Mar 24 22:09:38 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Mon, 24 Mar 2008 21:09:38 +0000 (UTC) Subject: [Goodies-dev] [Bug 2363] XFCE keyboard switcher doesn't show variant label In-Reply-To: Message-ID: <20080324210938.1BCEDF29DA@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=2363 skipper13 at archlinux.org.ua changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |skipper13 at archlinux.org.ua ------- Comment #2 from skipper13 at archlinux.org.ua 2008-03-24 21:09 UTC ------- The same bug on Arch Linux http://bugs.archlinux.org/task/8595 ==================================== After upgrade xfce4-xkb-plugin doesn't show flag for "RU" and "UK" but PNG-files have been. Plugin showes US flag only. For other languages showes "(null)" string. Additional info: * xfce4-xkb-plugin 0.4.3-3 * /etc/X11/xorg.conf =================== Section "InputDevice" # generated from default Identifier "Keyboard0" Driver "kbd" Option "XkbModel" "pc105" Option "XkbLayout" "us,ru,ua" Option "XkbOptions" "grp:ctrl_shift_toggle" EndSection =================== ls /usr/share/xfce4/xkb/flags/{ru,uk}.png -l =================== -rw-r--r-- 1 root root 215 Apr 16 2007 /usr/share/xfce4/xkb/flags/ru.png -rw-r--r-- 1 root root 1210 Apr 16 2007 /usr/share/xfce4/xkb/flags/uk.png =================== When I change keyboard layout plugin write to log error message =================== (xfce4-xkb-plugin:8319): GLib-CRITICAL **: g_utf8_strdown: assertion `str != NULL' failed (xfce4-xkb-plugin:8319): GLib-CRITICAL **: g_utf8_strdown: assertion `str != NULL' failed (xfce4-xkb-plugin:8319): GLib-CRITICAL **: g_utf8_strdown: assertion `str != NULL' failed (xfce4-xkb-plugin:8319): GLib-CRITICAL **: g_utf8_strdown: assertion `str != NULL' failed (xfce4-xkb-plugin:8319): GLib-CRITICAL **: g_utf8_strdown: assertion `str != NULL' failed (xfce4-xkb-plugin:8319): GLib-CRITICAL **: g_utf8_strdown: assertion `str != NULL' failed (xfce4-xkb-plugin:8319): GLib-CRITICAL **: g_utf8_strdown: assertion `str != NULL' failed =================== -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Tue Mar 25 00:04:12 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Mon, 24 Mar 2008 23:04:12 +0000 (UTC) Subject: [Goodies-dev] [Bug 3933] Notification settings: blank by default In-Reply-To: Message-ID: <20080324230412.48ADBF29DA@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3933 stephan at xfce.org changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|stephan at xfce.org |goodies-dev at xfce.org ------- Comment #1 from stephan at xfce.org 2008-03-24 23:04 UTC ------- Not ristretto... -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Tue Mar 25 00:05:32 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Mon, 24 Mar 2008 23:05:32 +0000 (UTC) Subject: [Goodies-dev] [Bug 3934] Notification settings: can't re-show preview In-Reply-To: Message-ID: <20080324230532.710F5F29DA@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3934 stephan at xfce.org changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|stephan at xfce.org |goodies-dev at xfce.org ------- Comment #1 from stephan at xfce.org 2008-03-24 23:05 UTC ------- Not ristretto... -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Tue Mar 25 09:58:51 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Tue, 25 Mar 2008 08:58:51 +0000 (UTC) Subject: [Goodies-dev] [Bug 3933] Notification settings: blank by default In-Reply-To: Message-ID: <20080325085851.B188FF29D9@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3933 ------- Comment #2 from trondsg at gmail.com 2008-03-25 08:58 UTC ------- > I HAD to chose a component to file the bug, but notification-daemon-xfce > isn't in the list. -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From bugzilla-daemon at xfce.org Wed Mar 26 13:22:10 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Wed, 26 Mar 2008 12:22:10 +0000 (UTC) Subject: [Goodies-dev] [Bug 3923] cpugraph doesn't show in kiosk mode In-Reply-To: Message-ID: <20080326122210.46453F29DA@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3923 ------- Comment #3 from mad at sharktooth.de 2008-03-26 12:22 UTC ------- Can I help you with other information? -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From herculesthemad at gmail.com Wed Mar 26 18:12:35 2008 From: herculesthemad at gmail.com (Iraklis Karagkiozoglou) Date: Wed, 26 Mar 2008 17:12:35 +0000 Subject: [Goodies-dev] New Member Message-ID: <5fee2e30803261012p64a4dbc9j3b01b3eb93303409@mail.gmail.com> Hi, I am Iraklis Karagkizoglou. I am 15 years old. I am a student. I know C and i am going to learn c++. I would like to help develop applications for xfce. Tell me were do you think i could be useful. Thanks From christian at twotoasts.de Wed Mar 26 18:59:40 2008 From: christian at twotoasts.de (Christian Dywan) Date: Wed, 26 Mar 2008 18:59:40 +0100 Subject: [Goodies-dev] New Member In-Reply-To: <5fee2e30803261012p64a4dbc9j3b01b3eb93303409@mail.gmail.com> References: <5fee2e30803261012p64a4dbc9j3b01b3eb93303409@mail.gmail.com> Message-ID: <20080326185940.2d6167e6@twotoasts.de> Am Wed, 26 Mar 2008 17:12:35 +0000 schrieb "Iraklis Karagkiozoglou" : > Hi, > > I am Iraklis Karagkizoglou. > I am 15 years old. I am a student. I know C and i am going to learn > c++. I would like to help develop applications for xfce. Tell me were > do you think i could be useful. Xfce is based on C and Gtk+, so clearly making yourself familiar with it is a good start. I think there are more than enough feature requests and little bugs that you can tackle, so just look through the bug reports for your favorite component and the wiki accordingly. Alternatively if you want to do something "visible" you could just join #xfce on freenode for a few days and write down the feature requests. This is fun if you like to participate in the community. Yours, Christian From E.R.M.Davidson at sms.ed.ac.uk Wed Mar 26 19:24:39 2008 From: E.R.M.Davidson at sms.ed.ac.uk (Erlend Davidson) Date: Wed, 26 Mar 2008 18:24:39 +0000 Subject: [Goodies-dev] New Member In-Reply-To: <5fee2e30803261012p64a4dbc9j3b01b3eb93303409@mail.gmail.com> References: <5fee2e30803261012p64a4dbc9j3b01b3eb93303409@mail.gmail.com> Message-ID: <47EA94E7.6060402@sms.ed.ac.uk> Iraklis Karagkiozoglou wrote: > Hi, > > I am Iraklis Karagkizoglou. > I am 15 years old. I am a student. I know C and i am going to learn c++. > I would like to help develop applications for xfce. Tell me were do > you think i could be useful. > I had an idea about 4 months ago, but I haven't had time to do anything about it. One of my friends got a digital video camera, she uses Ubuntu Linux, and she's been having trouble getting the video on to a DVD. There are solutions (avidemux and command-line) but if you're doing it regularly it's tedious, and it's hardly intuitive. I think it would be useful to have a "Burn these Videos to a DVD" program. No fancy options or effects - just do it. Of course there would have to be a few options (set on first run, and use these thereafter). It would be fairly similar to the Wizard mode of iMovie, and would do any transcoding without bothering the user about codec options. I'm not great with codecs, they sometimes confuse me, so I'm not sure just how difficult the above is. I do think it would be useful to the Linux desktop. Erlend From bugzilla-daemon at xfce.org Wed Mar 26 20:46:39 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Wed, 26 Mar 2008 19:46:39 +0000 (UTC) Subject: [Goodies-dev] [Bug 3923] cpugraph doesn't show in kiosk mode In-Reply-To: Message-ID: <20080326194639.75184F29DB@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3923 ------- Comment #4 from mike.massonnet at gmail.com 2008-03-26 19:46 UTC ------- Bad news, I tried your config and it worked just fine, tho the cpugraph version I have is 0.3 (Debian/sid). I compiled therefore version 0.4, and surprisingly it is also working. I think you can fetch for errors via startx (or startxfce4), by redirecting the error output to a file like: startxfce4 2> xerrors And then grep that file for "cpugraph". -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. From zelenp at gmail.com Wed Mar 26 23:21:11 2008 From: zelenp at gmail.com (Petr Zelenka) Date: Wed, 26 Mar 2008 23:21:11 +0100 Subject: [Goodies-dev] New Member In-Reply-To: <47EA94E7.6060402@sms.ed.ac.uk> References: <5fee2e30803261012p64a4dbc9j3b01b3eb93303409@mail.gmail.com> <47EA94E7.6060402@sms.ed.ac.uk> Message-ID: <81f139170803261521g3d2125d9wc25f36aa93731fa1@mail.gmail.com> On Wed, Mar 26, 2008 at 7:24 PM, Erlend Davidson wrote: > > I had an idea about 4 months ago, but I haven't had time to do anything > about it. One of my friends got a digital video camera, she uses Ubuntu > Linux, and she's been having trouble getting the video on to a DVD. > There are solutions (avidemux and command-line) but if you're doing it > regularly it's tedious, and it's hardly intuitive. > > I think it would be useful to have a "Burn these Videos to a DVD" > program. No fancy options or effects - just do it. Of course there would > have to be a few options (set on first run, and use these thereafter). > It would be fairly similar to the Wizard mode of iMovie, and would do > any transcoding without bothering the user about codec options. > > I'm not great with codecs, they sometimes confuse me, so I'm not sure > just how difficult the above is. I do think it would be useful to the > Linux desktop. Definitely agree, this would be _very_ useful application. And having it in Xfce, it could be a killer-feaure for someone ;). Petr From E.R.M.Davidson at sms.ed.ac.uk Wed Mar 26 23:44:21 2008 From: E.R.M.Davidson at sms.ed.ac.uk (Erlend Davidson) Date: Wed, 26 Mar 2008 22:44:21 +0000 Subject: [Goodies-dev] New Member In-Reply-To: <5fee2e30803261012p64a4dbc9j3b01b3eb93303409@mail.gmail.com> References: <5fee2e30803261012p64a4dbc9j3b01b3eb93303409@mail.gmail.com> Message-ID: <47EAD1C5.7060802@sms.ed.ac.uk> Iraklis Karagkiozoglou wrote: > Hi, > > I am Iraklis Karagkizoglou. > I am 15 years old. I am a student. I know C and i am going to learn c++. > I would like to help develop applications for xfce. Tell me were do > you think i could be useful. Something a bit simpler: handle compressed formats as folders (like windows does with zip archives). When I click to open a *.{zip|tar.*|rar} file the contents should display, and be thumbnailed (and so on), using Thunar. Might want to check that this isn't going to be part of GVfs though. Erlend From christian at twotoasts.de Thu Mar 27 00:05:10 2008 From: christian at twotoasts.de (Christian Dywan) Date: Thu, 27 Mar 2008 00:05:10 +0100 Subject: [Goodies-dev] New Member In-Reply-To: <47EAD1C5.7060802@sms.ed.ac.uk> References: <5fee2e30803261012p64a4dbc9j3b01b3eb93303409@mail.gmail.com> <47EAD1C5.7060802@sms.ed.ac.uk> Message-ID: <20080327000510.2a6847fc@twotoasts.de> Am Wed, 26 Mar 2008 22:44:21 +0000 schrieb Erlend Davidson : > > > Iraklis Karagkiozoglou wrote: > > Hi, > > > > I am Iraklis Karagkizoglou. > > I am 15 years old. I am a student. I know C and i am going to learn > > c++. I would like to help develop applications for xfce. Tell me > > were do you think i could be useful. > Something a bit simpler: handle compressed formats as folders (like > windows does with zip archives). When I click to open a > *.{zip|tar.*|rar} file the contents should display, and be > thumbnailed (and so on), using Thunar. > > Might want to check that this isn't going to be part of GVfs though. That is not something that belongs in Thunar. Like you said either in GVfs, which in my opinion is actually the best idea, or alternatively in Fuse, although I think there is already something like that. You could even look into general GVfs support in Thunar which as such would be a pretty cool task imho now that I think of it. Also Thunar needs an extension interface, after GVfs this is my personal favorite when it comes to Thunar deveopment. Yours, Christian From stefan at ott.net Thu Mar 27 12:06:59 2008 From: stefan at ott.net (Stefan Ott) Date: Thu, 27 Mar 2008 12:06:59 +0100 Subject: [Goodies-dev] New Member In-Reply-To: <20080327000510.2a6847fc@twotoasts.de> References: <5fee2e30803261012p64a4dbc9j3b01b3eb93303409@mail.gmail.com> <47EAD1C5.7060802@sms.ed.ac.uk> <20080327000510.2a6847fc@twotoasts.de> Message-ID: On Thu, Mar 27, 2008 at 12:05 AM, Christian Dywan wrote: > I am Iraklis Karagkizoglou. > I am 15 years old. I am a student. I know C and i am going to learn > c++. I would like to help develop applications for xfce. Tell me > were do you think i could be useful. > Well, I for one would love to see a panel plugin to quickly modify your screen layout (using xrandr). That would be awesome. I have been planning to write something like that myself but never got around to it... cheers -- Stefan Ott http://www.ott.net/ "Women who seek to be equal with men lack ambition." -- Timothy Leary -------------- next part -------------- An HTML attachment was scrubbed... URL: http://foo-projects.org/pipermail/goodies-dev/attachments/20080327/3914911b/attachment.html From E.R.M.Davidson at sms.ed.ac.uk Thu Mar 27 12:33:26 2008 From: E.R.M.Davidson at sms.ed.ac.uk (Erlend Davidson) Date: Thu, 27 Mar 2008 11:33:26 +0000 Subject: [Goodies-dev] New Member In-Reply-To: <47EA94E7.6060402@sms.ed.ac.uk> References: <5fee2e30803261012p64a4dbc9j3b01b3eb93303409@mail.gmail.com> <47EA94E7.6060402@sms.ed.ac.uk> Message-ID: <47EB8606.2070606@sms.ed.ac.uk> Erlend Davidson wrote: > Iraklis Karagkiozoglou wrote: > >> Hi, >> >> I am Iraklis Karagkizoglou. >> I am 15 years old. I am a student. I know C and i am going to learn c++. >> I would like to help develop applications for xfce. Tell me were do >> you think i could be useful. >> >> > > I had an idea about 4 months ago, but I haven't had time to do anything > about it. One of my friends got a digital video camera, she uses Ubuntu > Linux, and she's been having trouble getting the video on to a DVD. > There are solutions (avidemux and command-line) but if you're doing it > regularly it's tedious, and it's hardly intuitive. > > I think it would be useful to have a "Burn these Videos to a DVD" > program. No fancy options or effects - just do it. Of course there would > have to be a few options (set on first run, and use these thereafter). > It would be fairly similar to the Wizard mode of iMovie, and would do > any transcoding without bothering the user about codec options. A simpler version of this, which would still be useful is a Drag-and-drop type "applet" where when you drag video or audio files, they are immediately queued for conversion to another format. An example in windows is OggDrop, and on the Mac DropDV. The reason these are useful is when you are trying to convert an image for upload to youtube (or similar) where there is a size limit. Therefore there should be a "target file size" option, and also a "youtube size" option to make it easier. This could be a warm-up exercise to the DVD burning code. If you do decide to do one of these then it's probably best to tell people, to avoid duplication of effort. From mike.massonnet at gmail.com Fri Mar 28 02:58:11 2008 From: mike.massonnet at gmail.com (mike.massonnet@gmail.com) Date: Fri, 28 Mar 2008 01:58:11 +0000 (UTC) Subject: [Goodies-dev] ANN: xfmpc version 0.0.4 released Message-ID: <20080328015811.6DBDCF29D8@mocha.foo-projects.org> Hello Xfce users, I'm pleased to post the second announcement of Xfmpc. Two months have last since the first version 0.0.1. Now the client has a playlist and a database browser, yes, you can now modify your playlist with it! To summerize, here is the content of the NEWS file starting at version 0.0.2: 0.0.2 (2008-01-27) - Keybindings (Ctrl+B/P/S/F/V) to go backwards, play/pause, stop, go forwards, and open the volume slider. - A cleaner interface to libmpd, with status handling. - A GObjectified XfmpcMpdclient. - A GObject XfmpcPreferences interface, so far it remembers the last position of the XfmpcInterface. 0.0.3 (2008-02-23) - New widget XfmpcExtendedInterface which displays notebook pages selectable through a combo box - New widget XfmpcPlaylist with a filter entry - Save the state of the window (sticky window, size) - Installs a desktop file entry - Emit signals on changes instead of setting a bitfield inside XfmpcMpdclient 0.0.4 (2008-03-28) - Add a database browser with the ability to add songs - Add behaviors in the filter entry of the playlist - Be more efficient with playlist refreshes - Fix misc bugs Download this release: http://goodies.xfce.org/releases/xfmpc/xfmpc-0.0.4.tar.bz2 Changelog: http://goodies.xfce.org/releases/xfmpc/ChangeLog Project website: http://goodies.xfce.org/projects/applications/xfmpc/ From zarper at gmail.com Sun Mar 30 19:43:11 2008 From: zarper at gmail.com (zarper@gmail.com) Date: Sun, 30 Mar 2008 17:43:11 +0000 (UTC) Subject: [Goodies-dev] ANN: xfbib version 0.0.2 released Message-ID: <20080330174311.41573F29D8@mocha.foo-projects.org> Hello All! We are please to present to you the new release of Xfbib (0.0.2). This release contains several bug fixes aswell as some new features. For more details see the changelog. /The Xfbib team. Download this release: http://goodies.xfce.org/releases/xfbib/xfbib-0.0.2.tar.bz2 Changelog: http://goodies.xfce.org/releases/xfbib/ChangeLog Project website: http://goodies.xfce.org/projects/applications/xfbib/ From bugzilla-daemon at xfce.org Mon Mar 31 13:41:30 2008 From: bugzilla-daemon at xfce.org (bugzilla-daemon@xfce.org) Date: Mon, 31 Mar 2008 11:41:30 +0000 (UTC) Subject: [Goodies-dev] [Bug 3923] cpugraph doesn't show in kiosk mode In-Reply-To: Message-ID: <20080331114130.D1888F29DA@mocha.foo-projects.org> DO NOT REPLY TO THIS EMAIL. Also, do not reply via email to the person whose email is mentioned below. To comment on this bug, please visit: http://bugzilla.xfce.org/show_bug.cgi?id=3923 ------- Comment #5 from mad at vorsicht-bissig.de 2008-03-31 11:41 UTC ------- I tried your suggestion but there wasn't any hint of cpugraph in the error file. What I did after that is the following: - Login in with ssh on the remote computer - Execute: strace xfce4-panel >errors 2>&1 - Panels appears on local computer There is a difference in the output. The following is an excerpt of the output of root's strace: fstat64(6, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 fcntl64(6, F_GETFD) = 0x1 (flags FD_CLOEXEC) getdents64(6, /* 7 entries */, 4096) = 256 stat64("/usr/share/xfce4/panel-plugins/cpugraph.desktop", {st_mode=S_IFREG|0644, st_size=1501, ...}) = 0 open("/usr/share/xfce4/panel-plugins/cpugraph.desktop", O_RDONLY) = 7 fstat64(7, {st_mode=S_IFREG|0644, st_size=1501, ...}) = 0 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7 ce9000 read(7, "[Xfce Panel]\nType=X-XFCE-PanelPl"..., 4096) = 1501 read(7, "", 4096) = 0 close(7) = 0 munmap(0xb7ce9000, 4096) = 0 access("/usr/libexec/xfce4/panel-plugins/xfce4-cpugraph-plugin", F_OK) = 0 stat64("/usr/share/xfce4/panel-plugins/screenshooter.desktop", {st_mode=S_IFREG| 0644, st_size=196, ...}) = 0 open("/usr/share/xfce4/panel-plugins/screenshooter.desktop", O_RDONLY) = 7 fstat64(7, {st_mode=S_IFREG|0644, st_size=196, ...}) = 0 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7 ce9000 read(7, "[Xfce Panel]\nType=X-XFCE-PanelPl"..., 4096) = 196 read(7, "", 4096) = 0 Now the same portion from the normal user: fstat64(6, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 fcntl64(6, F_GETFD) = 0x1 (flags FD_CLOEXEC) getdents64(6, /* 24 entries */, 4096) = 912 stat64("/usr/lib/xfce4/panel-plugins/pager.desktop", {st_mode=S_IFREG|0644, st_size=4144, ...}) = 0 open("/usr/lib/xfce4/panel-plugins/pager.desktop", O_RDONLY) = 7 fstat64(7, {st_mode=S_IFREG|0644, st_size=4144, ...}) = 0 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7d84000 read(7, "[Xfce Panel]\nType=X-XFCE-PanelPl"..., 4096) = 4096 read(7, "-XFCE-Module-Path=/usr/lib/xfce4"..., 4096) = 48 read(7, "", 4096) = 0 There isn't even a hint of cpugraph. How can that be? -- Configure bugmail: http://bugzilla.xfce.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.