Re: [E-devel] phab login

2013-08-23 Thread Raphael Kubo da Costa
Carsten Haitzler (The Rasterman) ras...@rasterman.com writes: blog entires are also public. I tried accessing https://phab.enlightenment.org/phame/post/view/12/ via planet.enlightenment.org but was taken to a login page. -- Intel Finland Oy Open Source Technology Center

Re: [E-devel] phab login

2013-08-23 Thread Raphael Kubo da Costa
Carsten Haitzler (The Rasterman) ras...@rasterman.com writes: On Fri, 23 Aug 2013 15:02:34 +0300 Raphael Kubo da Costa raphael.kubo.da.co...@intel.com said: Carsten Haitzler (The Rasterman) ras...@rasterman.com writes: blog entires are also public. I tried accessing https

Re: [E-devel] [core/emotion_generic_players] master 01/01: vlc: this include seems useless now.

2013-08-08 Thread Raphael Kubo da Costa
Cedric Bail - Enlightenment Git no-re...@enlightenment.org writes: cedric pushed a commit to branch master. commit 53ad423e4ad73d7943523b03674c575ff415bce6 Author: Cedric Bail cedric.b...@samsung.com Date: Thu Aug 8 09:46:21 2013 +0900 vlc: this include seems useless now. ---

Re: [E-devel] [Patch] Update Eve for eldbus name change

2013-05-29 Thread Raphael Kubo da Costa
Doug Newgard scimmi...@outlook.com writes: A few simple seds through configure.ac and main.c and Eve is working again. You have to build ewebkit with the release libs right now, but since the ABI hasn't changed, it works. In: https://trac.enlightenment.org/e/changeset/84552, thanks. -- Intel

Re: [E-devel] Fix build against libgif5 Patch + why arc fails for me

2013-04-03 Thread Raphael Kubo da Costa
Simon si...@simotek.net writes: Simple fix for the main, that i modified from a version someone at SUSE did for something similar, basicly they added another param to some functions to return a error code. Our functions already had a error code but i thought it would be bad form to change the

Re: [E-devel] [PATCH/RFC evas] Stop initializing and shutting Fontconfig down

2013-02-02 Thread Raphael Kubo da Costa
Cedric BAIL cedric.b...@free.fr writes: On Sat, Feb 2, 2013 at 7:28 AM, Tom Hacohen t...@stosb.com wrote: Ok, just had a short chat with Behdad. He says that you are right and fontconfig should not be init and shutdown. I disagree with this design choice, but apparently that's how it is in

Re: [E-devel] [PATCH/RFC evas] Stop initializing and shutting Fontconfig down

2013-02-01 Thread Raphael Kubo da Costa
Tom Hacohen t...@stosb.com writes: But then valgrind complains, i.e there's noise. :( That's also bad for the whole of us. Valgrind complaining about reachable blocks shouldn't as bad as actual leaks anyway. --

Re: [E-devel] [PATCH/RFC evas] Stop initializing and shutting Fontconfig down

2013-02-01 Thread Raphael Kubo da Costa
Carsten Haitzler (The Rasterman) ras...@rasterman.com writes: that's why efl does it by default... to cover this case. we can stop calling it.. but there are downsides to that.. :) i'm on the fence - it's better to call it, BUT... if its not practical.. then commenting it out is ok i guess.

Re: [E-devel] [PATCH/RFC evas] Stop initializing and shutting Fontconfig down

2013-02-01 Thread Raphael Kubo da Costa
Tom Hacohen t...@stosb.com writes: valgrind is complaining about definitely lost, otherwise I wouldn't have cared that much. With efl/ and elementary/ at r83566 and valgrind 3.8.1, running elementary_test with my patch does not show any definitely lost blocks (which makes sense, since all

Re: [E-devel] [PATCH/RFC evas] Stop initializing and shutting Fontconfig down

2013-01-31 Thread Raphael Kubo da Costa
Gustavo Sverzut Barbieri barbi...@profusion.mobi writes: Just dont call evas_shutdown()? Not calling evas_shutdown() is also an option, however that would mean not shutting another library down properly, with all the risks and problems that brings. Or call it after you know every other

Re: [E-devel] [PATCH/RFC evas] Stop initializing and shutting Fontconfig down

2013-01-31 Thread Raphael Kubo da Costa
Gustavo Sverzut Barbieri barbi...@profusion.mobi writes: On Thursday, January 31, 2013, Tom Hacohen wrote: Yes, that's what I said, so obviously I agree with that. Fix webkit. Talk is cheap :-) Kubo: do you know if FcIni/FcFini are refcounted like EFL? They are not. If the general

Re: [E-devel] [PATCH/RFC evas] Stop initializing and shutting Fontconfig down

2013-01-31 Thread Raphael Kubo da Costa
Gustavo Sverzut Barbieri barbi...@profusion.mobi writes: ouch, so they are not refcounted and it will free at first exit... that's bad, quite bad :-) Option #1 is talk to fc guys and see if they can add that. It would be more correct. Looking at Fontconfig's mailing list archives, it looks

Re: [E-devel] [PATCH edbus] Update EDBUS_VERSION_MINOR

2013-01-30 Thread Raphael Kubo da Costa
Gustavo Sverzut Barbieri barbi...@profusion.mobi writes: On Wed, Jan 23, 2013 at 11:46 AM, Raphael Kubo da Costa raphael.kubo.da.co...@intel.com wrote: Hello there, The attached patch bumps EDBUS_VERSION_MINOR from 6 to 8 to make it the same as the other minor version numbers in trunk/efl

[E-devel] [PATCH evas] Rename evas_font_zero_presure().

2013-01-30 Thread Raphael Kubo da Costa
There's an obvious typo in the function name, so appease my OCD and rename it. Index: src/lib/evas/canvas/evas_font_dir.c === --- src/lib/evas/canvas/evas_font_dir.c (revision 83484) +++ src/lib/evas/canvas/evas_font_dir.c (working

[E-devel] [PATCH/RFC evas] Stop initializing and shutting Fontconfig down

2013-01-30 Thread Raphael Kubo da Costa
A few days ago I was investigating a bug in the EFL WebKit port and noticed WebKit's and Evas' handling of Fontconfig are somewhat incompatible: while the evas_font code calls both FcInit() and FcFini() when on initialization and shutdown, respectively, WebKit keeps some Fontconfig objects alive

Re: [E-devel] [PATCH/RFC evas] Stop initializing and shutting Fontconfig down

2013-01-30 Thread Raphael Kubo da Costa
Tom Hacohen tom.haco...@samsung.com writes: You only removed code, are you sure we still init everything after your changes? (Sorry, I don't have time to take a look yet). I've tried both expedite and loading a few web pages with different fonts and everything works fine -- the other

Re: [E-devel] [PATCH edbus] Update EDBUS_VERSION_MINOR

2013-01-30 Thread Raphael Kubo da Costa
Gustavo Sverzut Barbieri barbi...@profusion.mobi writes: No eta, but if you want to get it in, just add an efl_version.h with auto generated fields, then include that into every other header and typedef/define local names to global one #define ECORE_X_VERSION_MAJOR EFL_VERSION_MAJOR and so

Re: [E-devel] [PATCH/RFC evas] Stop initializing and shutting Fontconfig down

2013-01-30 Thread Raphael Kubo da Costa
Tom Hacohen tom.haco...@samsung.com writes: ==24639== 736 (512 direct, 224 indirect) bytes in 2 blocks are definitely lost in loss record 152 of 189 [...] Evas leaks now... I get different results here with the attached program. Namely, the blocks are marked as still reachable instead of

Re: [E-devel] [PATCH/RFC evas] Stop initializing and shutting Fontconfig down

2013-01-30 Thread Raphael Kubo da Costa
Tom Hacohen t...@stosb.com writes: Just use elementary_test, no need to get fancy and write your own applications... :) Same results: no {definitely,indirectly,possibly} lost objects, some kilobytes of still reachable objects. As for solving the issue at hand: I don't quite understand, does

Re: [E-devel] [PATCH/RFC evas] Stop initializing and shutting Fontconfig down

2013-01-30 Thread Raphael Kubo da Costa
Carsten Haitzler (The Rasterman) ras...@rasterman.com writes: so as a result, evas is following a much stricter clean init and shtudown when u are done model which at least allows you to write an app, use evas, then stop using it and for the next 10 weeks run it without ever using evas again

[E-devel] [PATCH edbus] Update EDBUS_VERSION_MINOR

2013-01-23 Thread Raphael Kubo da Costa
Hello there, The attached patch bumps EDBUS_VERSION_MINOR from 6 to 8 to make it the same as the other minor version numbers in trunk/efl (I'm assuming it was not bumped due to an oversight). Index: src/lib/edbus/EDBus.h === ---

[E-devel] [PATCH edbus] Actually implement edbus_proxy_data_{get, set, del}

2013-01-23 Thread Raphael Kubo da Costa
The prototypes for those functions are defined in edbus_proxy.h, however there's no implementation at all. Index: lib/edbus/edbus_proxy.c === --- lib/edbus/edbus_proxy.c (revision 83183) +++ lib/edbus/edbus_proxy.c (working copy) @@

Re: [E-devel] [PATCH edbus] Actually implement edbus_proxy_data_{get, set, del}

2013-01-23 Thread Raphael Kubo da Costa
Raphael Kubo da Costa raphael.kubo.da.co...@intel.com writes: The prototypes for those functions are defined in edbus_proxy.h, however there's no implementation at all. And now a version that does not leak... Index: src/lib/edbus/edbus_proxy.c

[E-devel] [PATCH 1.7] efreet: Build with automake 1.13.1

2013-01-08 Thread Raphael Kubo da Costa
Apply the same fix the was done only to trunk and stop using the AM_PROG_CC_STDC macro from configure.ac, since it has been deprecated for years and has its functionality replaced by AC_PROG_CC. Index: efreet-1.7/configure.ac === ---

Re: [E-devel] Warning: Incoming new Stable release 1.7.5

2013-01-03 Thread Raphael Kubo da Costa
Luis Felipe Strano Moraes luis.str...@gmail.com writes: Guys, just a warning, get your patches in because tomorrow we're going to be spinning a new stable release of the EFL. PLEASE take the time to do some testing of the stable branches and see if everything is OK. I've just had automake

Re: [E-devel] Announce: EFL 1.7.2 release and E17 ALPHA 5 release

2012-11-27 Thread Raphael Kubo da Costa
Luis Felipe Strano Moraes luis.str...@gmail.com writes: We're organizing a new Release Team in order to help out with this entire process, and would like to call out to everyone interested in helping out to please join the

[E-devel] [PATCH] efreet: Fix and clean up the way dbusservicedir is set in the build system

2012-11-19 Thread Raphael Kubo da Costa
The current code was a mix of r78302 (when edbus2 support was made optional) and r78867 (when edbus2 support was made a required dependency). This patch fixes a few bugs: o The syntax of the AC_ARG_WITH call was wrong and `dbusservicedir' was always set to , which meant it was always

Re: [E-devel] elm_object_part_text_get vs. elm_entry_entry_get

2012-11-18 Thread Raphael Kubo da Costa
Andreas Volz li...@brachttal.net writes: Hi, is there any difference between calling elm_object_part_text_get and elm_entry_entry_get on the same Entry object? No; the former just ends up calling the latter and is widget-agnostic.

Re: [E-devel] Elm Theme free?

2012-11-18 Thread Raphael Kubo da Costa
Andreas Volz li...@brachttal.net writes: Hi, Does anyone know if I use elm_object_theme_get(). Do I have to use elm_theme_free() after I don't use this variable any more? Or will Elementary manage this for me? Given that elm_widget_theme_get() (which is called by that function) returns

Re: [E-devel] E SVN: raster IN trunk/efl: . src/modules/evas/engines/gl_x11

2012-11-13 Thread Raphael Kubo da Costa
Enlightenment SVN no-re...@enlightenment.org writes: Log: and this fixes compositing on newest intel+mesa drivers... wrong fb config wasa being chosen as it was done by hand not accounting for multisample buffers. now using glxchoosefbconfig instead and it works. Author: raster

Re: [E-devel] E SVN: barbieri trunk/edje/src/bin

2012-10-24 Thread Raphael Kubo da Costa
Enlightenment SVN no-re...@enlightenment.org writes: Modified: trunk/edje/src/bin/edje_cc_parse.c === --- trunk/edje/src/bin/edje_cc_parse.c2012-10-24 17:20:38 UTC (rev 78407) +++ trunk/edje/src/bin/edje_cc_parse.c

Re: [E-devel] About the merge

2012-09-20 Thread Raphael Kubo da Costa
Vincent Torri vincent.to...@gmail.com writes: with web trac : http://trac.enlightenment.org/e/log/trunk/efl/src/lib/eina/eina_file.c is it normal ? You normally need to choose the Follow Copies radio button at the top:

Re: [E-devel] Defining the micro/revision versions on public headers

2012-08-25 Thread Raphael Kubo da Costa
Carsten Haitzler (The Rasterman) ras...@rasterman.com writes: if they have binary pkgs - they they dont have headers either. basically pc files, headers etc. are part of the dev/devel pkgs that go alongside the lib core binary ones and so a dev/devel pkg without pc files is a broken/useless

[E-devel] Defining the micro/revision versions on public headers

2012-08-23 Thread Raphael Kubo da Costa
So far, modules such as eina, evas and friends only define their major and minor versions on public headers such as Evas.h. While this is OK most of the time, one might also need to check the micro version as well -- my current use case is performing version checks without having to rely on

Re: [E-devel] Defining the micro/revision versions on public headers

2012-08-23 Thread Raphael Kubo da Costa
Carsten Haitzler (The Rasterman) ras...@rasterman.com writes: the rationale is that micro versions do not have anything change in a header that would affect compatibility forwards or backwards. we shouldnt be adding features in micro releases (adding enums, struct members, functions etc.).

Re: [E-devel] E SVN: discomfitor trunk/eio/src/lib

2012-07-03 Thread Raphael Kubo da Costa
Enlightenment SVN no-re...@enlightenment.org writes: Log: yet another tedious null check for a free function, brought to you by people who think wasting time is a good idea Author: discomfitor Date: 2012-07-03 04:32:35 -0700 (Tue, 03 Jul 2012) New Revision: 73224 Trac:

Re: [E-devel] E SVN: devilhorns trunk/ecore/src/lib/ecore_imf

2012-07-03 Thread Raphael Kubo da Costa
Enlightenment SVN no-re...@enlightenment.org writes: Log: Ecore_Imf: Merge Tizen changes to upstream EFL. Modified: trunk/ecore/src/lib/ecore_imf/ecore_imf_context.c === --- trunk/ecore/src/lib/ecore_imf/ecore_imf_context.c

[E-devel] [PATCH] eina: Do not always perform magic checks on _free() and _del() (was Re: Magic checks before NULL checks in Eina)

2012-07-02 Thread Raphael Kubo da Costa
Michael Blumenkrantz michael.blumenkra...@gmail.com writes: On Wed, 27 Jun 2012 23:43:23 -0300 Raphael Kubo da Costa rak...@freebsd.org wrote: Cedric BAIL cedric.b...@free.fr writes: I personally think that eina_iterator_free like any free function should just work fine with NULL. I

Re: [E-devel] [PATCH] eina: Do not always perform magic checks on _free() and _del() (was Re: Magic checks before NULL checks in Eina)

2012-07-02 Thread Raphael Kubo da Costa
Cedric BAIL cedric.b...@free.fr writes: On Tue, Jul 3, 2012 at 12:30 AM, Raphael Kubo da Costa rak...@freebsd.org wrote: I'm unsure about whether to change the following calls, so for now I haven't: - eina_inarray_flush() - eina_inarray_remove() - eina_tiler_clear() - *_foreach

Re: [E-devel] [PATCH] eina: Do not always perform magic checks on _free() and _del() (was Re: Magic checks before NULL checks in Eina)

2012-07-02 Thread Raphael Kubo da Costa
Cedric BAIL cedric.b...@free.fr writes: - *_foreach(): One could argue that passing NULL should be equivalent to an empty loop. For example, right now eina_iterator_foreach(NULL, ..., ...) generates a magic check error message, while EINA_ITERATOR_FOREACH(NULL, ...)

Re: [E-devel] what's about the webkit-efl status?

2012-06-28 Thread Raphael Kubo da Costa
Dennis.Yxun dennis.y...@gmail.com writes: hi ALL: I'm using gentoo linux, and compile webkit-efl from enlightenment-niifaq overlay net-libs/webkit-efl-0.1.98964, source code take from svn r98964 version. Actually it fails to compile. And, people from #gentoo-e tell me webkit-efl is

[E-devel] Magic checks before NULL checks in Eina

2012-06-27 Thread Raphael Kubo da Costa
I promise this one is not about FreeBSD. It looks like there isn't much consistency in the order of the boilerplate argument checks in Eina: some functions perform a magic check before using EINA_SAFETY_ON_NULL_RETURN or something similar, while others do the opposite (it also happens that some

Re: [E-devel] Magic checks before NULL checks in Eina

2012-06-27 Thread Raphael Kubo da Costa
Cedric BAIL cedric.b...@free.fr writes: Could you please give us the name of the function that you think do it wrong ? Because I will take an example as it will make this easier to understand. I started thinking about this because of a patch [1] in which someone is checking if a given

Re: [E-devel] Magic checks before NULL checks in Eina

2012-06-27 Thread Raphael Kubo da Costa
Cedric BAIL cedric.b...@free.fr writes: I personally think that eina_iterator_free like any free function should just work fine with NULL. I was against at that time, but others won. So we do have this incoherency where some of our free function work with NULL and some don't. So what can we

Re: [E-devel] E SVN: raster trunk/terminology/src/bin

2012-06-23 Thread Raphael Kubo da Costa
Enlightenment SVN no-re...@enlightenment.org writes: + if ((ty-state.send_bs) + (!strcmp(ev-keyname, Bakcspace))) + { +termpty_write(ty, \b, 1); +return; + } Typo? -- Live

[E-devel] [PATCH] Import upstream commit to dns.c to fix the build on some BSDs

2012-06-23 Thread Raphael Kubo da Costa
Hi there, The attached patch includes upstream commit bae230201ace92141a1f43f655013f4ee22cd45a to dns.c, which should fix the build for both FreeBSD (where _XOPEN_SOURCE should not need to be tweaked) and NetBSD. Index: src/lib/ecore_con/dns.c

Re: [E-devel] [PATCH v3] Only unlink the temporary file created in evas_object_image_memfile_set on cleanup

2012-05-24 Thread Raphael Kubo da Costa
Carsten Haitzler (The Rasterman) ras...@rasterman.com writes: beyond using TMPDIR, TMP and TEMP env vars... i dont see how this helps much :) in fact they probably should be there in if (fd 0). on non-linux it STAR TS with fd being -1 so it goes right it the failure case. for linx this means

Re: [E-devel] [PATCH v3] Only unlink the temporary file created in evas_object_image_memfile_set on cleanup

2012-05-24 Thread Raphael Kubo da Costa
Carsten Haitzler (The Rasterman) ras...@rasterman.com writes: On Thu, 24 May 2012 16:35:23 -0300 Raphael Kubo da Costa rak...@freebsd.org said: Should this be backported, as currently no stable release has that function working on non-Linux platforms? Do I need to write NEWS/ChangeLog items

[E-devel] [PATCH v3] Only unlink the temporary file created in evas_object_image_memfile_set on cleanup

2012-05-23 Thread Raphael Kubo da Costa
Vincent Torri vincent.to...@gmail.com writes: On Mon, May 21, 2012 at 10:28 AM, Joerg Sonnenberger jo...@britannica.bec.de wrote: On Mon, May 21, 2012 at 12:15:10AM -0300, Raphael Kubo da Costa wrote: After talking about the previous version of the patch with raster on IRC, I'm sending

[E-devel] [PATCH v2] Only unlink the temporary file created in evas_object_image_memfile_set on cleanup

2012-05-20 Thread Raphael Kubo da Costa
After talking about the previous version of the patch with raster on IRC, I'm sending a more conservative version that does not change the Linux behavior -- /dev/shm is expected to work on Linux, and the non-Linux case works at the expense of leaving some files in /tmp if a crash occurs before

Re: [E-devel] [PATCH] Only unlink the temporary file created in evas_object_image_memfile_set on cleanup (was

2012-05-18 Thread Raphael Kubo da Costa
Lucas De Marchi lucas.demarchi at profusion.mobi writes: While that would work in theory, it also requires one to have an fdescfs mounted and still isn't very portable. The renaming is indeed a hack -- what I wonder is if it is worth keeping.As you noticed, any code path that calls

Re: [E-devel] [PATCH] Do not check for __FreeBSD_version in Ecore.h

2012-05-16 Thread Raphael Kubo da Costa
Vincent Torri vincent.to...@gmail.com writes: On Wed, May 16, 2012 at 3:48 AM, Raphael Kubo da Costa rak...@freebsd.org wrote: FreeBSD 4.x was released more than a decade ago (the project itself only supports FreeBSD = 7 these days), so the check for __FreeBSD_version = 420001

Re: [E-devel] [PATCH] Only unlink the temporary file created in evas_object_image_memfile_set on cleanup (was evas_object_image_memfile_set is broken on non-Linux platforms)

2012-05-16 Thread Raphael Kubo da Costa
Lucas De Marchi lucas.demar...@profusion.mobi writes: The renaming there is probably a hack so code paths that calls stat() to check if the file exists. If you know it exists, you could rename it to / for example or any path in put-here-your-choice-of-OS that is guaranteed to exist in the

[E-devel] [PATCH] Only unlink the temporary file created in evas_object_image_memfile_set on cleanup (was evas_object_image_memfile_set is broken on non-Linux platforms)

2012-05-15 Thread Raphael Kubo da Costa
Raphael Kubo da Costa rak...@freebsd.org writes: I was working on some code which uses evas_object_image_memfile_set here on FreeBSD, and it was failing. After some investigation, I found out that the problem was in the stat() call in evas_cache_image_request. On Linux, _create_tmpf() open

[E-devel] [PATCH] Do not check for __FreeBSD_version in Ecore.h

2012-05-15 Thread Raphael Kubo da Costa
FreeBSD 4.x was released more than a decade ago (the project itself only supports FreeBSD = 7 these days), so the check for __FreeBSD_version = 420001 is not necessary anymore (plus it probably never worked, as that macro is defined in sys/param.h, which is not included prior to the check).

[E-devel] evas_object_image_memfile_set is broken on non-Linux platforms

2012-05-12 Thread Raphael Kubo da Costa
Hey there. I was working on some code which uses evas_object_image_memfile_set here on FreeBSD, and it was failing. After some investigation, I found out that the problem was in the stat() call in evas_cache_image_request. On Linux, _create_tmpf() open()s a temporary file with O_CREAT,

[E-devel] [PATCH] ecore: Be more portable when adding libgcrypt's flags to the GnuTLS ones

2012-05-10 Thread Raphael Kubo da Costa
Hey there. I was trying to build ecore earlier today and apparently the libgcrypt CFLAGS and linker flags were not being passed as expected (GnuTLS support is enabled). In the end, it looks like the code in ecore_check_options.m4 was failing here: checking for libgcrypt-config...

[E-devel] [PATCH] Only build evas-cserve2 on Linux

2012-05-04 Thread Raphael Kubo da Costa
I was trying to build Evas earlier today, and it failed because cserve2 (which uses Linux-only stuff for now) was being built. The attached patch checks for the presence of a few Linux-only headers and disables the cserve2 build if they are not found. I didn't add a NEWS/ChangeLog entry because

[E-devel] [PATCH] eina: Adjust the Valgrind includes and buildsystem flags

2012-03-15 Thread Raphael Kubo da Costa
eina_private.h Index: ChangeLog === --- ChangeLog (revision 69441) +++ ChangeLog (working copy) @@ -175,3 +175,7 @@ 2012-03-14 Cedric Bail * Fix a dead lock in Eina_File. + +2012-03-16 Raphael Kubo da Costa + + * Adjust Valgrind's

[E-devel] FindFoo.cmake vs. FooConfig.cmake (was Re: about cmake)

2012-03-04 Thread Raphael Kubo da Costa
[3] https://blogs.kde.org/node/4501 -- Raphael Kubo da Costa ProFUSION embedded systems http://profusion.mobi -- Virtualization Cloud Management Using Capacity Planning Cloud computing makes use of virtualization

Re: [E-devel] E SVN: bdilly IN trunk/eina/src: include tests

2012-03-01 Thread Raphael Kubo da Costa
Vincent Torri vincent.to...@gmail.com writes: changelog news... I thought this was all under the Added eina_value data type umbrellas in both NEWS and ChangeLog. -- Raphael Kubo da Costa ProFUSION embedded systems http://profusion.mobi

Re: [E-devel] elm_web with different useragents

2012-01-05 Thread Raphael Kubo da Costa
? -- Raphael Kubo da Costa ProFUSION embedded systems http://profusion.mobi -- Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a complex infrastructure or vast IT resources to deliver seamless, secure

[E-devel] evas_object_image_* memory and file descriptor usage

2011-07-12 Thread Raphael Kubo da Costa
] http://trac.webkit.org/browser/trunk/Tools/DumpRenderTree/efl/ImageDiff.cpp -- Raphael Kubo da Costa ProFUSION embedded systems http://profusion.mobi -- AppSumo Presents a FREE Video for the SourceForge Community

Re: [E-devel] gsoc project idea

2011-02-14 Thread Raphael Kubo da Costa
in subversion/include/*.h . FWIW, Dolphin (KDE's default file manager) also has code for managing svn and git repositories, so you might take a look at it too besides kdesvn. -- Raphael Kubo da Costa ProFUSION embedded systems http://profusion.mobi

Re: [E-devel] gsoc project idea

2011-02-14 Thread Raphael Kubo da Costa
Amitav Mohanty amitavmohant...@gmail.com writes: On 02/15/2011 12:38 AM, Raphael Kubo da Costa wrote: FWIW, Dolphin (KDE's default file manager) also has code for managing svn and git repositories, so you might take a look at it too besides kdesvn. Well I am using Dolphin; but I don't see

Re: [E-devel] commits policy

2011-02-04 Thread Raphael Kubo da Costa
the CHANGELOG: tag? -- Raphael Kubo da Costa ProFUSION embedded systems http://profusion.mobi -- The modern datacenter depends on network connectivity to access resources and provide services. The best practices

Re: [E-devel] commits policy

2011-02-04 Thread Raphael Kubo da Costa
). The primary con is that sending a patch to the list would be at the discretion of the committer. -- Raphael Kubo da Costa ProFUSION embedded systems http://profusion.mobi -- The modern datacenter depends on network connectivity

Re: [E-devel] E SVN: davemds trunk/ecore/src/lib/ecore_con

2011-01-31 Thread Raphael Kubo da Costa
unused parameters. You could replace url = NULL; with (void)url; so that the compiler is happy and nobody gets spanked :) -- Raphael Kubo da Costa ProFUSION embedded systems http://profusion.mobi -- Special Offer-- Download

Re: [E-devel] E SVN: davemds trunk/ecore/src/lib/ecore_con

2011-01-31 Thread Raphael Kubo da Costa
David Seikel onef...@gmail.com writes: On Mon, 31 Jan 2011 17:00:21 -0200 Raphael Kubo da Costa k...@profusion.mobi wrote: Enlightenment SVN no-re...@enlightenment.org writes: Log: :/ setting a const char * param to NULL ?? and after the return ?? :O random spank Author

Re: [E-devel] sigh ecore_con_url api STILL broken

2011-01-27 Thread Raphael Kubo da Costa
/29066 -- Raphael Kubo da Costa ProFUSION embedded systems http://profusion.mobi -- Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)! Finally, a world-class log management solution at an even better price

Re: [E-devel] EFL 1.0... ready?

2011-01-14 Thread Raphael Kubo da Costa
On Friday 14 January 2011 06:17:26 Carsten Haitzler wrote: api issues ... are there any issues someone wants to bring up with EFL release? I still think that ecore_con_url_get() does not need the data and length parameters. -- Raphael Kubo da Costa ProFUSION embedded systems http

Re: [E-devel] how to do ecore_con_url POSTs?

2011-01-06 Thread Raphael Kubo da Costa
strlen() on @p data. + * @param content_type Content type of the payload (e.g. text/xml) It should be noted somewhere that passing NULL to data and 0 to length performs a bodyless POST. -- Raphael Kubo da Costa ProFUSION embedded systems http://profusion.mobi

Re: [E-devel] how to do ecore_con_url POSTs?

2011-01-06 Thread Raphael Kubo da Costa
a bodyless POST. if its an explicit post call.. isnt that obvious? :) no data - no body :) One might think, for example, that just passing NULL to data (or 0 to length) is enough, just like it happened in one of your previous commits to this part. -- Raphael Kubo da Costa ProFUSION embedded

Re: [E-devel] [PATCH] [ecore_con_url] Add CA validation control with SSL connections

2010-12-30 Thread Raphael Kubo da Costa
? -- Raphael Kubo da Costa ProFUSION embedded systems http://profusion.mobi -- Learn how Oracle Real Application Clusters (RAC) One Node allows customers to consolidate database storage, standardize their database

Re: [E-devel] how to do ecore_con_url POSTs?

2010-12-20 Thread Raphael Kubo da Costa
At Mon, 20 Dec 2010 09:45:07 +, Rui Miguel Silva Seabra wrote: Em 20-12-2010 01:13, Raphael Kubo da Costa escreveu: At Sat, 18 Dec 2010 00:24:12 +, Rui Miguel Silva Seabra wrote: Em 17-12-2010 15:51, Raphael Kubo da Costa escreveu: Yes, I think so. My concern now is how you're

Re: [E-devel] how to do ecore_con_url POSTs?

2010-12-19 Thread Raphael Kubo da Costa
At Sat, 18 Dec 2010 00:24:12 +, Rui Miguel Silva Seabra wrote: Em 17-12-2010 15:51, Raphael Kubo da Costa escreveu: Yes, I think so. My concern now is how you're going to decide whether to send a GET or a POST depending only on data's value. It's a bad assumption all around. GET

Re: [E-devel] how to do ecore_con_url POSTs?

2010-12-17 Thread Raphael Kubo da Costa
On Friday 17 December 2010 03:49:30 Carsten Haitzler wrote: On Thu, 16 Dec 2010 12:15:26 -0200 Raphael Kubo da Costa k...@profusion.mobi said: On Thursday 16 December 2010 06:34:29 Carsten Haitzler wrote: On Wed, 15 Dec 2010 01:34:33 -0200 Raphael Kubo da Costa k...@profusion.mobi

Re: [E-devel] how to do ecore_con_url POSTs?

2010-12-14 Thread Raphael Kubo da Costa
to unconditionally set at least CURLOPT_POSTFIELDSIZE in this function (if data == NULL, set it to 0)? -- Raphael Kubo da Costa ProFUSION embedded systems http://profusion.mobi -- Lotusphere 2011 Register now for Lotusphere 2011

Re: [E-devel] web site contents

2010-11-08 Thread Raphael Kubo da Costa
! thanks again it's been long over due! How about trying to make it part of the openDesktop.org stuff, like gtk- apps.org or kde-apps.org? -- Raphael Kubo da Costa ProFUSION embedded systems http://profusion.mobi

Re: [E-devel] #includes in Eina.h

2010-10-20 Thread Raphael Kubo da Costa
include dirs, paths and other such options. you're driving down the wrong side of the road against traffic here. In the end, I was able to make things work on CMake and get some useful output from pkg-config, so all ended well :) -- Raphael Kubo da Costa ProFUSION embedded systems http

Re: [E-devel] [PATCH] Accept a long instead of a size_t for ecore_con_url_send's length.

2010-10-20 Thread Raphael Kubo da Costa
Oops, apparently you've sent this answer only to me and it's been sitting on my inbox for a few days. CC'ing the list back. At Tue, 19 Oct 2010 11:30:02 +0900, Carsten Haitzler (The Rasterman) wrote: On Mon, 18 Oct 2010 22:55:49 -0200 Raphael Kubo da Costa k...@profusion.mobi said: At Tue

[E-devel] #includes in Eina.h

2010-10-19 Thread Raphael Kubo da Costa
, and the rest was details. -- Raphael Kubo da Costa ProFUSION embedded systems http://profusion.mobi -- Download new Adobe(R) Flash(R) Builder(TM) 4 The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly Flex(R) Builder(TM

Re: [E-devel] #includes in Eina.h

2010-10-19 Thread Raphael Kubo da Costa
At Tue, 19 Oct 2010 16:31:38 +0200 (CEST), Vincent Torri wrote: On Tue, 19 Oct 2010, Raphael Kubo da Costa wrote: Hey all, The installed Eina.h includes the files in the eina/ subdirectory via #include foo.h instead of #include eina/foo.h or #include eina/foo.h. Are people always

[E-devel] [PATCH] Use a double instead of a time_t in ecore_con_url_time()

2010-10-18 Thread Raphael Kubo da Costa
ecore_con_url_time_condition_set(), but that should be discussed a little bit more. Raster, I hope you can now apply the patch without going through much pain ;) From 31e62f828cb3b92c6670f2b9d8553a5b6129f5d1 Mon Sep 17 00:00:00 2001 From: Raphael Kubo da Costa k...@profusion.mobi Date: Mon, 18 Oct 2010 14:08:21

Re: [E-devel] [PATCH] Accept a long instead of a size_t for ecore_con_url_send's length.

2010-10-18 Thread Raphael Kubo da Costa
At Sun, 17 Oct 2010 22:49:16 +0900, Carsten Haitzler (The Rasterman) wrote: On Sun, 17 Oct 2010 07:51:14 -0200 Raphael Kubo da Costa k...@profusion.mobi said: At Sun, 17 Oct 2010 13:48:09 +0900, Carsten Haitzler (The Rasterman) wrote: this is actually a good q... shouldnt

Re: [E-devel] [PATCH] Accept a long instead of a size_t for ecore_con_url_send's length.

2010-10-18 Thread Raphael Kubo da Costa
At Mon, 18 Oct 2010 18:43:59 +0200 (CEST), Vincent Torri wrote: On Mon, 18 Oct 2010, Raphael Kubo da Costa wrote: At Sun, 17 Oct 2010 22:49:16 +0900, Carsten Haitzler (The Rasterman) wrote: On Sun, 17 Oct 2010 07:51:14 -0200 Raphael Kubo da Costa k...@profusion.mobi said

Re: [E-devel] [PATCH] Accept a long instead of a size_t for ecore_con_url_send's length.

2010-10-18 Thread Raphael Kubo da Costa
At Tue, 19 Oct 2010 08:26:37 +0900, Carsten Haitzler (The Rasterman) wrote: On Mon, 18 Oct 2010 14:29:24 -0200 Raphael Kubo da Costa k...@profusion.mobi said: Sorry, I've kind of missed the point while reading your message ;) Are you saying we should use an unsigned long even though

Re: [E-devel] libvlc is GPL

2010-10-18 Thread Raphael Kubo da Costa
the apps that ship as part of a complete system that may only have gstreamer or may have xine or vlc or all 3). Shouldn't the situation be the same as you've described with a 2-clause BSD license as well? -- Raphael Kubo da Costa ProFUSION embedded systems http://profusion.mobi

Re: [E-devel] libvlc is GPL

2010-10-18 Thread Raphael Kubo da Costa
At Mon, 18 Oct 2010 23:44:45 -0200, Gustavo Sverzut Barbieri wrote: On Mon, Oct 18, 2010 at 11:42 PM, Raphael Kubo da Costa k...@profusion.mobi wrote: At Tue, 19 Oct 2010 08:33:44 +0900, Carsten Haitzler (The Rasterman) wrote: as such i think we should move emotion itself to LGPL anyway

Re: [E-devel] [PATCH] Accept a long instead of a size_t for ecore_con_url_send's length.

2010-10-17 Thread Raphael Kubo da Costa
a curl_off_t instead of a long (with the same -1 twist). We can always use that instead of POSTFIELDSIZE, however this means we'd need to accept a curl_off_t (or an off_t) as a parameter type, which in turn takes us to my other email about using void* in ecore_con_http_post_send :) -- Raphael Kubo da

Re: [E-devel] On ecore_con_url_http_post_send's signature

2010-10-17 Thread Raphael Kubo da Costa
] http://curl.haxx.se/libcurl/c/curl_formadd.html -- Raphael Kubo da Costa ProFUSION embedded systems http://profusion.mobi -- Download new Adobe(R) Flash(R) Builder(TM) 4 The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM

Re: [E-devel] [PATCH 1/3] Use an Eina_Bool for ecore_con_url_verbose_set's verbose parameter.

2010-10-08 Thread Raphael Kubo da Costa
At Fri, 8 Oct 2010 21:37:50 +0900, Carsten Haitzler (The Rasterman) wrote: On Fri, 8 Oct 2010 08:28:56 -0300 Lucas De Marchi lucas.demar...@profusion.mobi said: On Fri, Oct 8, 2010 at 2:20 AM, Vincent Torri vto...@univ-evry.fr wrote: On Fri, 8 Oct 2010, Raphael Kubo da Costa wrote

[E-devel] [PATCH 2/5] Add a missing leading underscore to static variables.

2010-10-08 Thread Raphael Kubo da Costa
--- src/lib/ecore_con/ecore_con_url.c | 54 ++-- 1 files changed, 27 insertions(+), 27 deletions(-) diff --git a/src/lib/ecore_con/ecore_con_url.c b/src/lib/ecore_con/ecore_con_url.c index 8999721..187db73 100644 --- a/src/lib/ecore_con/ecore_con_url.c +++

[E-devel] [PATCH 1/5] Remove erroneus __UNUSED__ mark.

2010-10-08 Thread Raphael Kubo da Costa
data is indeed used by _ecore_con_url_idler_handler. --- src/lib/ecore_con/ecore_con_url.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/lib/ecore_con/ecore_con_url.c b/src/lib/ecore_con/ecore_con_url.c index 09e6f6d..8999721 100644 ---

[E-devel] [PATCH 4/5] Simplify if clause.

2010-10-08 Thread Raphael Kubo da Costa
There is no need for an else here, as the return is the last instruction. --- src/lib/ecore_con/ecore_con_url.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/src/lib/ecore_con/ecore_con_url.c b/src/lib/ecore_con/ecore_con_url.c index 7162e78..adb22ec 100644 ---

[E-devel] [PATCH 3/5] Fix some indentation problems in ecore_con_url.

2010-10-08 Thread Raphael Kubo da Costa
* Indent blocks inside EINA_LIST_* macros. * Use sane indentation in ecore_con_url_ftp_upload(). --- src/lib/ecore_con/ecore_con_url.c | 21 +++-- 1 files changed, 11 insertions(+), 10 deletions(-) diff --git a/src/lib/ecore_con/ecore_con_url.c

[E-devel] Small assorted changes to ecore_con_url

2010-10-08 Thread Raphael Kubo da Costa
4/5] Simplify if clause. [PATCH 5/5] Always use ecore_con_url_ftp_use_epsv_set's parameters. -- Raphael Kubo da Costa ProFUSION embedded systems http://profusion.mobi -- Beautiful is writing same markup. Internet Explorer

[E-devel] [PATCH 5/5] Always use ecore_con_url_ftp_use_epsv_set's parameters.

2010-10-08 Thread Raphael Kubo da Costa
unused_warning-- --- src/lib/ecore_con/ecore_con_url.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/src/lib/ecore_con/ecore_con_url.c b/src/lib/ecore_con/ecore_con_url.c index adb22ec..0f56b55 100644 --- a/src/lib/ecore_con/ecore_con_url.c +++

[E-devel] [PATCH] Simplify the checks in ecore_con_url_http_post_send.

2010-10-08 Thread Raphael Kubo da Costa
By checking for the validity of the Ecore_Con_Url struct before anything else and merging some if's, the code can get much cleaner. --- src/lib/ecore_con/ecore_con_url.c | 12 ++-- 1 files changed, 2 insertions(+), 10 deletions(-) diff --git a/src/lib/ecore_con/ecore_con_url.c

[E-devel] [PATCH] Check for libcurl's return codes when appropriate.

2010-10-08 Thread Raphael Kubo da Costa
Depending on the option being set by curl_easy_setopt, a return value different from CURL_OK can be returned (the same applies to curl_multi_* and CURLM_OK). This commit checks the return value from those calls and usually displays an error message with ERR() and returns -- in some cases, an

  1   2   >