summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2013-12-18pkgbuild: avahi is now a dependency of EFL.HEADmasterCedric BAIL1-2/+2
2013-12-17getopt: add positional argument handling.Gustavo Sverzut Barbieri3-10/+376
positional arguments must appear at the end of the description array (after the last option) and should have a metavar set and not have shortname or longname. Simple, elegant and fit :-) There is a new function to parse the positional arguments, ecore_getopt_parse_positional() because we may want to not try to parse them in the case of a quit-option such as --help, --license, --copyright, --version or some user-defined action. This avoids us producing errors of missing positional arguments when printing help and adds some flexibility as well. This should make Tasn happy :-)
2013-12-17add great ecore_getopt example.Gustavo Sverzut Barbieri4-3/+349
should cover and explain getopt usage and serve as base for applications that want to use it (all efl should!)
2013-12-17getopt: fix line wrapping issues in help strings.Gustavo Sverzut Barbieri1-1/+13
2013-12-17ecore/ecore_x - show the window if the window should be visible.ChunEon Park1-2/+4
when the window alpha mode is changed, the x window is re-created. but if the window is going on the show state(not visible yet but waiting for visible from xserver) this window never be visible. so here it make the window visible also if the window is going on the visible state.
2013-12-17Ecore_Avahi: initial commit.Cedric BAIL13-0/+671
TODO: - Add tests, how ? - Integrate with Eo, needed ?
2013-12-16One ) too many.Iván Briano1-1/+1
2013-12-16Evas textblock: Fixed range_deletion bug with multiple visible formats.Tom Hacohen1-5/+0
This makes the tests added in 8bee8853ae1e38823ee0dbcac1643d23c3e34379 pass. Thanks to Youngbok Shin for reporting.
2013-12-16Evas test textblock: Added a test for a broken range_delete case.Youngbok Shin1-2/+2
This fixes bad integration by me (Tom) of Youngbok's patch in 42a06f24d8de13953fdceea02c51ad534bccd626.
2013-12-16emotion: fix Windows compilation.Cedric BAIL1-13/+16
2013-12-16emotion: revert to fast sed to use the right eina log domain.Cedric BAIL1-1/+1
2013-12-15bugfix: eldbus code generator struct members named "proxy" should not be ↵discomfitor1-1/+1
passed to eina_value_free. come on.
2013-12-15edje_edit - fix mem leak of src strbuf on print statusCarsten Haitzler (Rasterman)1-1/+3
though utterly minor - it's still a leak. fix CID 1039263
2013-12-15edje - edje_edit - don't access collection after it is freedCarsten Haitzler (Rasterman)1-1/+1
should fix CID 1137855
2013-12-15emotion - webcam - don't access after free and ensure it is not in listCarsten Haitzler (Rasterman)1-4/+1
this should fix CID 1137853 and CID 1137854
2013-12-15evas - fb engine - fix mem leak if ioctl fails on fb modeCarsten Haitzler (Rasterman)2-0/+2
this fixes CID 1137852
2013-12-15ecore-file - fix mem leak in ecore_file_app_exe_get() on restartCarsten Haitzler (Rasterman)1-7/+7
this actually fixes the issue. coverity did point it out but i fixed it incorrectly. since it was still there in the scan i now fixed it properly. fixes CID 1039279
2013-12-15evas - software-x11 - fill in unused struct members to avoid uninitializedCarsten Haitzler (Rasterman)1-0/+4
this shoudl fix CID 1039548 (missed other memmbers before) and if valgrind ever sees this now it won't complain either.
2013-12-14bugfix: make eldbus generated code not crash on every single generated eventdiscomfitor1-2/+2
this is pretty depressing to find after it's been in git for over a year
2013-12-14edje: adding Alias API into edje_edit moduleVorobiov Vitalii5-35/+209
Summary: This commit will add some API for working with aliases. There are four functions will be added: 1. edje_edit_group_aliases_get - this function will return the list of aliases of certain group. 2. edje_edit_group_is_alias - this function will check if the given group name is actually an alias. 3. edje_edit_group_aliased_get - return the main real group that is being aliased. 4. edje_edit_group_alias_add - add new alias name. Also the function "edje_edit_group_del" was modified because of wrong behaviour. Now if the given group is alias, it will successfully delete it, but if the given group is main group, it will also delete all it's aliases. This commit also modify EDJ file by adding new field for detecting if the group is alias or not. Reviewers: cedric, seoz, raster Reviewed By: raster CC: reutskiy.v.v, cedric Differential Revision: https://phab.enlightenment.org/D376
2013-12-14evas common - uninitialized use warning removeCarsten Haitzler (Rasterman)1-1/+1
2013-12-14edje: Fixing little misbehavior of edje_edit_state_rel_to_setVorobiov Vitalii1-1/+1
Summary: After making part relative to the whole interface (by giving NULL parameter) it was returning EINA_FALSE (not successfull). Reviewers: seoz, cedric, raster Reviewed By: raster CC: reutskiy.v.v, cedric Differential Revision: https://phab.enlightenment.org/D379
2013-12-13Evas textblock: Fixed deletion of ranges ending with visual formats.Tom Hacohen1-1/+1
This is a regression introduced in: 3f3ad67616d491c40e4c7c34d3927896f80b8caa
2013-12-13Evas textblock: Added more range_delete tests.Youngbok Shin1-0/+14
These tests check for a regression with deletion of ranges ending with visual formats. Thanks to Youngbok Shin for sending me the tests.
2013-12-13ecore_file - finding exe path - if HOME is not set a leak could happenCarsten Haitzler (Rasterman)1-2/+6
this fixes CID 1039279
2013-12-13eina - eina_file - fix leak of fd is fd is 0Carsten Haitzler (Rasterman)1-1/+1
this should fix CID 1039181
2013-12-13fix fd leak in emotion webcam where fd of value 0 never closedCarsten Haitzler (Rasterman)1-1/+1
fixes CID 1039175
2013-12-13edje - lib - remove useless memset as later memcpy overwritesCarsten Haitzler (Rasterman)1-1/+0
this removes a useless memset that does nothing usefule as a later memcpy (not far down from it) will overwrite it anyway.
2013-12-13ethumbd - fix possible out of bounds access to work tableCarsten Haitzler (Rasterman)1-0/+6
this should fix CID 1039314 in case an unsused table slot cannot be found. this should actualyl never happen because table expands/allocs zero out new entires so they are "unused".
2013-12-13edje - epp - fix possible array access by negativeCarsten Haitzler (Rasterman)1-1/+2
this should fix CID 1039357
2013-12-13ecore - utils - makekeys - fix uniitialized arraysCarsten Haitzler (Rasterman)1-3/+3
potential problem due to stak being filled or not. this fixes possible problems CID 1039547 and CID 1039546
2013-12-13evas - silence coverity in codeCarsten Haitzler (Rasterman)1-0/+2
fixes CID 1039549 and CID 1039548 - though it isn't a bug, but means it should not come back in coverity.
2013-12-13eeze - fix uninitialised sigation struct contentCarsten Haitzler (Rasterman)1-1/+1
should fix CID 1039552
2013-12-13edje_decc - fix possible use of uninitialized stringCarsten Haitzler (Rasterman)1-2/+3
this should fix CID 1039553
2013-12-13ethumb - ensure buf is nul terminatedCarsten Haitzler (Rasterman)1-3/+8
this SHOULD deal with CID 1039577 and CID 1039576
2013-12-13evas - common - remove useless new as next call allocs if NULLCarsten Haitzler (Rasterman)1-4/+0
2013-12-13ecore-con - fix possible unterminated buffersCarsten Haitzler (Rasterman)1-5/+12
this should fix CID 1039725 and CID 1039724
2013-12-13[Edje] Update anchor and item tags when text is deleted by ↵Youngbok Shin1-0/+2
_edje_entry_imf_event_delete_surrounding_cb. Summary: Anchor and item tags should be updated when text is changed. In _edje_entry_imf_event_delete_surrounding_cb function, the text is changed by "evas_textblock_cursor_range_delete" API and there was no update about anchor and item tags. It can result that the tags hang in the air after deleting. Reviewers: tasn, woohyun, seoz, jihoon Reviewed By: tasn CC: cedric Differential Revision: https://phab.enlightenment.org/D368
2013-12-13ibusimmodule: support preedit styleJihoon Kim1-20/+104
This patch will support to display the style of preedit such as underline, reverse.
2013-12-13emotion: make webcam initialization lazy and non blocking.Cedric BAIL1-20/+68
This should fix T648.
2013-12-13emotion: fix potential memory leak when webcam register fail.Cedric BAIL1-2/+7
2013-12-13emotion: use emotion log domain instead of eina one.Cedric BAIL1-4/+4
2013-12-13emotion: lower warning on webcam access error to information (Not critical ↵Cedric BAIL1-1/+1
anyway).
2013-12-13ecore_con - dns.c - re-fix coverty double-free. coverity was and is right.Carsten Haitzler (Rasterman)1-2/+2
fixes CID 1039909 again (it's back after rebase). it is an actual bug.
2013-12-12fix ecore-x shadow warningdiscomfitor1-5/+5
2013-12-12rebase dns.c from upstreamdiscomfitor2-53/+53
2013-12-12evas - fix gif loader drop of image data sometimes (image dump/flush)Carsten Haitzler (Rasterman)1-3/+3
stable release - cherry-pick me! this fixses some still gifs going missing.
2013-12-12pkgbuild: follow aur efl-git version naming.Cedric BAIL3-8/+18
2013-12-12pkgbuild: let's tests all backend in our package.Cedric BAIL1-2/+4
2013-12-12autotools: detect systemd to warn user they are required to use ↵Cedric BAIL1-9/+30
--enable-systemd to turn it on.