profile/ivi/ecore.git
14 years agopost-snap anr release.. reset svn back.. this time for real.
raster [Sun, 6 Jun 2010 17:17:52 +0000 (17:17 +0000)]
post-snap anr release.. reset svn back.. this time for real.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49526 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoSnapshot ecore
raster [Sun, 6 Jun 2010 16:42:36 +0000 (16:42 +0000)]
Snapshot ecore

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49516 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agopost release - move relname to pre-svn again.
raster [Sun, 6 Jun 2010 16:23:16 +0000 (16:23 +0000)]
post release - move relname to pre-svn again.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49506 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoSnapshot ecore
raster [Sun, 6 Jun 2010 16:08:02 +0000 (16:08 +0000)]
Snapshot ecore

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49497 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agobe mroe explicit on keeping im handle.
raster [Fri, 4 Jun 2010 06:36:54 +0000 (06:36 +0000)]
be mroe explicit on keeping im handle.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49444 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoformatting.
raster [Fri, 4 Jun 2010 04:53:10 +0000 (04:53 +0000)]
formatting.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49441 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoformatting.
raster [Fri, 4 Jun 2010 04:45:53 +0000 (04:45 +0000)]
formatting.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49440 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agodidnt set right ptr to null
raster [Fri, 4 Jun 2010 04:18:50 +0000 (04:18 +0000)]
didnt set right ptr to null

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49439 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agohousekeeping++
lucas [Fri, 4 Jun 2010 02:47:00 +0000 (02:47 +0000)]
housekeeping++

* process filters in their own function
* remove commented printf
* remove trailing white space
* lower indentation needed by breaking loop instead of a big if

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49436 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoFix current event pointer when walking filters
lucas [Fri, 4 Jun 2010 02:45:47 +0000 (02:45 +0000)]
Fix current event pointer when walking filters

When walking the filters' list, using event_current might screw a
recursive main loop that had to process filters *and* events on the
first iteration. Thus, use a new pointer to mark the current event being
treated when walking filters' list.

Tests for this one is difficult. I'll try to think about a test later.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49435 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoFix semantics of event->delete_me
lucas [Fri, 4 Jun 2010 02:45:20 +0000 (02:45 +0000)]
Fix semantics of event->delete_me

* _ecore_event_purge_deleted() purges only events marked with
delete_me
* _ecore_events_exist() walks the events list to control that
at least one event with delete_me == 0 exists

Tests coming in a separate patch.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49434 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agochange svnversion shell goop to nuke sed and just use tr to delete
raster [Fri, 4 Jun 2010 01:04:24 +0000 (01:04 +0000)]
change svnversion shell goop to nuke sed and just use tr to delete
unwanted goop.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49429 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoset magic to none later - and set props to null after freeing each -
raster [Thu, 3 Jun 2010 12:33:27 +0000 (12:33 +0000)]
set magic to none later - and set props to null after freeing each -
in case del callbacks on objects access ee.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49410 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoLet git-svn users get the right revision number to be used as version.
sachiel [Thu, 3 Jun 2010 07:40:54 +0000 (07:40 +0000)]
Let git-svn users get the right revision number to be used as version.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49407 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoFix ecore_events for recursive main loops
lucas [Wed, 2 Jun 2010 06:20:18 +0000 (06:20 +0000)]
Fix ecore_events for recursive main loops
This fixes the following scenario:
1) An event handler starts another main loop
2) The new main loop processes all the remaining event_handlers of this
event and the remaining events
3) New events are added to the events list
4) A new iteration occurs

Prior behavior was that on (4) the events already processed were
triggered again. The code added to ecore_suite shows a test case,
similar to the one that is fixed now for modal dialogs on WebKit-EFL. I
preferred to let the INF() messages in order to be easy to copy, paste
and debug outside of the suite if anyone wants to. When the number of
tests grows more, we might want to separate them in different files.

By: Lucas De Marchi <lucas.demarchi@profusion.mobi>

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49390 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agonopw svn revision works again.
raster [Mon, 31 May 2010 03:12:45 +0000 (03:12 +0000)]
nopw svn revision works again.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49344 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agofix - if no svn tree, then it will pretend to be a release.
raster [Mon, 31 May 2010 01:59:22 +0000 (01:59 +0000)]
fix - if no svn tree, then it will pretend to be a release.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49343 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agomake other defines in ecore the same.
raster [Sat, 29 May 2010 13:59:42 +0000 (13:59 +0000)]
make other defines in ecore the same.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49300 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agobah. VMIN conflicts with system header defines ... termin.h
raster [Sat, 29 May 2010 13:56:21 +0000 (13:56 +0000)]
bah. VMIN conflicts with system header defines ... termin.h

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49299 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoproto wrong. fix.
raster [Sat, 29 May 2010 13:49:43 +0000 (13:49 +0000)]
proto wrong. fix.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49298 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agowanring: shadddaaap
raster [Sat, 29 May 2010 13:43:48 +0000 (13:43 +0000)]
wanring: shadddaaap

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49297 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agorelanem - consistent
raster [Sat, 29 May 2010 07:57:59 +0000 (07:57 +0000)]
relanem - consistent

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49280 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agomore extern c outside typedefs etc.
raster [Sat, 29 May 2010 06:37:02 +0000 (06:37 +0000)]
more extern c outside typedefs etc.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49273 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoadd ecore versioning
raster [Sat, 29 May 2010 06:28:25 +0000 (06:28 +0000)]
add ecore versioning

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49271 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoReschedule timer_current in case of inner mainloop
lucas [Fri, 28 May 2010 02:31:02 +0000 (02:31 +0000)]
Reschedule timer_current in case of inner mainloop
Timers' list is and *ordered list*. Therefore, timers can be added
before timer_current in an inner mainloop. Reschedule timer_current in
this case before looping through timers' list.

Thanks to Barbieri for the insight.

The following test didn't work before and it's ok now (I'm adding it to
ecore_suite too).

static int _timer3(void *data)
{
printf("timer 3, do nothing\n");
return 0;
}

static int _timer2(void *data)
{
printf("timer 2, quit inner\n");
ecore_main_loop_quit();
return 0;
}

static int _timer1(void *data)
{
int *times = data;
(*times)++;
printf("BEGIN: inner\n");

ecore_timer_add(0.3, _timer2, NULL);
ecore_timer_add(0.1, _timer3, NULL);

ecore_main_loop_begin();
printf("END: inner\n");
ecore_main_loop_quit();

return 0;
}

int main(void)
{
int times = 0;

ecore_init();
ecore_timer_add(1.0, _timer1, &times);
printf("BEGIN: main\n");
ecore_main_loop_begin();
assert(times == 1);
printf("timer1 called %d times \n", times);
printf("END: main\n");
return 0;
}

By: Lucas De Marchi <lucas.demarchi@profusion.mobi>

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49245 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoooh someone somewhere made the main event loop not work quite right.
raster [Wed, 26 May 2010 11:40:22 +0000 (11:40 +0000)]
ooh someone somewhere made the main event loop not work quite right.
fix if event purge happens to generate events.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49203 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agobig patch from Samsung SAIT (Advanced research group) for async multi-frame
raster [Fri, 21 May 2010 07:10:45 +0000 (07:10 +0000)]
big patch from Samsung SAIT (Advanced research group) for async multi-frame
rendering. to turn on:

1.
configure with --enable-async-render
2.
export EVAS_RENDER_MODE=non-blocking

presto. necessitates some api swizzling (thus the expedite. ecore etc. changes)

the kind of results you get on a desktop:

http://www.rasterman.com/files/evas-async-vs-none.html

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49087 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoFrom: Mike McCormack <mj.mccormack@samsung.com>
raster [Thu, 20 May 2010 05:06:22 +0000 (05:06 +0000)]
From: Mike McCormack <mj.mccormack@samsung.com>

"cd ecore && ./autogen.sh --enable-tests &&make && make check-local" was
failing.
Make sure to build ecore_suite before trying to run it.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49053 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agooops typo.
raster [Thu, 20 May 2010 04:47:53 +0000 (04:47 +0000)]
oops typo.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49050 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoFrom: Lukasz Wrzosek <l.wrzosek@samsung.com>
raster [Thu, 20 May 2010 03:53:54 +0000 (03:53 +0000)]
From: Lukasz Wrzosek <l.wrzosek@samsung.com>

I’ve prepared basic patch to add support for custom malloc/free functions for
buffer management. (with changes to api from raster to addd void *data param
to alloc/free callbacks and naming and ordering changes).

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49044 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoadded functions for changing/getting a poller's poll interval: ecore_poller_poller_in...
discomfitor [Wed, 19 May 2010 09:16:37 +0000 (09:16 +0000)]
added functions for changing/getting a poller's poll interval: ecore_poller_poller_interval_(set|get) along with dox for them
surprisingly enough they seem to work!

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@49002 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoecore_file_download(): Call the completion_cb (with error status) when a download...
davemds [Tue, 18 May 2010 23:06:07 +0000 (23:06 +0000)]
ecore_file_download(): Call the completion_cb (with error status) when a download is aborted

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48988 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoformatting cleanups.
raster [Tue, 18 May 2010 08:01:06 +0000 (08:01 +0000)]
formatting cleanups.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48970 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agodata passed in wrong order! fix.
raster [Tue, 18 May 2010 06:59:59 +0000 (06:59 +0000)]
data passed in wrong order! fix.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48964 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoFix typos ;)
devilhorns [Tue, 18 May 2010 04:13:13 +0000 (04:13 +0000)]
Fix typos ;)

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48958 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agohandle info_set failures.
raster [Tue, 18 May 2010 03:50:17 +0000 (03:50 +0000)]
handle info_set failures.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48957 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoCEEEEEEEEEEEEEEEEEEEEEEEEDRIC! *spank*
raster [Sun, 16 May 2010 03:04:18 +0000 (03:04 +0000)]
CEEEEEEEEEEEEEEEEEEEEEEEEDRIC! *spank*

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48907 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years ago * redirection of stdout and stderr (with libc or win32 apps) is working
caro [Sat, 15 May 2010 18:38:01 +0000 (18:38 +0000)]
 * redirection of stdout and stderr (with libc or win32 apps) is working
 * there is though a problem in the win32 select function: the _del
   callback is always sent before _data or _error callback

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48897 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agomore netwm window types - they were missed!
raster [Sat, 15 May 2010 05:38:21 +0000 (05:38 +0000)]
more netwm window types - they were missed!

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48884 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoecore_con: remove unused variable
englebass [Thu, 13 May 2010 20:24:16 +0000 (20:24 +0000)]
ecore_con: remove unused variable

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48821 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agofix the Windows select function:
caro [Thu, 13 May 2010 08:10:17 +0000 (08:10 +0000)]
fix the Windows select function:
 * On Windows, the values returned by pipe() are sockets.
   Hence they can be huge. Iterate over the list of "fds"
   instead of the max value
 * In the loop which iterates over the win32 handlers,
   we never go to the next element, so infinite loop...

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48807 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agothe extension of shared lib is not needed anymore in ecore
caro [Thu, 13 May 2010 08:07:20 +0000 (08:07 +0000)]
the extension of shared lib is not needed anymore in ecore

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48806 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoFix build on RHEL5. Please provide feedback for these changes as I
mej [Wed, 12 May 2010 18:19:11 +0000 (18:19 +0000)]
Fix build on RHEL5.  Please provide feedback for these changes as I
realize they may have impact on other platforms/distros.  But this is
what ended up working on RHEL, unlike what Vincent was given by the
automake developer mailing list. :/

If this breaks, please discuss on the ML rather than simply
reverting.  We need to work toward a cooperative resolution.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48783 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoFix 'return' with a value in function returning void.
devilhorns [Tue, 11 May 2010 14:01:42 +0000 (14:01 +0000)]
Fix 'return' with a value in function returning void.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48754 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoonly do auth stuff if there in curl.
raster [Tue, 11 May 2010 12:10:29 +0000 (12:10 +0000)]
only do auth stuff if there in curl.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48749 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoThis commit implements http auth support; in order to avoid exposing too much of...
rui [Sun, 9 May 2010 15:06:06 +0000 (15:06 +0000)]
This commit implements http auth support; in order to avoid exposing too much of curl's internal workings, I opted to have a safety parameter in order to choose between CURLAUTH_ANY and CURLAUTH_ANYSAFE.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48715 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years ago * fix comment
caro [Sun, 9 May 2010 06:03:46 +0000 (06:03 +0000)]
 * fix comment
 * do consistent test (though it is useless)

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48708 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agotry right #ifdef
raster [Sun, 9 May 2010 05:51:10 +0000 (05:51 +0000)]
try right #ifdef

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48707 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agosupport new gl enigne rotate ability from ecore-evas
raster [Sun, 9 May 2010 05:15:55 +0000 (05:15 +0000)]
support new gl enigne rotate ability from ecore-evas

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48705 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoadded fuction to send httposts created with curl formadd.
jeffdameth [Thu, 6 May 2010 20:18:39 +0000 (20:18 +0000)]
added fuction to send httposts created with curl formadd.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48651 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years ago * ecore: make it possible to easily freeze/thaw animator.
cedric [Mon, 3 May 2010 16:21:39 +0000 (16:21 +0000)]
* ecore: make it possible to easily freeze/thaw animator.

NOTE: logic could be optimised as in some case we could just stop
the timer also.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48580 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years ago * link pthread and spinlock code instead of just compiling
caro [Sun, 2 May 2010 05:20:02 +0000 (05:20 +0000)]
 * link pthread and spinlock code instead of just compiling
 * POSIX pthread spinlock may be unimplemented, so don't
   exit with an error if they are not available

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48541 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoSome libc have a pthread that declares spinlock functions,
caro [Sat, 1 May 2010 20:38:44 +0000 (20:38 +0000)]
Some libc have a pthread that declares spinlock functions,
but does not define them. So the check now links the test code.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48527 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years ago\n--
raster [Wed, 28 Apr 2010 00:05:56 +0000 (00:05 +0000)]
\n--

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48371 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agobetter debug/error output for foreign fd issues.
raster [Tue, 27 Apr 2010 23:53:08 +0000 (23:53 +0000)]
better debug/error output for foreign fd issues.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48370 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agohandle url set better
raster [Tue, 27 Apr 2010 10:53:25 +0000 (10:53 +0000)]
handle url set better

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48358 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoformatting.
raster [Tue, 27 Apr 2010 04:30:55 +0000 (04:30 +0000)]
formatting.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48354 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agofix vc++ compilation
caro [Sat, 17 Apr 2010 05:35:13 +0000 (05:35 +0000)]
fix vc++ compilation

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48064 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agofix warning with vc++
caro [Sat, 17 Apr 2010 05:34:55 +0000 (05:34 +0000)]
fix warning with vc++

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48063 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoecore: enable XIM by default
billiob [Wed, 14 Apr 2010 21:02:37 +0000 (21:02 +0000)]
ecore: enable XIM by default

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@48008 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoRelease lock before returning
sachiel [Mon, 12 Apr 2010 21:51:35 +0000 (21:51 +0000)]
Release lock before returning

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@47980 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agodump and flush protocol added.
raster [Mon, 12 Apr 2010 08:24:19 +0000 (08:24 +0000)]
dump and flush protocol added.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@47948 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoNew function/atoms for Toggle of Quickpanel (for cases where we do not know
devilhorns [Sun, 11 Apr 2010 20:37:11 +0000 (20:37 +0000)]
New function/atoms for Toggle of Quickpanel (for cases where we do not know
the current quickpanel state).

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@47935 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agomake ecore thread cancel work. someone knowing the internals should check this again.
jeffdameth [Fri, 9 Apr 2010 04:52:04 +0000 (04:52 +0000)]
make ecore thread cancel work. someone knowing the internals should check this again.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@47866 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years ago'tis an array of pointers, not just a string
sachiel [Wed, 7 Apr 2010 22:09:26 +0000 (22:09 +0000)]
'tis an array of pointers, not just a string

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@47824 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agorevert. does not work
caro [Mon, 5 Apr 2010 18:20:49 +0000 (18:20 +0000)]
revert. does not work

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@47771 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoremove C99 features and use beautiful C89/BSD code
caro [Mon, 5 Apr 2010 17:48:08 +0000 (17:48 +0000)]
remove C99 features and use beautiful C89/BSD code
makes vc++ and win32 gcc/g++ happy

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@47766 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agomissing AC_SUBST call
caro [Mon, 5 Apr 2010 13:22:40 +0000 (13:22 +0000)]
missing AC_SUBST call

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@47762 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoinclude process.h for vc++
caro [Mon, 5 Apr 2010 08:38:11 +0000 (08:38 +0000)]
include process.h for vc++

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@47760 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agovarious fixes for vc++. I'll add the Visual Studio projects later
caro [Mon, 5 Apr 2010 08:26:48 +0000 (08:26 +0000)]
various fixes for vc++. I'll add the Visual Studio projects later

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@47758 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoquartz -> cocoa renaming
caro [Sat, 27 Mar 2010 19:01:31 +0000 (19:01 +0000)]
quartz -> cocoa renaming

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@47508 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoremove unused files
caro [Sat, 27 Mar 2010 18:32:03 +0000 (18:32 +0000)]
remove unused files

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@47507 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agomore quartz -> cocoa renaming
caro [Sat, 27 Mar 2010 18:28:50 +0000 (18:28 +0000)]
more quartz -> cocoa renaming

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@47506 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoadd debugs and warnings to ecore_evas_new().
barbieri [Tue, 23 Mar 2010 17:35:22 +0000 (17:35 +0000)]
add debugs and warnings to ecore_evas_new().

Sometimes it might be useful for the tester to detect the engine that
is being used.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@47391 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoformatting.
raster [Mon, 22 Mar 2010 09:37:27 +0000 (09:37 +0000)]
formatting.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@47369 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoformatting.... fix.
raster [Mon, 22 Mar 2010 09:20:33 +0000 (09:20 +0000)]
formatting.... fix.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@47368 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years ago--enable-glib-integration-always <- option. can be disabled by
raster [Mon, 22 Mar 2010 03:30:40 +0000 (03:30 +0000)]
--enable-glib-integration-always <- option. can be disabled by
ecore_main_loop_glib_always_integrate_disable() before ecore_init()

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@47360 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoSecond part of the renaming 'quartz' -> 'cocoa'
caro [Fri, 19 Mar 2010 06:57:47 +0000 (06:57 +0000)]
Second part of the renaming 'quartz' -> 'cocoa'

API break. Not really important for now as that port
is in a very bad shape anyway

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@47340 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoFirst part of the renaming 'quartz' -> 'cocoa'
caro [Fri, 19 Mar 2010 06:48:08 +0000 (06:48 +0000)]
First part of the renaming 'quartz' -> 'cocoa'

Quartz is the name of the graphic library
Cocoa is the Objective C API to build applications

I can't test this so maybe I have forgotten some
modifications to do. Please report any problem in
that thread

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@47339 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years ago * ecore: Add memory statistic support. Set ECORE_MEM_STAT environment
cedric [Thu, 18 Mar 2010 14:43:39 +0000 (14:43 +0000)]
* ecore: Add memory statistic support. Set ECORE_MEM_STAT environment
variable to get them.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@47319 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoonly send rend done if syncing.
raster [Tue, 16 Mar 2010 12:31:09 +0000 (12:31 +0000)]
only send rend done if syncing.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@47288 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years ago More doxy for ecore_file_download() and ecore_file_download_abort()
davemds [Sun, 14 Mar 2010 10:53:14 +0000 (10:53 +0000)]
 More doxy for ecore_file_download() and ecore_file_download_abort()

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@47200 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoupdating french translation
maxerba [Sat, 13 Mar 2010 11:00:30 +0000 (11:00 +0000)]
updating french translation

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@47173 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoRemoving leftover reference to ecore-data
lfelipe [Thu, 11 Mar 2010 19:22:42 +0000 (19:22 +0000)]
Removing leftover reference to ecore-data

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@47139 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoremove ecore_con_dns
caro [Tue, 9 Mar 2010 12:57:38 +0000 (12:57 +0000)]
remove ecore_con_dns

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@47077 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agono more ecore-data - as warned before. going going oging... gone!
raster [Mon, 8 Mar 2010 12:03:50 +0000 (12:03 +0000)]
no more ecore-data - as warned before. going going oging... gone!

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@46994 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoecore_job has gone too
caro [Mon, 8 Mar 2010 08:34:18 +0000 (08:34 +0000)]
ecore_job has gone too

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@46991 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoand update doc
caro [Mon, 8 Mar 2010 08:21:25 +0000 (08:21 +0000)]
and update doc

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@46990 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoupdate debian files too
caro [Mon, 8 Mar 2010 08:19:51 +0000 (08:19 +0000)]
update debian files too

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@46989 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoecore_job and ecore_txt has gone
caro [Mon, 8 Mar 2010 08:16:31 +0000 (08:16 +0000)]
ecore_job and ecore_txt has gone

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@46988 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoupdate to latest scb-util version (xcb icccm api changed)
caro [Mon, 8 Mar 2010 08:12:45 +0000 (08:12 +0000)]
update to latest scb-util version (xcb icccm api changed)

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@46987 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoupdate po
caro [Mon, 8 Mar 2010 08:11:27 +0000 (08:11 +0000)]
update po

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@46986 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoremove ecore_txt
caro [Mon, 8 Mar 2010 08:08:04 +0000 (08:08 +0000)]
remove ecore_txt

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@46985 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoinit values with null.
raster [Mon, 8 Mar 2010 01:14:12 +0000 (01:14 +0000)]
init values with null.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@46973 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agotypo
caro [Sun, 7 Mar 2010 12:14:19 +0000 (12:14 +0000)]
typo

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@46948 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agowhen pthread is found, don't abort if spin lock is not found but not reqested
caro [Sun, 7 Mar 2010 12:07:08 +0000 (12:07 +0000)]
when pthread is found, don't abort if spin lock is not found but not reqested

Patch by Albin Tonnerre

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@46943 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agobug--
caro [Sun, 7 Mar 2010 11:47:11 +0000 (11:47 +0000)]
bug--

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@46937 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoinclude Ecore.h before ecore_private.h
caro [Thu, 4 Mar 2010 21:39:21 +0000 (21:39 +0000)]
include Ecore.h before ecore_private.h

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@46879 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agono need to set want_ecore_con to yes for darwin and generic OS
caro [Thu, 4 Mar 2010 08:21:21 +0000 (08:21 +0000)]
no need to set want_ecore_con to yes for darwin and generic OS

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@46864 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

14 years agoecore_con not ready for Windows yet
caro [Thu, 4 Mar 2010 08:19:26 +0000 (08:19 +0000)]
ecore_con not ready for Windows yet

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@46863 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33