Age | Commit message (Collapse) | Author |
|
SVN revision: 58168
|
|
SVN revision: 56856
|
|
SVN revision: 56330
|
|
crashes on linux. this is REALLY bad. so remove these changes now.
SVN revision: 55981
|
|
SVN revision: 55975
|
|
SVN revision: 55943
|
|
SVN revision: 55013
|
|
SVN revision: 53810
|
|
let's make it a standard so we don't have to look at the code
everytime to figure out the name...
SVN revision: 53172
|
|
SVN revision: 52920
|
|
Following misspellings were fixed:
alledgedly->allegedly
cant->can't
carefull->careful
consistant->consistent
currenly->currently
dependancy->dependency
descripters->descriptors
doesnt->doesn't
dosen't->doesn't
existant->existent
exmaple->example
inbetween->between
independant->independent
isnt->isn't
mroe->more
neccessary->necessary
occured->occurred
occurence->occurrence
parrallel->parallel
particualr->particular
preceeding->preceding
recieved->received
recieves->receives
seperate->separate
substraction->subtraction
succesfully->successfully
successfull->successful
sucess->success
supress->suppress
usefull->useful
witht->with
SVN revision: 51986
|
|
Apply badzero.cocci, badnull.coci and badnull2.cocci
This should convert all cases where there's a comparison to NULL to simpler
forms. This patch applies the following transformations:
code before patch ||code after patch
===============================================================
return a == NULL; return !a;
return a != NULL; return !!a;
func(a == NULL); func(!a);
func(a != NULL); func(!!a);
b = a == NULL; b = !a;
b = a != NULL; b = !!a;
b = a == NULL ? c : d; b = !a ? c : d;
b = a != NULL ? c : d; b = a ? c : d;
other cases:
a == NULL !a
a != NULL a
SVN revision: 51487
|
|
* Remove vim modelines:
find . -name '*.[chx]' -exec sed -i '/\/\*$/ {N;N;/ \* vim:ts/d}' \{\} \;
find . -name '*.[chx]' -exec sed -i '/\/[\*\/] *vim:/d' \{\} \;
* Remove leading blank lines:
find . -name '*.[cxh]' -exec sed -i '/./,$!d'
If you use vim, use this in your .vimrc:
set ts=8 sw=3 sts=8 expandtab cino=>5n-3f0^-2{2(0W1st0
SVN revision: 50816
|
|
SVN revision: 50040
|
|
SVN revision: 50002
|
|
SVN revision: 49997
|
|
Patch from Nicolas Aguirre.
SVN revision: 49611
|
|
SVN revision: 47758
|
|
SVN revision: 45653
|
|
SVN revision: 45505
|
|
SVN revision: 45352
|
|
SVN revision: 45283
|
|
SVN revision: 45224
|
|
SVN revision: 45217
|
|
SVN revision: 45201
|
|
I modified some hearder file in ecore to ease the cleanup of the private
header files in ecore. Each module has now a private header with its own
log color (eina_log related). I also created two private header files
for ecore_sdl and ecore_input for this purpose and corrected some typos
in the xlib_xcb private header file.
SVN revision: 44933
|
|
SVN revision: 44861
|
|
Patch from Mathieu Taillefumier.
SVN revision: 44637
|
|
SVN revision: 44578
|
|
* simplify a bit the init/shutdown functions
SVN revision: 42995
|
|
SVN revision: 39968
|
|
SVN revision: 39967
|
|
as suggested by raster, this could be abstracted into ecore-file and
other applications could use it as well.
SVN revision: 39965
|
|
* check if path is already valid, not doing further work if that's the case;
* less stats;
* check error of ecore_file_mkdir();
* better usage of 'ss' string.
SVN revision: 39964
|
|
SVN revision: 39961
|
|
* etk,
* PROTO/exalt,
* E-MODULES-EXTRA/diskio,
* E-MODULES-EXTRA/drawer,
* E-MODULES-EXTRA/penguins,
* E-MODULES-EXTRA/slideshow,
* E-MODULES-EXTRA/mail,
* E-MODULES-EXTRA/forecasts,
* E-MODULES-EXTRA/iiirk,
* E-MODULES-EXTRA/places,
* e,
* ewl,
* ecore,
* elitaire,
* entrance,
* e_dbus,
* efreet: Here we go, move from Ecore_List to Eina_List.
NOTE: This patch is huge, I did test it a lot, and I hope nothing is
broken. But if you think something change after this commit, please
contact me ASAP.
SVN revision: 39200
|
|
* add vim header
* include config.h when necessary
* fix the order of some include
* move the standard header in ecore_private.h to the source files
I have recompiled all the efl and e17, and e17 seems to work fine with these changes.
If you encounter problems with that commit, let me know.
SVN revision: 38864
|
|
Dynamically allocated buffers which we will free shouldn't be const.
SVN revision: 38069
|
|
SVN revision: 38068
|
|
wow! must check.
SVN revision: 36586
|
|
SVN revision: 35791
|
|
writes to external devices will be atomic if possible. If it's still not possible, the old fallback method of just copying will be done.
SVN revision: 35787
|
|
before calling this function instead.
SVN revision: 35781
|
|
EAPI int ecore_file_dir_is_empty(const char*dir)
Should we need to upgrade the ecore version? so apps that need this function can check for the right version?
Thanks
Dave
SVN revision: 34889
|
|
commit is big, please report any problem
SVN revision: 34671
|
|
SVN revision: 34285
|
|
SVN revision: 33616
|
|
SVN revision: 32207
|
|
for realpath and mkdir
SVN revision: 31771
|
|
SVN revision: 31663
|