Re: [E-devel] Enna segv when playing OGG, MP3, AVI

2008-09-03 Thread Nicolas Aguirre
2008/9/3 Will Keaney [EMAIL PROTECTED]

 I decided to try Enna out a couple of days ago, and must say I am very
 impressed by the interface.  However, whenever I try to play a media
 file, Enna segfaults.
 I have attached a full backtrace from gdb.  Please let me know if any
 additional information is needed.

 Will


First thanks for your comments and your report :)
I would like to know which backend u are using to play media ? You can
choose between liplayer (libplayer.geexbox.org)
http://libplayer.geexbox.organd
emotion in $HOME/.enna/enna.cfg. I have mostly test enna with libplayer, but
emotion should play music.
In stdout you should find informations about plugins loaded at startup. Some
time emotion plugin is not load. So it's maybe the reason why you have this
segfault.
However video playing is not possible yet with emotion backend, but I plan
to implement this soon.

Could you please said me if you have lines like  :
Trying to load enna_emotion_plugin
Unable to load enna_emotion_plugin

Regards,
Nico

-- 
Nicolas Aguirre
Mail: [EMAIL PROTECTED]
Web: http://www.digital-corner.org
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Battery module patch.

2008-09-03 Thread Chidambar 'ilLogict' Zinnoury
 Hello!

Dans son message intitulé « Re: [E-devel] Battery module patch. »
du Wed, 03 Sep 2008 08:58:23 +0300, Bauland Stephane
[EMAIL PROTECTED] nous a donné l'occasion de lire :

 Nick Hughart wrote:
  Stéphane BAULAND wrote:
  Hi,
 
  This patch is just a simple patch. I had problem using the battery
  module, it wasn't working for me. I was bored and i look to
  sources of badget... The problem comes from the name of the device.
 
  For me the battery path is : /sys/class/power_supply/C1FD/ and the
  module was looking to a name that begin by bat i just removed
  this check.

  You can't just remove this check.  The reason this check exists is 
  because there can be AC data in the power_supply directory as
  well. We'll have to come up with a better way to determine if the
  supply is a battery or not.
 Ok, i will patch it back this evening. I found the way :
 
 $ cat /sys/class/power_supply/C1FD/type  
 Battery
 $ cat /sys/class/power_supply/C1FB/type
 Mains
 
 I will add a check to find entry with a battery type.

 I'm currently working on it, + support for new battery detection. Hope
to send a patch soon.

 Cheers!

 Chidambar


signature.asc
Description: PGP signature
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] Gadman feature request

2008-09-03 Thread Nikolas Arend
Hi,

Currently when unhiding the gadgets the desktop and everything on it are 
replaced by a gray background on which the (hidden) gadgets are shown. I 
don't know if that's technically feasible, but it would be nice to have 
the option to still see the desktop/windows instead and just bring 
forward the gadgets. I don't have shelves (using itask-ng) and make use 
of the 'Show Desktop' or 'Unhide Gadgets' feature to access them. But 
with the pager that's a bit inconvenient: either I show the desktop 
iconifying all windows to access the pager, but then I can't drag any 
windows around in it (because they're all iconified). Or I set the pager 
gadget behavior to On top pressing..., in which case I don't see the 
actual windows I'm dragging around, only their miniature versions in the 
pager.


Thanks a lot and best regards,

Nick.

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Battery module patch.

2008-09-03 Thread Bauland Stephane

Chidambar 'ilLogict' Zinnoury wrote:

 Hello!

Dans son message intitulé « Re: [E-devel] Battery module patch. »
du Wed, 03 Sep 2008 08:58:23 +0300, Bauland Stephane
[EMAIL PROTECTED] nous a donné l'occasion de lire :

  

Nick Hughart wrote:


Stéphane BAULAND wrote:
  

Hi,

This patch is just a simple patch. I had problem using the battery
module, it wasn't working for me. I was bored and i look to
sources of badget... The problem comes from the name of the device.

For me the battery path is : /sys/class/power_supply/C1FD/ and the
module was looking to a name that begin by bat i just removed
this check.
  

You can't just remove this check.  The reason this check exists is 
because there can be AC data in the power_supply directory as

well. We'll have to come up with a better way to determine if the
supply is a battery or not.
  

Ok, i will patch it back this evening. I found the way :

$ cat /sys/class/power_supply/C1FD/type  
Battery

$ cat /sys/class/power_supply/C1FB/type
Mains

I will add a check to find entry with a battery type.



 I'm currently working on it, + support for new battery detection. Hope
to send a patch soon.

 Cheers!

 Chidambar
  

I finish this patch to check battery type.

See you

--
Bauland 'rookmoot' Stephane| Epitech lille
Assistant Epitech Roux | [EMAIL PROTECTED]
~ eh tizot, ti quere el'pitech ? hein ? - bah ouai t'inquiete ! ~

Index: batget.c
===
--- batget.c	(revision 35795)
+++ batget.c	(working copy)
@@ -603,6 +603,24 @@
  }
 }
 
+static int
+linux_sys_class_power_supply_is_battery(char *name)
+{
+  int fd;
+  char buf[255];
+  char tmp[255];
+
+  memset(tmp, 0, 255);
+  snprintf(buf, 255, /sys/class/power_supply/%s/type, name);
+  if (!(fd = open(buf, O_RDONLY)))
+return 0;
+  if (read(fd, tmp, 255)  1)
+return 0;
+  if (!strncmp(tmp, Battery, 7))
+return 1;
+  return 0;
+}
+
 static void
 linux_sys_class_power_supply_init(void)
 {
@@ -627,8 +645,9 @@
 	 while ((name = ecore_list_next(bats)))
 	   {
 		  Sys_Class_Power_Supply_Uevent *sysev;
-	 
-		  if (strncasecmp(bat, name, 3)) continue;
+
+		  if (!(linux_sys_class_power_supply_is_battery(name)))
+		continue;
 		  sysev = E_NEW(Sys_Class_Power_Supply_Uevent, 1);
 		  sysev-name = strdup(name);
 		  snprintf(buf, sizeof(buf), /sys/class/power_supply/%s/uevent, name);
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] eet and jpeg reading

2008-09-03 Thread Cedric BAIL
On Tue, Sep 2, 2008 at 10:16 PM, Dave Andreoli [EMAIL PROTECTED] wrote:
 - Cedric BAIL [EMAIL PROTECTED] ha scritto:
 On Thu, Aug 21, 2008 at 3:47 PM, Joerg Sonnenberger
 [EMAIL PROTECTED] wrote:
 Ok, I fixed your patch and commited it. It should work fine, but if
 not please report any failure regarding eet and compressed image to
 me.

 Hi... some work for you :P

 The editor cannot import jpg images anymore, in my tests
 edje_cc segv when you use a jpg image and set it LOSSY.

 You can try any edc that use jpg with LOSSY like this:
 
 images {
   image: mem.jpg LOSSY 90;
 }
 collections {
   group {
  name: icon;
  parts {
 part {
name: image;
type: IMAGE;
description {
   state: default 0.00;
   image {
  normal: mem.jpg;
   }
}
 }
  }
   }
 }
 
 This is the simplest test case I can provide. It segv when you compile it, 
 break
 in eet_image.c on line 705

 The editor in fact import all the images as LOSSY 100, and now
 segv when loading jpg. I have tested with previous revision and works well.

 Let me know if you need more info ;)

Thanks for the test case, I can reproduce the problem with the help of valgrind.

-- 
Cedric BAIL

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] eet and jpeg reading

2008-09-03 Thread Dave Andreoli

- Carsten Haitzler (The Rasterman) [EMAIL PROTECTED] ha scritto:

 On Wed, 3 Sep 2008 02:28:06 +0200 (CEST) Dave Andreoli
 [EMAIL PROTECTED]
 babbled:
 
  
  - Carsten Haitzler (The Rasterman) [EMAIL PROTECTED] ha
 scritto:
  
   On Tue, 2 Sep 2008 22:16:50 +0200 (CEST) Dave Andreoli
   [EMAIL PROTECTED]
   babbled:
   

- Cedric BAIL [EMAIL PROTECTED] ha scritto:

 On Thu, Aug 21, 2008 at 3:47 PM, Joerg Sonnenberger
 [EMAIL PROTECTED] wrote:
  On Thu, Aug 21, 2008 at 11:38:32AM +0200, Cedric BAIL
 wrote:
  Ok, just testing it and reviewing it. Could you tell me
 why
   you
 did
  change this code, doesn't look like it's related to the
 other
 change.
 
  I have no idea where that change comes from. I suspect some
   merge
  failure from cvs.
 
   Do you get timeouts from the test-suite as well?
 
  We have currently to test that fail :
  Eet Data Encoding/Decoding:eet_test_data_type_dump_undump
  Eet File:eet_file_data_dump_test
 
  due to a bug related to the handle of EET_G_UNKNOWN in
  _eet_data_dump_encode. But other test should work just
 fine.
 
  I did just run the tests with the new patch, and I am
 still
  experiencing failure :
 
  eet_suite.c:947:F:Eet Image:eet_image:0: Failure 'result ==
 0'
 occured
  eet_suite.c:1161:F:Eet Image:eet_small_image:0: Failure
   'data[0] !=
 IM0' occured
 
  I get a timeout for this test as well. Which is why I ask.
 
 Ok, I fixed your patch and commited it. It should work fine,
 but
   if
 not please report any failure regarding eet and compressed
 image
   to
 me.

Hi... some work for you :P

The editor cannot import jpg images anymore, in my tests 
edje_cc segv when you use a jpg image and set it LOSSY.

You can try any edc that use jpg with LOSSY like this:

images {
   image: mem.jpg LOSSY 90;
}
collections {
   group {
  name: icon;
  parts {
 part {
name: image;
type: IMAGE;
description {
   state: default 0.00;
   image {
  normal: mem.jpg;
   }
}
 }
  }
   }
}

This is the simplest test case I can provide. It segv when you
   compile it,
break in eet_image.c on line 705


The editor in fact import all the images as LOSSY 100, and now 
segv when loading jpg. I have tested with previous revision and
   works well.

Let me know if you need more info ;)

Dave
   
   just tried:
   
 images {
image: vgrad_dark.png COMP; /* the encoding method is
   COMP. this
   * is lossless, but
 compressed
   */
image: grill_dark_tiny_pattern.png LOSSY 90;
   
   ...
   
   no segv. :/
  
  'cause you are using a png. The problem occur only with jpg...
  ...as the mail subject say  ;)
 
 source format shouldnt matter.. and it works for me:

The segv is in the function eet_data_image_jpeg_convert()...
strange that works for you :/

 
 11:06AM ~  cat t.edc
 images {
image: t.jpg LOSSY 90;
 }
 collections {
group {
   name: icon;
   parts {
  part {
 name: image;
 type: IMAGE;
 description {
state: default 0.00;
image {
   normal: t.jpg;
}
 }
  }
   }
}
 }
 11:06AM ~  file t.jpg
 t.jpg: JPEG image data, JFIF standard 1.01
 11:06AM ~  edje_cc t.edc
 11:06AM ~  
 
 :(
 
 -- 
 - Codito, ergo sum - I code, therefore I am
 --
 The Rasterman (Carsten Haitzler)[EMAIL PROTECTED]

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Gadman feature request

2008-09-03 Thread Dave Andreoli

- Nikolas Arend [EMAIL PROTECTED] ha scritto:

 Hi,
 
 Currently when unhiding the gadgets the desktop and everything on it
 are 
 replaced by a gray background on which the (hidden) gadgets are shown.
 I 
 don't know if that's technically feasible, but it would be nice to
 have 
 the option to still see the desktop/windows instead and just bring 
 forward the gadgets. I don't have shelves (using itask-ng) and make
 use 
 of the 'Show Desktop' or 'Unhide Gadgets' feature to access them. But
 
 with the pager that's a bit inconvenient: either I show the desktop 
 iconifying all windows to access the pager, but then I can't drag any
 
 windows around in it (because they're all iconified). Or I set the
 pager 
 gadget behavior to On top pressing..., in which case I don't see the
 
 actual windows I'm dragging around, only their miniature versions in
 the 
 pager.

Are you using a composite manager? in that case the gray background 
should be semitrnsparent, allowing you to see your windows.
Or you can change the e theme to make the gray (that is white in real)
background look full transparent.

Hope this can help

Dave

 
 
 Thanks a lot and best regards,
 
 Nick.
 
 -
 This SF.Net email is sponsored by the Moblin Your Move Developer's
 challenge
 Build the coolest Linux based applications with Moblin SDK  win great
 prizes
 Grand prize is a trip for two to an Open Source event anywhere in the
 world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Gadman feature request

2008-09-03 Thread Nikolas Arend
Dave Andreoli wrote:
 - Nikolas Arend [EMAIL PROTECTED] ha scritto:

   
 Hi,

 Currently when unhiding the gadgets the desktop and everything on it
 are 
 replaced by a gray background on which the (hidden) gadgets are shown.
 I 
 don't know if that's technically feasible, but it would be nice to
 have 
 the option to still see the desktop/windows instead and just bring 
 forward the gadgets. I don't have shelves (using itask-ng) and make
 use 
 of the 'Show Desktop' or 'Unhide Gadgets' feature to access them. But

 with the pager that's a bit inconvenient: either I show the desktop 
 iconifying all windows to access the pager, but then I can't drag any

 windows around in it (because they're all iconified). Or I set the
 pager 
 gadget behavior to On top pressing..., in which case I don't see the

 actual windows I'm dragging around, only their miniature versions in
 the 
 pager.
 

 Are you using a composite manager? in that case the gray background 
 should be semitrnsparent, allowing you to see your windows.
   

Hi,

and thanks for your answer! No, I'm not using a composite manager since 
it's too unstable and slowing down the performance noticeably here.

 Or you can change the e theme to make the gray (that is white in real)
 background look full transparent.
   
Ok, I could do that. But would it be possible to have an option to make 
the background transparent, like for the itask-ng panel ('Show 
Background Box' option)?

Best,   Nick.


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Gadman feature request

2008-09-03 Thread Luca De Marini


 Are you using a composite manager? in that case the gray background
 should be semitrnsparent, allowing you to see your windows.
 Or you can change the e theme to make the gray (that is white in real)
 background look full transparent.

 Hope this can help


Just do add a feedback, the semitransparent feature does not work correctly
with xcompmgr or even with Bling. There are a lot of graphical glitches,
errors and not all of the modules are correctly visible. When bringing to
front and than back to the hidden layer the gadgets several times (windows+g
several times) then it all becomes even more crappy and at the end it is
impossible to use it... so I usually do not use composite with gadgets...
thought it was known and a work in progress :)

Luca
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Gadman feature request

2008-09-03 Thread Luca De Marini
Just a personal report, Xcompmgr and Bling both work very well for me,
xcompmgr is rock stable even if there are some graphic glitches with E
sometimes, when you close a window. Bling is ok, a little heavy maybe but
very nice and never crashed ON ME. Plus, I have to say, in our forums
(OpenGEU) we never had people complaining about xcompmgr or Bling and people
use to complain about a lot of other E and not E related stuff, believe me
;)
That was just to say that IMHO, both xcompmgr and bling are not that bad..
sure Bang and Echomorph are still unusable.
Bye,

Luca



2008/9/3 Viktor Kojouharov [EMAIL PROTECTED]

 What composite manager are you supposed to use? xcompmgr is just a
 proof-of-concept. Bling doesn't work that well. Bang is slow as hell.
 And now one actually knows how to set up Ecomorph.

 From the only time I've played with the gadman, when I  bring up the
 gadget, I don't see them, just gray color.

 On Wed, 2008-09-03 at 11:52 +0200, Dave Andreoli wrote:
  - Nikolas Arend [EMAIL PROTECTED] ha scritto:
 
   Hi,
  
   Currently when unhiding the gadgets the desktop and everything on it
   are
   replaced by a gray background on which the (hidden) gadgets are shown.
   I
   don't know if that's technically feasible, but it would be nice to
   have
   the option to still see the desktop/windows instead and just bring
   forward the gadgets. I don't have shelves (using itask-ng) and make
   use
   of the 'Show Desktop' or 'Unhide Gadgets' feature to access them. But
  
   with the pager that's a bit inconvenient: either I show the desktop
   iconifying all windows to access the pager, but then I can't drag any
  
   windows around in it (because they're all iconified). Or I set the
   pager
   gadget behavior to On top pressing..., in which case I don't see the
  
   actual windows I'm dragging around, only their miniature versions in
   the
   pager.
 
  Are you using a composite manager? in that case the gray background
  should be semitrnsparent, allowing you to see your windows.
  Or you can change the e theme to make the gray (that is white in real)
  background look full transparent.
 
  Hope this can help
 
  Dave
 
  
  
   Thanks a lot and best regards,
  
   Nick.
  
  
 -
   This SF.Net email is sponsored by the Moblin Your Move Developer's
   challenge
   Build the coolest Linux based applications with Moblin SDK  win great
   prizes
   Grand prize is a trip for two to an Open Source event anywhere in the
   world
   http://moblin-contest.org/redirect.php?banner_id=100url=/
   ___
   enlightenment-devel mailing list
   enlightenment-devel@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 
  -
  This SF.Net email is sponsored by the Moblin Your Move Developer's
 challenge
  Build the coolest Linux based applications with Moblin SDK  win great
 prizes
  Grand prize is a trip for two to an Open Source event anywhere in the
 world
  http://moblin-contest.org/redirect.php?banner_id=100url=/
  ___
  enlightenment-devel mailing list
  enlightenment-devel@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


 -
 This SF.Net email is sponsored by the Moblin Your Move Developer's
 challenge
 Build the coolest Linux based applications with Moblin SDK  win great
 prizes
 Grand prize is a trip for two to an Open Source event anywhere in the world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] eet and jpeg reading

2008-09-03 Thread Cedric BAIL
On Wed, Sep 3, 2008 at 11:45 AM, Dave Andreoli [EMAIL PROTECTED] wrote:
 - Carsten Haitzler (The Rasterman) [EMAIL PROTECTED] ha scritto:
 On Wed, 3 Sep 2008 02:28:06 +0200 (CEST) Dave Andreoli
 [EMAIL PROTECTED]
 babbled:

 
  - Carsten Haitzler (The Rasterman) [EMAIL PROTECTED] ha
 scritto:
 
   On Tue, 2 Sep 2008 22:16:50 +0200 (CEST) Dave Andreoli
   [EMAIL PROTECTED]
   babbled:
  
   
- Cedric BAIL [EMAIL PROTECTED] ha scritto:
   
 On Thu, Aug 21, 2008 at 3:47 PM, Joerg Sonnenberger
 [EMAIL PROTECTED] wrote:
  On Thu, Aug 21, 2008 at 11:38:32AM +0200, Cedric BAIL
 wrote:
  Ok, just testing it and reviewing it. Could you tell me
 why
   you
 did
  change this code, doesn't look like it's related to the
 other
 change.
 
  I have no idea where that change comes from. I suspect some
   merge
  failure from cvs.
 
   Do you get timeouts from the test-suite as well?
 
  We have currently to test that fail :
  Eet Data Encoding/Decoding:eet_test_data_type_dump_undump
  Eet File:eet_file_data_dump_test
 
  due to a bug related to the handle of EET_G_UNKNOWN in
  _eet_data_dump_encode. But other test should work just
 fine.
 
  I did just run the tests with the new patch, and I am
 still
  experiencing failure :
 
  eet_suite.c:947:F:Eet Image:eet_image:0: Failure 'result ==
 0'
 occured
  eet_suite.c:1161:F:Eet Image:eet_small_image:0: Failure
   'data[0] !=
 IM0' occured
 
  I get a timeout for this test as well. Which is why I ask.

 Ok, I fixed your patch and commited it. It should work fine,
 but
   if
 not please report any failure regarding eet and compressed
 image
   to
 me.
   
Hi... some work for you :P
   
The editor cannot import jpg images anymore, in my tests
edje_cc segv when you use a jpg image and set it LOSSY.
   
You can try any edc that use jpg with LOSSY like this:

images {
   image: mem.jpg LOSSY 90;
}
collections {
   group {
  name: icon;
  parts {
 part {
name: image;
type: IMAGE;
description {
   state: default 0.00;
   image {
  normal: mem.jpg;
   }
}
 }
  }
   }
}

This is the simplest test case I can provide. It segv when you
   compile it,
break in eet_image.c on line 705
   
   
The editor in fact import all the images as LOSSY 100, and now
segv when loading jpg. I have tested with previous revision and
   works well.
   
Let me know if you need more info ;)
   
Dave
  
   just tried:
  
 images {
image: vgrad_dark.png COMP; /* the encoding method is
   COMP. this
   * is lossless, but
 compressed
   */
image: grill_dark_tiny_pattern.png LOSSY 90;
  
   ...
  
   no segv. :/
 
  'cause you are using a png. The problem occur only with jpg...
  ...as the mail subject say  ;)

 source format shouldnt matter.. and it works for me:

 The segv is in the function eet_data_image_jpeg_convert()...
 strange that works for you :/

I found the source of the problem, jpeg_write_scanlines could fail in
some case when you are not dumping to a FILE*. So it should depend on
the file you are compressing too. I will shortly commit the fixed
version and every thing should work fine this time :-)

-- 
Cedric BAIL

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Gadman feature request

2008-09-03 Thread Dave Andreoli

- Nikolas Arend [EMAIL PROTECTED] ha scritto:

 Dave Andreoli wrote:
  - Nikolas Arend [EMAIL PROTECTED] ha scritto:
 

  Hi,
 
  Currently when unhiding the gadgets the desktop and everything on
 it
  are 
  replaced by a gray background on which the (hidden) gadgets are
 shown.
  I 
  don't know if that's technically feasible, but it would be nice to
  have 
  the option to still see the desktop/windows instead and just bring
 
  forward the gadgets. I don't have shelves (using itask-ng) and
 make
  use 
  of the 'Show Desktop' or 'Unhide Gadgets' feature to access them.
 But
 
  with the pager that's a bit inconvenient: either I show the desktop
 
  iconifying all windows to access the pager, but then I can't drag
 any
 
  windows around in it (because they're all iconified). Or I set the
  pager 
  gadget behavior to On top pressing..., in which case I don't see
 the
 
  actual windows I'm dragging around, only their miniature versions
 in
  the 
  pager.
  
 
  Are you using a composite manager? in that case the gray background
 
  should be semitrnsparent, allowing you to see your windows.

 
 Hi,
 
 and thanks for your answer! No, I'm not using a composite manager
 since 
 it's too unstable and slowing down the performance noticeably here.
 
  Or you can change the e theme to make the gray (that is white in
 real)
  background look full transparent.

 Ok, I could do that. But would it be possible to have an option to
 make 
 the background transparent, like for the itask-ng panel ('Show 
 Background Box' option)?
 

Yes, I will do this very soon (maybe tomorrow), was on my TODO list,
also with the ability to choose the color.

Dave


 Best,   Nick.
 
 
 -
 This SF.Net email is sponsored by the Moblin Your Move Developer's
 challenge
 Build the coolest Linux based applications with Moblin SDK  win great
 prizes
 Grand prize is a trip for two to an Open Source event anywhere in the
 world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Gadman feature request

2008-09-03 Thread Nikolas Arend
Dave Andreoli wrote:
 - Nikolas Arend [EMAIL PROTECTED] ha scritto:

   
 Dave Andreoli wrote:
 
 - Nikolas Arend [EMAIL PROTECTED] ha scritto:

   
   
 Hi,

 Currently when unhiding the gadgets the desktop and everything on
 
 it
 
 are 
 replaced by a gray background on which the (hidden) gadgets are
 
 shown.
 
 I 
 don't know if that's technically feasible, but it would be nice to
 have 
 the option to still see the desktop/windows instead and just bring
 
 forward the gadgets. I don't have shelves (using itask-ng) and
 
 make
 
 use 
 of the 'Show Desktop' or 'Unhide Gadgets' feature to access them.
 
 But
 
 with the pager that's a bit inconvenient: either I show the desktop
 
 iconifying all windows to access the pager, but then I can't drag
 
 any
 
 windows around in it (because they're all iconified). Or I set the
 pager 
 gadget behavior to On top pressing..., in which case I don't see
 
 the
 
 actual windows I'm dragging around, only their miniature versions
 
 in
 
 the 
 pager.
 
 
 Are you using a composite manager? in that case the gray background
   
 should be semitrnsparent, allowing you to see your windows.
   
   
 Hi,

 and thanks for your answer! No, I'm not using a composite manager
 since 
 it's too unstable and slowing down the performance noticeably here.

 
 Or you can change the e theme to make the gray (that is white in
   
 real)
 
 background look full transparent.
   
   
 Ok, I could do that. But would it be possible to have an option to
 make 
 the background transparent, like for the itask-ng panel ('Show 
 Background Box' option)?

 

 Yes, I will do this very soon (maybe tomorrow), was on my TODO list,
 also with the ability to choose the color.

   

Great, thanks! I think I'll wait then before hacking the theme ;-)

Best,Nick


 Dave


   
 Best,   Nick.


 -
 This SF.Net email is sponsored by the Moblin Your Move Developer's
 challenge
 Build the coolest Linux based applications with Moblin SDK  win great
 prizes
 Grand prize is a trip for two to an Open Source event anywhere in the
 world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 

 -
 This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
 Build the coolest Linux based applications with Moblin SDK  win great prizes
 Grand prize is a trip for two to an Open Source event anywhere in the world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

   


-- 

Nikolas Arend
Kirchmairstr. 9
D-80686 Muenchen

Tel: +49-89-36100584
Fax: +49-89-36106184
Email: [EMAIL PROTECTED]



-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Gadman feature request

2008-09-03 Thread Dave Andreoli

- Luca De Marini [EMAIL PROTECTED] ha scritto:

 Are you using a composite manager? in that case the gray background
 should be semitrnsparent, allowing you to see your windows.
 Or you can change the e theme to make the gray (that is white in real)
 background look full transparent.
 
 Hope this can help
 
 
 Just do add a feedback, the semitransparent feature does not work
 correctly with xcompmgr or even with Bling. There are a lot of
 graphical glitches, errors and not all of the modules are correctly
 visible. When bringing to front and than back to the hidden layer the
 gadgets several times (windows+g several times) then it all becomes
 even more crappy and at the end it is impossible to use it... so I
 usually do not use composite with gadgets... thought it was known and
 a work in progress :)
 
 Luca

... no, it wasn't know; I use gadgets with bling on my working station
all the day from the last year and never get error or glitches.

I can try to make it a little faster, maybe removing the fade effect.
I will work on this in the next days, so if you have other problem/request
please report it now.

Dave


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Gadman feature request

2008-09-03 Thread The Rasterman
On Wed, 3 Sep 2008 13:49:33 +0200 (CEST) Dave Andreoli [EMAIL PROTECTED]
babbled:

 Yes, I will do this very soon (maybe tomorrow), was on my TODO list,
 also with the ability to choose the color.

or just be able to select the theme/object or Wallpaper :)

also being able to have modules be different on different virtual desktops
would be nice... maybe... one day... :)

 Dave
 
 
  Best,   Nick.
  
  
  -
  This SF.Net email is sponsored by the Moblin Your Move Developer's
  challenge
  Build the coolest Linux based applications with Moblin SDK  win great
  prizes
  Grand prize is a trip for two to an Open Source event anywhere in the
  world
  http://moblin-contest.org/redirect.php?banner_id=100url=/
  ___
  enlightenment-devel mailing list
  enlightenment-devel@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 
 -
 This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
 Build the coolest Linux based applications with Moblin SDK  win great prizes
 Grand prize is a trip for two to an Open Source event anywhere in the world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 


-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)[EMAIL PROTECTED]


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Gadman feature request

2008-09-03 Thread Dave Andreoli

- Carsten Haitzler (The Rasterman) [EMAIL PROTECTED] ha scritto:

 On Wed, 3 Sep 2008 13:49:33 +0200 (CEST) Dave Andreoli
 [EMAIL PROTECTED]
 babbled:
 
  Yes, I will do this very soon (maybe tomorrow), was on my TODO
 list,
  also with the ability to choose the color.
 
 or just be able to select the theme/object or Wallpaper :)

Wallpaper is intresting, but I don't understand what you mean by theme/object?

 
 also being able to have modules be different on different virtual
 desktops
 would be nice... maybe... one day... :)

Also on my TODO list, but I need to investigate on this.

Thanks
Dave

 
  Dave
  
  
   Best,   Nick.
   
   
  
 -
   This SF.Net email is sponsored by the Moblin Your Move
 Developer's
   challenge
   Build the coolest Linux based applications with Moblin SDK  win
 great
   prizes
   Grand prize is a trip for two to an Open Source event anywhere in
 the
   world
   http://moblin-contest.org/redirect.php?banner_id=100url=/
   ___
   enlightenment-devel mailing list
   enlightenment-devel@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
  
 
 -
  This SF.Net email is sponsored by the Moblin Your Move Developer's
 challenge
  Build the coolest Linux based applications with Moblin SDK  win
 great prizes
  Grand prize is a trip for two to an Open Source event anywhere in
 the world
  http://moblin-contest.org/redirect.php?banner_id=100url=/
  ___
  enlightenment-devel mailing list
  enlightenment-devel@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
  
 
 
 -- 
 - Codito, ergo sum - I code, therefore I am
 --
 The Rasterman (Carsten Haitzler)[EMAIL PROTECTED]

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Gadman feature request

2008-09-03 Thread Nikolas Arend
Dave Andreoli wrote:
 I will work on this in the next days, so if you have other problem/request
 please report it now.
   

Well, in that case... ;-)
I experienced crashes and freezes with gadgets added to itask-ng. I 
don't have a backtrace of this yet, but can provide one if needed. Not 
sure whether it's itask-ng's or gadman's problem, though. Also certain 
gadgets don't work as expected when added to itask-ng, they would 
occasionally lose focus (eg. language or tclock) so that accessing 
their config menus or clicking on them doesn't work any more. Only thing 
that helps is an e restart. But then again, that could just as well be 
an itask-ng flaw.
I guess I should mention that I have an nvidia Quadro card using the 
nvidia driver.

Nick.


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Gadman feature request

2008-09-03 Thread Dave Andreoli

- Nikolas Arend [EMAIL PROTECTED] ha scritto:

 Dave Andreoli wrote:
  I will work on this in the next days, so if you have other
 problem/request
  please report it now.

 
 Well, in that case... ;-)
 I experienced crashes and freezes with gadgets added to itask-ng. I 
 don't have a backtrace of this yet, but can provide one if needed. Not
 
 sure whether it's itask-ng's or gadman's problem, though. Also certain
 
 gadgets don't work as expected when added to itask-ng, they would 
 occasionally lose focus (eg. language or tclock) so that accessing 
 their config menus or clicking on them doesn't work any more. Only
 thing 
 that helps is an e restart. But then again, that could just as well be
 
 an itask-ng flaw.
 I guess I should mention that I have an nvidia Quadro card using the 
 nvidia driver.

This is an itask problem, you should report this at the author.
Gadman only manage gadgets on the desktop.

Dave

 
 Nick.
 
 
 -
 This SF.Net email is sponsored by the Moblin Your Move Developer's
 challenge
 Build the coolest Linux based applications with Moblin SDK  win great
 prizes
 Grand prize is a trip for two to an Open Source event anywhere in the
 world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Gadman feature request

2008-09-03 Thread Daniel Kasak
On Wed, 2008-09-03 at 12:32 +0200, Viktor Kojouharov wrote:

 What composite manager are you supposed to use? xcompmgr is just a
 proof-of-concept. Bling doesn't work that well. Bang is slow as hell.

Ha! Doesn't even work on mine at all ( nvidia only I think ).

 And now one actually knows how to set up Ecomorph.

??? I know. So do others. Have you looked at
http://code.google.com/p/itask-module/wiki/Stuff ? I've set up a number
of systems with ecomorph ( Gentoo and Ubuntu ) and it wasn't too hard on
either ( a bit more work on Ubuntu ). The problem at the moment is that
Ecomorph hasn't been updated in almost 6 months, and most likely the
modified E tree that you have to use doesn't compile against current
libraries ( though admittedly I haven't tried ). Also you have to hack
things up a bit for it to compile ( from memory there were problems with
I18N stuff or something - I think I just deleted some .po files and it
worked ).

Anyway, I can give you help with getting Ecomorph going if you need.
IMHO it's the best thing that happened to E in years ( yes, never-ending
re-writing of libraries included in comparison ).

Dan

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Gadman feature request

2008-09-03 Thread Luca De Marini
See, here are some screens:

http://opengeu.intilinux.com/screenshots/gadmanbug1.jpg
http://opengeu.intilinux.com/screenshots/gadmanbug2.jpg
http://opengeu.intilinux.com/screenshots/gadmanbug3.jpg

In the first one you can see how it looks when it's the first time I load
the hidden layer with bling activated. Then the second and the third screens
are how things look like when I call the hidden layer again and again...
I really hope it helps. Should it always look like in the first screen it
would already be fantastic :)
Bye,

Luca


2008/9/3 Dave Andreoli [EMAIL PROTECTED]


 - Nikolas Arend [EMAIL PROTECTED] ha scritto:

  Dave Andreoli wrote:
   I will work on this in the next days, so if you have other
  problem/request
   please report it now.
  
 
  Well, in that case... ;-)
  I experienced crashes and freezes with gadgets added to itask-ng. I
  don't have a backtrace of this yet, but can provide one if needed. Not
 
  sure whether it's itask-ng's or gadman's problem, though. Also certain
 
  gadgets don't work as expected when added to itask-ng, they would
  occasionally lose focus (eg. language or tclock) so that accessing
  their config menus or clicking on them doesn't work any more. Only
  thing
  that helps is an e restart. But then again, that could just as well be
 
  an itask-ng flaw.
  I guess I should mention that I have an nvidia Quadro card using the
  nvidia driver.

 This is an itask problem, you should report this at the author.
 Gadman only manage gadgets on the desktop.

 Dave

 
  Nick.
 
 
  -
  This SF.Net email is sponsored by the Moblin Your Move Developer's
  challenge
  Build the coolest Linux based applications with Moblin SDK  win great
  prizes
  Grand prize is a trip for two to an Open Source event anywhere in the
  world
  http://moblin-contest.org/redirect.php?banner_id=100url=/
  ___
  enlightenment-devel mailing list
  enlightenment-devel@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

 -
 This SF.Net email is sponsored by the Moblin Your Move Developer's
 challenge
 Build the coolest Linux based applications with Moblin SDK  win great
 prizes
 Grand prize is a trip for two to an Open Source event anywhere in the world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Gadman feature request

2008-09-03 Thread Viktor Kojouharov
On Wed, 2008-09-03 at 22:34 +1000, Daniel Kasak wrote:
 On Wed, 2008-09-03 at 12:32 +0200, Viktor Kojouharov wrote:
 
  What composite manager are you supposed to use? xcompmgr is just a
  proof-of-concept. Bling doesn't work that well. Bang is slow as hell.
 
 Ha! Doesn't even work on mine at all ( nvidia only I think ).
 
  And now one actually knows how to set up Ecomorph.
 
 ??? I know. So do others. Have you looked at
 http://code.google.com/p/itask-module/wiki/Stuff ? I've set up a number
 of systems with ecomorph ( Gentoo and Ubuntu ) and it wasn't too hard on
 either ( a bit more work on Ubuntu ). The problem at the moment is that
 Ecomorph hasn't been updated in almost 6 months, and most likely the
 modified E tree that you have to use doesn't compile against current
 libraries ( though admittedly I haven't tried ). Also you have to hack
 things up a bit for it to compile ( from memory there were problems with
 I18N stuff or something - I think I just deleted some .po files and it
 worked ).
 
 Anyway, I can give you help with getting Ecomorph going if you need.
 IMHO it's the best thing that happened to E in years ( yes, never-ending
 re-writing of libraries included in comparison ).
 
As long as it requires a custom E branch, it's kind of pointless for me.
Why not incorporate the changes in the main branch? Or provide an easy
patch. Right now, since the custom branch is so old, it's sort of
useless.
 Dan


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Gadman feature request

2008-09-03 Thread Dave Andreoli

- Luca De Marini [EMAIL PROTECTED] ha scritto:

 See, here are some screens:
 
 http://opengeu.intilinux.com/screenshots/gadmanbug1.jpg
 http://opengeu.intilinux.com/screenshots/gadmanbug2.jpg
 http://opengeu.intilinux.com/screenshots/gadmanbug3.jpg

Waa, thanks, I will try it better to see if I can reproduce, I think 
is a bling problem.

Dave

 
 In the first one you can see how it looks when it's the first time I
 load the hidden layer with bling activated. Then the second and the
 third screens are how things look like when I call the hidden layer
 again and again...
 I really hope it helps. Should it always look like in the first screen
 it would already be fantastic :)
 Bye,
 
 Luca
 
 
 
 2008/9/3 Dave Andreoli  [EMAIL PROTECTED] 
 
 
 
 
 - Nikolas Arend  [EMAIL PROTECTED]  ha scritto:
 
 
  Dave Andreoli wrote:
   I will work on this in the next days, so if you have other
  problem/request
   please report it now.
  
 
  Well, in that case... ;-)
  I experienced crashes and freezes with gadgets added to itask-ng. I
  don't have a backtrace of this yet, but can provide one if needed.
 Not
 
  sure whether it's itask-ng's or gadman's problem, though. Also
 certain
 
  gadgets don't work as expected when added to itask-ng, they would
  occasionally lose focus (eg. language or tclock) so that accessing
  their config menus or clicking on them doesn't work any more. Only
  thing
  that helps is an e restart. But then again, that could just as well
 be
 
  an itask-ng flaw.
  I guess I should mention that I have an nvidia Quadro card using the
  nvidia driver.
 
 This is an itask problem, you should report this at the author.
 Gadman only manage gadgets on the desktop.
 
 Dave
 
 
 
 
 
  Nick.
 
 
 
 -
  This SF.Net email is sponsored by the Moblin Your Move Developer's
  challenge
  Build the coolest Linux based applications with Moblin SDK  win
 great
  prizes
  Grand prize is a trip for two to an Open Source event anywhere in
 the
  world
  http://moblin-contest.org/redirect.php?banner_id=100url=/
  ___
  enlightenment-devel mailing list
  enlightenment-devel@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 
 -
 This SF.Net email is sponsored by the Moblin Your Move Developer's
 challenge
 Build the coolest Linux based applications with Moblin SDK  win great
 prizes
 Grand prize is a trip for two to an Open Source event anywhere in the
 world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Gadman feature request

2008-09-03 Thread Luca De Marini
Glad it helped, sorry for not reporting before but I honestly was assuming
everyone had the same problem since it happened to Intilinux and Madnessmike
too (from my OpenGEU team)..
Will be looking forward for some improvements than ;)
Bye,

Luca

2008/9/3 Dave Andreoli [EMAIL PROTECTED]


 - Luca De Marini [EMAIL PROTECTED] ha scritto:

  See, here are some screens:
 
  http://opengeu.intilinux.com/screenshots/gadmanbug1.jpg
  http://opengeu.intilinux.com/screenshots/gadmanbug2.jpg
  http://opengeu.intilinux.com/screenshots/gadmanbug3.jpg

 Waa, thanks, I will try it better to see if I can reproduce, I think
 is a bling problem.

 Dave

 
  In the first one you can see how it looks when it's the first time I
  load the hidden layer with bling activated. Then the second and the
  third screens are how things look like when I call the hidden layer
  again and again...
  I really hope it helps. Should it always look like in the first screen
  it would already be fantastic :)
  Bye,
 
  Luca
 
 
 
  2008/9/3 Dave Andreoli  [EMAIL PROTECTED] 
 
 
 
 
  - Nikolas Arend  [EMAIL PROTECTED]  ha scritto:
 
 
   Dave Andreoli wrote:
I will work on this in the next days, so if you have other
   problem/request
please report it now.
   
  
   Well, in that case... ;-)
   I experienced crashes and freezes with gadgets added to itask-ng. I
   don't have a backtrace of this yet, but can provide one if needed.
  Not
  
   sure whether it's itask-ng's or gadman's problem, though. Also
  certain
  
   gadgets don't work as expected when added to itask-ng, they would
   occasionally lose focus (eg. language or tclock) so that accessing
   their config menus or clicking on them doesn't work any more. Only
   thing
   that helps is an e restart. But then again, that could just as well
  be
  
   an itask-ng flaw.
   I guess I should mention that I have an nvidia Quadro card using the
   nvidia driver.
 
  This is an itask problem, you should report this at the author.
  Gadman only manage gadgets on the desktop.
 
  Dave
 
 
 
 
  
   Nick.
  
  
  
  -
   This SF.Net email is sponsored by the Moblin Your Move Developer's
   challenge
   Build the coolest Linux based applications with Moblin SDK  win
  great
   prizes
   Grand prize is a trip for two to an Open Source event anywhere in
  the
   world
   http://moblin-contest.org/redirect.php?banner_id=100url=/
   ___
   enlightenment-devel mailing list
   enlightenment-devel@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 
  -
  This SF.Net email is sponsored by the Moblin Your Move Developer's
  challenge
  Build the coolest Linux based applications with Moblin SDK  win great
  prizes
  Grand prize is a trip for two to an Open Source event anywhere in the
  world
  http://moblin-contest.org/redirect.php?banner_id=100url=/
  ___
  enlightenment-devel mailing list
  enlightenment-devel@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Gadman feature request

2008-09-03 Thread Dave Andreoli

- Viktor Kojouharov [EMAIL PROTECTED] ha scritto:

 On Wed, 2008-09-03 at 22:34 +1000, Daniel Kasak wrote:
  On Wed, 2008-09-03 at 12:32 +0200, Viktor Kojouharov wrote:
  
   What composite manager are you supposed to use? xcompmgr is just
 a
   proof-of-concept. Bling doesn't work that well. Bang is slow as
 hell.
  
  Ha! Doesn't even work on mine at all ( nvidia only I think ).
  
   And now one actually knows how to set up Ecomorph.
  
  ??? I know. So do others. Have you looked at
  http://code.google.com/p/itask-module/wiki/Stuff ? I've set up a
 number
  of systems with ecomorph ( Gentoo and Ubuntu ) and it wasn't too
 hard on
  either ( a bit more work on Ubuntu ). The problem at the moment is
 that
  Ecomorph hasn't been updated in almost 6 months, and most likely
 the
  modified E tree that you have to use doesn't compile against
 current
  libraries ( though admittedly I haven't tried ). Also you have to
 hack
  things up a bit for it to compile ( from memory there were problems
 with
  I18N stuff or something - I think I just deleted some .po files and
 it
  worked ).
  
  Anyway, I can give you help with getting Ecomorph going if you
 need.
  IMHO it's the best thing that happened to E in years ( yes,
 never-ending
  re-writing of libraries included in comparison ).
  
 As long as it requires a custom E branch, it's kind of pointless for
 me.
 Why not incorporate the changes in the main branch? Or provide an
 easy
 patch. Right now, since the custom branch is so old, it's sort of
 useless.
  Dan

Let me try to make some cleariness:

- xcompr is just an example progam, not thinked to be used.
- bang, ecomorph and egloo are both only our experimental field, to try
different approach to the OpenGL composite in E.
- bling is the only composite manager that should be usable and stable,
  also if it has some weired stuff here and that.
  Try to use it with all the effects disabled (fade, etc), it this way 
  it is not so slow and permit you to have tranpareent windows.

Hope this can help.

Dave


 
 
 -
 This SF.Net email is sponsored by the Moblin Your Move Developer's
 challenge
 Build the coolest Linux based applications with Moblin SDK  win great
 prizes
 Grand prize is a trip for two to an Open Source event anywhere in the
 world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Gadman feature request

2008-09-03 Thread Nikolas Arend
Hi again,

now that I think of it, would it be possible to have a third display 
behavior variant for gadgets: to show them on the desktop always but at 
the same time be able to bring them on top by pressing a certain key 
combination (eg. when the desktop is completely buried under windows)? 
So basically one would have to change the radio button in the 'Behavior' 
submenu into a multiple choice checkbox.

Nick

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: cedric IN trunk/PROTO/eina: . m4

2008-09-03 Thread Vincent Torri

 Property changes on: trunk/PROTO/eina/m4
 ___
 Name: svn:ignore
   + ltsugar.m4
 libtool.m4
 ltversion.m4
 lt~obsolete.m4
 ltoptions.m4

these files are copied by libtoolize (that is, during the execution of 
autogen.sh), so they should not be in the svn repo

Vincent

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: cedric IN trunk/PROTO/eina: . m4

2008-09-03 Thread Vincent Torri


On Wed, 3 Sep 2008, Vincent Torri wrote:


 Property changes on: trunk/PROTO/eina/m4
 ___
 Name: svn:ignore
   + ltsugar.m4
 libtool.m4
 ltversion.m4
 lt~obsolete.m4
 ltoptions.m4

 these files are copied by libtoolize (that is, during the execution of
 autogen.sh), so they should not be in the svn repo

it seems that it's for ignoring the files. I prefer the way cvs commit 
mails were formatted...

forget my answer, then :)

Vincent

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Gadman feature request

2008-09-03 Thread The Rasterman
On Wed, 3 Sep 2008 13:58:04 +0200 (CEST) Dave Andreoli [EMAIL PROTECTED]
babbled:

 
 - Carsten Haitzler (The Rasterman) [EMAIL PROTECTED] ha scritto:
 
  On Wed, 3 Sep 2008 13:49:33 +0200 (CEST) Dave Andreoli
  [EMAIL PROTECTED]
  babbled:
  
   Yes, I will do this very soon (maybe tomorrow), was on my TODO
  list,
   also with the ability to choose the color.
  
  or just be able to select the theme/object or Wallpaper :)
 
 Wallpaper is intresting, but I don't understand what you mean by theme/object?

never mind... just a wallpaper selector - like desklock includes, might be
nice :)

  
  also being able to have modules be different on different virtual
  desktops
  would be nice... maybe... one day... :)
 
 Also on my TODO list, but I need to investigate on this.
 
 Thanks
 Dave
 
  
   Dave
   
   
Best,   Nick.


   
  -
This SF.Net email is sponsored by the Moblin Your Move
  Developer's
challenge
Build the coolest Linux based applications with Moblin SDK  win
  great
prizes
Grand prize is a trip for two to an Open Source event anywhere in
  the
world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
   
  
  -
   This SF.Net email is sponsored by the Moblin Your Move Developer's
  challenge
   Build the coolest Linux based applications with Moblin SDK  win
  great prizes
   Grand prize is a trip for two to an Open Source event anywhere in
  the world
   http://moblin-contest.org/redirect.php?banner_id=100url=/
   ___
   enlightenment-devel mailing list
   enlightenment-devel@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
   
  
  
  -- 
  - Codito, ergo sum - I code, therefore I am
  --
  The Rasterman (Carsten Haitzler)[EMAIL PROTECTED]
 


-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)[EMAIL PROTECTED]


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Gadman feature request

2008-09-03 Thread Dave Andreoli

- Nikolas Arend [EMAIL PROTECTED] ha scritto:

 Hi again,
 
 now that I think of it, would it be possible to have a third display 
 behavior variant for gadgets: to show them on the desktop always but
 at 
 the same time be able to bring them on top by pressing a certain key 
 combination (eg. when the desktop is completely buried under windows)?
 
 So basically one would have to change the radio button in the
 'Behavior' 
 submenu into a multiple choice checkbox.

hmmm... no, it's really complex do implement. The only way is
to place the gadget twice, one on the desktop and one on the top layer top :(

Dave

 
 Nick
 
 -
 This SF.Net email is sponsored by the Moblin Your Move Developer's
 challenge
 Build the coolest Linux based applications with Moblin SDK  win great
 prizes
 Grand prize is a trip for two to an Open Source event anywhere in the
 world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: cedric IN trunk/PROTO/eina/src: include lib tests

2008-09-03 Thread Gustavo Sverzut Barbieri
Uh, oh I guess eina is turning into ecore... that's bad.

On Wed, Sep 3, 2008 at 11:40 AM,  [EMAIL PROTECTED]
 Add a routine to extract path information.


-- 
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--
MSN: [EMAIL PROTECTED]
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: cedric IN trunk/PROTO/eina/src: include lib tests

2008-09-03 Thread Dave Andreoli

- Gustavo Sverzut Barbieri [EMAIL PROTECTED] ha scritto:

 Uh, oh I guess eina is turning into ecore... that's bad.

yes, why file functions are in eina? is there a good reason for this?


 
 On Wed, Sep 3, 2008 at 11:40 AM,  [EMAIL PROTECTED]
  Add a routine to extract path information.
 
 
 -- 
 Gustavo Sverzut Barbieri
 http://profusion.mobi embedded systems
 --
 MSN: [EMAIL PROTECTED]
 Skype: gsbarbieri
 Mobile: +55 (19) 9225-2202
 
 -
 This SF.Net email is sponsored by the Moblin Your Move Developer's
 challenge
 Build the coolest Linux based applications with Moblin SDK  win great
 prizes
 Grand prize is a trip for two to an Open Source event anywhere in the
 world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: cedric IN trunk/PROTO/eina/src: include lib tests

2008-09-03 Thread Vincent Torri


On Wed, 3 Sep 2008, Gustavo Sverzut Barbieri wrote:

 Uh, oh I guess eina is turning into ecore... that's bad.

actually, I agree with Gustavo. I'm not sure that this file stuff should 
be in eina. Is there a good reason to have it in eina ?

Vincent

 On Wed, Sep 3, 2008 at 11:40 AM,  [EMAIL PROTECTED]
 Add a routine to extract path information.

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: cedric IN trunk/PROTO/eina/src: include lib tests

2008-09-03 Thread Cedric BAIL
On Wed, Sep 3, 2008 at 6:46 PM, Dave Andreoli [EMAIL PROTECTED] wrote:
 - Gustavo Sverzut Barbieri [EMAIL PROTECTED] ha scritto:
 Uh, oh I guess eina is turning into ecore... that's bad.

 yes, why file functions are in eina? is there a good reason for this?

Will be needed for new module functions. The code is not yet in svn,
but the idea is to enable both evas/ecore module need (meaning, almost
static lookup path) and application general need (with lookup in
directory and filter from a callback, when you don't know the name of
the module or the feature it provide).

-- 
Cedric BAIL

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: cedric IN trunk/PROTO/eina/src: include lib tests

2008-09-03 Thread Gustavo Sverzut Barbieri
On Wed, Sep 3, 2008 at 1:54 PM, Cedric BAIL [EMAIL PROTECTED] wrote:
 On Wed, Sep 3, 2008 at 6:46 PM, Dave Andreoli [EMAIL PROTECTED] wrote:
 - Gustavo Sverzut Barbieri [EMAIL PROTECTED] ha scritto:
 Uh, oh I guess eina is turning into ecore... that's bad.

 yes, why file functions are in eina? is there a good reason for this?

 Will be needed for new module functions. The code is not yet in svn,
 but the idea is to enable both evas/ecore module need (meaning, almost
 static lookup path) and application general need (with lookup in
 directory and filter from a callback, when you don't know the name of
 the module or the feature it provide).

Why not make this another module own its own, used by eina, evas,
ecore... Also, AFAIK there is already some helper libraries to deal
with low level dl.

-- 
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--
MSN: [EMAIL PROTECTED]
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: cedric IN trunk/PROTO/eina/src: include lib tests

2008-09-03 Thread Jorge Luis Zapata Muga
On Wed, Sep 3, 2008 at 6:52 PM, Vincent Torri [EMAIL PROTECTED] wrote:


 On Wed, 3 Sep 2008, Gustavo Sverzut Barbieri wrote:

 Uh, oh I guess eina is turning into ecore... that's bad.

 actually, I agree with Gustavo. I'm not sure that this file stuff should
 be in eina. Is there a good reason to have it in eina ?

Eina's goal was to join efforts between ecore and evas data types,
basically that means that everything that both ecore and evas do
should be placed into a common library. The file subsystem is needed
for eina's modules (evas already provided an evas_file.c) so this are
handy functions.

IMHO ecore should handle only main loop based systems, it means
everything that is related to events, nothing else. The rest
(synchronous functions) should be on a lower level library (in this
case eina) so evas (current state) can use it and any other lib around
that doesnt want to stick with a particular main loop implementation
(glib, qt, whatever).


 Vincent

 On Wed, Sep 3, 2008 at 11:40 AM,  [EMAIL PROTECTED]
 Add a routine to extract path information.

 -
 This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
 Build the coolest Linux based applications with Moblin SDK  win great prizes
 Grand prize is a trip for two to an Open Source event anywhere in the world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: cedric IN trunk/PROTO/eina/src: include lib tests

2008-09-03 Thread Gustavo Sverzut Barbieri
On Wed, Sep 3, 2008 at 2:53 PM, Jorge Luis Zapata Muga
[EMAIL PROTECTED] wrote:
 On Wed, Sep 3, 2008 at 6:52 PM, Vincent Torri [EMAIL PROTECTED] wrote:


 On Wed, 3 Sep 2008, Gustavo Sverzut Barbieri wrote:

 Uh, oh I guess eina is turning into ecore... that's bad.

 actually, I agree with Gustavo. I'm not sure that this file stuff should
 be in eina. Is there a good reason to have it in eina ?

 Eina's goal was to join efforts between ecore and evas data types,
 basically that means that everything that both ecore and evas do
 should be placed into a common library. The file subsystem is needed
 for eina's modules (evas already provided an evas_file.c) so this are
 handy functions.

 IMHO ecore should handle only main loop based systems, it means
 everything that is related to events, nothing else. The rest
 (synchronous functions) should be on a lower level library (in this
 case eina) so evas (current state) can use it and any other lib around
 that doesnt want to stick with a particular main loop implementation
 (glib, qt, whatever).

I'm strongly against this, we already hate ecore being so huge, why
create a parallel monster? If you want to provide abstraction for
module loading, ok, fine, do it into another library, however I really
think module loading is simple and the cost to make it generic and yet
keep it optimized and supporting all the fancy stuff just does not
worth it.

In Guarana (yep, I know I have not released it yet, damn it...) I just
have a module loader because I want to store modules and assign
symbols (to use dlsym) with keys, so it's there just to map Key -
(file, symbol)... this is loaded and saved from EET.

-- 
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--
MSN: [EMAIL PROTECTED]
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Enna segv when playing OGG, MP3, AVI

2008-09-03 Thread Will Keaney
Nicolas Aguirre wrote:


 2008/9/3 Will Keaney [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]

 I decided to try Enna out a couple of days ago, and must say I am very
 impressed by the interface.  However, whenever I try to play a media
 file, Enna segfaults.
 I have attached a full backtrace from gdb.  Please let me know if any
 additional information is needed.

 Will


 First thanks for your comments and your report :)

 I would like to know which backend u are using to play media ? You can
 choose between liplayer (libplayer.geexbox.org) 
 http://libplayer.geexbox.organd emotion in $HOME/.enna/enna.cfg. I
 have mostly test enna with libplayer, but emotion should play music.
 In stdout you should find informations about plugins loaded at
 startup. Some time emotion plugin is not load. So it's maybe the
 reason why you have this segfault. 
 However video playing is not possible yet with emotion backend, but I
 plan to implement this soon.

 Could you please said me if you have lines like  :
 Trying to load enna_emotion_plugin
 Unable to load enna_emotion_plugin

 Regards,
 Nico
  
 -- 
 Nicolas Aguirre
 Mail: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
 Web: http://www.digital-corner.org
I was using libplayer.   I tried the emotion backend today, and it plays
music without any problems at all.  I don't see anything about plugins
in the terminal output.

Will


signature.asc
Description: OpenPGP digital signature
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel