Enlightenment CVS committal Author : pfritz Project : e17 Module : apps/e
Dir : e17/apps/e/src/bin Modified Files: e_config.c e_configure.c e_eap_editor.c e_exebuf.c e_fm.c e_fm_main.c e_fwin.c e_int_config_modules.c e_int_menus.c e_intl.c e_ipc_handlers.h e_module.c e_order.c e_prefix.c e_widget_fsel.c Log Message: *API BREAK* see the discussion in the mailing list. misc and e_modules will follow =================================================================== RCS file: /cvs/e/e17/apps/e/src/bin/e_config.c,v retrieving revision 1.253 retrieving revision 1.254 diff -u -3 -r1.253 -r1.254 --- e_config.c 24 Jul 2007 14:50:26 -0000 1.253 +++ e_config.c 25 Jul 2007 17:00:49 -0000 1.254 @@ -1688,7 +1688,7 @@ { char *file; - ecore_list_goto_first(files); + ecore_list_first_goto(files); while ((file = ecore_list_current(files))) { snprintf(buf, sizeof(buf), "%s/.e/e/config/%s", homedir, file); @@ -1726,7 +1726,7 @@ { char *file; - ecore_list_goto_first(files); + ecore_list_first_goto(files); while ((file = ecore_list_current(files))) { snprintf(buf, sizeof(buf), "%s/.e/e/config/%s/%s", =================================================================== RCS file: /cvs/e/e17/apps/e/src/bin/e_configure.c,v retrieving revision 1.107 retrieving revision 1.108 diff -u -3 -r1.107 -r1.108 --- e_configure.c 24 Jul 2007 18:47:24 -0000 1.107 +++ e_configure.c 25 Jul 2007 17:00:50 -0000 1.108 @@ -75,9 +75,9 @@ E_Configure_It *eci; /* path is "category/item" */ - cat = ecore_file_get_dir(path); + cat = ecore_file_dir_get(path); if (!cat) return; - item = ecore_file_get_file(path); + item = ecore_file_file_get(path); eci = E_NEW(E_Configure_It, 1); if (!eci) goto done; @@ -124,9 +124,9 @@ const char *item; /* path is "category/item" */ - cat = ecore_file_get_dir(path); + cat = ecore_file_dir_get(path); if (!cat) return; - item = ecore_file_get_file(path); + item = ecore_file_file_get(path); for (l = _e_configure_registry; l; l = l->next) { E_Configure_Cat *ecat; @@ -192,7 +192,7 @@ Evas_List *l; char *cat; - cat = ecore_file_get_dir(path); + cat = ecore_file_dir_get(path); if (!cat) return; for (l = _e_configure_registry; l; l = l->next) { @@ -222,9 +222,9 @@ const char *item; /* path is "category/item" */ - cat = ecore_file_get_dir(path); + cat = ecore_file_dir_get(path); if (!cat) return; - item = ecore_file_get_file(path); + item = ecore_file_file_get(path); for (l = _e_configure_registry; l; l = l->next) { E_Configure_Cat *ecat; @@ -262,9 +262,9 @@ int ret = 0; /* path is "category/item" */ - cat = ecore_file_get_dir(path); + cat = ecore_file_dir_get(path); if (!cat) return 0; - item = ecore_file_get_file(path); + item = ecore_file_file_get(path); for (l = _e_configure_registry; l; l = l->next) { E_Configure_Cat *ecat; =================================================================== RCS file: /cvs/e/e17/apps/e/src/bin/e_eap_editor.c,v retrieving revision 1.85 retrieving revision 1.86 diff -u -3 -r1.85 -r1.86 --- e_eap_editor.c 24 Jul 2007 18:47:24 -0000 1.85 +++ e_eap_editor.c 25 Jul 2007 17:00:50 -0000 1.86 @@ -265,7 +265,7 @@ { /* file not in user's dir, so create new desktop that points there */ if (!ecore_file_exists(dir)) ecore_file_mkdir(dir); - file = ecore_file_get_file(cfdata->editor->desktop->orig_path); + file = ecore_file_file_get(cfdata->editor->desktop->orig_path); snprintf(path, sizeof(path), "%s/%s", dir, file); /* * if a file already exists in the user dir with this name, we @@ -585,7 +585,7 @@ /* XXX change this to a generic icon selector (that can do either * files from a dir, or icons in the current theme */ if (cfdata->icon) - dir = ecore_file_get_dir(cfdata->icon); + dir = ecore_file_dir_get(cfdata->icon); if (dir) { @@ -639,7 +639,7 @@ /* absolute path to exe */ if (cfdata->exec) - dir = ecore_file_get_dir(cfdata->exec); + dir = ecore_file_dir_get(cfdata->exec); if (dir) { =================================================================== RCS file: /cvs/e/e17/apps/e/src/bin/e_exebuf.c,v retrieving revision 1.34 retrieving revision 1.35 diff -u -3 -r1.34 -r1.35 --- e_exebuf.c 12 Jul 2007 02:19:50 -0000 1.34 +++ e_exebuf.c 25 Jul 2007 17:00:50 -0000 1.35 @@ -877,7 +877,7 @@ { Efreet_Desktop *desktop; - ecore_list_goto_first(list); + ecore_list_first_goto(list); while ((desktop = ecore_list_next(list))) { char *exe; @@ -902,7 +902,7 @@ { Efreet_Desktop *desktop; - ecore_list_goto_first(list); + ecore_list_first_goto(list); while ((desktop = ecore_list_next(list))) { char *exe; @@ -927,7 +927,7 @@ { Efreet_Desktop *desktop; - ecore_list_goto_first(list); + ecore_list_first_goto(list); while ((desktop = ecore_list_next(list))) { char *exe; @@ -952,7 +952,7 @@ { Efreet_Desktop *desktop; - ecore_list_goto_first(list); + ecore_list_first_goto(list); while ((desktop = ecore_list_next(list))) { char *exe; @@ -982,7 +982,7 @@ for (l = exe_list; l; l = l->next) { path = l->data; - file = (char *)ecore_file_get_file(path); + file = (char *)ecore_file_file_get(path); if (file) { if (e_util_glob_match(file, buf)) =================================================================== RCS file: /cvs/e/e17/apps/e/src/bin/e_fm.c,v retrieving revision 1.191 retrieving revision 1.192 diff -u -3 -r1.191 -r1.192 --- e_fm.c 16 Jul 2007 14:33:25 -0000 1.191 +++ e_fm.c 25 Jul 2007 17:00:50 -0000 1.192 @@ -2010,7 +2010,7 @@ char *dir; Evas_List *l; - dir = ecore_file_get_dir(path); + dir = ecore_file_dir_get(path); if (!dir) return; for (l = _e_fm2_list; l; l = l->next) { @@ -2020,7 +2020,7 @@ { E_Fm2_Icon *ic; - ic = _e_fm2_icon_find(l->data, ecore_file_get_file(path)); + ic = _e_fm2_icon_find(l->data, ecore_file_file_get(path)); if (ic) { E_Fm2_Finfo finf; @@ -2034,7 +2034,7 @@ if (ic->info.real_link) finf.rlnk = evas_stringshare_add(ic->info.real_link); ic->removable_state_change = 1; - _e_fm2_live_file_changed(l->data, ecore_file_get_file(path), + _e_fm2_live_file_changed(l->data, ecore_file_file_get(path), &finf); if (ic->info.link) evas_stringshare_del(ic->info.link); @@ -2083,7 +2083,7 @@ FILE *f; const char *id; - id = ecore_file_get_file(s->udi); + id = ecore_file_file_get(s->udi); printf("sto write %s\n", id); snprintf(buf, sizeof(buf), "%s/.e/e/fileman/favorites/|%s.desktop", e_user_homedir_get(), id); @@ -2134,7 +2134,7 @@ char buf[PATH_MAX]; const char *id; - id = ecore_file_get_file(s->udi); + id = ecore_file_file_get(s->udi); snprintf(buf, sizeof(buf), "%s/Desktop/|%s.desktop", e_user_homedir_get(), id); ecore_file_unlink(buf); @@ -2150,7 +2150,7 @@ FILE *f; const char *id; - id = ecore_file_get_file(v->storage->udi); + id = ecore_file_file_get(v->storage->udi); printf("vol write %s\n", id); snprintf(buf, sizeof(buf), "%s/.e/e/fileman/favorites/|%s.desktop", e_user_homedir_get(), id); @@ -2205,7 +2205,7 @@ char buf[PATH_MAX]; const char *id; - id = ecore_file_get_file(v->storage->udi); + id = ecore_file_file_get(v->storage->udi); snprintf(buf, sizeof(buf), "%s/Desktop/|%s.desktop", e_user_homedir_get(), id); ecore_file_unlink(buf); @@ -2290,7 +2290,7 @@ finf.lnk = lnk; finf.rlnk = rlnk; - evdir = ecore_file_get_dir(path); + evdir = ecore_file_dir_get(path); if ((sd->id == e->ref_to) && ((!strcmp(evdir, "") || (!strcmp(dir, evdir))))) { @@ -2299,13 +2299,13 @@ if (e->minor == 3)/*file add*/ { _e_fm2_live_file_add - (obj, ecore_file_get_file(path), + (obj, ecore_file_file_get(path), NULL, 0, &finf); } else if (e->minor == 5)/*file change*/ { _e_fm2_live_file_changed - (obj, (char *)ecore_file_get_file(path), + (obj, (char *)ecore_file_file_get(path), &finf); } } @@ -2325,7 +2325,7 @@ } if (path[0] != 0) { - file = ecore_file_get_file(path); + file = ecore_file_file_get(path); if ((!strcmp(file, ".order"))) sd->order_file = 1; else @@ -2383,11 +2383,11 @@ break; case 4:/*file del*/ path = e->data; - evdir = ecore_file_get_dir(path); + evdir = ecore_file_dir_get(path); if ((sd->id == e->ref_to) && (!strcmp(dir, evdir))) { _e_fm2_live_file_del - (obj, ecore_file_get_file(path)); + (obj, ecore_file_file_get(path)); } free(evdir); break; @@ -3409,7 +3409,7 @@ char *dir; Evas_List *l; - dir = ecore_file_get_dir(file); + dir = ecore_file_dir_get(file); if (!dir) return NULL; for (l = _e_fm2_list; l; l = l->next) { @@ -3462,7 +3462,7 @@ fm = _e_fm2_file_fm2_find(path); if (fm) { - file = ecore_file_get_file(path); + file = ecore_file_file_get(path); ic = _e_fm2_icon_find(fm, file); } } @@ -4846,7 +4846,7 @@ fp = _e_fm2_icon_desktop_url_eval(ll->data); if (!fp) continue; snprintf(buf, sizeof(buf), "%s/%s", - sd->realpath, ecore_file_get_file(fp)); + sd->realpath, ecore_file_file_get(fp)); printf("mv %s %s\n", (char *)fp, buf); if ((ic) && (sd->config->view.mode == E_FM2_VIEW_MODE_CUSTOM_ICONS)) { @@ -4904,7 +4904,7 @@ if (!fp) continue; /* move the file into the subdir */ snprintf(buf, sizeof(buf), "%s/%s/%s", - sd->realpath, sd->drop_icon->info.file, ecore_file_get_file(fp)); + sd->realpath, sd->drop_icon->info.file, ecore_file_file_get(fp)); printf("mv %s %s\n", (char *)fp, buf); _e_fm2_client_file_move(sd->id, fp, buf, "", 0, -9999, -9999, sd->w, sd->h); evas_stringshare_del(fp); @@ -4924,7 +4924,7 @@ fp = _e_fm2_icon_desktop_url_eval(ll->data); if (!fp) continue; snprintf(buf, sizeof(buf), "%s/%s", - sd->realpath, ecore_file_get_file(fp)); + sd->realpath, ecore_file_file_get(fp)); if (sd->config->view.link_drop) { printf("ln -s %s %s\n", (char *)fp, buf); @@ -4946,7 +4946,7 @@ fp = _e_fm2_icon_desktop_url_eval(ll->data); if (!fp) continue; snprintf(buf, sizeof(buf), "%s/%s", - sd->realpath, ecore_file_get_file(fp)); + sd->realpath, ecore_file_file_get(fp)); if (sd->config->view.link_drop) { printf("ln -s %s %s\n", (char *)fp, buf); @@ -4970,7 +4970,7 @@ if (!fp) continue; /* move the file into the subdir */ snprintf(buf, sizeof(buf), "%s/%s", - sd->realpath, ecore_file_get_file(fp)); + sd->realpath, ecore_file_file_get(fp)); printf("mv %s %s\n", (char *)fp, buf); _e_fm2_client_file_move(sd->id, fp, buf, "", 0, -9999, -9999, sd->w, sd->h); evas_stringshare_del(fp); @@ -4986,7 +4986,7 @@ if (!fp) continue; /* move the file into the subdir */ snprintf(buf, sizeof(buf), "%s/%s", - sd->realpath, ecore_file_get_file(fp)); + sd->realpath, ecore_file_file_get(fp)); printf("mv %s %s\n", (char *)fp, buf); _e_fm2_client_file_move(sd->id, fp, buf, "", 0, -9999, -9999, sd->w, sd->h); evas_stringshare_del(fp); =================================================================== RCS file: /cvs/e/e17/apps/e/src/bin/e_fm_main.c,v retrieving revision 1.25 retrieving revision 1.26 diff -u -3 -r1.25 -r1.26 --- e_fm_main.c 12 Jul 2007 02:20:51 -0000 1.25 +++ e_fm_main.c 25 Jul 2007 17:00:50 -0000 1.26 @@ -274,7 +274,7 @@ return; } - ecore_list_goto_first(ret->strings); + ecore_list_first_goto(ret->strings); while ((device = ecore_list_next(ret->strings))) { // printf("DB INIT DEV+: %s\n", device); @@ -302,7 +302,7 @@ return; } - ecore_list_goto_first(ret->strings); + ecore_list_first_goto(ret->strings); while ((device = ecore_list_next(ret->strings))) { // printf("DB STORE+: %s\n", device); @@ -324,7 +324,7 @@ return; } - ecore_list_goto_first(ret->strings); + ecore_list_first_goto(ret->strings); while ((device = ecore_list_next(ret->strings))) { // printf("DB VOL+: %s\n", device); @@ -1032,7 +1032,7 @@ dst = src + strlen(src) + 1; ecore_file_mv(src, dst); /* FIXME: send back if succeeded or failed - why */ - _e_path_fix_order(dst, ecore_file_get_file(src), 2, -9999, -9999); + _e_path_fix_order(dst, ecore_file_file_get(src), 2, -9999, -9999); } break; case 6: /* fop mv file/dir */ @@ -1216,8 +1216,8 @@ const char *file; Evas_List *l; - dir = ecore_file_get_dir(path); - file = ecore_file_get_file(path); + dir = ecore_file_dir_get(path); + file = ecore_file_file_get(path); /* FIXME: get no create events if dir is empty */ if ((event == ECORE_FILE_EVENT_CREATED_FILE) || (event == ECORE_FILE_EVENT_CREATED_DIRECTORY)) @@ -1880,10 +1880,10 @@ if (!path) return; if (!rel[0]) return; - f = ecore_file_get_file(path); + f = ecore_file_file_get(path); if (!f) return; if (!strcmp(f, rel)) return; - d = ecore_file_get_dir(path); + d = ecore_file_dir_get(path); if (!d) return; snprintf(buf, sizeof(buf), "%s/.order", d); if (ecore_file_exists(buf)) =================================================================== RCS file: /cvs/e/e17/apps/e/src/bin/e_fwin.c,v retrieving revision 1.55 retrieving revision 1.56 diff -u -3 -r1.55 -r1.56 --- e_fwin.c 23 Jul 2007 16:32:10 -0000 1.55 +++ e_fwin.c 25 Jul 2007 17:00:50 -0000 1.56 @@ -200,7 +200,7 @@ snprintf(buf, sizeof(buf), "_fwin::/%s", e_fm2_real_path_get(fwin->fm_obj)); e_win_name_class_set(fwin->win, "E", buf); - file = ecore_file_get_file(e_fm2_real_path_get(fwin->fm_obj)); + file = ecore_file_file_get(e_fm2_real_path_get(fwin->fm_obj)); if (file) snprintf(buf, sizeof(buf), "%s", file); else @@ -313,7 +313,7 @@ e_fm2_path_set(fwin->fm_obj, dev, path); - file = ecore_file_get_file(e_fm2_real_path_get(fwin->fm_obj)); + file = ecore_file_file_get(e_fm2_real_path_get(fwin->fm_obj)); if (file) snprintf(buf, sizeof(buf), "%s", file); else @@ -652,7 +652,7 @@ if (selected) { files = ecore_list_new(); - ecore_list_set_free_cb(files, free); + ecore_list_free_cb_set(files, free); for (l = selected; l; l = l->next) { E_Fwin_Exec_Type ext; @@ -1030,7 +1030,7 @@ ml = efreet_util_desktop_mime_list(l->data); if (ml) { - ecore_list_goto_first(ml); + ecore_list_first_goto(ml); while ((desktop = ecore_list_next(ml))) apps = evas_list_append(apps, desktop); ecore_list_destroy(ml); @@ -1066,7 +1066,7 @@ chdir(e_fm2_real_path_get(fwin->fm_obj)); files_list = ecore_list_new(); - ecore_list_set_free_cb(files_list, free); + ecore_list_free_cb_set(files_list, free); for (l = files; l; l = l->next) { ici = l->data; =================================================================== RCS file: /cvs/e/e17/apps/e/src/bin/e_int_config_modules.c,v retrieving revision 1.56 retrieving revision 1.57 diff -u -3 -r1.56 -r1.57 --- e_int_config_modules.c 24 Jul 2007 18:47:24 -0000 1.56 +++ e_int_config_modules.c 25 Jul 2007 17:00:50 -0000 1.57 @@ -195,7 +195,7 @@ if (!ecore_file_is_dir(epd->dir)) continue; dirs = ecore_file_ls(epd->dir); if (!dirs) continue; - ecore_list_goto_first(dirs); + ecore_list_first_goto(dirs); while ((mod = ecore_list_next(dirs))) { E_Module *module; @@ -343,7 +343,7 @@ char *path; char buf[4096]; - path = ecore_file_get_dir(desk->orig_path); + path = ecore_file_dir_get(desk->orig_path); snprintf(buf, sizeof(buf), "%s/%s.edj", path, desk->icon); icon = buf; free(path); @@ -391,7 +391,7 @@ switch (event) { case ECORE_FILE_EVENT_CREATED_DIRECTORY: - file = ecore_file_get_file(path); + file = ecore_file_file_get(path); if (mod_mon) ecore_file_monitor_del(mod_mon); mod_mon = ecore_file_monitor_add(path, _cb_mod_monitor, cfdata); break; @@ -417,7 +417,7 @@ switch (event) { case ECORE_FILE_EVENT_CREATED_DIRECTORY: - file = ecore_file_get_file(path); + file = ecore_file_file_get(path); if (!e_util_glob_case_match(file, MODULE_ARCH)) break; if (dir_mon) ecore_file_monitor_del(dir_mon); dir_mon = ecore_file_monitor_add(path, _cb_dir_monitor, cfdata); =================================================================== RCS file: /cvs/e/e17/apps/e/src/bin/e_int_menus.c,v retrieving revision 1.218 retrieving revision 1.219 diff -u -3 -r1.218 -r1.219 --- e_int_menus.c 9 Jul 2007 18:12:56 -0000 1.218 +++ e_int_menus.c 25 Jul 2007 17:00:50 -0000 1.219 @@ -536,7 +536,7 @@ { Efreet_Menu *entry; - ecore_list_goto_first(menu->entries); + ecore_list_first_goto(menu->entries); while ((entry = ecore_list_next(menu->entries))) { mi = e_menu_item_new(m); =================================================================== RCS file: /cvs/e/e17/apps/e/src/bin/e_intl.c,v retrieving revision 1.91 retrieving revision 1.92 diff -u -3 -r1.91 -r1.92 --- e_intl.c 8 Apr 2007 21:00:30 -0000 1.91 +++ e_intl.c 25 Jul 2007 17:00:50 -0000 1.92 @@ -588,7 +588,7 @@ files = ecore_file_ls(dir); if (!files) return NULL; - ecore_list_goto_first(files); + ecore_list_first_goto(files); if (files) { while ((file = ecore_list_next(files))) @@ -1126,7 +1126,7 @@ files = ecore_file_ls(dir); if (!files) return NULL; - ecore_list_goto_first(files); + ecore_list_first_goto(files); if (files) { while ((file = ecore_list_next(files))) =================================================================== RCS file: /cvs/e/e17/apps/e/src/bin/e_ipc_handlers.h,v retrieving revision 1.147 retrieving revision 1.148 diff -u -3 -r1.147 -r1.148 --- e_ipc_handlers.h 25 Mar 2007 22:45:00 -0000 1.147 +++ e_ipc_handlers.h 25 Jul 2007 17:00:50 -0000 1.148 @@ -7556,7 +7556,7 @@ { const char *i; const char *f; - f = ecore_file_get_file(s); + f = ecore_file_file_get(s); i = e_path_find(path_init, f); if (!e_util_edje_collection_exists(i, "init/splash")) { =================================================================== RCS file: /cvs/e/e17/apps/e/src/bin/e_module.c,v retrieving revision 1.79 retrieving revision 1.80 diff -u -3 -r1.79 -r1.80 --- e_module.c 16 Jul 2007 02:15:37 -0000 1.79 +++ e_module.c 25 Jul 2007 17:00:50 -0000 1.80 @@ -190,12 +190,12 @@ m->name = evas_stringshare_add(name); if (modpath) { - s = ecore_file_get_dir(modpath); + s = ecore_file_dir_get(modpath); if (s) { char *s2; - s2 = ecore_file_get_dir(s); + s2 = ecore_file_dir_get(s); free(s); if (s2) { =================================================================== RCS file: /cvs/e/e17/apps/e/src/bin/e_order.c,v retrieving revision 1.24 retrieving revision 1.25 diff -u -3 -r1.24 -r1.25 --- e_order.c 17 Jun 2007 07:38:48 -0000 1.24 +++ e_order.c 25 Jul 2007 17:00:50 -0000 1.25 @@ -178,7 +178,7 @@ eo->desktops = evas_list_free(eo->desktops); if (!eo->path) return; - dir = ecore_file_get_dir(eo->path); + dir = ecore_file_dir_get(eo->path); f = fopen(eo->path, "rb"); if (f) { @@ -204,9 +204,9 @@ if (buf[0] == '/') desktop = efreet_desktop_get(buf); if (!desktop) - desktop = efreet_desktop_get(ecore_file_get_file(buf)); + desktop = efreet_desktop_get(ecore_file_file_get(buf)); if (!desktop) - desktop = efreet_util_desktop_file_id_find(ecore_file_get_file(buf)); + desktop = efreet_util_desktop_file_id_find(ecore_file_file_get(buf)); if (desktop) eo->desktops = evas_list_append(eo->desktops, desktop); } } =================================================================== RCS file: /cvs/e/e17/apps/e/src/bin/e_prefix.c,v retrieving revision 1.19 retrieving revision 1.20 diff -u -3 -r1.19 -r1.20 --- e_prefix.c 22 Sep 2006 19:55:11 -0000 1.19 +++ e_prefix.c 25 Jul 2007 17:00:50 -0000 1.20 @@ -261,7 +261,7 @@ { char *file; - ecore_list_goto_first(files); + ecore_list_first_goto(files); while ((file = ecore_list_current(files))) { snprintf(buf2, sizeof(buf2), "%s/%s/"MAGIC_DAT, buf, file); =================================================================== RCS file: /cvs/e/e17/apps/e/src/bin/e_widget_fsel.c,v retrieving revision 1.53 retrieving revision 1.54 diff -u -3 -r1.53 -r1.54 --- e_widget_fsel.c 3 May 2007 17:58:35 -0000 1.53 +++ e_widget_fsel.c 25 Jul 2007 17:00:50 -0000 1.54 @@ -81,7 +81,7 @@ if (!ecore_file_is_dir(current_path)) return; homedir = e_user_homedir_get(); snprintf(buf, sizeof(buf), "%s/.e/e/fileman/favorites/%s", - homedir, ecore_file_get_file(current_path)); + homedir, ecore_file_file_get(current_path)); if (stat(buf, &st) < 0) symlink(current_path, buf); else { @@ -90,13 +90,13 @@ snprintf(buf, sizeof(buf), "%s/.e/e/fileman/favorites/%s-%d", homedir, - ecore_file_get_file(current_path), i); + ecore_file_file_get(current_path), i); i++; } symlink(current_path, buf); } - fname = alloca(strlen(ecore_file_get_file(buf)) + 1); - strcpy(fname, ecore_file_get_file(buf)); + fname = alloca(strlen(ecore_file_file_get(buf)) + 1); + strcpy(fname, ecore_file_file_get(buf)); snprintf(buf, sizeof(buf), "%s/.e/e/fileman/favorites/.order", homedir); if (ecore_file_exists(buf)) { ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs