Commit Graph

1093 Commits

Author SHA1 Message Date
Sebastian Dransfeld a5ac6a987c efreet: better english
SVN revision: 78889
2012-11-03 21:44:11 +00:00
Sebastian Dransfeld 06fd5c1fbb efreet: ChangeLog and NEWS
SVN revision: 78888
2012-11-03 21:44:07 +00:00
Sebastian Dransfeld 2bdc89808c efreet: check desktop-directories
SVN revision: 78875
2012-11-02 20:12:47 +00:00
Sebastian Dransfeld 6e85b4bfcc efreet: track efreetd clients
SVN revision: 78874
2012-11-02 20:12:41 +00:00
Sebastian Dransfeld 89daa0b210 efreet: minor changes
- Wait longer before we start cache build process
- Fix typo
- Don't log with \n
- TODO++

SVN revision: 78872
2012-11-02 20:11:56 +00:00
Sebastian Dransfeld 124beafa67 efreet: require edbus2
SVN revision: 78867
2012-11-02 14:01:55 +00:00
Sebastian Dransfeld 15431e52a6 efreet: add dir path, not file path
SVN revision: 78815
2012-11-02 02:49:20 +00:00
Sebastian Dransfeld 063cb0c3e2 efreet: only run one builder instance
SVN revision: 78814
2012-11-02 02:49:10 +00:00
Sebastian Dransfeld f38c608627 efreet: reply on ping whether cache exists
And trigger event

SVN revision: 78813
2012-11-02 01:47:06 +00:00
Sebastian Dransfeld 9262991a45 efreet: iface registration before name request
SVN revision: 78812
2012-11-02 01:47:00 +00:00
Sebastian Dransfeld e94d0c6eb1 efreet: Use dbus daemon
SVN revision: 78809
2012-11-02 01:46:44 +00:00
Sebastian Dransfeld ac97a87b85 efreetd: init ecore_file
SVN revision: 78808
2012-11-02 01:46:31 +00:00
José Roberto de Souza ca20fab7d4 efreet: Build fix, edbus_service_interface_register() signature has changed
Patch by: José Roberto de Souza  <zehortigoza@profusion.mobi>



SVN revision: 78804
2012-11-01 16:41:35 +00:00
Stefan Schmidt cedf5d0cf9 Doxyfile.in: Remove obsolte doxygen tags from all our Doxyfile.in files.
Doygen tells us:
warning: Tag `SHOW_DIRECTORIES' at line 507 of file Doxyfile has become obsolete.
To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u"
warning: Tag `HTML_ALIGN_MEMBERS' at line 879 of file Doxyfile has become obsolete.
To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u"
warning: Tag `USE_INLINE_TREES' at line 1065 of file Doxyfile has become obsolete.
To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u"

So we are nice and remove them. A yay for the day where we have amerged tree and
not two dozens of Doxyfile.in files floating around.

SVN revision: 78409
2012-10-24 19:50:29 +00:00
Daniel Juyung Seo c204c6c2c2 efreet: Fixed build break without edbus2. Patch by vtorri.
Thanks a lot vtorri!
I tested this with/without edbus2.

SVN revision: 78302
2012-10-21 08:09:05 +00:00
Sebastian Dransfeld ed5e14204e efreet: Add dbus efreet daemon
Not working yet.

SVN revision: 78294
2012-10-21 04:53:23 +00:00
Sebastian Dransfeld 199bef6051 efreet: move common function to base
SVN revision: 78293
2012-10-21 04:53:18 +00:00
Lucas De Marchi 2a8b05eb03 efreet: Fix efreet_init_parse for non existent file
The conversion to eina_file_map() in r78179 broke the error path of
efreet_init_parse(). Particularly if file doesn't exist. Since the variables
were not initialized it was trying to operate on random values from the stack.
So I got the following crash on E17:

#0  0x00007f238b0bbd67 in waitpid () from /usr/lib/libpthread.so.0
#1  0x00000000004397a3 in e_alert_show ()
#2  0x0000000000526392 in e_sigseg_act ()
#3  <signal handler called>
#4  0x0000000000000031 in ?? ()
#5  0x00007f239315df0f in efreet_ini_parse (file=file@entry=0x7fff39ce46f0 "/home/lucas/local/share/enlightenment/applications/defaults.list")
    at /home/lucas/p/e-svn/trunk/efreet/src/lib/efreet_ini.c:245
#6  0x00007f239315e100 in efreet_ini_new (file=0x7fff39ce46f0 "/home/lucas/local/share/enlightenment/applications/defaults.list")
    at /home/lucas/p/e-svn/trunk/efreet/src/lib/efreet_ini.c:82
#7  0x0000000000538174 in _e_util_default_terminal_get ()
#8  0x00000000005382dc in e_util_terminal_desktop_get ()
#9  0x00007f23706a1065 in e_fwin_init () from /home/lucas/local/lib/enlightenment/modules/fileman/linux-gnu-x86_64-ver-pre-svn-08/module.so
#10 0x00007f237069b524 in e_modapi_init () from /home/lucas/local/lib/enlightenment/modules/fileman/linux-gnu-x86_64-ver-pre-svn-08/module.so
#11 0x000000000050420d in e_module_enable ()
#12 0x0000000000504e77 in _e_module_cb_idler ()
#13 0x00007f238da22739 in _ecore_call_task_cb (data=<optimized out>, func=<optimized out>) at /home/lucas/p/e-svn/trunk/ecore/src/lib/ecore/ecore_private.h:265
#14 _ecore_idle_enterer_call () at /home/lucas/p/e-svn/trunk/ecore/src/lib/ecore/ecore_idle_enterer.c:234
#15 0x00007f238da24c1b in _ecore_main_loop_iterate_internal (once_only=once_only@entry=0) at /home/lucas/p/e-svn/trunk/ecore/src/lib/ecore/ecore_main.c:1826
#16 0x00007f238da252c7 in ecore_main_loop_begin () at /home/lucas/p/e-svn/trunk/ecore/src/lib/ecore/ecore_main.c:934
#17 0x0000000000436167 in main ()

Besides initializing the variables, there's no need to "goto" if the file
doesn't exist.... just return.




SVN revision: 78272
2012-10-19 23:33:05 +00:00
Sebastian Dransfeld 4468ee3a7f efreet: use eina_file_map
SVN revision: 78179
2012-10-18 11:19:28 +00:00
Sebastian Dransfeld e327361844 efreet: formatting
SVN revision: 78178
2012-10-18 11:19:14 +00:00
Sebastian Dransfeld a473306c0e efreet: move update files
Move update files to separate subdir to reduce inotify triggers

SVN revision: 78176
2012-10-18 09:40:00 +00:00
Sebastian Dransfeld d1bf182ec8 efreet: move variable to right scope
SVN revision: 78175
2012-10-18 09:39:44 +00:00
Sebastian Dransfeld 4eb8b955a9 efreet: optimize stat
use eina_file_stat_ls instead of eina_file.*_ls + ecore_file_is_dir

SVN revision: 78173
2012-10-18 09:12:25 +00:00
Sebastian Dransfeld 39d7882866 efreet: simplify
Since we open the file, there is no need to check for file existance and
a fstat call is nicer than ecore_file_size

SVN revision: 78171
2012-10-18 09:12:04 +00:00
Sebastian Dransfeld 9fe5e81ccb efreet: formatting
SVN revision: 78170
2012-10-18 09:11:54 +00:00
Sebastian Dransfeld 17cd7fa313 efreet: remove file exists check
efreet_ini_new will check if file exists later on.

SVN revision: 78169
2012-10-18 09:11:43 +00:00
Sebastian Dransfeld 2a3cb2d1c9 efreet: remove realpath
Use eina_file_path_sanitize where needed

SVN revision: 78161
2012-10-18 08:10:35 +00:00
Sebastian Dransfeld 8009998bcc efreet: remove realpath
No need to use realpath here, paths coming in here are already sane

SVN revision: 78160
2012-10-18 08:10:23 +00:00
Sebastian Dransfeld fc7b1d66a6 efreet: formatting
SVN revision: 78159
2012-10-18 08:09:54 +00:00
Carsten Haitzler 8b19e6eab1 disable some realpath(s) in efreet to rece syscall noise on init...
after some poking around and looking - terminology is taking about
800ms to start ... and we seem to use about 300ms or so of that time
statting files and tregistering them for file monitoring (the dirs
that are found there) and also handling a big batch of incoming file
monitor events for some reason even tho nothing changed.

this cuts down some time+noise, but we need to do a lot of work here. :(



SVN revision: 78108
2012-10-17 09:16:20 +00:00
Massimo Maiurana cf5ba612bb updating portuguese and italian translations
SVN revision: 77833
2012-10-10 22:11:29 +00:00
Sebastian Dransfeld 6b442ed85d efreet: the usual
SVN revision: 77812
2012-10-10 21:00:14 +00:00
Sebastian Dransfeld 246150b72c efreet: get all files with new extension
Previous code would only allow one file with new extension from
inherited theme. Now we accept for all already known icon types.

SVN revision: 77810
2012-10-10 20:56:29 +00:00
Sebastian Dransfeld 3dba7ec434 efreet: find icons with all extension
If there are icons in inherited themes which have not already found
extensions, add these as alternatives.

SVN revision: 77800
2012-10-10 20:28:55 +00:00
Sebastian Dransfeld 6da5a2edce efreet: directory list can end in a ','
SVN revision: 77799
2012-10-10 20:28:51 +00:00
Sebastian Dransfeld 4a192bca07 efreet: close theme_ef on error
SVN revision: 77798
2012-10-10 20:28:47 +00:00
Sebastian Dransfeld 7f33df3da8 efreet: always allocate icon_version
SVN revision: 77797
2012-10-10 20:28:05 +00:00
Gustavo Sverzut Barbieri a13620d1e7 add efreet_user_dir to test variables.
SVN revision: 77683
2012-10-09 20:16:29 +00:00
Gustavo Sverzut Barbieri 7869bcc670 try to fallback on missing XDG_RUNTIME_DIR
SVN revision: 77682
2012-10-09 20:12:02 +00:00
Gustavo Sverzut Barbieri 4786babcc8 Improve xdg-user-dirs documentation.
EVERYBODY writing software, particularly applications, read this
documentation and the links below so you can make your software
compliant:

 * http://0pointer.de/blog/projects/tmp.html where to store files and
   sockets to be secure and portable.
 * http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html



SVN revision: 77669
2012-10-09 18:43:33 +00:00
Gustavo Sverzut Barbieri 753f334e73 Support user directories $XDG_PICTURES_DIR, $XDG_VIDEOS_DIR,
$XDG_DOWNLOAD_DIR, $XDG_TEMPLATES_DIR, $XDG_PUBLICSHARE_DIR,
$XDG_DOCUMENTS_DIR and $XDG_MUSIC_DIR.



SVN revision: 77668
2012-10-09 18:17:33 +00:00
Gustavo Sverzut Barbieri 6368cfbbc2 cleanup macros.
eina_stringshare_replace() does a nice job.

EINA_LIST_FREE() always exit with empty (NULL) list.



SVN revision: 77667
2012-10-09 17:55:34 +00:00
Gustavo Sverzut Barbieri 4cd60a96e1 Add $XDG_RUNTIME_DIR support.
SVN revision: 77666
2012-10-09 17:52:21 +00:00
Mike Blumenkrantz c3fd0444b1 fix some efreet docs
SVN revision: 77412
2012-10-04 08:55:51 +00:00
Carsten Haitzler 3593470069 fix nasty bug in efreet where running an update of desktops (or icons)
could be delayed by minutes.



SVN revision: 77133
2012-09-27 08:22:24 +00:00
Daniel Juyung Seo 1bc1eaaba3 efreet Efreet_Mime.h: Fixed documentation.
SVN revision: 76924
2012-09-21 00:03:23 +00:00
Daniel Juyung Seo c01f421317 efreet: Fixed formatting.
SVN revision: 76923
2012-09-21 00:03:18 +00:00
Daniel Juyung Seo be7b396171 efreet efreet_mime.c: Changes in efreet_mime_shutdown. Decrementing init counter below 0 issue solved. Patch by Zbigniew Kosinski z.kosinski@samsung.com
On Thu, Sep 20, 2012 at 8:06 PM, Zbigniew Kosinski <z.kosinski@samsung.com> wrote:
> Hello,
>
> Right now efreet_shutdown function doesn't return values below 0.
>
> In my opinion,  efreet_mime_shutdown function should behave in the same way
> as efreet_shutdown.
>
> I have prepared patch proposal to prevent decrementing init counter below 0.
>
> Please take a look at attached file.
>
> BR,
>
> Zbigniew Kosinski

SVN revision: 76921
2012-09-20 23:33:32 +00:00
Massimo Maiurana b98c85328f adding gl translations and updating it and pt
SVN revision: 76838
2012-09-18 21:51:43 +00:00
Carsten Haitzler 0e77364887 update header #defined versions to 1.8 to make sure new apis are used
in e17 only with ifdefs.



SVN revision: 75994
2012-09-03 09:55:34 +00:00