Re: [E-devel] Ruby bindings

2008-05-01 Thread Tilman Sauerbeck
Guillaume Ballet [2008-05-01 15:36]: I'm wondering if there was still someone working on the Ruby bindings for EFL. By googling a bit, I found that there were two versions, one that is found in the source tree and another one that is available at http://code-monkey.de/pages/ruby-efl Is

Re: [E-devel] {Spam?} Requirements for exiftags in Epsilon?

2007-12-03 Thread Tilman Sauerbeck
Vincent Torri [2007-12-03 23:04]: On Mon, 3 Dec 2007, Gustavo Sverzut Barbieri wrote: Hi guys, We found the root of those unaligned loads, it was in canon.c (http://www.enlightenment.org/viewvc/e17/libs/epsilon/src/lib/exiftags/canon.c?hideattic=1r1=1.2r2=1.3), with a patch tilman

Re: [E-devel] improvements of configure

2007-10-07 Thread Tilman Sauerbeck
Vincent Torri [2007-09-30 16:04]: Ideas ? remarks ? Can we switch to this: AC_INIT(package, version) AC_CONFIG_SRCDIR([configure.in]) AM_INIT_AUTOMAKE([dist-bzip2]) instead? I believe that's the current way to initialize autoconf/automake. Regards, Tilman -- A: Because it messes up the

Re: [E-devel] Evas: calling order for method's internals (forwarding noop to smarts)

2007-09-13 Thread Tilman Sauerbeck
Gustavo Sverzut Barbieri [2007-09-13 15:22]: Actually there are 2 CPP macros FORWARD_NOOP_RESIZES_TO_SMART_OBJS and FORWARD_NOOP_MOVES_TO_SMART_OBJS currently defined, do we really need them? Why don't have similars for hide/show/color/clip...? I did that. There's no real reason why only move

Re: [E-devel] _edje_recalc() algorithm and optimizations

2007-08-26 Thread Tilman Sauerbeck
Gustavo Sverzut Barbieri [2007-08-25 04:55]: I see that usually smart objects check for properties and return right at the beginning if they're exactly the same. But in python bindings this will result in extra C call, that will trigger python calls and overhead is bigger there. There's a

Re: [E-devel] E CVS: libs/evas tilman

2007-05-18 Thread Tilman Sauerbeck
Kim Woelders [2007-05-18 11:23]: Enlightenment CVS wrote: Enlightenment CVS committal Author : tilman Project : e17 Module : libs/evas Dir : e17/libs/evas/src/lib/canvas Modified Files: evas_object_textblock.c Log Message: rework how the html entity

Re: [E-devel] Ecore compilation error when using XCB

2007-05-13 Thread Tilman Sauerbeck
Ed Presutti [2007-05-13 12:58]: ecore_xcb_events.c: In function '_ecore_x_event_handle_client_message': ecore_xcb_events.c:1816: error: 'XCB_WM_ICONIC_STATE' undeclared (first use in this function) You need to install xcb-util from git IIRC. Regards, Tilman -- A: Because it messes up the

Re: [E-devel] [ecore] error: Ecore_X.h: No such file or directory

2007-05-10 Thread Tilman Sauerbeck
Markus Rothe [2007-05-10 08:13]: Hi Markus, I just ran into this problem while compiling ecore (CVS checkout from today): ecore_evas_private.h:26:22: error: Ecore_X.h: No such file or directory This is a fresh install without ecore installed yet. Once I applied the attached patch and

Re: [E-devel] ecore_x do not build

2007-05-08 Thread Tilman Sauerbeck
Massimo Maiurana [2007-05-07 22:46]: I've just tried to build e17 but ecore_x doesn't build. I probably fixed that last night, please try again. Regards, Tilman -- A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? A: Top-posting. Q:

Re: [E-devel] [evas] fix of configure's output

2007-05-05 Thread Tilman Sauerbeck
Vincent Torri [2007-05-05 01:05]: when PKG_CHECK_MODULE does not find a package, it does not display the result. This lead to wrong output. Of course it does. Works perfectly fine here. See pkg.m4. Regards, Tilman -- A: Because it messes up the order in which people normally read text. Q:

Re: [E-devel] [evas] fix of configure's output

2007-05-05 Thread Tilman Sauerbeck
Vincent Torri [2007-05-05 13:51]: On Sat, 5 May 2007, Tilman Sauerbeck wrote: Vincent Torri [2007-05-05 01:05]: when PKG_CHECK_MODULE does not find a package, it does not display the result. This lead to wrong output. Of course it does. Works perfectly fine here. See pkg.m4

Re: [E-devel] E17 Bindings

2007-04-09 Thread Tilman Sauerbeck
Carsten Haitzler [2007-04-09 08:36]: Hello, I would like to try and write some PLT-Scheme bindings to EWL and E17. Where should I start? Probably from imlib2 and then all my way to ewl and e17? I don't think I can go directly to EWL, right? well actually you don't need to do imlib2 -

[E-devel] Edje -- alternate font metrics

2007-04-02 Thread Tilman Sauerbeck
Hi, some days ago a new Edje feature hit CVS. It can be even useful, so I guess I should document it a bit. Edje writers now can make their parts use alternate font metrics. This will make libedje compute the size of a text part a little different than usual. Using that alternate metrics mode

Re: [E-devel] [PATCH] Cutout

2007-03-29 Thread Tilman Sauerbeck
Cedric BAIL [2007-03-29 17:58]: Another little patch that potentially break every thing and need review. To make the story short, when you have a lot of image on the screen with many cliping, you are creating and destroying many time Cutout_Rect object. So I changed the code to do

Re: [E-devel] E CVS: proto titan

2007-03-23 Thread Tilman Sauerbeck
Enlightenment CVS [2007-03-22 21:27]: +PKG_CHECK_MODULES([EVAS], evas, + [ + ], + [ + echo Evas was not found by pkg-config!; + AC_MSG_ERROR([Empower needs evas to compile.]) + ] +) The default is to error out if no third argument is given. So really you could just use

[E-devel] switching to pkg-config?

2007-03-20 Thread Tilman Sauerbeck
Hi, a few years ago, I proposed to use pkg-config instead of foo-config for the EFL. The suggestion was shot down quickly, because apparently there were some issues with libpng back then. I'd like to propose to use pkg-config again now. libpng is only required by evas and imlib2 AFAIK, and if

Re: [E-devel] switching to pkg-config?

2007-03-20 Thread Tilman Sauerbeck
Carsten Haitzler [2007-03-21 01:10]: a few years ago, I proposed to use pkg-config instead of foo-config for the EFL. The suggestion was shot down quickly, because apparently there were some issues with libpng back then. I'd like to propose to use pkg-config again now. libpng is only

Re: [E-devel] switching to pkg-config?

2007-03-20 Thread Tilman Sauerbeck
Carsten Haitzler [2007-03-21 01:24]: Carsten Haitzler [2007-03-21 01:10]: a few years ago, I proposed to use pkg-config instead of foo-config for the EFL. The suggestion was shot down quickly, because apparently there were some issues with libpng back then. I'd like to

Re: [E-devel] Ecore_Str new feature...

2007-03-12 Thread Tilman Sauerbeck
Stéphane Bauland [2007-03-12 14:56]: Brian Mattern wrote: On Mon, Mar 12, 2007 at 12:41:41PM +0100, Stéphane Bauland wrote: + * @param max_tokens The maximum number of strings to split string into. If this is less than 1, the string is split completely. + if (

Re: [E-devel] Edje data speedup

2007-03-02 Thread Tilman Sauerbeck
Brian Mattern [2007-03-01 15:34]: On Thu, Mar 01, 2007 at 09:35:13PM +0100, Tilman Sauerbeck wrote: ACK. I believe raster's reasoning for using lists in various spots that would intuitively like to be hashes was the size of the entries that are stored. IIRC evas/ecore_evas also use lists

Re: [E-devel] Edje data speedup

2007-03-01 Thread Tilman Sauerbeck
Christopher Michael [2007-03-01 05:01]: Nathan Ingersoll wrote: Doing some profiling, I noticed that I was seeing a fair amount of overhead (19.9% of the test apps completion time) coming from strcmp, and in particular from calls to edje_file_data_get. This isn't completely unexpected as

Re: [E-devel] edje_decc patch

2007-02-28 Thread Tilman Sauerbeck
[EMAIL PROTECTED] [2007-02-28 14:14]: Dave [2007-02-27 12:58]: Tilman Sauerbeck ha scritto: Dave [2007-02-24 02:11]: Carsten Haitzler (The Rasterman) ha scritto: On Mon, 5 Feb 2007 20:53:16 +0100 Tilman Sauerbeck [EMAIL PROTECTED] babbled: dan sinclair [2007-02-05 12

Re: [E-devel] edje_decc patch

2007-02-24 Thread Tilman Sauerbeck
Dave [2007-02-24 02:11]: Carsten Haitzler (The Rasterman) ha scritto: On Mon, 5 Feb 2007 20:53:16 +0100 Tilman Sauerbeck [EMAIL PROTECTED] babbled: dan sinclair [2007-02-05 12:17]: Tilman Sauerbeck wrote: DaveMDS [2007-02-05 05:05]: here's a patch

Re: [E-devel] edje_decc patch

2007-02-05 Thread Tilman Sauerbeck
DaveMDS [2007-02-05 05:05]: here's a patch for edje_decc that create a file called default.edc in the decompiled source dir. The file contents is only a line that include the main edc file. If the default.edc file exist none is created With this patch I can open edj file from edje_editor

Re: [E-devel] edje_decc patch

2007-02-05 Thread Tilman Sauerbeck
dan sinclair [2007-02-05 12:17]: Tilman Sauerbeck wrote: DaveMDS [2007-02-05 05:05]: here's a patch for edje_decc that create a file called default.edc in the decompiled source dir. The file contents is only a line that include the main edc file. If the default.edc file exist none

Re: [E-devel] ecore_evas_geometry_get()

2007-01-22 Thread Tilman Sauerbeck
Ed Presutti [2007-01-21 23:11]: On Sun, 2007-01-14 at 20:03 -0600, Ed Presutti wrote: How do you correctly get the window position and size when using Ecore_Evas? Here's a quick code snippet to demonstrate what i'm trying to do. I've correctly gotten the size of the object, but can't

Re: [E-devel] evas_smart_new() api

2006-11-28 Thread Tilman Sauerbeck
Brian Mattern [2006-11-28 10:15]: Any objections to removing these from the API (other than the fact that we have to trudge through cvs and delete a bunch of NULL's)? I'd prefer this to having deprecated API on release. No, please do. Please let the list know when it's done so I can adapt my

Re: [E-devel] bytecode hinting and desktop files

2006-10-19 Thread Tilman Sauerbeck
Nikolas Arend [2006-10-19 13:59]: Carsten Haitzler (The Rasterman) wrote: On Thu, 19 Oct 2006 13:14:21 +0200 Nikolas Arend [EMAIL PROTECTED] babbled: Massimo Maiurana wrote: Carsten Haitzler (The Rasterman), il 18/10/2006 00:57, scrisse: see the above - add

Re: [E-devel] E CVS: libs/ecore kwo

2006-09-13 Thread Tilman Sauerbeck
Carsten Haitzler [2006-09-14 07:37]: On Wed, 13 Sep 2006 13:45:12 -0400 (EDT) Enlightenment CVS [EMAIL PROTECTED] babbled: hmm - i would have done it per root window - not screen (reverse map the roots back to screen #) I felt _screen was the obvious choice since there's one selection atom

Re: [E-devel] xrender_x11 engine: identity transform workaround

2006-09-12 Thread Tilman Sauerbeck
Carsten Haitzler [2006-09-12 09:01]: On Mon, 11 Sep 2006 19:55:28 +0200 Tilman Sauerbeck [EMAIL PROTECTED] babbled: I just fixed xorg-server so that setting a scaled variant of the identity is a no-op, too. That means if you pass the identity to XRenderSetPictureTransform(), the function

Re: [E-devel] E CVS: libs/evas tilman

2006-09-12 Thread Tilman Sauerbeck
Carsten Haitzler [2006-09-12 08:02]: On Mon, 11 Sep 2006 10:42:39 -0400 (EDT) Enlightenment CVS [EMAIL PROTECTED] babbled: [init transform changes] did this change anything with your xrender output? i would expect not (simply changing how the matrix is initted - content should be the same)

[E-devel] xrender_x11 engine: identity transform workaround

2006-09-11 Thread Tilman Sauerbeck
Hi, this is about the FIXME in evas_engine_xrender.c:493. If the depth of the surface is 1, we're passing a scaled variant of the identity matrix to the picture. All scaled variants of the identity should be treated the same in the render implementation, but apparently they aren't. I just fixed

Re: [E-devel] xrender_x11 engine: identity transform workaround

2006-09-11 Thread Tilman Sauerbeck
Tilman Sauerbeck [2006-09-11 19:55]: May I remove that chunk or do you want to keep it? Patch attached. Yeah, well, not quite attached. Now. Regards, Tilman -- A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? A: Top-posting. Q: What

[E-devel] Colormap issues in ecore_x_window_argb_internal_new()

2006-09-10 Thread Tilman Sauerbeck
Hi, when ecore_x creates an window with an ARGB visual, it creates a colormap for that visual (ecore_x_window.c:973). This colormap is evaluated by XCreateWindow() etc. Afterwards, when the window has been set up, the colormap is freed (line 1010). So now the colormap field in the

Re: [E-devel] ecore borderless_set in conflict with alpha_set ?

2006-09-09 Thread Tilman Sauerbeck
Carsten Haitzler [2006-09-07 14:27]: On Thu, 27 Jul 2006 20:50:54 + Hannes Janetzek [EMAIL PROTECTED] babbled: I found some strange behavior with this ecore calls. If I dont use alpha_set borderless_set works as expected. With alpha_set the border gets drawn. This is the code which I

Re: [E-devel] cvs, servers and stuff.

2006-08-14 Thread Tilman Sauerbeck
Eugen Minciu [2006-08-14 15:29]: Carsten Haitzler (The Rasterman) wrote: It has come to my attention that yet again we are killing systems. yes - we are becoming a burden on yet more cvs servers. we are monsters! :( anyway - we have been living on caosity's cvs for a while now - but

Re: [E-devel] ecore_x_netwm : some prop are not in spec

2006-07-29 Thread Tilman Sauerbeck
Vincent Torri [2006-07-28 21:00]: i'm reviewing netwm properties and the following ones : [...] EAPI Ecore_X_Atom ECORE_X_ATOM_NET_STARTUP_INFO_BEGIN = { 0 }; EAPI Ecore_X_Atom ECORE_X_ATOM_NET_STARTUP_INFO = { 0 };

Re: [E-devel] patch for edje

2006-06-12 Thread Tilman Sauerbeck
ZigsMcKenzie [2006-06-11 20:50]: Some comments. + STATE_COLOR_CLASS = 10, + STATE_REL1 = 11, +STATE_REL1_TO = 12, Obviously bad indentation here (and in some other places). + case EDJE_STATE_PARAM_COLOR_CLASS: + CHKPARAM(3); + + char *cc; Declaring

Re: [E-devel] E CVS: mail devilhorns

2006-06-10 Thread Tilman Sauerbeck
David Seikel [2006-06-08 05:54]: On Wed, 7 Jun 2006 15:43:59 -0400 (EDT) Enlightenment CVS [EMAIL PROTECTED] wrote: Added mail module based on embrace code (Thanks Tilman :) ) Does this make misc/embrace obsolete? No, because misc/embrace can also be used as a stand-alone application.

Re: [E-devel] File manager for iRiver iFP player.

2006-05-31 Thread Tilman Sauerbeck
Hisham Mardam Bey [2006-05-30 23:56]: On 5/30/06, Grzegorz Andrelczyk [EMAIL PROTECTED] wrote: I'm trying to write (using EWL) file manager for iriver player. And I'm stack with file manager part. Can somebody suggest me which EFL library I should use to be able to write this part?

[E-devel] Valgrind support in Evas

2006-05-21 Thread Tilman Sauerbeck
Hi, some time ago, Valgrind support was disabled in Evas. IIRC it was because we applied the linker flags from pkg-config --libs valgrind, which broke the build. I attached a patch that enables Valgrind support again, but doesn't apply the libs (they are only needed when you're developing

Re: [E-devel] Some ideas

2006-04-08 Thread Tilman Sauerbeck
Jerome Pinot [2006-04-08 20:25]: * ${HOME}/.e/apps (like enotes, elitaire, elicit, etc) That's not nice to clutter so much the files ;-) What about putting all EFL based apps under ${HOME}/.e ? I did start doing patches but I wonder what the E devs think. ~/.e/apps/foo is the correct

Re: [E-devel] IMPORTANT - READ THIS - CVS MOVE!

2006-03-18 Thread Tilman Sauerbeck
Carsten Haitzler [2006-03-18 12:02]: 4. a location (country, major city at minimum - full address if you want to give it) Eh? Why do you want that information? Regards, Tilman -- A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? A:

Re: [E-devel] Embrace

2006-01-21 Thread Tilman Sauerbeck
Walter Becker [2006-01-21 20:20]: /usr/local/enlightenment/lib/enlightenment/modules_extra/embrace/linux-i686/module.so: undefined symol: e_db_int_get However embrace as application works. The problem appeared with the cvs build yesterday. Does the attached patch help? Just a

Re: [E-devel] [Patch] Evas -- poorly-placed ++'s

2005-12-13 Thread Tilman Sauerbeck
Eric Sandall [2005-12-13 11:16]: while (dst dst_end) - *dst++ = (*src++ | PIXEL_SOLID_ALPHA) (*dst | 0x00ff); + *dst = (*src | PIXEL_SOLID_ALPHA) (*dst | 0x00ff); + dst++; + src++; } Shouldn't pre-increment (e.g. ++dst) be used instead of

Re: [E-devel] imap/biff

2005-12-03 Thread Tilman Sauerbeck
Morten Nilsen [2005-12-02 06:23]: With the recent checkin of the gadget stuff in CVS, I suddenly got this idea to implement a gadget that tells you of new mail in a more clean way than the current alternative does.. The current alternative is as clean as it can be. Cheers, Tilman

Re: [E-devel] Stuff

2005-11-27 Thread Tilman Sauerbeck
Jose O Gonzalez [EMAIL PROTECTED] [2005-11-27 01:19]: I'll see if I can find a better way. Talking about better ways - it would be awesome if you could fix your email client so your mails don't get sent messed up like this. Thanks, Tilman pgpoRz6XbkgRr.pgp Description: PGP signature

Re: [E-devel] Re: libs/eet sebastid

2005-11-06 Thread Tilman Sauerbeck
Nathan Ingersoll [EMAIL PROTECTED] [2005-11-04 13:38]: It's a trick to allocate the file node and name in one allocation instead of two. Since we have the memory available for the name, the strcpy is then used to copy the string into the allocated space. Yeah, and it's even buggy. Horray. If

Re: [E-devel] EWL themes

2005-11-02 Thread Tilman Sauerbeck
dan sinclair [EMAIL PROTECTED] [2005-11-02 11:25]: We could either do a separate CVS directory, or move them to edevelop.org and depend on the ability for .edj's to be de-compiled to let people get the source code. What's the point of option 1? Doesn't matter whether they are unmaintained in

Re: [E-devel] [edje] problem with 1 source for a signal and several targets

2005-10-08 Thread Tilman Sauerbeck
Vincent Torri [EMAIL PROTECTED] [2005-10-08 14:54]: program { name, focus_choose; signal, mouse,clicked,1; source, titi; script { run_program(PROGRAM:toto); run_program(PROGRAM:tata); } } program { name, toto; action, STATE_SET focus 0.0; target, t1;

[E-devel] [PATCH] Ability to shade maximized windows

2005-10-08 Thread Tilman Sauerbeck
Hi, topic says it all. At the moment, you cannot shade maximized windows, which is silly IMO. I don't see any good reason for this :) Please enlighten me. Patch attached. Regards, Tilman -- learn to quote: http://www.netmeister.org/news/learn2quote.html Index: e_border.c

Re: [E-devel] [PATCH] Debugging helper for theme developers

2005-10-05 Thread Tilman Sauerbeck
Carsten Haitzler [EMAIL PROTECTED] [2005-10-05 11:05]: If ~/.e/e/logs/debug-border.log exists, it will be filled with whatever info is emitted by the theme (emission == debug), e.g.: emit(debug, blah); When the log file doesn't exist, no debug data will be gathered. I think this is

[E-devel] [PATCH] Make Edje complain if you try to cancel non-existing animators

2005-10-05 Thread Tilman Sauerbeck
Hi, the bug I was hunting in a theme was that I did: public meh; set_int (meh, anim (...)); cancel_anim (meh); /* oops, should be get_int (meh)) of course! */ Edje never complained about it, which imo is a problem. When you try to ecore_timer_del() a non-existing timer, you'll get spanked by

[E-devel] Re: [PATCH] Debugging helper for theme developers

2005-10-04 Thread Tilman Sauerbeck
Tilman Sauerbeck [EMAIL PROTECTED] [2005-10-05 00:03]: see attached patch. Whoops, it's attached now :) Regards, Tilman -- learn to quote: http://www.netmeister.org/news/learn2quote.html Index: src/bin/e_border.c === RCS file

[E-devel] [PATCH] Debugging helper for theme developers

2005-10-04 Thread Tilman Sauerbeck
Hi, see attached patch. If ~/.e/e/logs/debug-border.log exists, it will be filled with whatever info is emitted by the theme (emission == debug), e.g.: emit(debug, blah); When the log file doesn't exist, no debug data will be gathered. I think this is very useful, since it's more convenient than

Re: [E-devel] Font struct in edje_cc.h

2005-09-30 Thread Tilman Sauerbeck
Carsten Haitzler [EMAIL PROTECTED] [2005-09-30 10:03]: On Thu, 29 Sep 2005 19:38:17 +0200 Tilman Sauerbeck [EMAIL PROTECTED] babbled: Vincent Torri [EMAIL PROTECTED] [2005-09-29 13:37]: a small problem with that structure : when I use ecore_xcb, I have to include X.h. But then, Font

Re: [E-devel] Font struct in edje_cc.h

2005-09-29 Thread Tilman Sauerbeck
Vincent Torri [EMAIL PROTECTED] [2005-09-29 13:37]: a small problem with that structure : when I use ecore_xcb, I have to include X.h. But then, Font is defined twice. what about renaming the one in edje_cc.h ? I think it's wrong for a library to have an entity simply called Font, but I'd

Re: [E-devel] edc script : are arithmetic computations in parts possible ?

2005-09-25 Thread Tilman Sauerbeck
Vincent Torri [EMAIL PROTECTED] [2005-09-25 10:34]: I'm writing an edje and I would like to set the y offset of rel2 to (12 + the y offset of rel1) (in a defined part). Something like : #define TOTO(y) parts { *** *** rel1 { offset, 0 y; } rel2 { offset, 0

Re: [E-devel] Re: E CVS: libs/evas tsauerbeck

2005-09-11 Thread Tilman Sauerbeck
On Sun, 11 Sep 2005 11:23:37 -0500 Chad Kittel [EMAIL PROTECTED] wrote: [valgrind stuff] With this change, evas stopped compiling with a build error of not being able to find memcheck.h. Valgrind 2.2.0 (at least on my system) puts memcheck.h into /usr/include/valgrind/memcheck.h so

Re: [E-devel] [PATCH] init/shutdown support for Imlib2

2005-09-08 Thread Tilman Sauerbeck
On Thu, 8 Sep 2005 10:22:43 +0900 Carsten Haitzler (The Rasterman) [EMAIL PROTECTED] wrote: On Wed, 7 Sep 2005 22:29:47 +0200 Tilman Sauerbeck [EMAIL PROTECTED] babbled: Hi guys, patch attached, objections? ;) i have no objections as such... but i am not sure of the usefulness

[E-devel] [PATCH] init/shutdown support for Imlib2

2005-09-07 Thread Tilman Sauerbeck
Hi guys, patch attached, objections? ;) Regards, Tilman -- learn to quote: http://www.netmeister.org/news/learn2quote.html imlib_init_shutdown.diff Description: Binary data

Re: [E-devel] Re: E CVS: libs/ecore sebastid

2005-09-06 Thread Tilman Sauerbeck
On Tue, 06 Sep 2005 21:44:40 +0200 Kim Woelders [EMAIL PROTECTED] wrote: diff -u -3 -r1.24 -r1.25 --- Ecore.h 5 Sep 2005 10:17:08 - 1.24 +++ Ecore.h 6 Sep 2005 19:26:19 - 1.25 @@ -43,6 +43,14 @@ #include sys/types.h #include signal.h +#ifndef TRUE

[E-devel] ecore_con_dns breakage

2005-08-23 Thread Tilman Sauerbeck
Hi, the recent addition of ecore_con_dns broke Embrace (and likely others) badly. When I open up a new connecton, random bytes are dumped to the controlling terminal (not to stdout or stderr, either I'm drunk or I just don't get it). Apparently the connection isn't established. The app freezes.

Re: [E-devel] make install of emotion crashes with edje_cc Segmentation fault

2005-08-13 Thread Tilman Sauerbeck
On Sat, 13 Aug 2005 13:48:23 +0100 Andreas Orfanos [EMAIL PROTECTED] wrote: I am building from scratch EFL, and when I installed emotion I have the Segmentation fault bellow. I am building from CVS source tree. edje_cc -v -id ../data -fd ../data \ ../data/theme.edc \ ../data/theme.edj

Re: [E-devel] Entice segfaults

2005-07-30 Thread Tilman Sauerbeck
Paulo Jorge de Oliveira Cantante de Matos [EMAIL PROTECTED] [2005-07-29 21:43]: Hi all, Hi, Anyway I've chosen a directory were I keep my images and entice segfaults (probably trying to create thumbnail of a tar.bz2 file): $ entice fotos/ Segmentation fault * Imlib2 Developer

Re: [E-devel] E module template

2005-07-30 Thread Tilman Sauerbeck
Vincent Torri [EMAIL PROTECTED] [2005-07-30 13:20]: A friend ask me to create a module template generator, so here is my attempt to seg faulting E17. Maybe it can help :) Trailing whitespace is the devil. Patch attached :D Regards, Tilman -- learn to quote:

Re: [E-devel] E_Lib Desktop Add/Del Background Patch

2005-07-28 Thread Tilman Sauerbeck
Aaron Luptak [EMAIL PROTECTED] [2005-07-28 18:50]: + char *params[5]; + if(!bgfile | !desk_y | !desk_x | !zone | !con) + return; + params[0] = strdup(con); [...] + free(params); That's broken. Don't free 'params', free params[0], params[1] etc. Also, you prolly should check

Re: [E-devel] List configuration question.

2005-07-25 Thread Tilman Sauerbeck
Simon Poole [EMAIL PROTECTED] [2005-07-22 14:48]: Tres Melton wrote: Is there anyway to have the FROM: field changed to point to the list? If you forget to change the TO: field when replying it ends up going to the individual and not to the list. I have been bitten by this a number of

Re: [E-devel] Eosd

2005-07-25 Thread Tilman Sauerbeck
Mike Frysinger [EMAIL PROTECTED] [2005-07-22 13:39]: On Friday 22 July 2005 04:20 pm, Brian Sakal wrote: I figured I may get started on a xosd clone (eosd) since one needs gnome crap for xosd... esod already exists ... it probably needs to be updated to the new api's though ... Yeah

Re: [E-devel] Valgrind on modules?

2005-07-25 Thread Tilman Sauerbeck
Edward Presutti [EMAIL PROTECTED] [2005-07-22 20:29]: Okay, so here's the newbie question for today... What's the best way to valgrind modules? Just do it (TM). The question sucks, because it's way too generic. If you meant to ask: When e17 exits, I don't see any information about the lines

Re: [E-devel] [Patch][Maximize horizontal/vertical]

2005-07-19 Thread Tilman Sauerbeck
Sebastien HOUZE [EMAIL PROTECTED] [2005-07-19 15:02]: +#define MAXIMIZE12 +#define MAXIMIZE_H 13 +#define MAXIMIZE_V 14 That's pretty ugly, magic values suck. Where do these come from? What about putting them in an enumeration? etc ;) Regards, Tilman -- learn to quote:

[E-devel] Re: E CVS: libs/emotion moom16

2005-07-08 Thread Tilman Sauerbeck
enlightenment-cvs@lists.sourceforge.net enlightenment-cvs@lists.sourceforge.net [2005-07-08 12:56]: Enlightenment CVS committal Author : moom16 Project : e17 Module : libs/emotion Dir : e17/libs/emotion/src/lib Modified Files: emotion_private.h emotion_smart.c Log

Re: [E-devel] Re: E CVS: libs/emotion moom16

2005-07-08 Thread Tilman Sauerbeck
Tab [EMAIL PROTECTED] [2005-07-08 16:44]: YUY2 - BGRA is a really trivial conversion. It shouldn't be a problem to write up a native one from scratch. Unfortunately, this came up at a bad time -- I'm off to the beach :p Also, it's probably a good idea to implement the conversion algorithm in

Re: [E-devel] Edje patch again.

2005-07-05 Thread Tilman Sauerbeck
Boldin Pavel [EMAIL PROTECTED] [2005-07-05 02:42]: FAQ: Q: Still I need to recompile all *.edj files? A: Yes, you still need to do it. This is CVS and you should understand, that backward compability is out of there. Luckily, it's not you who will make that decision. Regards, Tilman --

Re: [E-devel] Imlib2: less restrictions for put_back_data

2005-06-01 Thread Tilman Sauerbeck
Carsten Haitzler [EMAIL PROTECTED] [2005-06-01 07:02]: I have stumbled across a problem in Imlib2 wrt language bindings. imlib_image_put_back_data() assumes that the data pointer it has been given points is the same that was returned by imlib_image_get_data(). When you're not using

[E-devel] Imlib2: less restrictions for put_back_data

2005-05-29 Thread Tilman Sauerbeck
Hi, I have stumbled across a problem in Imlib2 wrt language bindings. imlib_image_put_back_data() assumes that the data pointer it has been given points is the same that was returned by imlib_image_get_data(). When you're not using Imlib2's C interface, but some language binding, this

Re: [E-devel] segfault on evas_object_bottom_get(), evas_object_top_get()

2005-05-22 Thread Tilman Sauerbeck
[EMAIL PROTECTED] [EMAIL PROTECTED] [2005-05-09 00:50]: gdb? :) Ok. I confirmed that, stepping though the test program using gdb, I get the same segfault[1] than previously [2]. that's weird - i read the code and i am baffled how obj2 could be wrong :( Does this mean you cannot

Re: [E-devel] Cross-compiling edje

2005-05-20 Thread Tilman Sauerbeck
Simon Poole [EMAIL PROTECTED] [2005-05-20 13:17]: Is there currently a way to use edje_cc on my x86 build box to create themes that will work on my ARM box? I have no native compiler on the ARM box and Yes. Edjes built on x86 will work nicely on big-endian arch boxes and vice versa of

Re: [E-devel] segfault on evas_object_bottom_get(), evas_object_top_get()

2005-05-09 Thread Tilman Sauerbeck
Carsten Haitzler [EMAIL PROTECTED] [2005-05-09 13:30]: obj2 = evas_object_below_get_internal(obj2); that's weird - i read the code and i am baffled how obj2 could be wrong :( Fixed :) Regards, Tilman -- learn to quote: http://www.netmeister.org/news/learn2quote.html

Re: [E-devel] embryo: getarg b0rked?

2005-04-29 Thread Tilman Sauerbeck
Carsten Haitzler [EMAIL PROTECTED] [2005-04-29 13:06]: On Thu, 28 Apr 2005 22:16:48 +0200 Tilman Sauerbeck [EMAIL PROTECTED] babbled: getarg() seems to be slightly b0rked. IMHO the attached patch should work, but it doesn't. It's way too much work to get string contents manually

Re: [E-devel] Re: E CVS: libs/edje tsauerbeck

2005-04-29 Thread Tilman Sauerbeck
Sebastian Dransfeld [EMAIL PROTECTED] [2005-04-29 22:42]: - if (ret != 0) + /* accept warnings in the embryo code */ + if (ret 0 || ret 1) Or ret != 0 ? Then this diff would be kinda pointless ;) -- learn to quote:

[E-devel] embryo: getarg b0rked?

2005-04-28 Thread Tilman Sauerbeck
getarg() seems to be slightly b0rked. IMHO the attached patch should work, but it doesn't. It's way too much work to get string contents manually (for-loop) instead of doing it w/ getarg(num, 0). raster, I cannot figure out why it doesn't work, can you please have a look? Thanks, Tilman --

Re: [E-devel] SEGFAULT in edb_salloc.c

2005-04-27 Thread Tilman Sauerbeck
C. David Wilde [EMAIL PROTECTED] [2005-04-26 17:53]: and then xmms2 from BK. Now I'm trying to get euphoria to run, the latest one you've put in CVS and it SEGFAULTS at line 135 @xmms.connect. I ran it through gdb, and bingo it's segfaulting at the Hack Euphoria like this: -

Re: [E-devel] esmart_container and partially concealed elements

2005-04-27 Thread Tilman Sauerbeck
Brian Mattern [EMAIL PROTECTED] [2005-04-26 22:07]: hmm. i guess its a 'feature'. it should definitely be an option. i think it might looks odd if things scroll along smoothly, then suddenly pop into view when they fully fit. (same with scrolling 'off screen', they'd scroll smoothly and

Re: [E-devel] Feeding events around in evas

2005-04-27 Thread Tilman Sauerbeck
Ben Martin [EMAIL PROTECTED] [2005-04-27 23:35]: I noticed that recent evas cvs has broken gevas event feeding. I am calling evas_event_feed_mouse_down() inside the GTK+2 event handler and attaching to evas objects with evas_object_event_callback_add( eobj, EVAS_CALLBACK_MOUSE_DOWN,

Re: [E-devel] Fw: The results of me wasting time . . .

2005-04-27 Thread Tilman Sauerbeck
Carsten Haitzler [EMAIL PROTECTED] [2005-04-27 11:41]: --- /mine/CVS/misc/engage/src/module/e_mod_main.c 2005-04-26 07:13:50.0 -0700 +++ e_mod_main.c 2005-04-26 18:21:14.0 -0700 @@ -1,37 +1,33 @@ -/* - * vim:ts=8:sw=3:sts=8:noexpandtab:cino=5n-3f0^-2{2 - */ +/*

[E-devel] Edje, swallowing, and non-SWALLOW parts

2005-04-25 Thread Tilman Sauerbeck
Hi guys, I noticed slightly irritating behaviour with libedje. In one of my edjes, I have a IMAGE part. At runtime, I have a esmart_container swallow that image part. The result is that the image is still there, and the container is there, too, of course. Question: a) shouldn't the part that

Re: [E-devel] Logging for #edevelop

2005-04-24 Thread Tilman Sauerbeck
Tilman Sauerbeck [EMAIL PROTECTED] [2005-04-22 20:38]: Tilman Sauerbeck [EMAIL PROTECTED] [2005-04-22 19:12]: What do you think? Should we request logging for #edevelop with that project? Objections? @ RbdPngn tilman: I think we should just go ahead with that bot @ RbdPngn if someone

Re: [E-devel] Logging for #edevelop

2005-04-24 Thread Tilman Sauerbeck
gimpel [EMAIL PROTECTED] [2005-04-22 21:50]: On Fri, 22 Apr 2005 20:38:20 +0200 Tilman Sauerbeck [EMAIL PROTECTED] wrote: Tilman Sauerbeck [EMAIL PROTECTED] [2005-04-22 19:12]: What do you think? Should we request logging for #edevelop with that project? Objections? @ RbdPngn

[E-devel] esmart_container and partially concealed elements

2005-04-23 Thread Tilman Sauerbeck
Hi, atm, Esmart_Container will try to draw container elements even if there's not enough space to draw all of the object. Example: http://code-monkey.de/files/esmart_container_error.png The last entry isn't drawn completely, which looks pretty bad ;) Brian, is that a bug that should be fixed or

Re: [E-devel] Logging for #edevelop

2005-04-22 Thread Tilman Sauerbeck
Tilman Sauerbeck [EMAIL PROTECTED] [2005-04-22 19:12]: What do you think? Should we request logging for #edevelop with that project? Objections? @ RbdPngn tilman: I think we should just go ahead with that bot @ RbdPngn if someone objects, they'll speak up @ tilman RbdPngn: anyway, i'll do

[E-devel] Logging for #edevelop

2005-04-22 Thread Tilman Sauerbeck
Hi guys, some weeks ago, Nathan proposed to add a logging bot to #edevelop. One benefit of this would be that we can tell users to go look for answers to common questions there ;D I've stumbled across http://loglibrary.com/ recently, and it looks quite good. What do you think? Should we request

Re: [E-devel] Perl Bindings

2005-04-21 Thread Tilman Sauerbeck
Artin Rebekale [EMAIL PROTECTED] [2005-04-20 18:21]: I'd appreciate it if anyone could point me to various examples of code in c (like http://www.everburning.com/docs/evas_textblock/evas_textblock_intro.html but for handling mouse events, listboxes, buttons etc...) so that i can flesh out

Re: [E-devel] Ecore LDFLAGS - handle them like Esmart?

2005-04-20 Thread Tilman Sauerbeck
Carsten Haitzler [EMAIL PROTECTED] [2005-04-20 11:56]: I suggest to handle this the same way we do it in Esmart: ecore-config --libs only includes -lecore, if you need the subsystems, you'll have to add the other linker switches yourself. hmm - i see not big problem with this - as long as

Re: [E-devel] SEGFAULT in edb_salloc.c

2005-04-19 Thread Tilman Sauerbeck
C. David Wilde [EMAIL PROTECTED] [2005-04-19 10:16]: I was messing around with xmms2 and the clieclient kept seg faulting on me, so I ran it through gdb. The client is calls g_get_home_dir at which point __edb_shalloc gets called. __edb_shalloc gets SIGSEGV at line 89, the for loop. My C

[E-devel] Ecore LDFLAGS - handle them like Esmart?

2005-04-19 Thread Tilman Sauerbeck
Hi, IMHO it sucks that if you want to link your application to Ecore, you have to link in all of its subsystems. This isn't much of an issue for the generic app that uses ecore_evas, but it sucks if all you need is the E-ecore and the config subsystem e.g. I suggest to handle this the same way we

Re: [e-devel] ewl entry

2005-04-18 Thread Tilman Sauerbeck
ilLogict [EMAIL PROTECTED] [2005-04-18 10:17]: Note: This is the first ever patch I submit to a project, I don't know if it is the way it should be, so can you please correct me and tell me how it should be? echo diff -uN ~/.cvsrc then, run cvs diff to create the patch. -- Regards,

[E-devel] [ANN] Redact 0.1.0

2005-03-29 Thread Tilman Sauerbeck
I'm happy to announce the release of Redact 0.1.0. Redact is an Edje compiler written in Ruby. Unline the official Edje compiler, edje_cc, Redact doesn't read EDC code, it reads Ruby code instead. This means that Redact will allow you to write Edjes in a full-blown programming language. So why

Re: [E-devel] winter gtk2

2005-03-29 Thread Tilman Sauerbeck
Michel Briand [EMAIL PROTECTED] [2005-03-29 21:58]: I decided to use Winter with E16 (perfect theme!!!) and recently with gtk2 also. But with gtk2 menu item are displayed black when active :'(... IIRC David Barr's GTK2 theme doesn't have that problem. His website is gone, but xcomputerman.com

Re: [E-devel] Ecore_Fd_Handler: prepare callback

2005-03-28 Thread Tilman Sauerbeck
Carsten Haitzler [EMAIL PROTECTED] [2005-03-28 08:41]: On Mon, 28 Mar 2005 00:14:00 +0200 Tilman Sauerbeck [EMAIL PROTECTED] babbled: Hi, I was missing a prepare callback in Ecore's FD handler - a callback that's executed just before the main loop actually checks for the file

  1   2   >