[E-devel] [python] elementary and notify

2011-01-23 Thread S. Bonnegent
Hi,

I have a little problem with notify. My example script is here: 
http://sensia.homelinux.org/files/test_notify.py

If I click on Show notify with sleep, notify appears only after the
end of the order sleep (and not at the notify.show()). Is this
possible to force posting of the window of notification before the end
of the function ?


PS: I use revision 56218.
-- 
GNU/Linux, il y a moins bien mais c'est plus cher :)

--
Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
Finally, a world-class log management solution at an even better price-free!
Download using promo code Free_Logger_4_Dev2Dev. Offer expires 
February 28th, so secure your free ArcSight Logger TODAY! 
http://p.sf.net/sfu/arcsight-sfd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Convite para conectar-se no LinkedIn

2011-01-23 Thread Tom Hacohen
On Sat, Jan 22, 2011 at 10:51 AM, Michael Jennings m...@kainx.org wrote:

 mem...@linkedin.com is now banned from the -devel and -users mailing
 lists.



Why the hell did it take us so long? :P

-- 
Tom.
--
Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
Finally, a world-class log management solution at an even better price-free!
Download using promo code Free_Logger_4_Dev2Dev. Offer expires 
February 28th, so secure your free ArcSight Logger TODAY! 
http://p.sf.net/sfu/arcsight-sfd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Startup applications issues

2011-01-23 Thread Jeff Hoogland
So after talks about my issues with start up applications with a fresh user
creation in IRC last night, I am certain it is an efreet cache issue. I
removed LXDM and used GDM as the login manager and the startup applications
still fail to load without the cache being there.

Any ideas?

~Jeff Hoogland
--
Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
Finally, a world-class log management solution at an even better price-free!
Download using promo code Free_Logger_4_Dev2Dev. Offer expires 
February 28th, so secure your free ArcSight Logger TODAY! 
http://p.sf.net/sfu/arcsight-sfd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] [PATCH 1/2] Zero is a valid fd

2011-01-23 Thread Mike McCormack


The ecore_fb keyboard code may end up closing stdin.
The attached patch fixes this bug.

thanks,

Mike

From e8f8590fa52ea31021c02acf6603d5c5a40685cc Mon Sep 17 00:00:00 2001
From: Mike McCormack mj.mccorm...@samsung.com
Date: Wed, 15 Dec 2010 12:25:14 +0900
Subject: [PATCH 1/2] Zero is a valid fd

---
 trunk/ecore/src/lib/ecore_fb/ecore_fb_kbd.c |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/trunk/ecore/src/lib/ecore_fb/ecore_fb_kbd.c b/trunk/ecore/src/lib/ecore_fb/ecore_fb_kbd.c
index 5d2a6a6..8dcd29d 100644
--- a/trunk/ecore/src/lib/ecore_fb/ecore_fb_kbd.c
+++ b/trunk/ecore/src/lib/ecore_fb/ecore_fb_kbd.c
@@ -121,7 +121,7 @@ static const char *_ecore_fb_btn_syms[128] =
  0x7e, 
  0x7f
 };
-static int _ecore_fb_kbd_fd = 0;
+static int _ecore_fb_kbd_fd = -1;
 static int _ecore_fb_ctrl = 0;
 static int _ecore_fb_alt = 0;
 static int _ecore_fb_shift = 0;
@@ -296,7 +296,7 @@ ecore_fb_kbd_shutdown(void)
if (_ecore_fb_kbd_fd_handler_handle) 
   ecore_main_fd_handler_del(_ecore_fb_kbd_fd_handler_handle);
if (_ecore_fb_kbd_fd = 0) close(_ecore_fb_kbd_fd);
-   _ecore_fb_kbd_fd = 0;
+   _ecore_fb_kbd_fd = -1;
_ecore_fb_kbd_fd_handler_handle = NULL;
_ecore_fb_ctrl = 0;
_ecore_fb_lock = 0;
-- 
1.7.0.4

--
Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
Finally, a world-class log management solution at an even better price-free!
Download using promo code Free_Logger_4_Dev2Dev. Offer expires 
February 28th, so secure your free ArcSight Logger TODAY! 
http://p.sf.net/sfu/arcsight-sfd2d___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] [PATCH 2/2] Zero is a valid fd value

2011-01-23 Thread Mike McCormack


ecore_config code may end up closing stdin, due to assuming 0 is a valid fd.

I know this code is deprecated, and it's being kept around for reference.

Either:
A) this bug should still be fixed so bad code is not copied elsewhere

OR

B) ecore_config should be deleted so bad code is not copied elsewhere

thanks,

Mike
From 0a3dd60144f2d268527a560987a5d359afedf59a Mon Sep 17 00:00:00 2001
From: Mike McCormack mj.mccorm...@samsung.com
Date: Mon, 13 Dec 2010 16:23:58 +0900
Subject: [PATCH 2/2] Zero is a valid fd value

---
 trunk/ecore/src/lib/ecore_config/ecore_config.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/trunk/ecore/src/lib/ecore_config/ecore_config.c b/trunk/ecore/src/lib/ecore_config/ecore_config.c
index ddfc64f..d8b587e 100644
--- a/trunk/ecore/src/lib/ecore_config/ecore_config.c
+++ b/trunk/ecore/src/lib/ecore_config/ecore_config.c
@@ -1636,7 +1636,7 @@ ecore_config_init_global(const char *name)
 	snprintf(buf, PATH_MAX, %s/.ecore/%s/.global, p, name);
 	global = creat(buf, S_IRWXU);
 
-	if (global)
+	if (global = 0)
 	   close(global);
 
 	free(buf);
-- 
1.7.0.4

--
Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
Finally, a world-class log management solution at an even better price-free!
Download using promo code Free_Logger_4_Dev2Dev. Offer expires 
February 28th, so secure your free ArcSight Logger TODAY! 
http://p.sf.net/sfu/arcsight-sfd2d___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [PATCH 1/2] Zero is a valid fd

2011-01-23 Thread Mike Blumenkrantz
On Mon, 24 Jan 2011 10:54:13 +0900
Mike McCormack mj.mccorm...@samsung.com wrote:

 
 The ecore_fb keyboard code may end up closing stdin.
 The attached patch fixes this bug.
 
 thanks,
 
 Mike
 
im

-- 
Mike Blumenkrantz
Zentific: NULL pointer dereferences now 50% off!

--
Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
Finally, a world-class log management solution at an even better price-free!
Download using promo code Free_Logger_4_Dev2Dev. Offer expires 
February 28th, so secure your free ArcSight Logger TODAY! 
http://p.sf.net/sfu/arcsight-sfd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [PATCH 2/2] Zero is a valid fd value

2011-01-23 Thread Mike Blumenkrantz
On Mon, 24 Jan 2011 10:58:26 +0900
Mike McCormack mj.mccorm...@samsung.com wrote:

 From: Mike McCormack mj.mccorm...@samsung.com
 To: enlightenment-devel@lists.sourceforge.net
 Subject: [E-devel] [PATCH 2/2] Zero is a valid fd value
 Date: Mon, 24 Jan 2011 10:58:26 +0900
 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.15)
 Gecko/20101027 Thunderbird/3.0.10
 
 
 ecore_config code may end up closing stdin, due to assuming 0 is a valid fd.
 
 I know this code is deprecated, and it's being kept around for reference.
 
 Either:
 A) this bug should still be fixed so bad code is not copied elsewhere
 
 OR
 
 B) ecore_config should be deleted so bad code is not copied elsewhere
 
 thanks,
 
 Mike
in

-- 
Mike Blumenkrantz
Zentific: NULL pointer dereferences now 50% off!

--
Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
Finally, a world-class log management solution at an even better price-free!
Download using promo code Free_Logger_4_Dev2Dev. Offer expires 
February 28th, so secure your free ArcSight Logger TODAY! 
http://p.sf.net/sfu/arcsight-sfd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [PATCH 2/2] Zero is a valid fd value

2011-01-23 Thread Vincent Torri


On Mon, 24 Jan 2011, Mike McCormack wrote:


 ecore_config code may end up closing stdin, due to assuming 0 is a valid fd.

 I know this code is deprecated, and it's being kept around for reference.

 Either:
 A) this bug should still be fixed so bad code is not copied elsewhere

 OR

 B) ecore_config should be deleted so bad code is not copied elsewhere

imho, B) with a file in it saying at which revision it has been deleted

Vincent

--
Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
Finally, a world-class log management solution at an even better price-free!
Download using promo code Free_Logger_4_Dev2Dev. Offer expires 
February 28th, so secure your free ArcSight Logger TODAY! 
http://p.sf.net/sfu/arcsight-sfd2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel