[E-devel] Nightly build log for E17 on 2008-04-05 07:09:13 -0700

2008-04-05 Thread Nightly build system
Build log for Enlightenment DR 0.17 on 2008-04-05 07:09:13 -0700
Build logs are available at http://download.enlightenment.org/tests/logs

Packages that failed to build:
ecore_li  http://download.enlightenment.org/tests/logs/ecore_li.log
empower  http://download.enlightenment.org/tests/logs/empower.log
engage  http://download.enlightenment.org/tests/logs/engage.log
enna  http://download.enlightenment.org/tests/logs/enna.log
epdf  http://download.enlightenment.org/tests/logs/epdf.log

Packages with no supported build system:
entice, esmart_rsvg, exorcist, python-efl, 

Packages skipped:
camE, enotes, enscribe, epbb, eplay, erss, etk_server, etox, e_utils, 
Evas_Perl, 
evoak, gfx_routines, lvs-gui, med, nexus, notgame, ruby-efl, webcam, 

Packages that build OK:
alarm, bling, calendar, cpu, deskshow, echo, eclair, ecore, edata, edb, 
e_dbus, edje_editor, edje, edje_viewer, edvi, eet, eflame, eflpp, efm_nav, 
efm_path, efreet, elapse, elation, elicit, elitaire, e, embrace, embryo, 
emotion, emphasis, emprint, emu, enesim, engrave, engycad, enhance, enity, 
enterminus, enthrall, entrance_edit_gui, entrance, entropy, envision, epeg, 
ephoto, e_phys, epsilon, epx, equate, esmart, estickies, etk_extra, etk, 
etk-perl, evas, evfs, evolve, ewl, examine, execwatch, exhibit, exml, expedite, 
express, exquisite, extrackt, feh, flame, forecasts, gevas2, iconbar, 
imlib2_loaders, 
imlib2, Imlib2_Perl, imlib2_tools, language, mail, mem, mixer, moon, mpdule, 
net, news, notification, penguins, pesh, photo, rage, rain, screenshot, 
scrot, slideshow, snow, taskbar, tclock, uptime, weather, winselector, wlan, 


Debian GNU/Linux 4.0 \n \l

Linux enlightenment2 2.6.18-4-686 #1 SMP Wed May 9 23:03:12 UTC 2007 i686 
GNU/Linux


See http://download.enlightenment.org/tests/ for details.


-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Register now and save $200. Hurry, offer ends at 11:59 p.m., 
Monday, April 7! Use priority code J8TLD2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E CVS: equate onefang

2008-04-05 Thread David Seikel
Oops.  Looks like my CVS skills are rusty.  Probably should remove this
generated file, then .cvsignore it.  Only changed a useless comment, so
I wont bother reverting it.


On Sat,  5 Apr 2008 13:44:39 -0400 (EDT) Enlightenment CVS
[EMAIL PROTECTED] wrote:

 Enlightenment CVS committal
 
 Author  : onefang
 Project : misc
 Module  : equate
 
 Dir : misc/equate/src
 
 
 Modified Files:
   calc_lex.c 
 
 
 Log Message:
 .cvsignore++
 
 ===
 RCS file: /cvs/e/misc/equate/src/calc_lex.c,v
 retrieving revision 1.2
 retrieving revision 1.3
 diff -u -3 -r1.2 -r1.3
 --- calc_lex.c20 Sep 2004 22:54:32 -  1.2
 +++ calc_lex.c5 Apr 2008 17:44:09 -   1.3
 @@ -2,7 +2,7 @@
  /* A lexical scanner generated by flex */
  
  /* Scanner skeleton version:
 - * $Header: /cvs/e/misc/equate/src/calc_lex.c,v 1.2 2004/09/20
 22:54:32 handyande Exp $
 + * $Header: /cvs/e/misc/equate/src/calc_lex.c,v 1.3 2008/04/05
 17:44:09 onefang Exp $ */
  
  #define FLEX_SCANNER


signature.asc
Description: PGP signature
-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Register now and save $200. Hurry, offer ends at 11:59 p.m., 
Monday, April 7! Use priority code J8TLD2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] [PATCH] three new edje embryo functions

2008-04-05 Thread Lars Munch
Hi

Attached patch adds three new functions to edje/embryo, namely
part_raise, part_lower and get_mouse_buttons.

Comments?

Regrads
Lars Munch
Index: data/include/edje.inc
===
RCS file: /var/cvs/e/e17/libs/edje/data/include/edje.inc,v
retrieving revision 1.23
diff -u -u -r1.23 edje.inc
--- data/include/edje.inc	11 Aug 2007 13:20:33 -	1.23
+++ data/include/edje.inc	5 Apr 2008 18:48:14 -
@@ -104,10 +104,13 @@
 native   get_text_class   (class[], font[], Float:size);
 native   get_geometry (part_id, x, y, w, h);
 native   get_mouse(x, y);
+native   get_mouse_buttons();
 native   stop_program (program_id);
 native   stop_programs_on (part_id);
 native   set_min_size (Float:w, Float:h);
 native   set_max_size (Float:w, Float:h);
+native   part_raise   (part_id);
+native   part_lower   (part_id);
 
 enum Msg_Type
 {
Index: src/lib/edje_embryo.c
===
RCS file: /var/cvs/e/e17/libs/edje/src/lib/edje_embryo.c,v
retrieving revision 1.59
diff -u -u -r1.59 edje_embryo.c
--- src/lib/edje_embryo.c	6 Mar 2008 17:52:58 -	1.59
+++ src/lib/edje_embryo.c	5 Apr 2008 18:48:15 -
@@ -794,6 +794,17 @@
return 0;
 }
 
+/* get_mouse_buttons() */
+static Embryo_Cell
+_edje_embryo_fn_get_mouse_buttons(Embryo_Program *ep, Embryo_Cell *params)
+{
+   Edje *ed;
+
+   CHKPARAM(0);
+   ed = embryo_program_data_get(ep);
+   return evas_pointer_button_down_mask_get(ed-evas);
+}
+
 /* emit(sig[], src[]) */
 static Embryo_Cell
 _edje_embryo_fn_emit(Embryo_Program *ep, Embryo_Cell *params)
@@ -2129,6 +2140,44 @@
return 0;
 }
 
+/* part_raise(part_id) */
+static Embryo_Cell
+_edje_embryo_fn_part_raise(Embryo_Program *ep, Embryo_Cell *params)
+{	  
+   int part_id = 0;
+   Edje *ed;	 
+		 
+   CHKPARAM(1);	 
+	  
+   part_id = params[1];
+   if (part_id  0) return 0;
+
+   ed = embryo_program_data_get(ep);
+		  
+   evas_object_raise(ed-obj);
+
+   return 0;
+}
+
+/* part_lower(part_id) */
+static Embryo_Cell
+_edje_embryo_fn_part_lower(Embryo_Program *ep, Embryo_Cell *params)
+{	  
+   int part_id = 0;
+   Edje *ed;	 
+		 
+   CHKPARAM(1);	 
+	  
+   part_id = params[1];
+   if (part_id  0) return 0;
+
+   ed = embryo_program_data_get(ep);
+		  
+   evas_object_lower(ed-obj);
+
+   return 0;
+}
+
 void
 _edje_embryo_script_init(Edje *ed)
 {
@@ -2192,6 +2241,7 @@
embryo_program_native_call_add(ep, get_drag_page, _edje_embryo_fn_get_drag_page);
embryo_program_native_call_add(ep, set_drag_page, _edje_embryo_fn_set_drag_page);
embryo_program_native_call_add(ep, get_mouse, _edje_embryo_fn_get_mouse);
+   embryo_program_native_call_add(ep, get_mouse_buttons, _edje_embryo_fn_get_mouse_buttons);
embryo_program_native_call_add(ep, stop_program, _edje_embryo_fn_stop_program);
embryo_program_native_call_add(ep, stop_programs_on, _edje_embryo_fn_stop_programs_on);
embryo_program_native_call_add(ep, set_min_size, _edje_embryo_fn_set_min_size);
@@ -2203,6 +2253,9 @@
embryo_program_native_call_add(ep, set_state_val, _edje_embryo_fn_set_state_val);
embryo_program_native_call_add(ep, get_state_val, _edje_embryo_fn_get_state_val);
 
+   embryo_program_native_call_add(ep, part_raise, _edje_embryo_fn_part_raise);
+   embryo_program_native_call_add(ep, part_lower, _edje_embryo_fn_part_lower);
+
 //   embryo_program_vm_push(ed-collection-script);
 //   _edje_embryo_globals_init(ed);
 }
-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Register now and save $200. Hurry, offer ends at 11:59 p.m., 
Monday, April 7! Use priority code J8TLD2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [PATCH] Some small speedup for Edje

2008-04-05 Thread Cedric BAIL
On Thu, Apr 3, 2008 at 10:15 PM, The Rasterman Carsten Haitzler
[EMAIL PROTECTED] wrote:
 On Thu, 03 Apr 2008 21:25:05 +0200 Kim Woelders [EMAIL PROTECTED] babbled:
   Cedric BAIL wrote:
  So here are some patch that should not break edje too much.
   
0001 and 0002: Replace call to snprintf by using memcpy or some kind of
itoa.
  
   Is this really worth while? Possibly a small speedup at the cost of
   considerably more and considerably uglier code?

I could perhaps clean a little bit the code, but using snprintf when
only memcpy is really required slow thing down (around 5% of my time
lost in snprintf, with modification 0.1% in memcpy and 1% in
snprintf). It's definitively a win. A minimal one, but a win.

  i've reverted them anyway.. b0rks. :(

I believe only 0004 should be risky, the other shouldn't be risky. But
as it break illumine. I should try it. Do you have a tarball, an url
or something for this stuff ?

-- 
Cedric BAIL

-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Register now and save $200. Hurry, offer ends at 11:59 p.m., 
Monday, April 7! Use priority code J8TLD2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [PATCH] Some small speedup for Edje

2008-04-05 Thread Vincent Torri


On Fri, 4 Apr 2008, Cedric BAIL wrote:

 I believe only 0004 should be risky, the other shouldn't be risky. But
 as it break illumine. I should try it. Do you have a tarball, an url
 or something for this stuff ?

http://illume.projects.openmoko.org/

Vincent

-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Register now and save $200. Hurry, offer ends at 11:59 p.m., 
Monday, April 7! Use priority code J8TLD2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] patch for edje_text

2008-04-05 Thread The Rasterman
On Wed, 26 Mar 2008 17:51:07 -0300 Adriano Rezende [EMAIL PROTECTED] 
babbled:

 I was facing a problem with edje text.
 When resizing the canvas to fit exactly the text size, the text simply
 disappeared.
 The attached diff fixes that issue. But since I'm not used with this code, I
 would
 like to know if there is no side effect with this change.

i'll put it in cvs - so far nothing, but i think it'll be ok.

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


-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Register now and save $200. Hurry, offer ends at 11:59 p.m., 
Monday, April 7! Use priority code J8TLD2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [Patch] Fix custom command in Open with... dialog

2008-04-05 Thread The Rasterman
On Mon, 31 Mar 2008 14:01:55 +0400 Гусев Фёдор [EMAIL PROTECTED] babbled:

aaah. here it is. in cvs.

 Oops... Use this one instead.
 
 On Sat, Mar 29, 2008 at 2:38 AM, Гусев Фёдор [EMAIL PROTECTED] wrote:
  Hello.
 
Ok, I had to resend this, since first time
   a) sent it to the wrong list
   b) attachment didn't get through (because of a?)
 
 
 
For now, if you enter custom command in Open with... dialog (in E
integrated filemanager), e.g. you type smth like 'mplayer' or even
'mplayer %f' and click Open, nothing will happen. The command will be
executed just as you type it -- mplayer will complain about missing
files.
 
Attached patch fixes that. Actually, a fake .desktop entry is created
with Exec field set to the command you typed in. So, the command
running is now taken by efreet and you can use various special fields
described in FDO Desktop Entry Spec, e.g. %f, %F.
 
So, selecting a movie, opening the Open with... dialog, typing
'mplayer %f' and clicking Open works now.
 
--
Sincerely yours, Fedor Gusev.
 
 
 --
 Sincerely yours, Fedor Gusev.


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


-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Register now and save $200. Hurry, offer ends at 11:59 p.m., 
Monday, April 7! Use priority code J8TLD2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel