[E-devel] Nightly build log for E17 on 2008-07-05 07:06:11 -0700

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

Packages that failed to build:
eclair  http://download.enlightenment.org/tests/logs/eclair.log
edvi  http://download.enlightenment.org/tests/logs/edvi.log
eflpp  http://download.enlightenment.org/tests/logs/eflpp.log
elapse  http://download.enlightenment.org/tests/logs/elapse.log
elicit  http://download.enlightenment.org/tests/logs/elicit.log
elitaire  http://download.enlightenment.org/tests/logs/elitaire.log
embrace  http://download.enlightenment.org/tests/logs/embrace.log
enna  http://download.enlightenment.org/tests/logs/enna.log
entrance_edit_gui  
http://download.enlightenment.org/tests/logs/entrance_edit_gui.log
entrance  http://download.enlightenment.org/tests/logs/entrance.log
epdf  http://download.enlightenment.org/tests/logs/epdf.log
esmart  http://download.enlightenment.org/tests/logs/esmart.log
express  http://download.enlightenment.org/tests/logs/express.log
iconbar  http://download.enlightenment.org/tests/logs/iconbar.log

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

Packages skipped:
camE, ecore_dbus, engage, 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, ecore_li, ecore, edata, edb, 
e_dbus, edje_editor, edje, edje_viewer, eet, eflame, efm_nav, efm_path, 
efreet, elation, e, embryo, emotion, emphasis, empower, emprint, emu, enesim, 
engrave, engycad, enhance, enity, enterminus, enthrall, entropy, envision, 
epeg, ephoto, e_phys, epsilon, epx, equate, estickies, etk_extra, etk, 
etk-perl, 
evas, evfs, evolve, ewl, examine, execwatch, exhibit, exml, expedite, 
exquisite, 
extrackt, feh, flame, forecasts, gevas2, iiirk, 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.


-
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] Google summer of code 2008 Midterms....

2008-07-05 Thread Timothy P. Horton
Present!

Thanks for the reminder.

Tim

-
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] etk text_view key_down method does not handle the empty string.

2008-07-05 Thread kalyanasundaram s
Hi all,
I heard from #e, i should send the patches to the devel-list.

When the modifier keys are pressed, like ctrl, alt, shift,
etk's event-string is coming as empty
stringhttp://en.wikipedia.org/wiki/Empty_string. So if you select
some text and press these keys actually it deletes those
selected characters. Please have a look at
http://bugzilla.enlightenment.org/show_bug.cgi?id=509
for more info. The below patch will fix this issue.

--- etk_text_view.c 2008-07-05 02:28:37.0 +0530
+++ etk_text_view.c  2008-07-05 02:28:50.0 +0530
@@ -275,7 +275,7 @@
  etk_textblock_delete_range(tb, cursor, selection);
   etk_textblock_insert(tb, cursor, \n, -1);
}
-   else if (event-string  !(strlen(event-string) == 1 
event-string[0]  0x20))
+   else if (event-string  strlen(event-string)  0 
!(strlen(event-string) == 1  event-string[0]  0x20))
{
   if (selecting)
  etk_textblock_delete_range(tb, cursor, selection);

Hope it is good. Works for me.

Thanks,
-- 
kalyan
http://skalyanasundaram.wordpress.com
-
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel