Re: [E-devel] E SVN: mekius trunk/e/src/modules/battery

2008-09-22 Thread Bauland Stephane
[EMAIL PROTECTED] wrote:
 Author:   mekius
 Date: 2008-09-12 14:31:46 -0700 (Fri, 12 Sep 2008)
 New Revision: 35971

 Modified:
   trunk/e/src/modules/battery/batget.c 
 Log:

 Fix a couple typos and detection of sysfs acpi battery info.

 Modified: trunk/e/src/modules/battery/batget.c
 ===
 --- trunk/e/src/modules/battery/batget.c  2008-09-12 21:26:53 UTC (rev 
 35970)
 +++ trunk/e/src/modules/battery/batget.c  2008-09-12 21:31:46 UTC (rev 
 35971)
 @@ -434,7 +434,7 @@
  static Ecore_Timer *sys_class_delay_check = NULL;
  
  static int
 -linux_sys_class_powe_supply_cb_delay_check(void *data)
 +linux_sys_class_power_supply_cb_delay_check(void *data)
  {
 linux_sys_class_power_supply_init();
 poll_cb(NULL);
 @@ -445,7 +445,7 @@
  static Ecore_Timer *re_init_timer = NULL;
  
  static int
 -linux_sys_class_powe_supply_cb_re_init(void *data)
 +linux_sys_class_power_supply_cb_re_init(void *data)
  {
 Sys_Class_Power_Supply_Uevent *sysev;
 
 @@ -506,12 +506,12 @@
free(sysev);

if (re_init_timer) ecore_timer_del(re_init_timer);
 -  re_init_timer = ecore_timer_add(1.0, 
 linux_sys_class_powe_supply_cb_re_init, NULL);
 +  re_init_timer = ecore_timer_add(1.0, 
 linux_sys_class_power_supply_cb_re_init, NULL);
 }
   else
 {
if (sys_class_delay_check) ecore_timer_del(sys_class_delay_check);
 -  sys_class_delay_check = ecore_timer_add(0.2, 
 linux_sys_class_powe_supply_cb_delay_check, NULL);
 +  sys_class_delay_check = ecore_timer_add(0.2, 
 linux_sys_class_power_supply_cb_delay_check, NULL);
 }
   }
 return 1;
 @@ -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;
   
close(fd);

I'm sorry i forget to close the filedescriptor.. so my patch is not so 
great :) Sorry again.
 +  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-svn mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/enlightenment-svn
   


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


-
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: mekius trunk/e/src/modules/battery

2008-09-22 Thread Bauland Stephane
[EMAIL PROTECTED] wrote:
 Author:   mekius
 Date: 2008-09-12 14:31:46 -0700 (Fri, 12 Sep 2008)
 New Revision: 35971

 Modified:
   trunk/e/src/modules/battery/batget.c 
 Log:

 Fix a couple typos and detection of sysfs acpi battery info.

 Modified: trunk/e/src/modules/battery/batget.c
 ===
 --- trunk/e/src/modules/battery/batget.c  2008-09-12 21:26:53 UTC (rev 
 35970)
 +++ trunk/e/src/modules/battery/batget.c  2008-09-12 21:31:46 UTC (rev 
 35971)
 @@ -434,7 +434,7 @@
  static Ecore_Timer *sys_class_delay_check = NULL;
  
  static int
 -linux_sys_class_powe_supply_cb_delay_check(void *data)
 +linux_sys_class_power_supply_cb_delay_check(void *data)
  {
 linux_sys_class_power_supply_init();
 poll_cb(NULL);
 @@ -445,7 +445,7 @@
  static Ecore_Timer *re_init_timer = NULL;
  
  static int
 -linux_sys_class_powe_supply_cb_re_init(void *data)
 +linux_sys_class_power_supply_cb_re_init(void *data)
  {
 Sys_Class_Power_Supply_Uevent *sysev;
 
 @@ -506,12 +506,12 @@
free(sysev);

if (re_init_timer) ecore_timer_del(re_init_timer);
 -  re_init_timer = ecore_timer_add(1.0, 
 linux_sys_class_powe_supply_cb_re_init, NULL);
 +  re_init_timer = ecore_timer_add(1.0, 
 linux_sys_class_power_supply_cb_re_init, NULL);
 }
   else
 {
if (sys_class_delay_check) ecore_timer_del(sys_class_delay_check);
 -  sys_class_delay_check = ecore_timer_add(0.2, 
 linux_sys_class_powe_supply_cb_delay_check, NULL);
 +  sys_class_delay_check = ecore_timer_add(0.2, 
 linux_sys_class_power_supply_cb_delay_check, NULL);
 }
   }
 return 1;
 @@ -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;
 +}
   
I'm sorry i forget to close the filedescriptor on 
linux_sys_class_power_supply_is_battery() function... so my patch is not 
so great :) Sorry again.

 +
  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-svn mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/enlightenment-svn
   


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


-
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] emotion/vlc patch

2008-09-22 Thread tristan
Hi,
here is a patch that add the vlc backend to emotion.
Some function of emotion API are still stubbed but most of them should work
fine.

There is still a bug: SEGV in evas_common_convert_yuv_420p_601_rgba after
the initial resize of movie frame.
More information on this bug and the list of stubbed function can be found
in emotion/src/module/vlc/TODO.

I hope it will be helpful for somebody
-
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] emotion/vlc patch

2008-09-22 Thread tristan
Here is the missing patch ;-)

2008/9/22 Chidambar 'ilLogict' Zinnoury [EMAIL PROTECTED]

 Dans son message intitulé « [E-devel] emotion/vlc patch » du Mon, 22
 Sep 2008 10:03:23 +0200, tristan [EMAIL PROTECTED] nous a donné
 l'occasion de lire :

  Hi,
  here is a patch that add the vlc backend to emotion.
  Some function of emotion API are still stubbed but most of them
  should work fine.
 
  There is still a bug: SEGV in evas_common_convert_yuv_420p_601_rgba
  after the initial resize of movie frame.
  More information on this bug and the list of stubbed function can be
  found in emotion/src/module/vlc/TODO.
 
  I hope it will be helpful for somebody

  It seems that you forgot to attach the patch :)

  Cheers!

-
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] edje_editor and edje_decc issue

2008-09-22 Thread Diogo Dutra
Hi guys,

I created a file .edc and put some things, after I use edje_editor to
edit this file, ok, the edje_editor works fine. But when I used the
edje_decc in the .edj created by edje_editor it extract the old .edc,
the edc before I edit with edje_editor! And when I run my C
application the interface is equal to the edj in edje_editor!
Why I cant get the .edc of the files created by edje_editor?

-- 
===

Diogo Dutra Albuquerque

Meu Curriculum Lattes: http://lattes.cnpq.br/3624796077679922

-
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] vlc and emotion ... again

2008-09-22 Thread tristan
It seem there is a little problem with attached patch, so, you can download
it from :
http://www.guerrier.org/public/emotion-vlc.patch.gz
-
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] edje_editor and edje_decc issue

2008-09-22 Thread Andre Dieb
That's a known issue.

Edje_Editor is not yet fully capable of exporting the complete edc.

On Sun, Sep 21, 2008 at 3:21 PM, Diogo Dutra [EMAIL PROTECTED] wrote:

 Hi guys,

 I created a file .edc and put some things, after I use edje_editor to
 edit this file, ok, the edje_editor works fine. But when I used the
 edje_decc in the .edj created by edje_editor it extract the old .edc,
 the edc before I edit with edje_editor! And when I run my C
 application the interface is equal to the edj in edje_editor!
 Why I cant get the .edc of the files created by edje_editor?

 --
 ===

 Diogo Dutra Albuquerque

 Meu Curriculum Lattes: http://lattes.cnpq.br/3624796077679922

 -
 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




-- 
André Dieb Martins

Embedded Systems and Pervasive Computing Lab (Embedded)
Electrical Engineering Department (DEE)
Center of Electrical Engineering and Informatics (CEEI)
Federal University of Campina Grande (UFCG)
-
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] R: E SVN: davemds trunk/web/www/p/index

2008-09-22 Thread Dave Andreoli

- Enlightenment SVN [EMAIL PROTECTED] ha scritto:

 Author:   davemds
 Date: 2008-09-17 13:00:38 -0700 (Wed, 17 Sep 2008)
 New Revision: 36059
 
 Log:
   Ok on the main site the scripts works! but not on exchange :(
 Someone know how the update works?? please please...

Exchange patch is on place now.

mekius: did you fix the commit script? or someone has fixed exchange by hand?
whitout passing from cvs?

if the commit script is ok now, I will fix some other small issue I noticed

Dave


 
 Modified:
   trunk/web/www/p/index/en-body 
 
 Modified: trunk/web/www/p/index/en-body
 ===
 --- trunk/web/www/p/index/en-body 2008-09-17 19:56:58 UTC (rev 36058)
 +++ trunk/web/www/p/index/en-body 2008-09-17 20:00:38 UTC (rev 36059)
 @@ -2,7 +2,7 @@
   tr
td class='main'
 div class=main
 -h3What is Enlightenment ?/h3
 +h3What is Enlightenment?/h3
  p
   Enlightenment is a window manager. Enlightenment is a desktop
 shell.
   Enlightenment is the building blocks to create beautiful
 applications.
 
 
 -
 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-svn mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/enlightenment-svn

-
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] Theme/Wallpaper dialog suggestion

2008-09-22 Thread Gustavo Sverzut Barbieri
On Mon, Sep 22, 2008 at 2:46 AM, Toma [EMAIL PROTECTED] wrote:
 Howdee,
 Since these 2 dialogs are most probably the most used ones around, it
 would be a good idea to have them operate in mostly the same way.

 Heres the dialogs at smallest size.
 http://members.iinet.net.au/~haste/e17/e17-ui1.png

 The only issue really is the centre aligned buttons for Import and online.

 Here are the same dialogs sized bigger.
 http://members.iinet.net.au/~haste/e17/e17-ui2.png

 As you can see, the sizing in inconsistent, with wallpaper doing the better 
 job.

 Here is a mockup of what they should do.
 http://members.iinet.net.au/~haste/e17/e17-ui3.png

 The preview widget gets resized, and the file list grows too. This way
 you get to see the long filenames and the preview in a bigger view.
 There might be some issues making the preview widget work properly
 with resize.

I like it, but we need to keep alignment between widgets. List
top/bottom should be aligned with preview.

My suggestion is to make it a table layout, with an vbox+2-hbox or
another table at the top-left (buttons + radio), an hbox at the
top-right, another hbox at the bottom with the advanced button.  This
would produce something similar to existing, but better aligned.

Another option is to hide 'Go up a directory' if it's not available
(it's always off here), move advanced  could be moved to the top,
together with other buttons, or other buttons move down near it.

-- 
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] emotion/vlc patch

2008-09-22 Thread Gustavo Sverzut Barbieri
On Mon, Sep 22, 2008 at 5:26 AM, tristan [EMAIL PROTECTED] wrote:
 Here is the missing patch ;-)

not yet. Check if firefox recognizes your file extension as text/*, if
not, either rename it to .txt or add text/patch patch and text/diff
diff to /etc/mime.types and refresh your mime type cache.

-- 
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] R: E SVN: davemds trunk/web/www/p/index

2008-09-22 Thread Toma
2008/9/22 Dave Andreoli [EMAIL PROTECTED]:

 - Enlightenment SVN [EMAIL PROTECTED] ha scritto:

 Author:   davemds
 Date: 2008-09-17 13:00:38 -0700 (Wed, 17 Sep 2008)
 New Revision: 36059

 Log:
   Ok on the main site the scripts works! but not on exchange :(
 Someone know how the update works?? please please...

 Exchange patch is on place now.

 mekius: did you fix the commit script? or someone has fixed exchange by hand?
 whitout passing from cvs?

I fixed it up, with iamsthithas help. Its working correctly, and also
running off the SVN server rather than the googlecode site. Anything
you commit to the SVN will work now.
Toma


 if the commit script is ok now, I will fix some other small issue I noticed

 Dave



 Modified:
   trunk/web/www/p/index/en-body

 Modified: trunk/web/www/p/index/en-body
 ===
 --- trunk/web/www/p/index/en-body 2008-09-17 19:56:58 UTC (rev 36058)
 +++ trunk/web/www/p/index/en-body 2008-09-17 20:00:38 UTC (rev 36059)
 @@ -2,7 +2,7 @@
   tr
td class='main'
 div class=main
 -h3What is Enlightenment ?/h3
 +h3What is Enlightenment?/h3
  p
   Enlightenment is a window manager. Enlightenment is a desktop
 shell.
   Enlightenment is the building blocks to create beautiful
 applications.


 -
 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-svn mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/enlightenment-svn

 -
 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


[E-devel] Evas compilation error with mingw/msys on win32

2008-09-22 Thread Nicolas Aguirre
Hi,

I'm trying to compile evas on win32 platform with mingw. I followed wiki (
http://wiki.enlightenment.org/index.php/EFL_Windows_XP )
and I have compiled last SVN sources of evil, eet, and evas.

But i get an error while compiling evas. Did you experienced this kinf of
problems. Or it's maybe a bad mingw/msys configuration ?

cheers,
Nicolas

THE Error :

make[4]: Entering directory `/home/naguirre/evas/src/lib'
/bin/sh ../../libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I.
-I../..  -I. -I../../src/lib -I../../src/lib/include
-DPACKAGE_BIN_DIR=\/usr/local/bin\ -DPACKAGE_LIB_DIR=\/usr/local/lib\
-DPACKAGE_DATA_DIR=\/usr/local/share/evas\
-IE:/Applications/msys/local/include/freetype2
-IE:/Applications/msys/local/include -IE:/Applications/msys/local/include
-IE:/Applications/msys/local/include  -I/usr/local/include  -g -O2 -MT
main.lo -MD -MP -MF .deps/main.Tpo -c -o main.lo main.c
mkdir .libs
 gcc -DHAVE_CONFIG_H -I. -I../.. -I. -I../../src/lib -I../../src/lib/include
-DPACKAGE_BIN_DIR=\/usr/local/bin\ -DPACKAGE_LIB_DIR=\/usr/local/lib\
-DPACKAGE_DATA_DIR=\/usr/local/share/evas\
-IE:/Applications/msys/local/include/freetype2
-IE:/Applications/msys/local/include -IE:/Applications/msys/local/include
-IE:/Applications/msys/local/include -I/usr/local/include -g -O2 -MT main.lo
-MD -MP -MF .deps/main.Tpo -c main.c  -DDLL_EXPORT -DPIC -o .libs/main.o
 gcc -DHAVE_CONFIG_H -I. -I../.. -I. -I../../src/lib -I../../src/lib/include
-DPACKAGE_BIN_DIR=\/usr/local/bin\ -DPACKAGE_LIB_DIR=\/usr/local/lib\
-DPACKAGE_DATA_DIR=\/usr/local/share/evas\
-IE:/Applications/msys/local/include/freetype2
-IE:/Applications/msys/local/include -IE:/Applications/msys/local/include
-IE:/Applications/msys/local/include -I/usr/local/include -g -O2 -MT main.lo
-MD -MP -MF .deps/main.Tpo -c main.c -o main.o /dev/null 21
mv -f .deps/main.Tpo .deps/main.Plo
/bin/sh ../../libtool --tag=CC   --mode=link gcc  -g -O2 -no-undefined
-version-info 9:9:9 -L/usr/local/lib -o libevas.la -rpath /usr/local/lib
main.lo canvas/libevas_canvas.la data/libevas_data.la file/libevas_file.lacache/
libevas_cache.la imaging/libevas_imaging.la engines/common/
libevas_engine_common.la engines/common_16/libevas_engine_common_16.la -lm
-liberty -LE:/Applications/msys/local/lib -lfreetype
-LE:/Applications/msys/local/lib -leet -LE:/Applications/msys/local/lib
-lfontconfig
gcc -shared  .libs/main.o -Wl,--whole-archive canvas/.libs/libevas_canvas.a
data/.libs/libevas_data.a file/.libs/libevas_file.a
cache/.libs/libevas_cache.a imaging/.libs/libevas_imaging.a
engines/common/.libs/libevas_engine_common.a
engines/common_16/.libs/libevas_engine_common_16.a -Wl,--no-whole-archive
-L/usr/local/lib -LE:/Applications/msys/local/lib /usr/local/lib/libdl.dll.a
/usr/local/lib/libevil.dll.a -lole32 -luuid -lws2_32 -liberty -lfreetype
/usr/local/lib/libeet.dll.a -lfontconfig  -o .libs/libevas-0.dll
-Wl,--enable-auto-image-base -Xlinker --out-implib -Xlinker
.libs/libevas.dll.a
Creating library file: .libs/libevas.dll.a
canvas/.libs/libevas_canvas.a(evas_object_smart_clipped.o): In function
`evas_object_smart_move_children_relative':E:/Applications/msys/home/naguirre/evas/src/lib/canvas/evas_object_smart_clipped.c:29:
undefined reference to `_imp__evas_object_smart_members_get'
:E:/Applications/msys/home/naguirre/evas/src/lib/canvas/evas_object_smart_clipped.c:36:
undefined reference to `_imp__evas_object_geometry_get'
:E:/Applications/msys/home/naguirre/evas/src/lib/canvas/evas_object_smart_clipped.c:37:
undefined reference to `_imp__evas_object_move'
:E:/Applications/msys/home/naguirre/evas/src/lib/canvas/evas_object_smart_clipped.c:40:
undefined reference to `_imp__evas_list_free'
canvas/.libs/libevas_canvas.a(evas_object_smart_clipped.o): In function
`evas_object_smart_clipped_clipper_get':E:/Applications/msys/home/naguirre/evas/src/lib/canvas/evas_object_smart_clipped.c:54:
undefined reference to `_imp__evas_object_smart_data_get'
canvas/.libs/libevas_canvas.a(evas_object_smart_clipped.o): In function
`evas_object_smart_clipped_smart_add':E:/Applications/msys/home/naguirre/evas/src/lib/canvas/evas_object_smart_clipped.c:66:
undefined reference to `_imp__evas_object_smart_data_get'
:E:/Applications/msys/home/naguirre/evas/src/lib/canvas/evas_object_smart_clipped.c:70:
undefined reference to `_imp__evas_object_evas_get'
:E:/Applications/msys/home/naguirre/evas/src/lib/canvas/evas_object_smart_clipped.c:71:
undefined reference to `_imp__evas_object_rectangle_add'
:E:/Applications/msys/home/naguirre/evas/src/lib/canvas/evas_object_smart_clipped.c:72:
undefined reference to `_imp__evas_object_smart_member_add'
:E:/Applications/msys/home/naguirre/evas/src/lib/canvas/evas_object_smart_clipped.c:73:
undefined reference to `_imp__evas_object_color_set'
:E:/Applications/msys/home/naguirre/evas/src/lib/canvas/evas_object_smart_clipped.c:74:
undefined reference to `_imp__evas_object_move'
:E:/Applications/msys/home/naguirre/evas/src/lib/canvas/evas_object_smart_clipped.c:75:

Re: [E-devel] Parsing a folder to EFM?

2008-09-22 Thread Luca De Marini
Hallo everyone, I played with this a little and just wanted to tell you my
feedback. If I put Link in the category of the .desktop file, trying to add
it to Ibar will fail. If I right click on Ibar and choose to add an icon, it
won't show in the list.
To have it working, I had to add Application to the category too. In that
way it started showing and worked.
Plus, I later eliminated the Application string from category and it didn't
disappear from Ibar.
So I guess this could be some sort of bug because Ibar supports launchers
with a category setted to Link but people cannot browse this kind of files
when adding a new icon (Only applications are shown). Here's the final
result of my temporary experiment.

[Desktop Entry]
Version=1.0
Encoding=UTF-8
Name=Prova
Type=Link
URL=file:/usr/share/
Categories=System;Application
Terminal=false
Name[it_IT]=Prova
Comment[it_IT]=Prova
Icon=/usr/share/icons/Tango/scalable/status/dialog-warning.svg
Comment=Prova
GenericName[it_IT]=Prova

As I said, it is just an experiment.
Greetings,

Luca

2008/9/20 Brian 'morlenxus' Miculcy [EMAIL PROTECTED]

 You need to create a .desktop file with

 Type=Link
 URL=file:/usr/share/applications

 Then add the .desktop file to your ibar.

 Greets,
 Brian 'morlenxus' Miculcy


 On Sat, Sep 20, 2008 at 05:42:41PM +1000, Carsten Haitzler wrote:
  On Sat, 20 Sep 2008 09:06:38 +0200 Luca De Marini 
 [EMAIL PROTECTED]
  babbled:
 
   Hallo everyone, simple question, is it possible to ask EFM to open a
 window
   in a specified folder with a terminal command?
   If not, say I want that clicking on a launcher the folder
   /usr/share/applications is directly opened in EFM, how can I do it?
   Thanks everyone,
 
  there isnt any external control of efm as it stands. it's a simple fm
 built in
  - eventually one day we'll get it, but its not on the plans right now.
 
 
  --
  - 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

-
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] Parsing a folder to EFM?

2008-09-22 Thread Luca De Marini
And does anybody know how can I ask it to open an home folder? What kind of
link should I put inside there?
Thanks :)

Luca

2008/9/22 Luca De Marini [EMAIL PROTECTED]

 Hallo everyone, I played with this a little and just wanted to tell you my
 feedback. If I put Link in the category of the .desktop file, trying to add
 it to Ibar will fail. If I right click on Ibar and choose to add an icon, it
 won't show in the list.
 To have it working, I had to add Application to the category too. In that
 way it started showing and worked.
 Plus, I later eliminated the Application string from category and it didn't
 disappear from Ibar.
 So I guess this could be some sort of bug because Ibar supports launchers
 with a category setted to Link but people cannot browse this kind of files
 when adding a new icon (Only applications are shown). Here's the final
 result of my temporary experiment.

 [Desktop Entry]
 Version=1.0
 Encoding=UTF-8
 Name=Prova
 Type=Link
 URL=file:/usr/share/
 Categories=System;Application
 Terminal=false
 Name[it_IT]=Prova
 Comment[it_IT]=Prova
 Icon=/usr/share/icons/Tango/scalable/status/dialog-warning.svg
 Comment=Prova
 GenericName[it_IT]=Prova

 As I said, it is just an experiment.
 Greetings,

 Luca

 2008/9/20 Brian 'morlenxus' Miculcy [EMAIL PROTECTED]

 You need to create a .desktop file with

 Type=Link
 URL=file:/usr/share/applications

 Then add the .desktop file to your ibar.

 Greets,
 Brian 'morlenxus' Miculcy


 On Sat, Sep 20, 2008 at 05:42:41PM +1000, Carsten Haitzler wrote:
  On Sat, 20 Sep 2008 09:06:38 +0200 Luca De Marini 
 [EMAIL PROTECTED]
  babbled:
 
   Hallo everyone, simple question, is it possible to ask EFM to open a
 window
   in a specified folder with a terminal command?
   If not, say I want that clicking on a launcher the folder
   /usr/share/applications is directly opened in EFM, how can I do it?
   Thanks everyone,
 
  there isnt any external control of efm as it stands. it's a simple fm
 built in
  - eventually one day we'll get it, but its not on the plans right now.
 
 
  --
  - 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



-
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] Parsing a folder to EFM?

2008-09-22 Thread Fedor Gusev
On Mon, Sep 22, 2008 at 03:25:55PM +0200, Luca De Marini wrote:
 And does anybody know how can I ask it to open an home folder? What kind of
 link should I put inside there?

Try this:
URL=file:$HOME

 Thanks :)
 
 Luca
 
 2008/9/22 Luca De Marini [EMAIL PROTECTED]
 
  Hallo everyone, I played with this a little and just wanted to tell you my
  feedback. If I put Link in the category of the .desktop file, trying to add
  it to Ibar will fail. If I right click on Ibar and choose to add an icon, it
  won't show in the list.
  To have it working, I had to add Application to the category too. In that
  way it started showing and worked.
  Plus, I later eliminated the Application string from category and it didn't
  disappear from Ibar.
  So I guess this could be some sort of bug because Ibar supports launchers
  with a category setted to Link but people cannot browse this kind of files
  when adding a new icon (Only applications are shown). Here's the final
  result of my temporary experiment.
 
  [Desktop Entry]
  Version=1.0
  Encoding=UTF-8
  Name=Prova
  Type=Link
  URL=file:/usr/share/
  Categories=System;Application
  Terminal=false
  Name[it_IT]=Prova
  Comment[it_IT]=Prova
  Icon=/usr/share/icons/Tango/scalable/status/dialog-warning.svg
  Comment=Prova
  GenericName[it_IT]=Prova
 
  As I said, it is just an experiment.
  Greetings,
 
  Luca
 
  2008/9/20 Brian 'morlenxus' Miculcy [EMAIL PROTECTED]
 
  You need to create a .desktop file with
 
  Type=Link
  URL=file:/usr/share/applications
 
  Then add the .desktop file to your ibar.
 
  Greets,
  Brian 'morlenxus' Miculcy
 
 
  On Sat, Sep 20, 2008 at 05:42:41PM +1000, Carsten Haitzler wrote:
   On Sat, 20 Sep 2008 09:06:38 +0200 Luca De Marini 
  [EMAIL PROTECTED]
   babbled:
  
Hallo everyone, simple question, is it possible to ask EFM to open a
  window
in a specified folder with a terminal command?
If not, say I want that clicking on a launcher the folder
/usr/share/applications is directly opened in EFM, how can I do it?
Thanks everyone,
  
   there isnt any external control of efm as it stands. it's a simple fm
  built in
   - eventually one day we'll get it, but its not on the plans right now.
  
  
   --
   - 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
 
 
 
 -
 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

-- 
King regards,
Fedor Gusev.

-
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] Parsing a folder to EFM?

2008-09-22 Thread Luca De Marini
nop, it doesn't work :(
I even tried with the ~ sinbol, no luck...
Any other guess?

Luca

2008/9/22 Fedor Gusev [EMAIL PROTECTED]

 On Mon, Sep 22, 2008 at 03:25:55PM +0200, Luca De Marini wrote:
  And does anybody know how can I ask it to open an home folder? What kind
 of
  link should I put inside there?

 Try this:
 URL=file:$HOME

  Thanks :)
 
  Luca
 
  2008/9/22 Luca De Marini [EMAIL PROTECTED]
 
   Hallo everyone, I played with this a little and just wanted to tell you
 my
   feedback. If I put Link in the category of the .desktop file, trying to
 add
   it to Ibar will fail. If I right click on Ibar and choose to add an
 icon, it
   won't show in the list.
   To have it working, I had to add Application to the category too. In
 that
   way it started showing and worked.
   Plus, I later eliminated the Application string from category and it
 didn't
   disappear from Ibar.
   So I guess this could be some sort of bug because Ibar supports
 launchers
   with a category setted to Link but people cannot browse this kind of
 files
   when adding a new icon (Only applications are shown). Here's the final
   result of my temporary experiment.
  
   [Desktop Entry]
   Version=1.0
   Encoding=UTF-8
   Name=Prova
   Type=Link
   URL=file:/usr/share/
   Categories=System;Application
   Terminal=false
   Name[it_IT]=Prova
   Comment[it_IT]=Prova
   Icon=/usr/share/icons/Tango/scalable/status/dialog-warning.svg
   Comment=Prova
   GenericName[it_IT]=Prova
  
   As I said, it is just an experiment.
   Greetings,
  
   Luca
  
   2008/9/20 Brian 'morlenxus' Miculcy [EMAIL PROTECTED]
  
   You need to create a .desktop file with
  
   Type=Link
   URL=file:/usr/share/applications
  
   Then add the .desktop file to your ibar.
  
   Greets,
   Brian 'morlenxus' Miculcy
  
  
   On Sat, Sep 20, 2008 at 05:42:41PM +1000, Carsten Haitzler wrote:
On Sat, 20 Sep 2008 09:06:38 +0200 Luca De Marini 
   [EMAIL PROTECTED]
babbled:
   
 Hallo everyone, simple question, is it possible to ask EFM to open
 a
   window
 in a specified folder with a terminal command?
 If not, say I want that clicking on a launcher the folder
 /usr/share/applications is directly opened in EFM, how can I do
 it?
 Thanks everyone,
   
there isnt any external control of efm as it stands. it's a simple
 fm
   built in
- eventually one day we'll get it, but its not on the plans right
 now.
   
   
--
- 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
  
  
  
  -
  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

 --
 King regards,
 Fedor Gusev.

 -
 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] Parsing a folder to EFM?

2008-09-22 Thread Fedor Gusev
On Mon, Sep 22, 2008 at 03:45:42PM +0200, Luca De Marini wrote:
nop, it doesn't work :(
I even tried with the ~ sinbol, no luck...
Any other guess?
cp ~/.e/e/fileman/favorites/home.desktop ~/.local/share/applications/
echo home.desktop  ~/.e/e/applications/bar/default/.order

You need to update an icon though. Looks like ibar does not look for
icons in theme.
Luca
2008/9/22 Fedor Gusev [EMAIL PROTECTED]
 
  On Mon, Sep 22, 2008 at 03:25:55PM +0200, Luca De Marini wrote:
   And does anybody know how can I ask it to open an home folder? What
  kind of
   link should I put inside there?
 
  Try this:
  URL=file:$HOME
   Thanks :)
  
   Luca
  
   2008/9/22 Luca De Marini [EMAIL PROTECTED]
  
Hallo everyone, I played with this a little and just wanted to tell
  you my
feedback. If I put Link in the category of the .desktop file, trying
  to add
it to Ibar will fail. If I right click on Ibar and choose to add an
  icon, it
won't show in the list.
To have it working, I had to add Application to the category too. In
  that
way it started showing and worked.
Plus, I later eliminated the Application string from category and it
  didn't
disappear from Ibar.
So I guess this could be some sort of bug because Ibar supports
  launchers
with a category setted to Link but people cannot browse this kind of
  files
when adding a new icon (Only applications are shown). Here's the
  final
result of my temporary experiment.
   
[Desktop Entry]
Version=1.0
Encoding=UTF-8
Name=Prova
Type=Link
URL=file:/usr/share/
Categories=System;Application
Terminal=false
Name[it_IT]=Prova
Comment[it_IT]=Prova
Icon=/usr/share/icons/Tango/scalable/status/dialog-warning.svg
Comment=Prova
GenericName[it_IT]=Prova
   
As I said, it is just an experiment.
Greetings,
   
Luca
   
2008/9/20 Brian 'morlenxus' Miculcy [EMAIL PROTECTED]
   
You need to create a .desktop file with
   
Type=Link
URL=file:/usr/share/applications
   
Then add the .desktop file to your ibar.
   
Greets,
Brian 'morlenxus' Miculcy
   
   
On Sat, Sep 20, 2008 at 05:42:41PM +1000, Carsten Haitzler wrote:
 On Sat, 20 Sep 2008 09:06:38 +0200 Luca De Marini 
[EMAIL PROTECTED]
 babbled:

  Hallo everyone, simple question, is it possible to ask EFM to
  open a
window
  in a specified folder with a terminal command?
  If not, say I want that clicking on a launcher the folder
  /usr/share/applications is directly opened in EFM, how can I do
  it?
  Thanks everyone,

 there isnt any external control of efm as it stands. it's a
  simple fm
built in
 - eventually one day we'll get it, but its not on the plans right
  now.


 --
 - 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
 [6]http://moblin-contest.org/redirect.php?banner_id=100url=/
 ___
 enlightenment-devel mailing list
 [EMAIL PROTECTED]

  [8]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
   [9]http://moblin-contest.org/redirect.php?banner_id=100url=/
   ___
   enlightenment-devel mailing list
   [EMAIL PROTECTED]
   [11]https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 
  --
  King regards,
  Fedor Gusev.
  -
  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 

Re: [E-devel] Parsing a folder to EFM?

2008-09-22 Thread Fedor Gusev
On Mon, Sep 22, 2008 at 05:56:17PM +0400, Fedor Gusev wrote:
 On Mon, Sep 22, 2008 at 03:45:42PM +0200, Luca De Marini wrote:
 nop, it doesn't work :(
 I even tried with the ~ sinbol, no luck...
 Any other guess?
 cp ~/.e/e/fileman/favorites/home.desktop ~/.local/share/applications/
 echo home.desktop  ~/.e/e/applications/bar/default/.order
 
 You need to update an icon though. Looks like ibar does not look for
 icons in theme.
Oops... Also, replace
URL=file:$HOME
with
URL=file:~
in ~/.local/share/applications/home.desktop
 Luca
 2008/9/22 Fedor Gusev [EMAIL PROTECTED]
  
   On Mon, Sep 22, 2008 at 03:25:55PM +0200, Luca De Marini wrote:
And does anybody know how can I ask it to open an home folder? What
   kind of
link should I put inside there?
  
   Try this:
   URL=file:$HOME
Thanks :)
   
Luca
   
2008/9/22 Luca De Marini [EMAIL PROTECTED]
   
 Hallo everyone, I played with this a little and just wanted to tell
   you my
 feedback. If I put Link in the category of the .desktop file, 
  trying
   to add
 it to Ibar will fail. If I right click on Ibar and choose to add an
   icon, it
 won't show in the list.
 To have it working, I had to add Application to the category too. 
  In
   that
 way it started showing and worked.
 Plus, I later eliminated the Application string from category and 
  it
   didn't
 disappear from Ibar.
 So I guess this could be some sort of bug because Ibar supports
   launchers
 with a category setted to Link but people cannot browse this kind 
  of
   files
 when adding a new icon (Only applications are shown). Here's the
   final
 result of my temporary experiment.

 [Desktop Entry]
 Version=1.0
 Encoding=UTF-8
 Name=Prova
 Type=Link
 URL=file:/usr/share/
 Categories=System;Application
 Terminal=false
 Name[it_IT]=Prova
 Comment[it_IT]=Prova
 Icon=/usr/share/icons/Tango/scalable/status/dialog-warning.svg
 Comment=Prova
 GenericName[it_IT]=Prova

 As I said, it is just an experiment.
 Greetings,

 Luca

 2008/9/20 Brian 'morlenxus' Miculcy [EMAIL PROTECTED]

 You need to create a .desktop file with

 Type=Link
 URL=file:/usr/share/applications

 Then add the .desktop file to your ibar.

 Greets,
 Brian 'morlenxus' Miculcy


 On Sat, Sep 20, 2008 at 05:42:41PM +1000, Carsten Haitzler wrote:
  On Sat, 20 Sep 2008 09:06:38 +0200 Luca De Marini 
 [EMAIL PROTECTED]
  babbled:
 
   Hallo everyone, simple question, is it possible to ask EFM to
   open a
 window
   in a specified folder with a terminal command?
   If not, say I want that clicking on a launcher the folder
   /usr/share/applications is directly opened in EFM, how can I 
  do
   it?
   Thanks everyone,
 
  there isnt any external control of efm as it stands. it's a
   simple fm
 built in
  - eventually one day we'll get it, but its not on the plans 
  right
   now.
 
 
  --
  - 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
  [6]http://moblin-contest.org/redirect.php?banner_id=100url=/
  ___
  enlightenment-devel mailing list
  [EMAIL PROTECTED]
 
   [8]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
[9]http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
[EMAIL PROTECTED]
[11]https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
  
  

Re: [E-devel] vlc and emotion ... again

2008-09-22 Thread Vincent Torri

Hey

 It seem there is a little problem with attached patch, so, you can download
 it from :
 http://www.guerrier.org/public/emotion-vlc.patch.gz

very nice work ! I'll look at it this evening, and i'll commit it during 
the week (tomorrow, I think)

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] Parsing a folder to EFM?

2008-09-22 Thread Luca De Marini
2008/9/22 Fedor Gusev [EMAIL PROTECTED]

 On Mon, Sep 22, 2008 at 05:56:17PM +0400, Fedor Gusev wrote:
  On Mon, Sep 22, 2008 at 03:45:42PM +0200, Luca De Marini wrote:
  nop, it doesn't work :(
  I even tried with the ~ sinbol, no luck...
  Any other guess?
  cp ~/.e/e/fileman/favorites/home.desktop ~/.local/share/applications/
  echo home.desktop  ~/.e/e/applications/bar/default/.order
 
  You need to update an icon though. Looks like ibar does not look for
  icons in theme.
 Oops... Also, replace
URL=file:$HOME
 with
URL=file:~
 in ~/.local/share/applications/home.desktop


It does not work. Even running the  .desktop file directly does not open it.
I get an error conplaining about the fact that this kind of link is not
supported...
-
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] Parsing a folder to EFM?

2008-09-22 Thread Fedor Gusev
On Mon, Sep 22, 2008 at 04:28:02PM +0200, Luca De Marini wrote:
 2008/9/22 Fedor Gusev [EMAIL PROTECTED]
 
  On Mon, Sep 22, 2008 at 05:56:17PM +0400, Fedor Gusev wrote:
   On Mon, Sep 22, 2008 at 03:45:42PM +0200, Luca De Marini wrote:
   nop, it doesn't work :(
   I even tried with the ~ sinbol, no luck...
   Any other guess?
   cp ~/.e/e/fileman/favorites/home.desktop ~/.local/share/applications/
   echo home.desktop  ~/.e/e/applications/bar/default/.order
  
   You need to update an icon though. Looks like ibar does not look for
   icons in theme.
  Oops... Also, replace
 URL=file:$HOME
  with
 URL=file:~
  in ~/.local/share/applications/home.desktop
 
 
 It does not work. Even running the  .desktop file directly does not open it.
 I get an error conplaining about the fact that this kind of link is not
 supported...
Does it work if you set
URL=file:favorites
URL=file:desktop
URL=file:/usr
in ~/.local/share/applications/home.desktop? Do you restart E after
these changes? Do you have the lastest E from svn?
-- 
King regards,
Fedor Gusev.

-
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] R: [Announce] Edje_Player

2008-09-22 Thread Andreas Volz
Am Mon, 22 Sep 2008 01:09:12 +0200 (CEST) schrieb Dave Andreoli:

 
 - Andreas Volz [EMAIL PROTECTED] ha scritto:
 
  Hello,
  
  I wrote a little tool called 'Edje_Player'. The main reason was that
  I
  needed a light weight tool to preview my hand written Edje file. See
  here how to use it:
  
   ./edje_player --help
  Usage: edje_player [OPTION...]
-g, --group=STRING  The Edje group to display.
-e, --engine=STRING The Evas engine type.
-b, --borderlessDisplay window without border.
-s, --stickyDisplay window sticky.
-p, --shapedDisplay window shaped.
-a, --alpha Display window with alpha channel (needs
composite support!).
-l, --list-engines  List all available engines.
-r, --list-groups   List all available groups in the Edje
  file. -v, --version   show version
  
  Help options:
-?, --help  Show this help message
--usage Display brief usage message
  
  The Edje_Editor is great but not perfect for preview. The
  Edje_Viewer is broken for some unknown reasons.
 
 Did you tryed edje_editor -t  ?
 I didn't look deeper at edje_player but seems to do the same thing.
 I think we need to share some code in some way... what about make
 edje_editor -t works like edje_player? or maybe include your 
 app in the editor source tree (installing a second binary)? at 
 lest you don't have to manage all the autotool stuff ;)

I've no edje_editor installed here. I'll take a look what option -t
does on my other computer.

regards
Andreas

-
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] Remove of fake_mouse_up

2008-09-22 Thread Ivan
Two simple patches to get rid of the fake_mouse_up calls (and its log polluter).
One for E and its core modules, the other for E-MODULES-EXTRA.
Index: src/bin/e_fm.c
===
--- src/bin/e_fm.c	(revision 36177)
+++ src/bin/e_fm.c	(working copy)
@@ -5177,8 +5177,6 @@
  {
 	if (!ic-selected) _e_fm2_mouse_1_handler(ic, 0, ev-modifiers);
 	_e_fm2_icon_menu(ic, ic-sd-obj, ev-timestamp);
-	e_util_evas_fake_mouse_up_later(evas_object_evas_get(ic-sd-obj),
-	ev-button);
  }
 }
 
@@ -5432,8 +5430,6 @@
 	 e_drag_xdnd_start(d,
 			   ic-drag.x + ic-x + ic-sd-x - ic-sd-pos.x,
 			   ic-drag.y + ic-y + ic-sd-y - ic-sd-pos.y);
-	 e_util_evas_fake_mouse_up_later(evas_object_evas_get(ic-sd-obj),
-	 1);
 	  }
  }
 }
@@ -5708,8 +5704,6 @@
else if (ev-button == 3)
  {
 	_e_fm2_menu(sd-obj, ev-timestamp);
-	e_util_evas_fake_mouse_up_later(evas_object_evas_get(sd-obj),
-	ev-button);
  }
 }
 
Index: src/bin/e_gadcon.c
===
--- src/bin/e_gadcon.c	(revision 36177)
+++ src/bin/e_gadcon.c	(working copy)
@@ -1695,7 +1695,6 @@
 	  }
 	e_menu_activate_mouse(mn, zone, cx, cy, 1, 1, 
 			  E_MENU_POP_DIRECTION_DOWN, ev-timestamp);
-	e_util_evas_fake_mouse_up_later(gcc-gadcon-evas, ev-button);
  }
 }
 
@@ -2305,8 +2304,6 @@
 			  e_util_zone_current_get(e_manager_current_get()),
 			  cx + ev-output.x, cy + ev-output.y, 1, 1,
 			  E_MENU_POP_DIRECTION_DOWN, ev-timestamp);
-	e_util_evas_fake_mouse_up_later(gcc-gadcon-evas,
-	ev-button);
  }
else if (ev-button == 1)
  {
Index: src/bin/e_border.c
===
--- src/bin/e_border.c	(revision 36177)
+++ src/bin/e_border.c	(working copy)
@@ -5314,7 +5314,6 @@
 
 			e_drag_resize(drag, w, h);
 			e_drag_start(drag, bd-drag.x, bd-drag.y);
-			e_util_evas_fake_mouse_up_later(bd-bg_evas, 1);
 			 }
 		   bd-drag.start = 0;
 		}
Index: src/bin/e_actions.c
===
--- src/bin/e_actions.c	(revision 36177)
+++ src/bin/e_actions.c	(working copy)
@@ -1468,7 +1468,6 @@
 		  e_menu_post_deactivate_callback_set(m, _e_actions_cb_menu_end, NULL);
 		  e_menu_activate_mouse(m, zone, x, y, 1, 1,
 	E_MENU_POP_DIRECTION_DOWN, ev-time);
-		  e_util_container_fake_mouse_up_all_later(zone-container);
 	   }
 	  }
  }
Index: src/bin/e_entry.c
===
--- src/bin/e_entry.c	(revision 36177)
+++ src/bin/e_entry.c	(working copy)
@@ -545,7 +545,6 @@
 	e_menu_activate_mouse(sd-popup, e_util_zone_current_get(man),
 			  x, y, 1, 1, 
 			  E_MENU_POP_DIRECTION_DOWN, event-timestamp);
-	e_util_evas_fake_mouse_up_later(e, event-button);
  }
 
 #ifdef HAVE_ECORE_IMF
Index: src/bin/e_toolbar.c
===
--- src/bin/e_toolbar.c	(revision 36177)
+++ src/bin/e_toolbar.c	(working copy)
@@ -290,7 +290,6 @@
ecore_x_pointer_xy_get(zone-container-win, x, y);
e_menu_activate_mouse(mn, zone, x, y, 1, 1, 
 			 E_MENU_POP_DIRECTION_DOWN, ev-timestamp);
-   e_util_evas_fake_mouse_up_later(tbar-gadcon-evas, ev-button);
 }
 
 static void 
Index: src/bin/e_shelf.c
===
--- src/bin/e_shelf.c	(revision 36177)
+++ src/bin/e_shelf.c	(working copy)
@@ -1233,7 +1233,6 @@
 			  e_util_zone_current_get(e_manager_current_get()),
 			  cx + ev-output.x, cy + ev-output.y, 1, 1,
 			  E_MENU_POP_DIRECTION_DOWN, ev-timestamp);
-	e_util_evas_fake_mouse_up_later(es-gadcon-evas, ev-button);
 	break;
  }
 }
Index: src/bin/e_utils.c
===
--- src/bin/e_utils.c	(revision 36177)
+++ src/bin/e_utils.c	(working copy)
@@ -18,61 +18,16 @@
 EAPI int starting = 1;
 EAPI int stopping = 0;
 
-typedef struct _E_Util_Fake_Mouse_Up_Info E_Util_Fake_Mouse_Up_Info;
-
-struct _E_Util_Fake_Mouse_Up_Info
-{
-   Evas *evas;
-   int   button;
-};
-
 /* local subsystem functions */
 static int _e_util_cb_delayed_del(void *data);
-static void _e_util_container_fake_mouse_up_cb(void *data);
 static int _e_util_wakeup_cb(void *data);
 
 /* local subsystem globals */
 static Ecore_Timer *_e_util_dummy_timer = NULL;
 
 /* externally accessible functions */
-EAPI void
-e_util_container_fake_mouse_up_later(E_Container *con, int button)
-{
-   E_OBJECT_CHECK(con);
-   E_OBJECT_TYPE_CHECK(con, E_CONTAINER_TYPE);
 
-   printf(FIXME: NO MORE CONTAINER FAKE UP! MUST REMOVE CODE\n);
-   e_util_evas_fake_mouse_up_later(con-bg_evas, button);
-}
-
 EAPI void
-e_util_container_fake_mouse_up_all_later(E_Container *con)
-{
-   E_OBJECT_CHECK(con);
-   E_OBJECT_TYPE_CHECK(con, E_CONTAINER_TYPE);
-
-   e_util_container_fake_mouse_up_later(con, 1);
- 

[E-devel] R: Re: R: E SVN: davemds trunk/web/www/p/index

2008-09-22 Thread Dave Andreoli

- Toma [EMAIL PROTECTED] ha scritto:

 2008/9/22 Dave Andreoli [EMAIL PROTECTED]:
 
  - Enlightenment SVN [EMAIL PROTECTED] ha scritto:
 
  Author:   davemds
  Date: 2008-09-17 13:00:38 -0700 (Wed, 17 Sep 2008)
  New Revision: 36059
 
  Log:
Ok on the main site the scripts works! but not on exchange :(
  Someone know how the update works?? please please...
 
  Exchange patch is on place now.
 
  mekius: did you fix the commit script? or someone has fixed exchange
 by hand?
  whitout passing from cvs?
 
 I fixed it up, with iamsthithas help. Its working correctly, and also
 running off the SVN server rather than the googlecode site. Anything
 you commit to the SVN will work now.
 Toma

Good :)
thanks
dave

 
 
  if the commit script is ok now, I will fix some other small issue I
 noticed
 
  Dave
 
 
 
  Modified:
trunk/web/www/p/index/en-body
 
  Modified: trunk/web/www/p/index/en-body
 
 ===
  --- trunk/web/www/p/index/en-body 2008-09-17 19:56:58 UTC (rev
 36058)
  +++ trunk/web/www/p/index/en-body 2008-09-17 20:00:38 UTC (rev
 36059)
  @@ -2,7 +2,7 @@
tr
 td class='main'
  div class=main
  -h3What is Enlightenment ?/h3
  +h3What is Enlightenment?/h3
   p
Enlightenment is a window manager. Enlightenment is a
 desktop
  shell.
Enlightenment is the building blocks to create beautiful
  applications.
 
 
 
 -
  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-svn mailing list
  [EMAIL PROTECTED]
  https://lists.sourceforge.net/lists/listinfo/enlightenment-svn
 
 
 -
  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