Commit Graph

162 Commits

Author SHA1 Message Date
Lucas De Marchi 1466059699 Fix common misspellings
Following misspellings were fixed:

calulate->calculate
substract->subtract



SVN revision: 52014
2010-09-09 00:59:17 +00:00
Gustavo Sverzut Barbieri b3cf9537bb Use Eve's user-agent by default, and we're iphone compatible!
One can still specify iphone-exact UA, but we're not using ours and
it's compatible (in most websites processing analysis) with it.

Also provide some more UA shortcuts based on http://www.useragentstrings.com/



SVN revision: 51959
2010-09-07 17:17:42 +00:00
Gustavo Sverzut Barbieri 66ed81ef31 set window title, with page load progress.
SVN revision: 51958
2010-09-07 16:59:40 +00:00
Gustavo Sverzut Barbieri 747ee61273 fix segv when deleting the last tab.
do not access win pointer after tab close, it may have been destroyed
if it is the last tab in that window.



SVN revision: 51957
2010-09-07 16:11:55 +00:00
Mike Blumenkrantz 7decbb0d7c k-s told me to do work on eve so I did it and now I'm writing a commmmit message for what I did but I don't remember what it was so I'll just hope that it works and that if it doesn't someone blames TAsn or cedric and fixes it
SVN revision: 51847
2010-09-02 22:28:35 +00:00
Lucas De Marchi 1a9c8c0edb Let selection mode as default
SVN revision: 51766
2010-08-30 20:45:57 +00:00
Lucas De Marchi fce46e4793 Uncrustify eve
Exceptions:
 - auto-generated files by geneet (favorite.[ch] and history.[ch])

Config not used:
 - *_closebrace_comment in uncrustify config



SVN revision: 51682
2010-08-27 17:51:04 +00:00
Lucas De Marchi 50f87c6bcb Convert (hopefully) all comparisons to NULL
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
2010-08-21 13:52:25 +00:00
Eduardo de Barros Lima cd9ac98213 Eve: Add rotate option
SVN revision: 51094
2010-08-13 19:15:04 +00:00
Gustavo Lima Chaves 1862ee3a0a Oops, Leandro (acidx) has just commited an old version edj.
SVN revision: 51062
2010-08-12 23:09:38 +00:00
Leandro Pereira 6be6d6d3a9 Nicer effect when selecting items from the History / Favorites list.
SVN revision: 51061
2010-08-12 20:56:03 +00:00
Leandro Pereira 73e055e1f9 Adding Eve webbrowser, based on WebKit-EFL.
This is a complete rewrite of the old Eve web browser, using the current WebKit-EFL port
(available from the official WebKit SVN; instructions on how to build it are here[1]).

The interface was designed for mobile devices and is based off the Efenniht theme for E17.

[1] http://trac.webkit.org/wiki/EFLWebKit



SVN revision: 51060
2010-08-12 20:08:35 +00:00