aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ephy-web-app-utils.c
Commit message (Collapse)AuthorAgeFilesLines
* Move code to get application icon from DOM to ephy-dom-utilsManuel Rego Casasnovas2013-03-021-230/+0
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=694091
* Try more shortcut icon namesWilliam Jon McCann2013-03-011-0/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=694704
* Fix build with WebKit2Carlos Garcia Campos2012-12-201-1/+2
|
* Use new libsoup APIsXan Lopez2012-12-191-2/+1
| | | | Drops dependency on libsoup-gnome, we now depend on libsoup 2.41.3
* Use better icons for webappsWilliam Jon McCann2012-12-131-0/+228
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=657755
* Fix a ton of 'warning: function declaration isn’t a prototype'Xan Lopez2012-11-051-2/+2
| | | | | | | | | New warning flags have been added to gnome-common recently, and we were getting this a lot. Turns out in C 'foo ()' is not the same than 'foo (void)'; the first just means that no information is given about the number of arguments, the second means the function has exactly zero arguments, so add the 'void' thing all over the place when needed.
* Port persistent cookies to WebKit2Carlos Garcia Campos2012-07-131-11/+33
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=679369
* ephy-web-app-utils: Fix memory leakCarlos Garcia Campos2012-07-121-0/+1
|
* ephy-web-app-utils: Use soup_cookie_domain_matches to check the cookie domainCarlos Garcia Campos2012-07-121-1/+1
| | | | | | | This fixes the cases where sites like www.foo.com save cookies for domain .foo.com, so that when an app is created for www.foo.com, cookies in the current jar for the domain .foo.com are not copied to the app cookie jar.
* Initial WebKit2 portCarlos Garcia Campos2012-06-211-0/+8
| | | | It builds and basic functionality works.
* e-web-app-utils: warn when app dir already existsDiego Escalante Urrelo2012-06-151-1/+3
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=673271
* e-web-app-utils: warn when cookies are unavailableDiego Escalante Urrelo2012-05-271-0/+8
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=673270
* ephy-web-app-utils: remove unused variableXan Lopez2012-05-091-4/+0
|
* ephy-web-app-utils: remove dummy toolbar XML fileXan Lopez2012-05-091-17/+0
| | | | | We don't use XML files to create our toolbars anymore, so this is not needed.
* ephy-web-app-utils: add the desktop file name to EphyWebApplicationXan Lopez2012-05-091-0/+3
| | | | | It's quite cumbersome to re-construct from its name and URL, so just add it here. We'll use it to migrate the profile data.
* Move ephy-web-app-utils to lib/Xan Lopez2012-05-091-0/+498
We are going to use it in the profile migrator, so it needs to be there. Besides, this code just deals with plain data in the profile and application dir, so it makes sense for it to be here.