<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-838</id>
	<title>Nabble - Xfce - Dev - Goodies</title>
	<updated>2008-04-09T23:32:33Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Xfce---Dev---Goodies-f838.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Xfce---Dev---Goodies-f838.html" />
	<subtitle type="html"></subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-16602945</id>
	<title>xfce weather plugin international problem</title>
	<published>2008-04-09T23:32:33Z</published>
	<updated>2008-04-09T23:32:33Z</updated>
	<author>
		<name>event.riga@gmail.com</name>
	</author>
	<content type="html">Dear XFCE4 devs,&lt;br&gt;&lt;br&gt;Found minor bug with day of week full name.&lt;br&gt;In panel-plugin/weather-translate.c the DAY_LOC_N is set to 20 bytes.&amp;nbsp;It&amp;#39;s&amp;nbsp;insufficient&amp;nbsp;for&amp;nbsp;Russian&amp;nbsp;at&amp;nbsp;least:&lt;br&gt;Sunday&amp;nbsp;and&amp;nbsp;Monday both need 22 as they are 11 unicode letters long. Could be also the problem for other languages.&lt;br&gt;
&lt;br&gt;Would be great to have this fixed.&lt;br&gt;Thank you in advance.&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;Vale,&lt;br&gt;&lt;span class=&quot;sg&quot;&gt;event  &lt;/span&gt;&lt;br clear=&quot;all&quot;&gt; 
&lt;br /&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16602945&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/xfce-weather-plugin-international-problem-tp16602945p16602945.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-15181860</id>
	<title>xfce4-mixer : free space in the panel, change right-click behaviour ?</title>
	<published>2008-01-30T05:13:17Z</published>
	<updated>2008-02-08T03:52:33Z</updated>
	<author>
		<name>kapouer</name>
	</author>
	<content type="html">Hi,
i'm using this plugin and feel that it takes too much space in the panel (the gnome equivalent
was neat, but i'm trying to get rid of those applets).&lt;br /&gt;
&lt;br /&gt;
so to get closer i just suppressed the volume icon (mixer properties should be
accessed by context-menu, right-click on the tiny slider), and disabled the middle and right
click behaviour (to get access to the context menu).&lt;br /&gt;
&lt;br /&gt;
The only thing one would object is that there's nothing telling this slider is to change sound...
But that way, it frees a lot of space in the panel.&lt;br /&gt;
&lt;br /&gt;
The modifs i did are simply comment gtk_widget_show (mixer-&gt;box); in plugin.c and return FALSE for
middle and right clicks in xfce-mixer-slider-tiny.c :&lt;br /&gt;
&lt;pre&gt;
if (b-&gt;button == 1) {
	sy = widget-&gt;allocation.height;
	if (sy != 0) {
		y = (sy + 2 - y) * 100 / sy;
		if (y &lt;= 0) y = 0;
	} else y = 0;
} else {
	return FALSE;
}
&lt;/pre&gt;
&lt;br /&gt;
And here's what it looks like :&lt;br /&gt;
&lt;img src=&quot;http://old.nabble.com/file/p15181860/Screenshot-1.png&quot; border=&quot;0&quot; /&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/xfce4-mixer-%3A-free-space-in-the-panel%2C-change-right-click-behaviour---tp15181860p15181860.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12473459</id>
	<title>Small patch to fix LDADD in xfce4-cpu-graph</title>
	<published>2007-09-04T01:47:27Z</published>
	<updated>2007-09-04T01:47:27Z</updated>
	<author>
		<name>HaroldAling</name>
	</author>
	<content type="html">&lt;br&gt;Dear list,
&lt;br&gt;&lt;br&gt;Here's a very simple patch to enable cpugraph to be compiled with
&lt;br&gt;--as-needed as described here:
&lt;br&gt;&lt;a href=&quot;http://wiki.xfce.org/panel_plugins_howto#testing_and_releasing_the_plugin&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.xfce.org/panel_plugins_howto#testing_and_releasing_the_plugin&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Index: panel-plugin/Makefile.am
&lt;br&gt;===================================================================
&lt;br&gt;--- panel-plugin/Makefile.am &amp;nbsp; &amp;nbsp;(revision 3136)
&lt;br&gt;+++ panel-plugin/Makefile.am &amp;nbsp; &amp;nbsp;(working copy)
&lt;br&gt;@@ -5,7 +5,7 @@
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; -DPACKAGE_LOCALE_DIR=\&amp;quot;$(localedir)\&amp;quot; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; @LIBXFCE4PANEL_CFLAGS@
&lt;br&gt;&amp;nbsp;
&lt;br&gt;-xfce4_cpugraph_plugin_LDFLAGS = &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;\
&lt;br&gt;+xfce4_cpugraph_plugin_LDADD = &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; @LIBXFCE4PANEL_LIBS@
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;xfce4_cpugraph_plugin_SOURCES = &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;\
&lt;br&gt;&lt;br&gt;&lt;br&gt;-H-
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=12473459&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Small-patch-to-fix-LDADD-in-xfce4-cpu-graph-tp12473459p12473459.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-11471134</id>
	<title>xfce4-screenshooter-plugin bugzilla section / crash</title>
	<published>2007-07-06T13:04:54Z</published>
	<updated>2007-07-06T13:04:54Z</updated>
	<author>
		<name>HaroldAling</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body bgcolor=&quot;#ffffff&quot; text=&quot;#000000&quot;&gt;
&lt;font face=&quot;Arial&quot;&gt;Dear list,&lt;br&gt;
&lt;br&gt;
Can anyone create a bugzilla section for the screenshooter plugin? I
can't seem to find it...&lt;br&gt;
&lt;br&gt;
The plugin crashes each time I click on 'cancel' in the save screenshot
dialog on the SVN version of the plugin... (backtrace is attached if
anyone's interested)&lt;br&gt;
&lt;br&gt;
-tnx-&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Harold.&lt;/font&gt;
&lt;/body&gt;
&lt;/html&gt;
&lt;br /&gt;*** glibc detected *** /usr/libexec/xfce4/panel-plugins/xfce4-screenshooter-plugin: double free or corruption (fasttop): 0x08237de0 ***
&lt;br&gt;======= Backtrace: =========
&lt;br&gt;/lib/tls/i686/cmov/libc.so.6[0xb786c7cd]
&lt;br&gt;/lib/tls/i686/cmov/libc.so.6(cfree+0x90)[0xb786fe30]
&lt;br&gt;/usr/lib/libglib-2.0.so.0(g_free+0x31)[0xb797b131]
&lt;br&gt;/usr/libexec/xfce4/panel-plugins/xfce4-screenshooter-plugin[0x804b32d]
&lt;br&gt;======= Memory map: ========
&lt;br&gt;08048000-0804c000 r-xp 00000000 08:01 665197 &amp;nbsp; &amp;nbsp; /usr/libexec/xfce4/panel-plugins/xfce4-screenshooter-plugin
&lt;br&gt;0804c000-0804d000 rw-p 00003000 08:01 665197 &amp;nbsp; &amp;nbsp; /usr/libexec/xfce4/panel-plugins/xfce4-screenshooter-plugin
&lt;br&gt;0804d000-082c4000 rw-p 0804d000 00:00 0 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;[heap]
&lt;br&gt;b58e5000-b5aac000 r--p 00000000 08:01 815958 &amp;nbsp; &amp;nbsp; /usr/share/icons/hicolor/icon-theme.cache
&lt;br&gt;b5aac000-b5c73000 r--p 00000000 08:01 815958 &amp;nbsp; &amp;nbsp; /usr/share/icons/hicolor/icon-theme.cache
&lt;br&gt;b5c73000-b630c000 r--p 00000000 08:01 811225 &amp;nbsp; &amp;nbsp; /usr/share/icons/gnome/icon-theme.cache
&lt;br&gt;b630c000-b632e000 r--p 00000000 08:01 1151968 &amp;nbsp; &amp;nbsp;/usr/share/fonts/truetype/msttcorefonts/Verdana_Bold.ttf
&lt;br&gt;b632e000-b638e000 rw-s 00000000 00:08 2129953 &amp;nbsp; &amp;nbsp;/SYSV00000000 (deleted)
&lt;br&gt;b638e000-b6390000 r-xp 00000000 08:01 699464 &amp;nbsp; &amp;nbsp; /usr/lib/pango/1.6.0/modules/pango-basic-fc.so
&lt;br&gt;b6390000-b6391000 rw-p 00001000 08:01 699464 &amp;nbsp; &amp;nbsp; /usr/lib/pango/1.6.0/modules/pango-basic-fc.so
&lt;br&gt;b6391000-b63b4000 r--p 00000000 08:01 1152000 &amp;nbsp; &amp;nbsp;/usr/share/fonts/truetype/msttcorefonts/Verdana.ttf
&lt;br&gt;b63b4000-b63ba000 r--s 00000000 08:01 309136 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/945677eb7aeaf62f1d50efc3fb3ec7d8-x86.cache-2
&lt;br&gt;b63ba000-b63bb000 r--s 00000000 08:01 309230 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/fd9505950c048a77dc4b710eb6a628ed-x86.cache-2
&lt;br&gt;b63bb000-b63be000 r--s 00000000 08:01 309229 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/ddc79d3ea06a7c6ffa86ede85f3bb5df-x86.cache-2
&lt;br&gt;b63be000-b63bf000 r--s 00000000 08:01 309228 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/e7071f4a29fa870f4323321c154eba04-x86.cache-2
&lt;br&gt;b63bf000-b63c0000 r--s 00000000 08:01 309227 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/a2ab74764b07279e7c36ddb1d302cf26-x86.cache-2
&lt;br&gt;b63c0000-b63c4000 r--s 00000000 08:01 309131 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/921a30a17f0be15c70ac14043cb7a739-x86.cache-2
&lt;br&gt;b63c4000-b63c5000 r--s 00000000 08:01 309225 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/4c73fe0c47614734b17d736dbde7580a-x86.cache-2
&lt;br&gt;b63c5000-b63c7000 r--s 00000000 08:01 309224 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/646addb8444faa74ee138aa00ab0b6a0-x86.cache-2
&lt;br&gt;b63c7000-b63c9000 r--s 00000000 08:01 309223 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/20bd79ad97094406f7d1b9654bfbd926-x86.cache-2
&lt;br&gt;b63c9000-b63ca000 r--s 00000000 08:01 309222 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/75a2cd575a62c63e802c11411fb87c37-x86.cache-2
&lt;br&gt;b63ca000-b63cc000 r--s 00000000 08:01 309221 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/9c0624108b9a2ae8552f664125be8356-x86.cache-2
&lt;br&gt;b63cc000-b63d2000 r--s 00000000 08:01 309220 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/6d41288fd70b0be22e8c3a91e032eec0-x86.cache-2
&lt;br&gt;b63d2000-b63d4000 r--s 00000000 08:01 309219 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/de156ccd2eddbdc19d37a45b8b2aac9c-x86.cache-2
&lt;br&gt;b63d4000-b63d6000 r--s 00000000 08:01 309218 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/da1bd5ca8443ffe22927a23ce431d198-x86.cache-2
&lt;br&gt;b63d6000-b63d7000 r--s 00000000 08:01 308325 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/c015a244225992f6237f68e6870ee9b8-x86.cache-2
&lt;br&gt;b63d7000-b63df000 r--s 00000000 08:01 309217 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/e3de0de479f42330eadf588a55fb5bf4-x86.cache-2
&lt;br&gt;b63df000-b63e5000 r--s 00000000 08:01 309216 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/0f34bcd4b6ee430af32735b75db7f02b-x86.cache-2
&lt;br&gt;b63e5000-b63e6000 r--s 00000000 08:01 309215 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/4794a0821666d79190d59a36cb4f44b5-x86.cache-2
&lt;br&gt;b63e6000-b63fd000 r--s 00000000 08:01 309214 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/365b55f210c0a22e9a19e35191240f32-x86.cache-2
&lt;br&gt;b63fd000-b63ff000 r--s 00000000 08:01 309213 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/de9486f0b47a4d768a594cb4198cb1c6-x86.cache-2
&lt;br&gt;b63ff000-b6405000 r--s 00000000 08:01 309212 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/d52a8644073d54c13679302ca1180695-x86.cache-2
&lt;br&gt;b6405000-b6408000 r--s 00000000 08:01 309211 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/6386b86020ecc1ef9690bb720a13964f-x86.cache-2
&lt;br&gt;b6408000-b640c000 r--s 00000000 08:01 308569 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/089dead882dea3570ffc31a9898cfb69-x86.cache-2
&lt;br&gt;b640c000-b640e000 r--s 00000000 08:01 308752 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/e13b20fdb08344e0e664864cc2ede53d-x86.cache-2
&lt;br&gt;b640e000-b640f000 r--s 00000000 08:01 309258 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/fcff1cd55d48a2c86a175e9943c3506d-x86.cache-2
&lt;br&gt;b640f000-b6410000 r--s 00000000 08:01 309257 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/e9e44584608a73233979f764b5f9dd81-x86.cache-2
&lt;br&gt;b6410000-b6411000 r--s 00000000 08:01 309256 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/b5a4f3f568a71026ccdc6a3a51afa9b4-x86.cache-2
&lt;br&gt;b6411000-b6412000 r--s 00000000 08:01 309255 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/2561679576a9c7fd2ce41d281d4e00d1-x86.cache-2
&lt;br&gt;b6412000-b6413000 r--s 00000000 08:01 309254 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/bf1f9632594a1fa28e2cf4d7888deffe-x86.cache-2
&lt;br&gt;b6413000-b6416000 r--s 00000000 08:01 309253 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/b8613a33de00eecd32d5a94c3c617829-x86.cache-2
&lt;br&gt;b6416000-b6419000 r--s 00000000 08:01 309252 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/b21a91cee725896328b8cee8091cf747-x86.cache-2
&lt;br&gt;b6419000-b6422000 r--s 00000000 08:01 309251 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/fd9416c4b92f07c6f59a3a8cf496e9dc-x86.cache-2
&lt;br&gt;b6422000-b6424000 r--s 00000000 08:01 309250 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/059138ec877db160474b4d5de1248d14-x86.cache-2
&lt;br&gt;b6424000-b6425000 r--s 00000000 08:01 309249 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/f5a93ac943883aa0fd9a7bfe0f6ec3c1-x86.cache-2
&lt;br&gt;b6425000-b6427000 r--s 00000000 08:01 309248 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/118d8d5311348bbdf5fe3b106d7c13d4-x86.cache-2
&lt;br&gt;b6427000-b6428000 r--s 00000000 08:01 309247 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/a1131b7be650f9abae4907495aa5815d-x86.cache-2
&lt;br&gt;b6428000-b642d000 r--s 00000000 08:01 309246 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/8ab5f685cd6d8ba67c37c908faf08172-x86.cache-2
&lt;br&gt;b642d000-b6431000 r--s 00000000 08:01 309245 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/0f32d3adc6a232110812e17374eaa446-x86.cache-2
&lt;br&gt;b6431000-b6433000 r--s 00000000 08:01 309244 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/7b4a97c10f6c0166998ddfa1cf7392fb-x86.cache-2
&lt;br&gt;b6433000-b6436000 r--s 00000000 08:01 309243 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/61c830dfac3fd78a12654da5e9ba3f56-x86.cache-2
&lt;br&gt;b6436000-b6437000 r--s 00000000 08:01 309242 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/e0f9e95429e756d56293ed4d63866094-x86.cache-2
&lt;br&gt;b6437000-b6438000 r--s 00000000 08:01 309241 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/892f88ea27b235637f494d515247eddd-x86.cache-2
&lt;br&gt;b6438000-b643a000 r--s 00000000 08:01 309240 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/4123634e9c08547d899d0aaff05ebe69-x86.cache-2
&lt;br&gt;b643a000-b6440000 r--s 00000000 08:01 309239 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/142ecfc435bad6f1fbc2648c1119d5eb-x86.cache-2
&lt;br&gt;b6440000-b6446000 r--s 00000000 08:01 309238 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/102e5142c2e9e50c5e8ece26694a2dad-x86.cache-2
&lt;br&gt;b6446000-b644e000 r--s 00000000 08:01 309236 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/a960c40fc9306f090224a04585f8a963-x86.cache-2
&lt;br&gt;b644e000-b6453000 r--s 00000000 08:01 309235 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/9404ff413c67fc2a1526fd14eb4163a8-x86.cache-2
&lt;br&gt;b6453000-b6456000 r--s 00000000 08:01 309234 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/b3fedf7c409f006ca1a6fceffceb77cf-x86.cache-2
&lt;br&gt;b6456000-b645b000 r--s 00000000 08:01 308340 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/6330322105e0c4105d7c7a6ea2974107-x86.cache-2
&lt;br&gt;b645b000-b645f000 r-xp 00000000 08:01 648967 &amp;nbsp; &amp;nbsp; /usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-png.so
&lt;br&gt;b645f000-b6460000 rw-p 00003000 08:01 648967 &amp;nbsp; &amp;nbsp; /usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-png.so
&lt;br&gt;b6600000-b6621000 rw-p b6600000 00:00 0
&lt;br&gt;b6621000-b6700000 ---p b6621000 00:00 0
&lt;br&gt;b6757000-b6762000 r-xp 00000000 08:01 1249312 &amp;nbsp; &amp;nbsp;/lib/libgcc_s.so.1
&lt;br&gt;b6762000-b6763000 rw-p 0000a000 08:01 1249312 &amp;nbsp; &amp;nbsp;/lib/libgcc_s.so.1
&lt;br&gt;b6772000-b6780000 r--s 00000000 08:01 714250 &amp;nbsp; &amp;nbsp; /usr/share/mime/mime.cache
&lt;br&gt;b6780000-b678e000 r--s 00000000 08:01 714250 &amp;nbsp; &amp;nbsp; /usr/share/mime/mime.cache
&lt;br&gt;b678e000-b678f000 r--s 00000000 08:04 64392 &amp;nbsp; &amp;nbsp; &amp;nbsp;/home/harold/.local/share/mime/mime.cache
&lt;br&gt;b678f000-b67ef000 rw-s 00000000 00:08 2162722 &amp;nbsp; &amp;nbsp;/SYSV00000000 (deleted)
&lt;br&gt;b67ef000-b6e88000 r--p 00000000 08:01 811225 &amp;nbsp; &amp;nbsp; /usr/share/icons/gnome/icon-theme.cache
&lt;br&gt;b6e88000-b7521000 r--p 00000000 08:01 811225 &amp;nbsp; &amp;nbsp; /usr/share/icons/gnome/icon-theme.cache
&lt;br&gt;b7521000-b7533000 r-xp 00000000 08:01 648965 &amp;nbsp; &amp;nbsp; /usr/lib/gtk-2.0/2.10.0/engines/libmurrine.so
&lt;br&gt;b7533000-b7534000 rw-p 00012000 08:01 648965 &amp;nbsp; &amp;nbsp; /usr/lib/gtk-2.0/2.10.0/engines/libmurrine.so
&lt;br&gt;b7534000-b753d000 r-xp 00000000 08:01 33928 &amp;nbsp; &amp;nbsp; &amp;nbsp;/lib/tls/i686/cmov/libnss_files-2.5.so
&lt;br&gt;b753d000-b753f000 rw-p 00008000 08:01 33928 &amp;nbsp; &amp;nbsp; &amp;nbsp;/lib/tls/i686/cmov/libnss_files-2.5.so
&lt;br&gt;b753f000-b7547000 r-xp 00000000 08:01 34209 &amp;nbsp; &amp;nbsp; &amp;nbsp;/lib/tls/i686/cmov/libnss_nis-2.5.so
&lt;br&gt;b7547000-b7549000 rw-p 00007000 08:01 34209 &amp;nbsp; &amp;nbsp; &amp;nbsp;/lib/tls/i686/cmov/libnss_nis-2.5.so
&lt;br&gt;b7549000-b755c000 r-xp 00000000 08:01 33925 &amp;nbsp; &amp;nbsp; &amp;nbsp;/lib/tls/i686/cmov/libnsl-2.5.so
&lt;br&gt;b755c000-b755e000 rw-p 00012000 08:01 33925 &amp;nbsp; &amp;nbsp; &amp;nbsp;/lib/tls/i686/cmov/libnsl-2.5.so
&lt;br&gt;b755e000-b7560000 rw-p b755e000 00:00 0
&lt;br&gt;b7560000-b7567000 r-xp 00000000 08:01 33926 &amp;nbsp; &amp;nbsp; &amp;nbsp;/lib/tls/i686/cmov/libnss_compat-2.5.so
&lt;br&gt;b7567000-b7569000 rw-p 00006000 08:01 33926 &amp;nbsp; &amp;nbsp; &amp;nbsp;/lib/tls/i686/cmov/libnss_compat-2.5.so
&lt;br&gt;b7569000-b756b000 rw-p b7569000 00:00 0
&lt;br&gt;b756b000-b757e000 r-xp 00000000 08:01 34212 &amp;nbsp; &amp;nbsp; &amp;nbsp;/lib/tls/i686/cmov/libpthread-2.5.so
&lt;br&gt;b757e000-b7580000 rw-p 00013000 08:01 34212 &amp;nbsp; &amp;nbsp; &amp;nbsp;/lib/tls/i686/cmov/libpthread-2.5.so
&lt;br&gt;b7580000-b7583000 rw-p b7580000 00:00 0
&lt;br&gt;b7583000-b75a5000 r-xp 00000000 08:01 618466 &amp;nbsp; &amp;nbsp; /usr/lib/libpng12.so.0.15.0
&lt;br&gt;b75a5000-b75a6000 rw-p 00021000 08:01 618466 &amp;nbsp; &amp;nbsp; /usr/lib/libpng12.so.0.15.0
&lt;br&gt;b75a6000-b75c4000 r-xp 00000000 08:01 617774 &amp;nbsp; &amp;nbsp; /usr/lib/libexpat.so.1.0.0
&lt;br&gt;b75c4000-b75c6000 rw-p 0001d000 08:01 617774 &amp;nbsp; &amp;nbsp; /usr/lib/libexpat.so.1.0.0
&lt;br&gt;b75c6000-b75d9000 r-xp 00000000 08:01 618213 &amp;nbsp; &amp;nbsp; /usr/lib/libz.so.1.2.3
&lt;br&gt;b75d9000-b75da000 rw-p 00012000 08:01 618213 &amp;nbsp; &amp;nbsp; /usr/lib/libz.so.1.2.3
&lt;br&gt;b75da000-b7642000 r-xp 00000000 08:01 618430 &amp;nbsp; &amp;nbsp; /usr/lib/libfreetype.so.6.3.10
&lt;br&gt;b7642000-b7645000 rw-p 00068000 08:01 618430 &amp;nbsp; &amp;nbsp; /usr/lib/libfreetype.so.6.3.10
&lt;br&gt;b7645000-b766f000 r-xp 00000000 08:01 618480 &amp;nbsp; &amp;nbsp; /usr/lib/libpangoft2-1.0.so.0.1600.2
&lt;br&gt;b766f000-b7670000 rw-p 0002a000 08:01 618480 &amp;nbsp; &amp;nbsp; /usr/lib/libpangoft2-1.0.so.0.1600.2
&lt;br&gt;b7670000-b7671000 rw-p b7670000 00:00 0
&lt;br&gt;b7671000-b7675000 r-xp 00000000 08:01 617622 &amp;nbsp; &amp;nbsp; /usr/lib/libXdmcp.so.6.0.0
&lt;br&gt;b7675000-b7676000 rw-p 00003000 08:01 617622 &amp;nbsp; &amp;nbsp; /usr/lib/libXdmcp.so.6.0.0
&lt;br&gt;b7676000-b7678000 r-xp 00000000 08:01 617611 &amp;nbsp; &amp;nbsp; /usr/lib/libXau.so.6.0.0
&lt;br&gt;b7678000-b7679000 rw-p 00001000 08:01 617611 &amp;nbsp; &amp;nbsp; /usr/lib/libXau.so.6.0.0
&lt;br&gt;b7679000-b7681000 r-xp 00000000 08:01 617886 &amp;nbsp; &amp;nbsp; /usr/lib/libstartup-notification-1.so.0.0.0
&lt;br&gt;b7681000-b7682000 rw-p 00007000 08:01 617886 &amp;nbsp; &amp;nbsp; /usr/lib/libstartup-notification-1.so.0.0.0
&lt;br&gt;b7682000-b7697000 r-xp 00000000 08:01 617587 &amp;nbsp; &amp;nbsp; /usr/lib/libICE.so.6.3.0
&lt;br&gt;b7697000-b7699000 rw-p 00014000 08:01 617587 &amp;nbsp; &amp;nbsp; /usr/lib/libICE.so.6.3.0
&lt;br&gt;b7699000-b769a000 rw-p b7699000 00:00 0
&lt;br&gt;b769a000-b76a2000 r-xp 00000000 08:01 617601 &amp;nbsp; &amp;nbsp; /usr/lib/libSM.so.6.0.0
&lt;br&gt;b76a2000-b76a3000 rw-p 00007000 08:01 617601 &amp;nbsp; &amp;nbsp; /usr/lib/libSM.so.6.0.0
&lt;br&gt;b76a3000-b76a4000 rw-p b76a3000 00:00 0
&lt;br&gt;b76a4000-b76a6000 r-xp 00000000 08:01 33922 &amp;nbsp; &amp;nbsp; &amp;nbsp;/lib/tls/i686/cmov/libdl-2.5.so
&lt;br&gt;b76a6000-b76a8000 rw-p 00001000 08:01 33922 &amp;nbsp; &amp;nbsp; &amp;nbsp;/lib/tls/i686/cmov/libdl-2.5.so
&lt;br&gt;b76a8000-b76aa000 r-xp 00000000 08:01 617865 &amp;nbsp; &amp;nbsp; /usr/lib/libgmodule-2.0.so.0.1200.11
&lt;br&gt;b76aa000-b76ab000 rw-p 00002000 08:01 617865 &amp;nbsp; &amp;nbsp; /usr/lib/libgmodule-2.0.so.0.1200.11
&lt;br&gt;b76ab000-b7719000 r-xp 00000000 08:01 616653 &amp;nbsp; &amp;nbsp; /usr/lib/libcairo.so.2.11.1
&lt;br&gt;b7719000-b771b000 rw-p 0006d000 08:01 616653 &amp;nbsp; &amp;nbsp; /usr/lib/libcairo.so.2.11.1
&lt;br&gt;b771b000-b7757000 r-xp 00000000 08:01 616672 &amp;nbsp; &amp;nbsp; /usr/lib/libpango-1.0.so.0.1600.2
&lt;br&gt;b7757000-b7759000 rw-p 0003b000 08:01 616672 &amp;nbsp; &amp;nbsp; /usr/lib/libpango-1.0.so.0.1600.2
&lt;br&gt;b7759000-b775d000 r-xp 00000000 08:01 617628 &amp;nbsp; &amp;nbsp; /usr/lib/libXfixes.so.3.1.0
&lt;br&gt;b775d000-b775e000 rw-p 00003000 08:01 617628 &amp;nbsp; &amp;nbsp; /usr/lib/libXfixes.so.3.1.0
&lt;br&gt;b775e000-b775f000 rw-p b775e000 00:00 0
&lt;br&gt;b775f000-b7767000 r-xp 00000000 08:01 617618 &amp;nbsp; &amp;nbsp; /usr/lib/libXcursor.so.1.0.2
&lt;br&gt;b7767000-b7768000 rw-p 00007000 08:01 617618 &amp;nbsp; &amp;nbsp; /usr/lib/libXcursor.so.1.0.2
&lt;br&gt;b7768000-b776d000 r-xp 00000000 08:01 617646 &amp;nbsp; &amp;nbsp; /usr/lib/libXrandr.so.2.1.0
&lt;br&gt;b776d000-b776e000 rw-p 00005000 08:01 617646 &amp;nbsp; &amp;nbsp; /usr/lib/libXrandr.so.2.1.0
&lt;br&gt;b776e000-b7775000 r-xp 00000000 08:01 617634 &amp;nbsp; &amp;nbsp; /usr/lib/libXi.so.6.0.0
&lt;br&gt;b7775000-b7776000 rw-p 00006000 08:01 617634 &amp;nbsp; &amp;nbsp; /usr/lib/libXi.so.6.0.0
&lt;br&gt;b7776000-b7778000 r-xp 00000000 08:01 617636 &amp;nbsp; &amp;nbsp; /usr/lib/libXinerama.so.1.0.0
&lt;br&gt;b7778000-b7779000 rw-p 00001000 08:01 617636 &amp;nbsp; &amp;nbsp; /usr/lib/libXinerama.so.1.0.0
&lt;br&gt;b7779000-b7780000 r-xp 00000000 08:01 617648 &amp;nbsp; &amp;nbsp; /usr/lib/libXrender.so.1.3.0
&lt;br&gt;b7780000-b7781000 rw-p 00006000 08:01 617648 &amp;nbsp; &amp;nbsp; /usr/lib/libXrender.so.1.3.0
&lt;br&gt;b7781000-b778e000 r-xp 00000000 08:01 617626 &amp;nbsp; &amp;nbsp; /usr/lib/libXext.so.6.4.0
&lt;br&gt;b778e000-b778f000 rw-p 0000d000 08:01 617626 &amp;nbsp; &amp;nbsp; /usr/lib/libXext.so.6.4.0
&lt;br&gt;b778f000-b77b2000 r-xp 00000000 08:01 617780 &amp;nbsp; &amp;nbsp; /usr/lib/libfontconfig.so.1.2.0
&lt;br&gt;b77b2000-b77ba000 rw-p 00023000 08:01 617780 &amp;nbsp; &amp;nbsp; /usr/lib/libfontconfig.so.1.2.0
&lt;br&gt;b77ba000-b77bb000 rw-p b77ba000 00:00 0
&lt;br&gt;b77bb000-b77c2000 r-xp 00000000 08:01 618479 &amp;nbsp; &amp;nbsp; /usr/lib/libpangocairo-1.0.so.0.1600.2
&lt;br&gt;b77c2000-b77c3000 rw-p 00007000 08:01 618479 &amp;nbsp; &amp;nbsp; /usr/lib/libpangocairo-1.0.so.0.1600.2
&lt;br&gt;b77c3000-b77e8000 r-xp 00000000 08:01 33923 &amp;nbsp; &amp;nbsp; &amp;nbsp;/lib/tls/i686/cmov/libm-2.5.so
&lt;br&gt;b77e8000-b77ea000 rw-p 00024000 08:01 33923 &amp;nbsp; &amp;nbsp; &amp;nbsp;/lib/tls/i686/cmov/libm-2.5.so
&lt;br&gt;b77ea000-b7803000 r-xp 00000000 08:01 617695 &amp;nbsp; &amp;nbsp; /usr/lib/libatk-1.0.so.0.1809.1
&lt;br&gt;b7803000-b7805000 rw-p 00018000 08:01 617695 &amp;nbsp; &amp;nbsp; /usr/lib/libatk-1.0.so.0.1809.1
&lt;br&gt;b7805000-b7940000 r-xp 00000000 08:01 33919 &amp;nbsp; &amp;nbsp; &amp;nbsp;/lib/tls/i686/cmov/libc-2.5.so
&lt;br&gt;b7940000-b7941000 r--p 0013b000 08:01 33919 &amp;nbsp; &amp;nbsp; &amp;nbsp;/lib/tls/i686/cmov/libc-2.5.so
&lt;br&gt;b7941000-b7943000 rw-p 0013c000 08:01 33919 &amp;nbsp; &amp;nbsp; &amp;nbsp;/lib/tls/i686/cmov/libc-2.5.so
&lt;br&gt;b7943000-b7946000 rw-p b7943000 00:00 0
&lt;br&gt;b7946000-b79da000 r-xp 00000000 08:01 617859 &amp;nbsp; &amp;nbsp; /usr/lib/libglib-2.0.so.0.1200.11
&lt;br&gt;b79da000-b79db000 rw-p 00093000 08:01 617859 &amp;nbsp; &amp;nbsp; /usr/lib/libglib-2.0.so.0.1200.11
&lt;br&gt;b79db000-b79dc000 rw-p b79db000 00:00 0
&lt;br&gt;b79dc000-b7a15000 r-xp 00000000 08:01 617895 &amp;nbsp; &amp;nbsp; /usr/lib/libgobject-2.0.so.0.1200.11
&lt;br&gt;b7a15000-b7a16000 rw-p 00039000 08:01 617895 &amp;nbsp; &amp;nbsp; /usr/lib/libgobject-2.0.so.0.1200.11
&lt;br&gt;b7a16000-b7b03000 r-xp 00000000 08:01 616732 &amp;nbsp; &amp;nbsp; /usr/lib/libX11.so.6.2.0
&lt;br&gt;b7b03000-b7b07000 rw-p 000ed000 08:01 616732 &amp;nbsp; &amp;nbsp; /usr/lib/libX11.so.6.2.0
&lt;br&gt;b7b07000-b7b1d000 r-xp 00000000 08:01 616692 &amp;nbsp; &amp;nbsp; /usr/lib/libgdk_pixbuf-2.0.so.0.1000.11
&lt;br&gt;b7b1d000-b7b1e000 rw-p 00015000 08:01 616692 &amp;nbsp; &amp;nbsp; /usr/lib/libgdk_pixbuf-2.0.so.0.1000.11
&lt;br&gt;b7b1e000-b7ba1000 r-xp 00000000 08:01 617186 &amp;nbsp; &amp;nbsp; /usr/lib/libgdk-x11-2.0.so.0.1000.11
&lt;br&gt;b7ba1000-b7ba4000 rw-p 00083000 08:01 617186 &amp;nbsp; &amp;nbsp; /usr/lib/libgdk-x11-2.0.so.0.1000.11
&lt;br&gt;b7ba4000-b7bb0000 r-xp 00000000 08:01 618189 &amp;nbsp; &amp;nbsp; /usr/lib/libxfce4util.so.4.0.1
&lt;br&gt;b7bb0000-b7bb1000 rw-p 0000b000 08:01 618189 &amp;nbsp; &amp;nbsp; /usr/lib/libxfce4util.so.4.0.1
&lt;br&gt;b7bb1000-b7bb2000 rw-p b7bb1000 00:00 0
&lt;br&gt;b7bb2000-b7f03000 r-xp 00000000 08:01 617388 &amp;nbsp; &amp;nbsp; /usr/lib/libgtk-x11-2.0.so.0.1000.11
&lt;br&gt;b7f03000-b7f09000 rw-p 00351000 08:01 617388 &amp;nbsp; &amp;nbsp; /usr/lib/libgtk-x11-2.0.so.0.1000.11
&lt;br&gt;b7f09000-b7f0b000 rw-p b7f09000 00:00 0
&lt;br&gt;b7f0b000-b7f52000 r-xp 00000000 08:01 617909 &amp;nbsp; &amp;nbsp; /usr/lib/libxfcegui4.so.4.2.4
&lt;br&gt;b7f52000-b7f54000 rw-p 00047000 08:01 617909 &amp;nbsp; &amp;nbsp; /usr/lib/libxfcegui4.so.4.2.4
&lt;br&gt;b7f54000-b7f65000 r-xp 00000000 08:01 618285 &amp;nbsp; &amp;nbsp; /usr/lib/libxfce4panel.so.1.1.2
&lt;br&gt;b7f65000-b7f66000 rw-p 00010000 08:01 618285 &amp;nbsp; &amp;nbsp; /usr/lib/libxfce4panel.so.1.1.2
&lt;br&gt;b7f68000-b7f69000 r--s 00000000 08:01 309237 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/92a571655fb1c0ec1c4d6f496220600a-x86.cache-2
&lt;br&gt;b7f69000-b7f6b000 r--s 00000000 08:01 308321 &amp;nbsp; &amp;nbsp; /var/cache/fontconfig/beeeeb3dfe132a8a0633a017c99ce0c0-x86.cache-2
&lt;br&gt;b7f6b000-b7f6c000 r-xp 00000000 08:01 633931 &amp;nbsp; &amp;nbsp; /usr/lib/gconv/ISO8859-1.so
&lt;br&gt;b7f6c000-b7f6e000 rw-p 00000000 08:01 633931 &amp;nbsp; &amp;nbsp; /usr/lib/gconv/ISO8859-1.so
&lt;br&gt;b7f6e000-b7f75000 r--s 00000000 08:01 632854 &amp;nbsp; &amp;nbsp; /usr/lib/gconv/gconv-modules.cache
&lt;br&gt;b7f75000-b7f77000 rw-p b7f75000 00:00 0
&lt;br&gt;b7f77000-b7f90000 r-xp 00000000 08:01 1249318 &amp;nbsp; &amp;nbsp;/lib/ld-2.5.so
&lt;br&gt;b7f90000-b7f92000 rw-p 00019000 08:01 1249318 &amp;nbsp; &amp;nbsp;/lib/ld-2.5.so
&lt;br&gt;bfbc3000-bfbd8000 rw-p bfbc3000 00:00 0 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;[stack]
&lt;br&gt;ffffe000-fffff000 r-xp 00000000 00:00 0 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;[vdso]
&lt;br&gt;libxfce4panel-Message: Screenshot: screen changed: 0
&lt;br&gt;&lt;br&gt;libxfce4panel-Message: No valid plug window.
&lt;br&gt;&lt;br&gt;(xfce4-panel:5639): Gtk-CRITICAL **: gtk_socket_get_id: assertion `GTK_WIDGET_ANCHORED (socket)' failed
&lt;br&gt;&lt;br&gt;(xfce4-panel:5639): libxfce4panel-CRITICAL **: An item was unexpectedly removed: &amp;quot;Screenshot&amp;quot;.
&lt;br&gt;&lt;br&gt;(xfce4-panel:5639): xfce4-panel-WARNING **: Internal plugins need the &amp;quot;X-XFCE-Module-Path&amp;quot; entry to work properly.
&lt;br&gt;&lt;br&gt;(xfce4-panel:5639): xfce4-panel-WARNING **: Failed to create plugin &amp;quot;quicklauncher&amp;quot;
&lt;br&gt;&lt;br&gt;(xfce4-panel:5639): xfce4-panel-WARNING **: Internal plugins need the &amp;quot;X-XFCE-Module-Path&amp;quot; entry to work properly.
&lt;br&gt;&lt;br&gt;(xfce4-panel:5639): xfce4-panel-WARNING **: Failed to create plugin &amp;quot;smartbookmark&amp;quot;
&lt;br&gt;xscreensaver: 20:21:41: 0: unrecognised ClientMessage &amp;quot;_NET_ACTIVE_WINDOW&amp;quot; received
&lt;br&gt;xscreensaver: 20:21:41: 0: for window 0x1014c41 (xfce4-panel / Xfce4-panel)
&lt;br&gt;&lt;br&gt;(xfce4-places-plugin:5645): libxfce4util-CRITICAL **: xfce_rc_write_entry: assertion `value != NULL' failed
&lt;br&gt;&lt;br&gt;(xfce4-places-plugin:5645): libxfce4util-CRITICAL **: xfce_rc_write_entry: assertion `value != NULL' failed
&lt;br&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=11471134&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/xfce4-screenshooter-plugin-bugzilla-section---crash-tp11471134p11471134.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-8677834</id>
	<title>Clipman 'select text in xterm' issue (Forwarded)</title>
	<published>2007-01-28T07:47:09Z</published>
	<updated>2007-01-28T07:47:09Z</updated>
	<author>
		<name>HaroldAling</name>
	</author>
	<content type="html">(Forwarded from xfce-dev list...)
&lt;br&gt;&lt;br&gt;Dear list,
&lt;br&gt;&lt;br&gt;To my understanding, the Xfce Clipboard manager has the option to merge 
&lt;br&gt;the 'X' clipboard with the 'selection' clipboard.
&lt;br&gt;&lt;br&gt;When selecting text in X, the selected (or copied with ctrl-c) text is 
&lt;br&gt;immediately paste-able in an xterm using shift-insert.
&lt;br&gt;The other way around: Selecting text in an xterm isn't paste-able in X, 
&lt;br&gt;unless explicitly selected from the 'Clipman History'. The 'Clipman 
&lt;br&gt;History' also shows 2 active clipboard items... (see attachment)
&lt;br&gt;&lt;br&gt;Update: A VTE-based terminal doesn't fix this...
&lt;br&gt;&lt;br&gt;&lt;br&gt;Is this the expected behavior or a bug?
&lt;br&gt;&lt;br&gt;&lt;br&gt;Cheers!
&lt;br&gt;&lt;br&gt;Harold
&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8677834&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;clipman.jpg&lt;/strong&gt; (3K) &lt;a href=&quot;http://old.nabble.com/attachment/8677834/0/clipman.jpg&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Clipman-%27select-text-in-xterm%27-issue-%28Forwarded%29-tp8677834p8677834.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-8488517</id>
	<title>Re: Problems to install final xfce-goodies 4.4.0</title>
	<published>2007-01-22T05:03:38Z</published>
	<updated>2007-01-22T05:03:38Z</updated>
	<author>
		<name>Andreas Korzinowski-2</name>
	</author>
	<content type="html">Hi Mike,
&lt;br&gt;&lt;br&gt;thats it, after installing the package libpcre3-dev all works fine.
&lt;br&gt;On the main-site i have seen a list, what packages are needed for
&lt;br&gt;installing xfce4 4.4.0.
&lt;br&gt;I think it seems helpful to publish a list of the dependencies from the
&lt;br&gt;goodies-installer to.
&lt;br&gt;&lt;br&gt;Yeah, i think xfce4 is a great job, my gratulations :-))
&lt;br&gt;&lt;br&gt;&lt;br&gt;Best Regards
&lt;br&gt;&lt;br&gt;Andreas
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Mike Massonnet wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Mon, Jan 22, 2007 at 12:39:10AM +0100, Andreas Korzinowski wrote:
&lt;br&gt;&amp;gt;&amp;gt; Hi there,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; i am testing the fresh final version of the installation-pakets.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; When installing xfce-goodies 4.4.0 the following failure apears:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; verve.c:25:18: error: pcre.h: No such file or directory
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; % dpkg -S /usr/include/pcre.h &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;[07-01-22-1:13]
&lt;br&gt;&amp;gt; libpcre3-dev: /usr/include/pcre.h
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Obviously you need to install the dev package (whatever way it is called
&lt;br&gt;&amp;gt; on your system) for libpcre.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; verve.c: In function verve_is_url:
&lt;br&gt;&amp;gt;&amp;gt; verve.c:197: error: pcre undeclared (first use in this function)
&lt;br&gt;&amp;gt;&amp;gt; verve.c:197: error: (Each undeclared identifier is reported only once
&lt;br&gt;&amp;gt;&amp;gt; verve.c:197: error: for each function it appears in.)
&lt;br&gt;&amp;gt;&amp;gt; verve.c:197: error: pattern undeclared (first use in this function)
&lt;br&gt;&amp;gt;&amp;gt; verve.c: In function verve_is_email:
&lt;br&gt;&amp;gt;&amp;gt; verve.c:244: error: pcre undeclared (first use in this function)
&lt;br&gt;&amp;gt;&amp;gt; verve.c:244: error: pattern undeclared (first use in this function)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Best Regards
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Andreas
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt; Mike
&lt;br&gt;&amp;gt; PS: note that this list is being replaced by &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8488517&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;goodies-dev@...&lt;/a&gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; &amp;nbsp;Mike (m8t) Massonnet &lt;a href=&quot;http://massonnet.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://massonnet.org/&lt;/a&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;__oo
&lt;br&gt;&amp;gt; &amp;nbsp;GnuPG 0--&amp;quot; 0xF8C80F97 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;---(_)_&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;C4DA 431D 52F9 F930 3E5B &amp;nbsp;3E3D 546C 89D9 F8C8 0F97
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; xfce-goodies-dev mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8488517&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8488517&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Problems-to-install-final-xfce-goodies-4.4.0-tp8481647p8488517.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-8481719</id>
	<title>Re: Problems to install final xfce-goodies 4.4.0</title>
	<published>2007-01-21T16:13:46Z</published>
	<updated>2007-01-21T16:13:46Z</updated>
	<author>
		<name>Mike Massonnet-3</name>
	</author>
	<content type="html">On Mon, Jan 22, 2007 at 12:39:10AM +0100, Andreas Korzinowski wrote:
&lt;br&gt;&amp;gt; Hi there,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; i am testing the fresh final version of the installation-pakets.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; When installing xfce-goodies 4.4.0 the following failure apears:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; verve.c:25:18: error: pcre.h: No such file or directory
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
&lt;br&gt;&lt;br&gt;% dpkg -S /usr/include/pcre.h &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;[07-01-22-1:13]
&lt;br&gt;libpcre3-dev: /usr/include/pcre.h
&lt;br&gt;&lt;br&gt;Obviously you need to install the dev package (whatever way it is called
&lt;br&gt;on your system) for libpcre.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; verve.c: In function verve_is_url:
&lt;br&gt;&amp;gt; verve.c:197: error: pcre undeclared (first use in this function)
&lt;br&gt;&amp;gt; verve.c:197: error: (Each undeclared identifier is reported only once
&lt;br&gt;&amp;gt; verve.c:197: error: for each function it appears in.)
&lt;br&gt;&amp;gt; verve.c:197: error: pattern undeclared (first use in this function)
&lt;br&gt;&amp;gt; verve.c: In function verve_is_email:
&lt;br&gt;&amp;gt; verve.c:244: error: pcre undeclared (first use in this function)
&lt;br&gt;&amp;gt; verve.c:244: error: pattern undeclared (first use in this function)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Best Regards
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Andreas
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;/div&gt;Cheers,
&lt;br&gt;Mike
&lt;br&gt;PS: note that this list is being replaced by &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8481719&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;goodies-dev@...&lt;/a&gt;
&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp;Mike (m8t) Massonnet &lt;a href=&quot;http://massonnet.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://massonnet.org/&lt;/a&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;__oo 
&lt;br&gt;&amp;nbsp;GnuPG 0--&amp;quot; 0xF8C80F97 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;---(_)_&amp;quot;&amp;gt; 
&lt;br&gt;&amp;nbsp;C4DA 431D 52F9 F930 3E5B &amp;nbsp;3E3D 546C 89D9 F8C8 0F97 
&lt;br&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8481719&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (196 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/8481719/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Problems-to-install-final-xfce-goodies-4.4.0-tp8481647p8481719.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-8481647</id>
	<title>Problems to install final xfce-goodies 4.4.0</title>
	<published>2007-01-21T15:39:10Z</published>
	<updated>2007-01-21T15:39:10Z</updated>
	<author>
		<name>Andreas Korzinowski-2</name>
	</author>
	<content type="html">Hi there,
&lt;br&gt;&lt;br&gt;i am testing the fresh final version of the installation-pakets.
&lt;br&gt;&lt;br&gt;When installing xfce-goodies 4.4.0 the following failure apears:
&lt;br&gt;&lt;br&gt;verve.c:25:18: error: pcre.h: No such file or directory
&lt;br&gt;verve.c: In function verve_is_url:
&lt;br&gt;verve.c:197: error: pcre undeclared (first use in this function)
&lt;br&gt;verve.c:197: error: (Each undeclared identifier is reported only once
&lt;br&gt;verve.c:197: error: for each function it appears in.)
&lt;br&gt;verve.c:197: error: pattern undeclared (first use in this function)
&lt;br&gt;verve.c: In function verve_is_email:
&lt;br&gt;verve.c:244: error: pcre undeclared (first use in this function)
&lt;br&gt;verve.c:244: error: pattern undeclared (first use in this function)
&lt;br&gt;&lt;br&gt;&lt;br&gt;Best Regards
&lt;br&gt;&lt;br&gt;Andreas
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8481647&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Problems-to-install-final-xfce-goodies-4.4.0-tp8481647p8481647.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-8250689</id>
	<title>Re: Who is feeling responsible for the fsguard-plugin?</title>
	<published>2007-01-09T17:30:56Z</published>
	<updated>2007-01-09T17:30:56Z</updated>
	<author>
		<name>Mike Massonnet-3</name>
	</author>
	<content type="html">On Tue, Jan 09, 2007 at 08:34:38PM +0100, Robert Lange wrote:
&lt;br&gt;&amp;gt; Hi readers,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I want to improve (i.e. already started with it) the fsguard plugin with
&lt;br&gt;&amp;gt; two features:
&lt;br&gt;&amp;gt; - Display remaining space as text in panel (as option)
&lt;br&gt;&amp;gt; - Allow usage of free-space bar graph instead of &amp;quot;colored box&amp;quot;
&lt;br&gt;&lt;br&gt;I already started this, however I stopped at the &amp;quot;orientation&amp;quot; stuff, I
&lt;br&gt;will need to get a clean head on this. &amp;nbsp;With options for both. &amp;nbsp;Actually
&lt;br&gt;I even had like to get rid of the button. &amp;nbsp;Not really worth to open
&lt;br&gt;Thunar IMHO (oh, and changed the default file manager to exo-open IIRC).
&lt;br&gt;&lt;br&gt;&amp;gt; I found the current source code at svn.xfce.org and started local
&lt;br&gt;&amp;gt; modification from there, but I did not found out who is maintaining the
&lt;br&gt;&amp;gt; SVN and the plugin itself.
&lt;br&gt;&lt;br&gt;See:
&lt;br&gt;&lt;a href=&quot;http://foo-projects.org/pipermail/goodies-dev/2006-December/000410.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://foo-projects.org/pipermail/goodies-dev/2006-December/000410.html&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://foo-projects.org/pipermail/goodies-dev/2006-December/000413.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://foo-projects.org/pipermail/goodies-dev/2006-December/000413.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;I also have get an answer from the former maintainer.
&lt;br&gt;&lt;br&gt;However, as I am short at time, go ahead and post your patch on the
&lt;br&gt;goodies-dev ml. &amp;nbsp;BTW this ml (@berlios.de) is outdated.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I mailed to the developers named in AUTHORS and Andre Lerche told me he
&lt;br&gt;&amp;gt; started the plugin, but currently discontinued work.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thus, anybody currently maintaining the plugin or can give me a hint who
&lt;br&gt;&amp;gt; to ask in this case?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks &amp; (still, very late dough) a Happy New Year,
&lt;br&gt;&amp;gt; Robert
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;/div&gt;Cheers!
&lt;br&gt;Mike
&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp;&lt;a href=&quot;http://massonnet.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://massonnet.org/&lt;/a&gt;&amp;nbsp;Mike (m8t) Massonnet &amp;nbsp; &amp;nbsp; __oo 
&lt;br&gt;&amp;nbsp;GnuPG 0--&amp;quot; 0xF8C80F97 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;---(_)_&amp;quot;&amp;gt; 
&lt;br&gt;&amp;nbsp;C4DA 431D 52F9 F930 3E5B &amp;nbsp;3E3D 546C 89D9 F8C8 0F97 
&lt;br&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8250689&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (196 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/8250689/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Who-is-feeling-responsible-for-the-fsguard-plugin--tp8245198p8250689.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-8248529</id>
	<title>Re: Who is feeling responsible for the fsguard-plugin?</title>
	<published>2007-01-09T14:22:35Z</published>
	<updated>2007-01-09T14:22:35Z</updated>
	<author>
		<name>Stefan Ott-2</name>
	</author>
	<content type="html">Hi
&lt;br&gt;&lt;br&gt;Sorry, I'm one of the mentioned authors but was rather busy these last
&lt;br&gt;days. If you feel like maintaining the plugin, just go ahead. I mainly
&lt;br&gt;jumped in to prevent it from getting orphaned and am not particularly
&lt;br&gt;keen on supporting yet another project. If you're not interested, I
&lt;br&gt;would however be willing to keep doing it.
&lt;br&gt;&lt;br&gt;Regards
&lt;br&gt;Stefan
&lt;br&gt;&lt;br&gt;On Tue, Jan 09, 2007 at 08:34:38PM +0100, Robert Lange wrote:
&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi readers,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I want to improve (i.e. already started with it) the fsguard plugin with
&lt;br&gt;&amp;gt; two features:
&lt;br&gt;&amp;gt; - Display remaining space as text in panel (as option)
&lt;br&gt;&amp;gt; - Allow usage of free-space bar graph instead of &amp;quot;colored box&amp;quot;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I found the current source code at svn.xfce.org and started local
&lt;br&gt;&amp;gt; modification from there, but I did not found out who is maintaining the
&lt;br&gt;&amp;gt; SVN and the plugin itself.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I mailed to the developers named in AUTHORS and Andre Lerche told me he
&lt;br&gt;&amp;gt; started the plugin, but currently discontinued work.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thus, anybody currently maintaining the plugin or can give me a hint who
&lt;br&gt;&amp;gt; to ask in this case?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks &amp; (still, very late dough) a Happy New Year,
&lt;br&gt;&amp;gt; Robert
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; xfce-goodies-dev mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8248529&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;-- 
&lt;br&gt;Stefan Ott
&lt;br&gt;&lt;a href=&quot;http://www.ottwerk.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ottwerk.net/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;quot;La vie est courte mais on s'ennuie quand même&amp;quot; -- Georges Feydeau
&lt;br&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8248529&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (196 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/8248529/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Who-is-feeling-responsible-for-the-fsguard-plugin--tp8245198p8248529.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-8246702</id>
	<title>Re: Who is feeling responsible for the fsguard-plugin?</title>
	<published>2007-01-09T13:17:12Z</published>
	<updated>2007-01-09T13:17:12Z</updated>
	<author>
		<name>Nick Schermer</name>
	</author>
	<content type="html">Me actually, but we will switch to the new website soon (www-test.xfce.org).
&lt;br&gt;&lt;br&gt;Nick
&lt;br&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8246702&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Who-is-feeling-responsible-for-the-fsguard-plugin--tp8245198p8246702.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-8246428</id>
	<title>Re: Who is feeling responsible for the fsguard-plugin?</title>
	<published>2007-01-09T13:03:52Z</published>
	<updated>2007-01-09T13:03:52Z</updated>
	<author>
		<name>Robert Lange</name>
	</author>
	<content type="html">Nick Schermer wrote:
&lt;br&gt;&amp;gt; First: please use the &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8246428&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;goodies-dev@...&lt;/a&gt; ml, Berlios is not used anymore.
&lt;br&gt;Ah, thanks. I will change to there. Just, on www.xfce.org the berlios ML
&lt;br&gt;is still listed, see
&lt;br&gt;&lt;a href=&quot;http://www.xfce.org/index.php?page=mailinglists&amp;lang=en&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.xfce.org/index.php?page=mailinglists&amp;lang=en&lt;/a&gt;&lt;br&gt;&lt;br&gt;Who to ask to fix this?
&lt;br&gt;&lt;br&gt;&lt;br&gt;Cu,
&lt;br&gt;Robert
&lt;br&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8246428&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Who-is-feeling-responsible-for-the-fsguard-plugin--tp8245198p8246428.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-8246724</id>
	<title>Re: Who is feeling responsible for the fsguard-plugin?</title>
	<published>2007-01-09T12:39:05Z</published>
	<updated>2007-01-09T12:39:05Z</updated>
	<author>
		<name>HaroldAling</name>
	</author>
	<content type="html">Robert Lange wrote:
&lt;br&gt;&amp;gt; Hi readers,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I want to improve (i.e. already started with it) the fsguard plugin with
&lt;br&gt;&amp;gt; two features:
&lt;br&gt;&amp;gt; - Display remaining space as text in panel (as option)
&lt;br&gt;&amp;gt; - Allow usage of free-space bar graph instead of &amp;quot;colored box&amp;quot;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;If I may be so bold to suggest some things:
&lt;br&gt;&lt;br&gt;* Use only one instance of the fsguard plugin
&lt;br&gt;* Ability to add a virtually unlimited amount of mounts-to-check
&lt;br&gt;* Ability to select which mount should also be presented as 'bar graph'
&lt;br&gt;* Use (xfce4-)notification-daemon for warnings/errors (every &amp;lt;user 
&lt;br&gt;defined&amp;gt; minutes)
&lt;br&gt;&lt;br&gt;I have about 7 to 9 mounts to monitor; enough to fill an entire panel of 
&lt;br&gt;fsguard plugins... And it would be cool to actually use the notification 
&lt;br&gt;daemon once-in-a-while ;)
&lt;br&gt;&lt;br&gt;Cheers!
&lt;br&gt;&lt;br&gt;Harold.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I found the current source code at svn.xfce.org and started local
&lt;br&gt;&amp;gt; modification from there, but I did not found out who is maintaining the
&lt;br&gt;&amp;gt; SVN and the plugin itself.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I mailed to the developers named in AUTHORS and Andre Lerche told me he
&lt;br&gt;&amp;gt; started the plugin, but currently discontinued work.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thus, anybody currently maintaining the plugin or can give me a hint who
&lt;br&gt;&amp;gt; to ask in this case?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks &amp; (still, very late dough) a Happy New Year,
&lt;br&gt;&amp;gt; Robert
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; xfce-goodies-dev mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8246724&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8246724&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Who-is-feeling-responsible-for-the-fsguard-plugin--tp8245198p8246724.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-8245290</id>
	<title>Re: Who is feeling responsible for the fsguard-plugin?</title>
	<published>2007-01-09T12:15:12Z</published>
	<updated>2007-01-09T12:15:12Z</updated>
	<author>
		<name>Nick Schermer</name>
	</author>
	<content type="html">First: please use the &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8245290&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;goodies-dev@...&lt;/a&gt; ml, Berlios is not used anymore.
&lt;br&gt;&lt;br&gt;Second, great you want to maintain this plugin, because I think nobody
&lt;br&gt;if atm. If you want svn access please contact &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8245290&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sofar@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Greets,
&lt;br&gt;Nick
&lt;br&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8245290&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Who-is-feeling-responsible-for-the-fsguard-plugin--tp8245198p8245290.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-8245198</id>
	<title>Who is feeling responsible for the fsguard-plugin?</title>
	<published>2007-01-09T11:34:38Z</published>
	<updated>2007-01-09T11:34:38Z</updated>
	<author>
		<name>Robert Lange</name>
	</author>
	<content type="html">Hi readers,
&lt;br&gt;&lt;br&gt;I want to improve (i.e. already started with it) the fsguard plugin with
&lt;br&gt;two features:
&lt;br&gt;- Display remaining space as text in panel (as option)
&lt;br&gt;- Allow usage of free-space bar graph instead of &amp;quot;colored box&amp;quot;
&lt;br&gt;&lt;br&gt;I found the current source code at svn.xfce.org and started local
&lt;br&gt;modification from there, but I did not found out who is maintaining the
&lt;br&gt;SVN and the plugin itself.
&lt;br&gt;&lt;br&gt;I mailed to the developers named in AUTHORS and Andre Lerche told me he
&lt;br&gt;started the plugin, but currently discontinued work.
&lt;br&gt;&lt;br&gt;Thus, anybody currently maintaining the plugin or can give me a hint who
&lt;br&gt;to ask in this case?
&lt;br&gt;&lt;br&gt;&lt;br&gt;Thanks &amp; (still, very late dough) a Happy New Year,
&lt;br&gt;Robert
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8245198&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Who-is-feeling-responsible-for-the-fsguard-plugin--tp8245198p8245198.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-6720686</id>
	<title>Re: Notes plugin</title>
	<published>2006-10-09T10:16:04Z</published>
	<updated>2006-10-09T10:16:04Z</updated>
	<author>
		<name>Mike Massonnet</name>
	</author>
	<content type="html">Mon, 09 Oct 2006 16:46:56 +0200 - Xavier Otazu &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=6720686&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xotazu@...&lt;/a&gt;&amp;gt;
&lt;br&gt;wrote :
&lt;br&gt;&lt;br&gt;&amp;gt; 	Hello:
&lt;br&gt;&lt;br&gt;Hi
&lt;br&gt;&lt;br&gt;&amp;gt; 	I found one of the last features of the notes goodies very
&lt;br&gt;&amp;gt; annoying. It is the tabbed behaviour.
&lt;br&gt;&lt;br&gt;&amp;nbsp; I have noted some others already :P &amp;nbsp;...
&lt;br&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 	Please, could you (the developer) make the notes dettachable?
&lt;br&gt;&amp;gt; That is, could you make possible to have notes in different windows,
&lt;br&gt;&amp;gt; similar to the old behaviour? It could be an optional behaviour,
&lt;br&gt;&amp;gt; but please, maintain it ... ;-)
&lt;br&gt;&lt;br&gt;&amp;nbsp; ... At least this one is not written in hard in my todo :)
&lt;br&gt;&lt;br&gt;&amp;nbsp; You got me there with something I am going to add in the future. The
&lt;br&gt;problem is that the notes plugin does not support multiple windows at
&lt;br&gt;the moment. &amp;nbsp;This is not very hard, but still needs some rewrites. 
&lt;br&gt;&lt;br&gt;&amp;gt; cheers
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Xavier
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;And thanks for your feedback ;)
&lt;br&gt;Mike
&lt;br&gt;PS: you are posting on the old mailing list, the new mailing list is
&lt;br&gt;goodies-dev: &lt;a href=&quot;http://foo-projects.org/mailman/listinfo/goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://foo-projects.org/mailman/listinfo/goodies-dev&lt;/a&gt;&lt;br&gt;-- 
&lt;br&gt;&amp;nbsp;&lt;a href=&quot;http://massonnet.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://massonnet.org/&lt;/a&gt;&amp;nbsp;Mike Massonnet (mmassonnet) &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;_
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;,_( ))___ &amp;nbsp; &amp;nbsp; (`
&lt;br&gt;&amp;nbsp;GnuPG 0--&amp;quot; 0xF8C80F97 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;\' &amp;nbsp; &amp;nbsp;_ `\ &amp;nbsp; &amp;nbsp;)
&lt;br&gt;&amp;nbsp;C4DA 431D 52F9 F930 3E5B &amp;nbsp;3E3D 546C 89D9 F8C8 0F97 &amp;nbsp; &amp;nbsp; =`---&amp;lt;___/---' 
&lt;br&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=6720686&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (196 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/6720686/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Notes-plugin-tp6718873p6720686.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-6718873</id>
	<title>Notes plugin</title>
	<published>2006-10-09T08:42:56Z</published>
	<updated>2006-10-09T08:42:56Z</updated>
	<author>
		<name>Xavier Otazu</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Hello:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; I found one of the last features of the notes goodies very
&lt;br&gt;annoying. It is the tabbed behaviour.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Please, could you (the developer) make the notes dettachable?
&lt;br&gt;That is, could you make possible to have notes in different windows,
&lt;br&gt;similar to the old behaviour? It could be an optional behaviour,
&lt;br&gt;but please, maintain it ... ;-)
&lt;br&gt;&lt;br&gt;cheers
&lt;br&gt;&lt;br&gt;Xavier
&lt;br&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=6718873&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Notes-plugin-tp6718873p6718873.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-6549163</id>
	<title>Re: Linking to Xfce libs - how is it done?</title>
	<published>2006-09-28T09:48:58Z</published>
	<updated>2006-09-28T09:48:58Z</updated>
	<author>
		<name>Jean-François Wauthy</name>
	</author>
	<content type="html">On Thu, 2006-09-28 at 16:14 +0200, Olof Holmgren wrote:
&lt;br&gt;&amp;gt; Hi!
&lt;br&gt;&amp;gt; 
&lt;br&gt;hi
&lt;br&gt;&amp;gt; I'm trying to develop a panel app for Xfce (4.4rc1) but I'm new to
&lt;br&gt;&amp;gt; both Xfce and autotools and
&lt;br&gt;&amp;gt; find it hard to get going. What I would like to know is how to link to
&lt;br&gt;&amp;gt; the Xfce4 libraries?
&lt;br&gt;&lt;br&gt;i haven't taken the time read your mail so i don't know if i can answer
&lt;br&gt;you questions so far but this ML has been moved to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=6549163&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;goodies-dev@...&lt;/a&gt;.
&lt;br&gt;It's more likely you'll get an answer there.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Jean-François Wauthy &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=6549163&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pollux@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=6549163&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (196 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/6549163/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Linking-to-Xfce-libs---how-is-it-done--tp6547198p6549163.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-6547198</id>
	<title>Linking to Xfce libs - how is it done?</title>
	<published>2006-09-28T08:14:23Z</published>
	<updated>2006-09-28T08:14:23Z</updated>
	<author>
		<name>Olof Holmgren</name>
	</author>
	<content type="html">Hi!&lt;br&gt;&lt;br&gt;I'm trying to develop a panel app for Xfce (4.4rc1) but I'm new to both Xfce and autotools and&lt;br&gt;find it hard to get going. What I would like to know is how to link to the Xfce4 libraries?&lt;br&gt;&lt;br&gt;I've downloaded the cpugraph plugin 
v0.3 as suggested over here:&lt;br&gt;&lt;a href=&quot;http://jameswestby.net/weblog/2006/May&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jameswestby.net/weblog/2006/May&lt;/a&gt;&lt;br&gt;&lt;br&gt;If I do ./configure on the cpugraph plugin I can make and install it with no problems,&lt;br&gt;
but if I do aclocal, autoconf and automake myself and then run ./configure the&lt;br&gt;configure keeps failing with the following error message:&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://configure.ac:27&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;configure.ac:27&lt;/a&gt;: error: possibly undefined macro: AC_PROG_INTLTOOL
&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If this token and others are legitimate, please use m4_pattern_allow.&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; See the Autoconf documentation.&lt;br&gt;&lt;br&gt;I have tried to look in the autoconf documentation, but I'm not sure what I'm really looking for
&lt;br&gt;so I got no answers there. And it feels as if something is wrong for this even to happen.&lt;br&gt;Since I don't know what I'm doing or what intltool does, I simple removed the line AC_PROG_INTLTOOL&lt;br&gt;from the &lt;a href=&quot;http://configure.ac&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;
configure.ac&lt;/a&gt;. After doing this, I got a little further but the ./configure still fails, with the following error:&lt;br&gt;&lt;br&gt;./configure: line 4777: syntax error near unexpected token `LIBXFCE4PANEL,'&lt;br&gt;./configure: line 4777: `XDT_CHECK_PACKAGE(LIBXFCE4PANEL, 
libxfce4panel-1.0, 4.3.20)'&lt;br&gt;&lt;br&gt;The line in the &lt;a href=&quot;http://configure.ac&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;configure.ac&lt;/a&gt; that seems to be causing the problem is the following:&lt;br&gt;XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-1.0], [4.3.20])
&lt;br&gt;&lt;br&gt;All I want to do is to get the build system up so that I know that I can compile my own stuff,&lt;br&gt;but I can not get it working. I've spent a long time googling on it, but without luck. Im stuck.&lt;span style=&quot;font-style: italic;&quot;&gt;
&lt;/span&gt;&lt;br&gt;&lt;br&gt;If someone could point me in the right direction here, it would be greatly appreciated.&lt;br&gt;&lt;br&gt;Regards&lt;br&gt;Olof Holmgren&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=6547198&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Linking-to-Xfce-libs---how-is-it-done--tp6547198p6547198.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-6096952</id>
	<title>Re: [PATCH] NetBSD support for xfce4-battery-plugin</title>
	<published>2006-09-01T05:27:16Z</published>
	<updated>2006-09-01T05:27:16Z</updated>
	<author>
		<name>Nick Schermer</name>
	</author>
	<content type="html">Probably the fastest replay you've ever had ;-). Patch is applied in
&lt;br&gt;the 0.4.90.2 release. Thanks.
&lt;br&gt;&lt;br&gt;Nick
&lt;br&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=6096952&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-PATCH--NetBSD-support-for-xfce4-battery-plugin-tp3497532p6096952.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5832705</id>
	<title>[Bug 2106] systemload plugin crashes when trying to change bar color.</title>
	<published>2006-08-16T07:44:23Z</published>
	<updated>2006-08-16T07:44:23Z</updated>
	<author>
		<name>Bugzilla from bugzilla-daemon@xfce.org</name>
	</author>
	<content type="html">Do not reply to this email. &amp;nbsp;To comment on this bug, please visit:
&lt;br&gt;&lt;a href=&quot;http://bugzilla.xfce.org/show_bug.cgi?id=2106&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/show_bug.cgi?id=2106&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5832705&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;corsac@...&lt;/a&gt; changed:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;What &amp;nbsp; &amp;nbsp;|Removed &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |Added
&lt;br&gt;----------------------------------------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Status|NEW &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |RESOLVED
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Resolution| &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|FIXED
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------- Comment #7 from &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5832705&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;corsac@...&lt;/a&gt; &amp;nbsp;2006-08-16 13:44 UTC -------
&lt;br&gt;It works with patch applied. Thank you :)
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Configure bugmail: &lt;a href=&quot;http://bugzilla.xfce.org/userprefs.cgi?tab=email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/userprefs.cgi?tab=email&lt;/a&gt;&lt;br&gt;------- You are receiving this mail because: -------
&lt;br&gt;You are the assignee for the bug, or are watching the assignee.
&lt;br&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5832705&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bug-2106--New%3A-systemload-plugin-crashes-when-trying-to-change-bar-color.-tp5609287p5832705.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5832655</id>
	<title>[Bug 2141] cpugraph leaks memory</title>
	<published>2006-08-16T07:41:29Z</published>
	<updated>2006-08-16T07:41:29Z</updated>
	<author>
		<name>Bugzilla from bugzilla-daemon@xfce.org</name>
	</author>
	<content type="html">Do not reply to this email. &amp;nbsp;To comment on this bug, please visit:
&lt;br&gt;&lt;a href=&quot;http://bugzilla.xfce.org/show_bug.cgi?id=2141&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/show_bug.cgi?id=2141&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------- Comment #6 from &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5832655&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jasper@...&lt;/a&gt; &amp;nbsp;2006-08-16 13:41 UTC -------
&lt;br&gt;Ok, I committed the changes with revision 1906. It would be helpful if you
&lt;br&gt;could test the patch or update from SVN.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Configure bugmail: &lt;a href=&quot;http://bugzilla.xfce.org/userprefs.cgi?tab=email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/userprefs.cgi?tab=email&lt;/a&gt;&lt;br&gt;------- You are receiving this mail because: -------
&lt;br&gt;You are the assignee for the bug, or are watching the assignee.
&lt;br&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5832655&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bug-2141--New%3A-cpugraph-leaks-memory-tp5722534p5832655.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5832599</id>
	<title>[Bug 2106] systemload plugin crashes when trying to change bar color.</title>
	<published>2006-08-16T07:38:42Z</published>
	<updated>2006-08-16T07:38:42Z</updated>
	<author>
		<name>Bugzilla from bugzilla-daemon@xfce.org</name>
	</author>
	<content type="html">Do not reply to this email. &amp;nbsp;To comment on this bug, please visit:
&lt;br&gt;&lt;a href=&quot;http://bugzilla.xfce.org/show_bug.cgi?id=2106&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/show_bug.cgi?id=2106&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------- Comment #6 from &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5832599&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jasper@...&lt;/a&gt; &amp;nbsp;2006-08-16 13:38 UTC -------
&lt;br&gt;(In reply to comment #5)
&lt;br&gt;&amp;gt; Ok, committed in SVN revision 1905. If you could try this patch, or update from
&lt;br&gt;&amp;gt; SVN, that would be helpful.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&lt;br&gt;Oops, sorry, that's revision 1906.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Configure bugmail: &lt;a href=&quot;http://bugzilla.xfce.org/userprefs.cgi?tab=email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/userprefs.cgi?tab=email&lt;/a&gt;&lt;br&gt;------- You are receiving this mail because: -------
&lt;br&gt;You are the assignee for the bug, or are watching the assignee.
&lt;br&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5832599&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bug-2106--New%3A-systemload-plugin-crashes-when-trying-to-change-bar-color.-tp5609287p5832599.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5832544</id>
	<title>[Bug 2106] systemload plugin crashes when trying to change bar color.</title>
	<published>2006-08-16T07:35:39Z</published>
	<updated>2006-08-16T07:35:39Z</updated>
	<author>
		<name>Bugzilla from bugzilla-daemon@xfce.org</name>
	</author>
	<content type="html">Do not reply to this email. &amp;nbsp;To comment on this bug, please visit:
&lt;br&gt;&lt;a href=&quot;http://bugzilla.xfce.org/show_bug.cgi?id=2106&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/show_bug.cgi?id=2106&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------- Comment #5 from &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5832544&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jasper@...&lt;/a&gt; &amp;nbsp;2006-08-16 13:35 UTC -------
&lt;br&gt;Ok, committed in SVN revision 1905. If you could try this patch, or update from
&lt;br&gt;SVN, that would be helpful.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Configure bugmail: &lt;a href=&quot;http://bugzilla.xfce.org/userprefs.cgi?tab=email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/userprefs.cgi?tab=email&lt;/a&gt;&lt;br&gt;------- You are receiving this mail because: -------
&lt;br&gt;You are the assignee for the bug, or are watching the assignee.
&lt;br&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5832544&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bug-2106--New%3A-systemload-plugin-crashes-when-trying-to-change-bar-color.-tp5609287p5832544.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5830898</id>
	<title>[Bug 2141] cpugraph leaks memory</title>
	<published>2006-08-16T05:50:50Z</published>
	<updated>2006-08-16T05:50:50Z</updated>
	<author>
		<name>Bugzilla from bugzilla-daemon@xfce.org</name>
	</author>
	<content type="html">Do not reply to this email. &amp;nbsp;To comment on this bug, please visit:
&lt;br&gt;&lt;a href=&quot;http://bugzilla.xfce.org/show_bug.cgi?id=2141&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/show_bug.cgi?id=2141&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------- Comment #5 from &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5830898&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jasper@...&lt;/a&gt; &amp;nbsp;2006-08-16 11:50 UTC -------
&lt;br&gt;Created an attachment (id=740)
&lt;br&gt;&amp;nbsp;--&amp;gt; (&lt;a href=&quot;http://bugzilla.xfce.org/attachment.cgi?id=740&amp;action=view&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/attachment.cgi?id=740&amp;action=view&lt;/a&gt;)
&lt;br&gt;Free gc's
&lt;br&gt;&lt;br&gt;In two modes a gc isn't freed after use. This was the only obvious memory leak
&lt;br&gt;I could find, but I didn't look very thoroughly.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Configure bugmail: &lt;a href=&quot;http://bugzilla.xfce.org/userprefs.cgi?tab=email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/userprefs.cgi?tab=email&lt;/a&gt;&lt;br&gt;------- You are receiving this mail because: -------
&lt;br&gt;You are the assignee for the bug, or are watching the assignee.
&lt;br&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5830898&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bug-2141--New%3A-cpugraph-leaks-memory-tp5722534p5830898.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5829922</id>
	<title>[Bug 2106] systemload plugin crashes when trying to change bar color.</title>
	<published>2006-08-16T04:21:15Z</published>
	<updated>2006-08-16T04:21:15Z</updated>
	<author>
		<name>Bugzilla from bugzilla-daemon@xfce.org</name>
	</author>
	<content type="html">Do not reply to this email. &amp;nbsp;To comment on this bug, please visit:
&lt;br&gt;&lt;a href=&quot;http://bugzilla.xfce.org/show_bug.cgi?id=2106&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/show_bug.cgi?id=2106&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------- Comment #4 from &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5829922&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jasper@...&lt;/a&gt; &amp;nbsp;2006-08-16 10:21 UTC -------
&lt;br&gt;Created an attachment (id=739)
&lt;br&gt;&amp;nbsp;--&amp;gt; (&lt;a href=&quot;http://bugzilla.xfce.org/attachment.cgi?id=739&amp;action=view&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/attachment.cgi?id=739&amp;action=view&lt;/a&gt;)
&lt;br&gt;Fix crash when changing bar color.
&lt;br&gt;&lt;br&gt;A pointer to the properties dialog was not initialized properly.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Configure bugmail: &lt;a href=&quot;http://bugzilla.xfce.org/userprefs.cgi?tab=email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/userprefs.cgi?tab=email&lt;/a&gt;&lt;br&gt;------- You are receiving this mail because: -------
&lt;br&gt;You are the assignee for the bug, or are watching the assignee.
&lt;br&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5829922&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bug-2106--New%3A-systemload-plugin-crashes-when-trying-to-change-bar-color.-tp5609287p5829922.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5829663</id>
	<title>[Bug 2106] systemload plugin crashes when trying to change bar color.</title>
	<published>2006-08-16T03:57:26Z</published>
	<updated>2006-08-16T03:57:26Z</updated>
	<author>
		<name>Bugzilla from bugzilla-daemon@xfce.org</name>
	</author>
	<content type="html">Do not reply to this email. &amp;nbsp;To comment on this bug, please visit:
&lt;br&gt;&lt;a href=&quot;http://bugzilla.xfce.org/show_bug.cgi?id=2106&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/show_bug.cgi?id=2106&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5829663&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jasper@...&lt;/a&gt; changed:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;What &amp;nbsp; &amp;nbsp;|Removed &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |Added
&lt;br&gt;----------------------------------------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CC| &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5829663&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;maxschleiss@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------- Comment #3 from &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5829663&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jasper@...&lt;/a&gt; &amp;nbsp;2006-08-16 09:57 UTC -------
&lt;br&gt;*** Bug 2108 has been marked as a duplicate of this bug. ***
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Configure bugmail: &lt;a href=&quot;http://bugzilla.xfce.org/userprefs.cgi?tab=email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/userprefs.cgi?tab=email&lt;/a&gt;&lt;br&gt;------- You are receiving this mail because: -------
&lt;br&gt;You are the assignee for the bug, or are watching the assignee.
&lt;br&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5829663&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bug-2106--New%3A-systemload-plugin-crashes-when-trying-to-change-bar-color.-tp5609287p5829663.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5829662</id>
	<title>[Bug 2108] Systemload-plugin crash when changing color</title>
	<published>2006-08-16T03:57:26Z</published>
	<updated>2006-08-16T03:57:26Z</updated>
	<author>
		<name>Bugzilla from bugzilla-daemon@xfce.org</name>
	</author>
	<content type="html">Do not reply to this email. &amp;nbsp;To comment on this bug, please visit:
&lt;br&gt;&lt;a href=&quot;http://bugzilla.xfce.org/show_bug.cgi?id=2108&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/show_bug.cgi?id=2108&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5829662&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jasper@...&lt;/a&gt; changed:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;What &amp;nbsp; &amp;nbsp;|Removed &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |Added
&lt;br&gt;----------------------------------------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Status|NEW &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |RESOLVED
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Resolution| &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|DUPLICATE
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------- Comment #1 from &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5829662&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jasper@...&lt;/a&gt; &amp;nbsp;2006-08-16 09:57 UTC -------
&lt;br&gt;&lt;br&gt;&lt;br&gt;*** This bug has been marked as a duplicate of bug 2106 ***
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Configure bugmail: &lt;a href=&quot;http://bugzilla.xfce.org/userprefs.cgi?tab=email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/userprefs.cgi?tab=email&lt;/a&gt;&lt;br&gt;------- You are receiving this mail because: -------
&lt;br&gt;You are the assignee for the bug, or are watching the assignee.
&lt;br&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5829662&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bug-2108--New%3A-Systemload-plugin-crash-when-changing-color-tp5611583p5829662.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5787616</id>
	<title>[Bug 1791] Battery plugin doesn't resize correctly</title>
	<published>2006-08-13T13:26:31Z</published>
	<updated>2006-08-13T13:26:31Z</updated>
	<author>
		<name>Bugzilla from bugzilla-daemon@xfce.org</name>
	</author>
	<content type="html">Do NOT reply to this email. &amp;nbsp;To make further comments on this bug, use
&lt;br&gt;the URL below:
&lt;br&gt;&lt;a href=&quot;http://bugzilla.xfce.org/show_bug.cgi?id=1791&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/show_bug.cgi?id=1791&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5787616&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hongqn@...&lt;/a&gt; changed:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;What &amp;nbsp; &amp;nbsp;|Removed &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |Added
&lt;br&gt;----------------------------------------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;CC| &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5787616&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hongqn@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Configure bugmail: &lt;a href=&quot;http://bugzilla.xfce.org/userprefs.cgi?tab=email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/userprefs.cgi?tab=email&lt;/a&gt;&lt;br&gt;------- You are receiving this mail because: -------
&lt;br&gt;You are the assignee for the bug, or are watching the assignee.
&lt;br&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5787616&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://bat.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bat.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bug-1791--New%3A-Battery-plugin-doesn%27t-resize-correctly-tp4315369p5787616.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5787538</id>
	<title>[Bug 477] battery plugin does not account for second battery</title>
	<published>2006-08-13T13:19:58Z</published>
	<updated>2006-08-13T13:19:58Z</updated>
	<author>
		<name>Bugzilla from bugzilla-daemon@xfce.org</name>
	</author>
	<content type="html">Do NOT reply to this email. &amp;nbsp;To make further comments on this bug, use
&lt;br&gt;the URL below:
&lt;br&gt;&lt;a href=&quot;http://bugzilla.xfce.org/show_bug.cgi?id=477&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/show_bug.cgi?id=477&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------- Comment #4 from &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5787538&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jujucece@...&lt;/a&gt; &amp;nbsp;2006-08-13 19:19 UTC -------
&lt;br&gt;In my Dell D600 LapTop, I've also 2 batteries (the extra one is in the media
&lt;br&gt;bay), and I use the xfce-genmon-plugin to monitor the 2 batteries.
&lt;br&gt;&lt;br&gt;For more infos, see the screenshot in:
&lt;br&gt;&lt;a href=&quot;http://goodies.xfce.org/projects/panel-plugins/xfce4-genmon-plugin&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://goodies.xfce.org/projects/panel-plugins/xfce4-genmon-plugin&lt;/a&gt;&lt;br&gt;&lt;br&gt;The source archive includes an &amp;quot;example&amp;quot; script to monitor 2 batteries, if you
&lt;br&gt;know a bit of shell scripting, you can easily fit it to your needs.
&lt;br&gt;(Personnaly, I use &amp;quot;zenity&amp;quot; to display an alert box when the batteries reach a
&lt;br&gt;very low level.)
&lt;br&gt;&lt;br&gt;But it's a bit more complicated than just using a dedicated plugin...
&lt;br&gt;&lt;br&gt;Juju
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Configure bugmail: &lt;a href=&quot;http://bugzilla.xfce.org/userprefs.cgi?tab=email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/userprefs.cgi?tab=email&lt;/a&gt;&lt;br&gt;------- You are receiving this mail because: -------
&lt;br&gt;You are the assignee for the bug, or are watching the assignee.
&lt;br&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5787538&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://bat.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bat.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bug-477--battery-plugin-does-not-account-for-second-battery-tp5787538p5787538.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5774205</id>
	<title>[Bug 2141] cpugraph leaks memory</title>
	<published>2006-08-12T03:45:06Z</published>
	<updated>2006-08-12T03:45:06Z</updated>
	<author>
		<name>Bugzilla from bugzilla-daemon@xfce.org</name>
	</author>
	<content type="html">Do NOT reply to this email. &amp;nbsp;To make further comments on this bug, use
&lt;br&gt;the URL below:
&lt;br&gt;&lt;a href=&quot;http://bugzilla.xfce.org/show_bug.cgi?id=2141&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/show_bug.cgi?id=2141&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------- Comment #4 from &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5774205&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pollux@...&lt;/a&gt; &amp;nbsp;2006-08-12 09:45 UTC -------
&lt;br&gt;the DrawGraph function doesn't unref all the GdkGC it can create maybe it could
&lt;br&gt;be the cause of such memleak
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Configure bugmail: &lt;a href=&quot;http://bugzilla.xfce.org/userprefs.cgi?tab=email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/userprefs.cgi?tab=email&lt;/a&gt;&lt;br&gt;------- You are receiving this mail because: -------
&lt;br&gt;You are the assignee for the bug, or are watching the assignee.
&lt;br&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5774205&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://bat.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bat.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bug-2141--New%3A-cpugraph-leaks-memory-tp5722534p5774205.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5751083</id>
	<title>[Bug 1518] Wavelan plugin doesn't auto-hide when wifi card not present</title>
	<published>2006-08-10T13:40:39Z</published>
	<updated>2006-08-10T13:40:39Z</updated>
	<author>
		<name>Bugzilla from bugzilla-daemon@xfce.org</name>
	</author>
	<content type="html">Do NOT reply to this email. &amp;nbsp;To make further comments on this bug, use
&lt;br&gt;the URL below:
&lt;br&gt;&lt;a href=&quot;http://bugzilla.xfce.org/show_bug.cgi?id=1518&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/show_bug.cgi?id=1518&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------- Comment #1 from &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5751083&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jw+xfce@...&lt;/a&gt; &amp;nbsp;2006-08-10 19:40 UTC -------
&lt;br&gt;I have fixed this in 0.5.2 release, shortly to be released to
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://jameswestby.net/debian/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jameswestby.net/debian/&lt;/a&gt;&lt;br&gt;&lt;br&gt;I have added the option to hide when the device is not found, with a warning
&lt;br&gt;that this will make it hard to remove or configure the plugin when there is no
&lt;br&gt;device.
&lt;br&gt;&lt;br&gt;(I will close the bug if I am granted and account with sufficient permissions)
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Configure bugmail: &lt;a href=&quot;http://bugzilla.xfce.org/userprefs.cgi?tab=email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/userprefs.cgi?tab=email&lt;/a&gt;&lt;br&gt;------- You are receiving this mail because: -------
&lt;br&gt;You are the assignee for the bug, or are watching the assignee.
&lt;br&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5751083&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://bat.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bat.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bug-1518--Wavelan-plugin-doesn%27t-auto-hide-when-wifi-card-not-present-tp5751083p5751083.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5740636</id>
	<title>[Bug 2141] cpugraph leaks memory</title>
	<published>2006-08-10T02:49:34Z</published>
	<updated>2006-08-10T02:49:34Z</updated>
	<author>
		<name>Bugzilla from bugzilla-daemon@xfce.org</name>
	</author>
	<content type="html">Do NOT reply to this email. &amp;nbsp;To make further comments on this bug, use
&lt;br&gt;the URL below:
&lt;br&gt;&lt;a href=&quot;http://bugzilla.xfce.org/show_bug.cgi?id=2141&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/show_bug.cgi?id=2141&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------- Comment #3 from &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5740636&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;a.hoch@...&lt;/a&gt; &amp;nbsp;2006-08-10 08:49 UTC -------
&lt;br&gt;ok, you're right.
&lt;br&gt;the problem only appears when using LED-mode. everything is fine in normal
&lt;br&gt;mode.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Configure bugmail: &lt;a href=&quot;http://bugzilla.xfce.org/userprefs.cgi?tab=email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/userprefs.cgi?tab=email&lt;/a&gt;&lt;br&gt;------- You are receiving this mail because: -------
&lt;br&gt;You are the assignee for the bug, or are watching the assignee.
&lt;br&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5740636&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://bat.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bat.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bug-2141--New%3A-cpugraph-leaks-memory-tp5722534p5740636.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5731216</id>
	<title>[Bug 1898] Wavelan plugin for 4.4 does not work for all cards</title>
	<published>2006-08-09T12:18:51Z</published>
	<updated>2006-08-09T12:18:51Z</updated>
	<author>
		<name>Bugzilla from bugzilla-daemon@xfce.org</name>
	</author>
	<content type="html">Do NOT reply to this email. &amp;nbsp;To make further comments on this bug, use
&lt;br&gt;the URL below:
&lt;br&gt;&lt;a href=&quot;http://bugzilla.xfce.org/show_bug.cgi?id=1898&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/show_bug.cgi?id=1898&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5731216&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jw+xfce@...&lt;/a&gt; changed:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;What &amp;nbsp; &amp;nbsp;|Removed &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |Added
&lt;br&gt;----------------------------------------------------------------------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Status|NEW &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; |RESOLVED
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Resolution| &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|FIXED
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------- Comment #3 from &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5731216&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jw+xfce@...&lt;/a&gt; &amp;nbsp;2006-08-09 18:18 UTC -------
&lt;br&gt;I have just fixed this issue (I hope). 
&lt;br&gt;&lt;br&gt;The new version is available from 
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://jameswestby.net/debian/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jameswestby.net/debian/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Let me know if it doesn't fix the issue for you.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Configure bugmail: &lt;a href=&quot;http://bugzilla.xfce.org/userprefs.cgi?tab=email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/userprefs.cgi?tab=email&lt;/a&gt;&lt;br&gt;------- You are receiving this mail because: -------
&lt;br&gt;You are the assignee for the bug, or are watching the assignee.
&lt;br&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5731216&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://bat.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bat.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bug-1898--New%3A-Wavelan-plugin-for-4.4-does-not-work-for-all-cards-tp4716593p5731216.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5726844</id>
	<title>[Bug 2141] cpugraph leaks memory</title>
	<published>2006-08-09T08:27:35Z</published>
	<updated>2006-08-09T08:27:35Z</updated>
	<author>
		<name>Bugzilla from bugzilla-daemon@xfce.org</name>
	</author>
	<content type="html">Do NOT reply to this email. &amp;nbsp;To make further comments on this bug, use
&lt;br&gt;the URL below:
&lt;br&gt;&lt;a href=&quot;http://bugzilla.xfce.org/show_bug.cgi?id=2141&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/show_bug.cgi?id=2141&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;------- Comment #2 from &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5726844&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;benny@...&lt;/a&gt; &amp;nbsp;2006-08-09 14:27 UTC -------
&lt;br&gt;Ehm, that's definitely not the cause of a memory leak.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Configure bugmail: &lt;a href=&quot;http://bugzilla.xfce.org/userprefs.cgi?tab=email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.xfce.org/userprefs.cgi?tab=email&lt;/a&gt;&lt;br&gt;------- You are receiving this mail because: -------
&lt;br&gt;You are the assignee for the bug, or are watching the assignee.
&lt;br&gt;_______________________________________________
&lt;br&gt;xfce-goodies-dev mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5726844&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;xfce-goodies-dev@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://bat.berlios.de/mailman/listinfo/xfce-goodies-dev&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://bat.berlios.de/mailman/listinfo/xfce-goodies-dev&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Bug-2141--New%3A-cpugraph-leaks-memory-tp5722534p5726844.html" />
</entry>

</feed>
