aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-about-handler.c
Commit message (Collapse)AuthorAgeFilesLines
* ephy-about-handler: add a about:incognito handlerClaudio Saavedra2013-03-051-0/+42
| | | | | | | This shows a welcome message for incognito windows. Artwork by Jakub Steiner. https://bugzilla.gnome.org/show_bug.cgi?id=694200
* Don't use DOM bindings to delete a web application from about:applicationsCarlos Garcia Campos2013-01-111-5/+10
| | | | | | | | Use a different form for every web application with a hidden value containing the application id. Then use the policy client to ignore any form submission from about:applications and delete the application instead, reloading the about:applications page. This solution will work for WebKit2 too.
* Fix a ton of 'warning: function declaration isn’t a prototype'Xan Lopez2012-11-051-1/+1
| | | | | | | | | 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 plugins about handler to WebKit2Carlos Garcia Campos2012-06-261-3/+55
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=678625
* embed: Move about handlers to a new fileCarlos Garcia Campos2012-06-261-0/+204
Leaving in ephy-request-about only the code specific to the soup feature implementation.