aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* ephy-session: fix gtk-doc syntaxXan Lopez2012-03-291-1/+1
|
* Rip out the EggSMClient codeXan Lopez2012-03-282-244/+0
| | | | The brave new world is to use the session support in GtkApplication.
* resources: strip blanks from all XML filesXan Lopez2012-03-281-6/+6
| | | | Saves about 20K in the generated files.
* Make the resources depend on the actual UI filesXan Lopez2012-03-288-4/+2344
| | | | | | Otherwise we won't update them if the UI files change. To do this we need to move them from data/ui/ to src/, which is not great. Things would be easier with non-recursive Makefiles.
* Use glib resources to bundle our UI filesXan Lopez2012-03-289-28/+80
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=672907
* epiphany.h.in: remove ephy-history mentionDiego Escalante Urrelo2012-03-271-1/+0
| | | | It breaks ephy-extensions build.
* ephy-completion-model: minor cleanupClaudio Saavedra2012-03-211-1/+1
| | | | | | | No need to invoke twice webkit_get_favicon_databas() in the same method, there's a variable pointing to the database already. https://bugzilla.gnome.org/show_bug.cgi?id=672483
* ephy-completion-model: fix a few leaksClaudio Saavedra2012-03-211-2/+6
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=672481
* ephy-history-window: fix callback for new signal signatureXan Lopez2012-03-201-0/+1
|
* Remove EphyHistory from the repository. It's unused now.Xan Lopez2012-03-203-6/+0
|
* bookmarks: use the new favicon databaseXan Lopez2012-03-201-12/+13
|
* Replace EphyFaviconCache by WebKit's icon database cacheSergio Villar Senin2012-03-208-65/+117
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=648653
* Fix bookmarklet's titles when they are createdXan Lopez2012-03-161-31/+37
| | | | | | | | This was pretty much broken since the Gecko days. On top of that, catch the case where the bookmarklet title is in the child node of the anchor element, which we never got right before. https://bugzilla.gnome.org/show_bug.cgi?id=672194
* The security certificate code is a no-op, remove itXan Lopez2012-03-152-15/+0
|
* window-commands: forcing offline mode has been a no-op for a whileXan Lopez2012-03-141-0/+3
|
* Don't go to EphyEmbedSingle just to get the network statusXan Lopez2012-03-142-29/+3
| | | | | The new GNetworkMonitor class is really a good enough abstraction, don't overdo it.
* history: remember visit typesXan Lopez2012-03-145-3/+18
| | | | | | | Instead of hardcoding all visits as 'TYPED' properly distinguish between bookmarks, following links and typing URIs in the entry. We'll use this to compute the frecency of history items.
* ephy-private: add missing headerXan Lopez2012-03-131-0/+1
|
* ephy-history-service: make the async API cancellableClaudio Saavedra2012-03-133-7/+7
| | | | | | | | | | | The main purpose of the cancellable API in ephy-history-service is to let the user notify when the results of the operation are no longer needed and the callback call can be omitted. Since performing a read operation, in such cases, makes no sense, we cancel them altogether. However, given the nature of the service, we don't cancel write operations. https://bugzilla.gnome.org/show_bug.cgi?id=671901
* ephy-history-view: open pages in a new tab on middle clickClaudio Saavedra2012-03-131-11/+11
| | | | | | This was present in the old EphyNodeView history. Bring it back. https://bugzilla.gnome.org/show_bug.cgi?id=671635
* ephy-main: run app mode only with a existing dirDiego Escalante Urrelo2012-03-111-0/+5
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=669700
* ephy-history-window: init hosts to NULLDiego Escalante Urrelo2012-03-111-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=671613
* ephy-history-window: filter hosts with time range as wellClaudio Saavedra2012-03-081-2/+3
|
* ephy-hosts-view: ensure "all hosts" is selected by defaultClaudio Saavedra2012-03-081-5/+3
| | | | | | If no host can be selected, always select the "all hosts" row. https://bugzilla.gnome.org/show_bug.cgi?id=671575
* ephy-host-store: add a clear() methodClaudio Saavedra2012-03-081-1/+1
| | | | | | | This adds always a default item "All sites" which, when selected, will show all urls in all hosts. https://bugzilla.gnome.org/show_bug.cgi?id=671575
* Annotate correctly the fact that FileNewTab now always opens the homepageXan Lopez2012-03-083-3/+8
| | | | | We need to detect it in EphyEmbed to avoid adding about:blank to the history in that case.
* ephy-bookmarks: remove update on redirectXan Lopez2012-03-081-87/+0
| | | | | | This is pretty cool, but our new history service does not support it (and it's been always broken in the WebKit backend anyway), so remove it. We'll bring it back eventually.
* ephy-history-window: update the list of hosts after a url is deletedClaudio Saavedra2012-03-081-2/+8
| | | | | | | | Since now we remove orphan hosts, we need to update the list of hosts after url removal, too. Do this while preserving the currently selected host, if any. https://bugzilla.gnome.org/show_bug.cgi?id=671559
* ephy-history-window: use the constructed methodXan Lopez2012-03-071-3/+7
| | | | Instead of doing extra stuff in _new.
* ephy-history-window: style fixesXan Lopez2012-03-071-91/+94
|
* ephy-history-window: correct asserts and g_return_if_failXan Lopez2012-03-071-11/+5
| | | | | Don't assert parameters in public methods, don't g_return_if_fail parameters in private ones.
* ephy-history-window: change string for full history optionClaudio Saavedra2012-03-071-1/+1
|
* ephy-bookmarks: remove the "Most visited" categoryXan Lopez2012-03-072-187/+0
| | | | | The place to do this kind of thing is really the History, not Bookmarks.
* ephy-history-window: and also handle "Ever" now that we have infinite ↵Xan Lopez2012-03-071-0/+2
| | | | history storage
* ephy-history-window: correctly handle 2 and 10 days of historyXan Lopez2012-03-071-2/+6
|
* ephy-bookmarks-ui: remove unneeded includeXan Lopez2012-03-071-1/+0
|
* ephy-bookmarks: actually connect to the new serviceXan Lopez2012-03-071-1/+1
|
* ephy-bookmarks: use the new history service when possibleXan Lopez2012-03-072-3/+10
| | | | | The 'cleared' stuff is easy to port. The rest, not so much, because the API to get the visit count is async.
* ephy-bookmarks: reorder includesXan Lopez2012-03-071-9/+9
|
* pdm-dialog: use the new history serviceXan Lopez2012-03-071-4/+4
|
* ephy-navigation-history-action: use the new history serviceXan Lopez2012-03-071-9/+4
|
* ephy-history-window: sort headers, remove duplicatesXan Lopez2012-03-071-19/+18
|
* ephy-history-view: use the new hosts and urls viewsXan Lopez2012-03-073-365/+311
|
* Allow ephy_history_service_find_urls() to filter host specific urlsClaudio Saavedra2012-03-071-1/+1
|
* Set the history service during history window instantiationClaudio Saavedra2012-03-073-3/+10
| | | | The old history object is kept for now but it will be removed later
* Add a EphyHistoryService property to EphyHistoryWindowClaudio Saavedra2012-03-071-1/+16
|
* Get rid of EphyBrowseHistoryXan Lopez2012-03-071-9/+9
| | | | | | It was a very thin wrapper on top of the history service, it does not seem to make much sense. For now move the two useful helper methods down to the service without further changes.
* ephy-completion-model: fix warning when a bookmark has no keywordsXan Lopez2012-03-071-3/+3
| | | | Values in EphyNode can be NULL, so guard against that.
* ephy-completion-model: remove stale includeXan Lopez2012-03-071-1/+0
|
* ephy-location-controller: smoother redraw of the completion popupXan Lopez2012-03-071-1/+13
| | | | | Workaround some bugs in entry completion's redraw code. See https://bugzilla.gnome.org/show_bug.cgi?id=671074
* Hook the new history to the URL entryXan Lopez2012-03-074-602/+422
| | | | | We now fetch the history from the SQL backend using a service thread, and merge the results with our old bookmark data.
* ephy-completion-model: reorder includesXan Lopez2012-03-071-4/+4
|
* src: Reorder LDADD arguments properlyClaudio Saavedra2012-03-071-1/+1
|
* Add EphyHistoryService and helper classesXan Lopez2012-03-071-0/+1
| | | | | | | | | EphyHistoryService provides a high-level API to store history information. It will processed by a worker thread using SQLite to provide a fast, responsive service to the main UI. Based on the code by Martin Robinson (mrobinson@igalia.com) and Claudio Saavedra (csaavedra@igalia.com).
* Enable keyboard accelerator for the create buttonJiro Matsuzawa2012-03-051-1/+1
| | | | | | | I use 'r' of "Create" as a mnemonic character because "C" is already used by "_Cancel". https://bugzilla.gnome.org/show_bug.cgi?id=670328
* ephy-window: add a Extensions menuDiego Escalante Urrelo2012-02-261-0/+1
| | | | | | | Together with epiphany-extensions-3.3.90 this makes the extensions manager visible again, and also all the extensions menu items. https://bugzilla.gnome.org/show_bug.cgi?id=669951
* ephy-bookmarks-ui: fix typo in activate_bookmarks_menuDiego Escalante Urrelo2012-02-261-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=670760
* ephy-shell: use the new g_application_quit to quitXan Lopez2012-02-231-12/+1
|
* ephy-window: show an error if we fail to open a non-web URI with gtk_show_uriXan Lopez2012-02-231-2/+4
| | | | Better than silently doing nothing.
* ephy-web-view: remove close-requested signalDiego Escalante Urrelo2012-02-221-94/+0
| | | | | | | | | WebKitWebView has a ::close-web-view signal for the same thing. The only user of this was ephy-window, for exactly the same thing that we are already doing in ephy-web-view, when handling ::close-web-view. https://bugzilla.gnome.org/show_bug.cgi?id=669737
* ephy-window: use tab-close-request to avoid code duplicationDiego Escalante Urrelo2012-02-111-16/+3
| | | | | | | | There were two paths checking for modified forms and downloads on tab closing. Instead of duplication code, make EphyEmbedContainer impl_remove_child trigger ::tab-close-request on EphyNotebook. https://bugzilla.gnome.org/show_bug.cgi?id=669736
* ephy-shell: install global menu for private mode tooXan Lopez2012-02-091-3/+9
| | | | | | | | This is still not enough to make it work, the menu shows empty in private mode, but the code change is obviously correct. See bug https://bugzilla.gnome.org/show_bug.cgi?id=647986 https://bugzilla.gnome.org/show_bug.cgi?id=669740
* ephy-shell: load home page in new windowsDiego Escalante Urrelo2012-02-091-1/+1
| | | | | | Fixes the uncertain loading state of new windows. https://bugzilla.gnome.org/show_bug.cgi?id=669130
* ephy-main: always set a default icon for windowsDiego Escalante Urrelo2012-02-091-0/+9
| | | | | | | The web-browser icon for the normal/private mode, or the corresponding Web Application icon. https://bugzilla.gnome.org/show_bug.cgi?id=669182
* Convert app names to the proper encoding before using them as filenamesClaudio Saavedra2012-02-081-0/+2
| | | | | | Also add proper conversion error handling where needed. https://bugzilla.gnome.org/show_bug.cgi?id=658028
* ephy-window: restore alt+# accels to switch tabsDiego Escalante Urrelo2012-02-011-0/+84
| | | | | | | Create 10 fixed GtkActions that react to the alt+# accelerators. Based on code from gedit-window.c. https://bugzilla.gnome.org/show_bug.cgi?id=668702
* ephy-window: do not duplicate tons of code in sync_tab_is_blankXan Lopez2012-01-301-59/+13
|
* ephy-window: correct thinko in action sensitivity handlingXan Lopez2012-01-281-1/+6
|
* ephy-window: simplify handling of back/forward sensitivityXan Lopez2012-01-281-30/+6
| | | | | | Back/Forward sensitivity only depends on one factor (whether you can actually go back or forward), so there is no need to use the ephy action helper method. This allows to simplify the code quite a bit.
* ephy-notebook: remove dnd-enabled propertyXan Lopez2012-01-273-31/+0
| | | | It does not seem to do anything.
* ephy-main: tidy up indentationXan Lopez2012-01-271-1/+2
|
* Get rid of EPHY_STOCK_EPHYXan Lopez2012-01-279-21/+2
| | | | | | In 99% of the cases we were using it for gtk_window_set_icon_name, which does nothing in GNOME 3. In the couple of valid use cases, just use "web-browser" directly.
* And remove the last stock icon, bookmarksXan Lopez2012-01-272-3/+0
| | | | We can kill data/icons now.
* Remove the history stock iconXan Lopez2012-01-271-1/+0
|
* Remove EPHY_STOCK_BOOKMARKXan Lopez2012-01-271-2/+0
| | | | | Use the symbolic icon for the completion entry, I'm sure Lapo will approve.
* ephy-window: remove stock icons from two more GtkActionsXan Lopez2012-01-271-2/+0
|
* Also remove stock icons in the history and bookmarks editorsXan Lopez2012-01-272-24/+24
|
* ephy-window: do not define stock icons for the GtkActionsXan Lopez2012-01-271-27/+27
| | | | We are not using them.
* Make EphyWindow responsible for its own destruction when the last tab is goneXan Lopez2012-01-242-6/+7
| | | | | | EphyNotebook was destroying its toplevel when the last tab was destroyed. I think this is really weird, so move the responsibility to the window. This will probably break something, I'm sure.
* ephy-notebook: remove full title tooltip on each tabXan Lopez2012-01-241-6/+0
| | | | It's pretty annoying and hardly useful.
* ephy-location-controller: lose lock tooltip propertyXan Lopez2012-01-241-37/+0
|
* ephy-window: lose security state tooltipsXan Lopez2012-01-241-29/+4
|
* ephy-window: we don't do tooltips anymore, remove support code for thatXan Lopez2012-01-241-212/+40
|
* ephy-window: remove toplevel actions that do not exist anymoreXan Lopez2012-01-241-5/+0
|
* Make the user visible name Web in more placesJon McCann2012-01-241-5/+5
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=666587
* ephy-window: remove unneeded includeXan Lopez2012-01-241-1/+0
|
* ephy-window: call sync_tab_is_blank on new tabsDiego Escalante Urrelo2012-01-241-0/+1
|
* ephy-window: sync page actions with is-blank propertyDiego Escalante Urrelo2012-01-241-1/+97
| | | | | | | | Add ::is-blank property to EphyWebView and update EphyWindow to sync some of the page menu actions with it. There's no point in enabling save/reload/bookmark/etc on about:blank. https://bugzilla.gnome.org/show_bug.cgi?id=668105
* ephy-window: pass non-web schemas to gtk_show_uriDiego Escalante Urrelo2012-01-241-2/+15
| | | | | | | Handle every non-web scheme in policy_decision_required_cb with gtk_show_uri. This enables xmpp:, apt: and similar links to work. https://bugzilla.gnome.org/show_bug.cgi?id=551857
* ephy-action-helper: document flags APIDiego Escalante Urrelo2012-01-241-0/+14
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=668510
* ephy-window: remove leftover from the editable toolbar ancient pastXan Lopez2012-01-231-6/+0
|
* ephy-window: remove leftovers from when EphyWindow managed the progress barXan Lopez2012-01-231-4/+0
|
* Remove the "Open Frame" functionalityXan Lopez2012-01-233-39/+3
| | | | | It's been #if 0-ed and broken forever too. If someone really wants it it should probably go into an extension.
* ephy-window: remove unused codeXan Lopez2012-01-221-4/+0
|
* ephy-window: also remove the statusbar tips for tool itemsXan Lopez2012-01-221-135/+0
|
* ephy-window: remove menu statusbar helper messagesXan Lopez2012-01-221-45/+2
| | | | | | They are not that helpful and are a bit distracting. https://bugzilla.gnome.org/show_bug.cgi?id=668191
* Remove mailto: specific menusXan Lopez2012-01-222-43/+0
| | | | | They have been dead/#if zeroed for a long time without any bugs opened about it, so I can guess they were not used a lot in their day.
* ephy-window: we don't have a menu anymore, so the menudock widget is not neededXan Lopez2012-01-221-8/+1
|
* ephy-window: update comments a bit in window actionsXan Lopez2012-01-221-15/+15
| | | | In particular, don't mention the menus anymore, since they do not exist.
* window-commands.h: remove duplicate and obsolete stuff, reformat a bitXan Lopez2012-01-221-113/+81
|
* ephy-window: make ephy_window_get_find_toolbar privateXan Lopez2012-01-213-2/+3
| | | | | Surely this is not interesting for anyone outside Epiphany? It's not used in extensions.
* Make ephy_window_get_ui_manager return a GtkUIManager, not a GObjectXan Lopez2012-01-215-15/+15
| | | | | No clue why it was doing that, but seems pointless. I wish I could make it private but it's used all over the place.
* ephy-window: remove "add-widget" callback from GtkUIManagerXan Lopez2012-01-211-11/+0
| | | | | We don't add widgets to our UI directly from the UI manager, so it's useless.
* ephy-window: make ephy_window_set_location privateXan Lopez2012-01-212-3/+4
| | | | | Setting the EphyWindow's location string directly is the kind of crack that has to be private.
* Be a bit more strict about header includesXan Lopez2012-01-204-1/+4
|
* ephy-window: do not include <string.h> just for strcmpXan Lopez2012-01-201-2/+1
|
* ephy-window: and remove three more forward declarationsXan Lopez2012-01-201-183/+174
| | | | The remaining one kinda makes sense, so leave it alone.
* ephy-window: remove unused includeXan Lopez2012-01-201-1/+0
|
* ephy-window: reorder a few methods to get rid of forward declarationsXan Lopez2012-01-201-142/+134
|
* ephy-window: remove duplicated methodXan Lopez2012-01-201-15/+2
| | | | | ephy_window_set_location and _ephy_window_set_location were identical. Remove the latter.
* More private method cleanupsXan Lopez2012-01-204-21/+19
| | | | | Move another method to ephy-private.h, and stop exporting another one that is only used internally in EphyWindow.
* Add a ephy-private.h headerXan Lopez2012-01-206-9/+48
| | | | | | This should hold methods needed by Epiphany internally but that we do not want to export. Only a couple of them so far, but we should probably add a lot more.
* ephy-window: remove redundant includesXan Lopez2012-01-201-2/+0
|
* ephy-window: missing annotationXan Lopez2012-01-202-0/+9
|
* location-controller: remove references to "proxy"Cosimo Cecchi2012-01-201-7/+7
| | | | | | | We're not a GtkAction anymore, so referencing "proxy" in the code is a bit misleading. https://bugzilla.gnome.org/show_bug.cgi?id=668305
* location-controller: use the right signal data to unblock signalCosimo Cecchi2012-01-201-2/+1
| | | | | | | | | We were using priv->proxy, which is a leftover from when this was a GtkAction, and is actually always NULL. Use the right pointer instead. Fix location entry failing to properly update the address when switching tabs. https://bugzilla.gnome.org/show_bug.cgi?id=668305
* ephy-shell: pass active window to the about dialogDiego Escalante Urrelo2012-01-201-1/+7
| | | | | | So it can be modal. https://bugzilla.gnome.org/show_bug.cgi?id=668113
* Rename EphyLocationAction -> EphyLocationControllerCosimo Cecchi2012-01-207-264/+263
| | | | | | Since it's not a GtkAction anymore. https://bugzilla.gnome.org/show_bug.cgi?id=668206
* location-action: don't make this a GtkAction anymoreCosimo Cecchi2012-01-206-212/+201
| | | | | | | It doesn't really make sense in a world where the location action is only used on a fixed toolbar, and complicates the code a lot. https://bugzilla.gnome.org/show_bug.cgi?id=668206
* entry: make EphyLocationEntry a GtkEntryCosimo Cecchi2012-01-204-106/+36
| | | | | | | | Instead of a GtkToolItem. A future commit will move the code in EphyLocationAction not to be a GtkAction, which is why this was a GtkToolItem in the first place. https://bugzilla.gnome.org/show_bug.cgi?id=668206
* ephy-window: annotate return value of a methodXan Lopez2012-01-201-0/+9
|
* ephy-toolbar: set the MENUBAR style classXan Lopez2012-01-191-0/+5
| | | | That way we can drag the app using the toolbar itself.
* ephy-window: hide our titlebar when maximizedXan Lopez2012-01-191-0/+3
|
* Remove Print Setup item from the super menu and embed it into print dialogCarlos Garcia Campos2012-01-184-34/+0
|
* ephy-home-action: remove a lot of unused codeXan Lopez2012-01-181-148/+9
|
* Remove Print Preview item from the super menuXan Lopez2012-01-184-22/+0
| | | | | It's already accessible from the Print dialog itself, so there's really no need to duplicate it.
* ephy-page-menu-action: do not query the action proxies during disposeXan Lopez2012-01-181-9/+5
| | | | | That was a bad idea. Just store the proxy used for the visibility hack in the private data too.
* ephy-find-toolbar: reorder includesXan Lopez2012-01-171-3/+3
|
* ephy-window: fix binding for Find PreviousXan Lopez2012-01-171-1/+1
| | | | If the binding uses Shift we need to put the letter in uppercase.
* Remove Find Next/Previous from page menuXan Lopez2012-01-171-0/+3
| | | | | The actions are already in the find toolbar, which is accessible from the menu, so there's no need to have them there.
* ephy-page-menu-action: disconnect the visible handler on disposeXan Lopez2012-01-171-0/+10
|
* ephy-page-menu-action: set the DROPDOWN type hint on the page menuCosimo Cecchi2012-01-171-0/+4
| | | | | So that the WM will use shadows on it as if it was generated from a menubar.
* ephy-page-menu-action: set the style class in the button, not the menuXan Lopez2012-01-171-12/+12
|
* ephy-page-menu-action: hang on to our menuXan Lopez2012-01-171-2/+14
|
* ephy-page-menu: set a style class when our menu is visibleXan Lopez2012-01-173-29/+61
| | | | To aid with styling.
* ephy-toolbar: set a name for the page menu buttonXan Lopez2012-01-171-0/+1
| | | | To aid styling.
* Move the nautilus floating bar to lib/widgetsXan Lopez2012-01-173-466/+0
| | | | And fix a couple of warnings.
* floating-bar: import NautilisFloatingBar into EpiphanyCosimo Cecchi2012-01-173-0/+466
| | | | Yay for sharing code. It also helps theming.
* ephy-notebook: use symbolic icon for close buttonXan Lopez2012-01-171-1/+2
|
* ephy-page-menu: fix warningXan Lopez2012-01-171-1/+1
|
* ephy-combined-stop-reload-action: object orientation is hard, let's go shoppingXan Lopez2012-01-172-5/+5
|
* ephy-page-menu: activate on button pressXan Lopez2012-01-171-16/+41
| | | | Requested by the Design Team.
* Back/Forward actions do need to have a label setXan Lopez2012-01-172-0/+4
| | | | | Since they are used in context menus too. Re-add those and force the toolbar buttons to be image-only.
* ephy-window: forgot thisXan Lopez2012-01-171-1/+0
|
* Refactor GtkActions with attached EphyWindowsXan Lopez2012-01-1713-215/+190
| | | | | Make a GtkAction subclass that only holds an EphyWindow and nothing else, and use it throughout. Allows us to kill some duplicated code.
* ephy-window: add extra bindings for zoom in/outXan Lopez2012-01-171-1/+5
| | | | They are not in any menu either atm.
* ephy-navigation-history-action: make sure embed is focused after navigationXan Lopez2012-01-171-0/+2
| | | | The focus was staying in the proxy buttons, that's not OK.
* ephy-toolbar: set a style class to the location+reload comboXan Lopez2012-01-171-0/+2
| | | | This way it's easier to access from the theme.
* ephy-toolbar: use normal GtkButtons for the toolbarXan Lopez2012-01-172-20/+25
| | | | It's harder to get the theming right with GtkToolButtons :/
* Stop using GtkUIManager to create the toolbarXan Lopez2012-01-177-13/+289
| | | | Otherwise it's difficult to get the right layout for theming.
* window-commands: update copyright yearXan Lopez2012-01-151-1/+1
|
* Make the visible name of the application 'Web'Xan Lopez2012-01-141-4/+4
| | | | | | | Before we had 'Epiphany' in some places and 'GNOME Web Browser' in others, try to be consistent and use just 'Web'. https://bugzilla.gnome.org/show_bug.cgi?id=666587
* ephy-window: drop the PRIMARY_TOOLBAR styleXan Lopez2012-01-141-3/+0
| | | | Requested by Lapo. Now we need to fix up the theme.
* ephy-window: use the emblem icon for the page menuXan Lopez2012-01-141-1/+1
| | | | It's a bit more understandable than send-to.
* ephy-window: make fullscreen an extra bindingXan Lopez2012-01-141-0/+2
| | | | | Otherwise it won't work since it's not in any menu at the moment. That should change.
* ephy-window: do not track application windows too muchXan Lopez2012-01-141-2/+0
| | | | | We already pass the app to the window constructor, so no need to do this again in _init ().
* ephy-window: remove some dead codeXan Lopez2012-01-141-29/+1
|
* ephy-window: add temporary extra binding for PageMenuXan Lopez2012-01-141-0/+4
| | | | The default one is not working for some reason...
* ephy-window: simplify the chrome visibility logicXan Lopez2012-01-141-9/+3
| | | | There's no difference between fullscreen and non fullscreen atm.
* ephy-page-menu-action: try to use the actual activate event when possibleXan Lopez2012-01-141-1/+12
| | | | Otherwise fallback to faking it as before.
* ephy-window: pass the application to the constructorXan Lopez2012-01-141-1/+4
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=667628
* ephy-window: remove some memubar leftoversXan Lopez2012-01-141-52/+4
|
* Drop menubar and create an actions menu button in the toolbarXan Lopez2012-01-146-54/+170
| | | | | | Similar to Chrome's wrench menu, but used only (in the future) for page-related actions. For now we have mechanically moved most stuff there, now we need to start removing them one by one when appropriate.
* Use the new Shell global menu for global actionsXan Lopez2012-01-146-149/+140
| | | | And remove them from the existing menubar.
* ephy-window: make sure to hide all chrome in application modeXan Lopez2012-01-111-1/+5
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=667634
* Add mnemonics for password/recovery infobarsJiro Matsuzawa2012-01-061-2/+2
| | | | | | | | | 'Store password' and 'Session recovery' infobars had no mnemonics in their buttons. Bug #667238 Signed-off-by: Diego Escalante Urrelo <descalante@igalia.com>
* ephy-navigation-history-action: remove some dead codeXan Lopez2012-01-031-7/+0
|
* make g_setenv() calls early enough during startupClaudio Saavedra2012-01-021-12/+12
| | | | | | | | g_setenv() and getenv() are not thread-safe, so we need to make sure that g_setenv() call in main is done earlier than anything that can trigger a getenv() call. https://bugzilla.gnome.org/show_bug.cgi?id=659145
* ephy-home-action: remove dead codeXan Lopez2012-01-021-7/+0
|
* ephy-window: remove GoHome action, it's not used (I hope!)Xan Lopez2012-01-021-18/+0
|
* Revert "Remove EphyHomeAction, it's unused"Xan Lopez2012-01-024-0/+341
| | | | | | This reverts commit 9c12735e12a9106cdc68d9555a491642ea791e62. Turns out it was used :D
* Remove EphyHomeAction, it's unusedXan Lopez2012-01-024-341/+0
|
* Remove EphyGoAction, it's unusedXan Lopez2012-01-024-154/+0
|
* Fake middle clicks without gtk_button_{press,release}, which are deprecatedXan Lopez2012-01-024-33/+49
| | | | | | | | | | | | | | Factor the logic that fakes clicks from a middle click in EphyMiddleClick(Tool)Button by forwarding a left click to GTK+ when we receive a middle click. Since ephy_gui_is_middle_click stops working in this case, add the minimal logic in EphyLinkAction to make it work again (basically, cache the button that activated the action inside the action itself). The EphyMiddleClickable(Tool)Button classes were written by Alexandre Mazari. https://bugzilla.gnome.org/show_bug.cgi?id=628364
* ephy-link-action: we don't have menu tool buttons that need to react to ↵Xan Lopez2012-01-011-16/+2
| | | | middle click anymore
* ephy-session: use GTK's method to get the content areaXan Lopez2012-01-011-1/+1
| | | | Now we can remove our internal implementation.
* ephy-combined-stop-reload-action: add type checksXan Lopez2011-12-311-1/+5
| | | | This is a public function after all.
* ephy-combined-stop-reload-action: make sure we always set the initial stateXan Lopez2011-12-311-7/+8
| | | | | | Since we were only checking the loading status, and it's FALSE by default, the action would be empty until it was set to loading = TRUE at least once.
* ephy-window: set statusbar cid on notebook's page-addedXan Lopez2011-12-311-6/+6
| | | | | | | In some cases tabs can be added to the window without going through the EmbedContainer add method (for instance, with DnD of tabs between windows). Being that the case, set the CID for the statusbar on notebook's page-added handler, which is always called.
* ephy-notebook: remove unused methodXan Lopez2011-12-302-15/+0
|
* ephy-location-action: reorder includesXan Lopez2011-12-231-5/+4
|
* Remove option to hide toolbarsXan Lopez2011-12-202-77/+0
| | | | We don't want this either for 3.4, remove it.
* Remove the "Hide menubar" optionXan Lopez2011-12-201-21/+0
| | | | The menubar will be gone for 3.4, so this will be useless.
* Remove NavigationUpXan Lopez2011-12-205-160/+0
| | | | It's not used anymore.
* Use symbolic icons in the toolbarXan Lopez2011-12-202-6/+5
|
* ephy-combined-stop-reload-action: include fixesXan Lopez2011-12-201-2/+1
|
* Combine the Reload and Stop toolbar buttons into oneClaudio Saavedra2011-12-184-0/+239
| | | | | | | | Add a combined action that toggles itself between the two states and instantiate it from the window. Replace the Reload and Stop buttons with the combined one in the default toolbar description. https://bugzilla.gnome.org/show_bug.cgi?id=657655
* ephy-session: do not store "ephy-about" URIsXan Lopez2011-12-151-0/+7
| | | | | | Store them as "about:" instead, which is the proper kind for loading. https://bugzilla.gnome.org/show_bug.cgi?id=666206
* ephy-session: reorder includesXan Lopez2011-12-151-7/+4
|
* window-commands: reorder includesXan Lopez2011-12-151-21/+21
|
* ephy-notebook: reorder includesXan Lopez2011-12-151-8/+8
|
* ephy-shell: correct bogus logic in warning messageXan Lopez2011-12-151-7/+9
| | | | We were warning in way too many more cases than intended.
* ephy-topic-action: another tiny leftoverXan Lopez2011-12-151-1/+0
|
* ephy-bookmark-action: kill unused code related to toolbar itemsXan Lopez2011-12-151-385/+19
|
* ephy-topic-action: kill unused code related to toolbar itemsXan Lopez2011-12-151-228/+2
|
* ephy-link-action: small cleanupsXan Lopez2011-12-151-13/+12
|
* ephy-related-action: remove, it's unusedXan Lopez2011-12-154-226/+0
|
* Remove last traces of the EggToolbar codeXan Lopez2011-12-156-450/+4
|
* ephy-bookmark-action: remove unused includesXan Lopez2011-12-151-7/+5
|
* Remove the topic/bookmark factory actionsXan Lopez2011-12-156-723/+0
| | | | They are unused now.
* Remove code to support bookmark/topic toolbarXan Lopez2011-12-154-538/+45
|
* Remove ephy_window_get_toolbarXan Lopez2011-12-143-21/+0
| | | | The only use in window-commands.c is not superfluous.
* Remove custom EphyToolbar in favor of a vanilla GtkToolbarXan Lopez2011-12-149-955/+459
| | | | | | | | | | | | | This allows us to stop using EggEditableToolbar here, we just load a normal toolbar from GtkUIManager in EphyWindow. The special toolbar actions and methods have been moved to EphyWindow too, mostly in a mechanical fashion (probably some simplifications are possible). The code in the bookmarks UI that depended on EphyToolbar has been #if zeroed instead of porting it, since it will go away in the near future too. https://bugzilla.gnome.org/show_bug.cgi?id=664483
* Use an overlay progress bar for the loading progress.Claudio Saavedra2011-12-141-70/+0
| | | | | | The theming was done by Lapo Calamandrei. https://bugzilla.gnome.org/show_bug.cgi?id=665470
* ephy-shell: add warning message about incorrect usage of ephy_shell_new_tab_fullXan Lopez2011-12-121-1/+2
|
* ephy-shell: fix weird spacing in LOG messagesXan Lopez2011-12-121-5/+5
|
* ephy-window: append new windows opened as tabs after current tabXan Lopez2011-12-121-3/+5
| | | | | To be consistent with our new default behavior, which is to append new tabs after their parent.
* ephy-window: remove superfluous headersXan Lopez2011-12-101-2/+0
|
* ephy-toolbar: reorder headersXan Lopez2011-12-061-8/+8
|
* ephy-window: remove obsolete commentXan Lopez2011-12-051-2/+0
|
* ephy-window: add global bindings for GoHistory and GoLocationXan Lopez2011-12-051-0/+3
|
* Remove "Go" menuXan Lopez2011-12-051-1/+0
| | | | Last of the toplevel menus without equivalent in the new design.
* Remove last traces of dummy certificate managerXan Lopez2011-12-053-26/+0
| | | | | | There was no implementation, so it was just polluting the codebase. In the future we probably want a non-optional implementation in the "Page details" section, using the soup/glib-network APIs.
* ephy-window: fix accidentally reversed tab bindingsXan Lopez2011-12-051-4/+4
|
* ephy-window: remove the tabs menuXan Lopez2011-12-054-615/+7
| | | | | | It is not present in the new design. The Alt+<num> accelerators are dying with it, but it will be pretty easy to bring them back if needed.
* Remove history dropdown menus from action buttonsXan Lopez2011-12-055-430/+2
| | | | | They are not commonly used and are not present in the new design, so we can get rid of them.
* prefs-dialog: fix compiler warningsXan Lopez2011-12-041-1/+1
|
* Remove homepage preference from GSettingsXan Lopez2011-12-042-7/+3
| | | | | | | | Hardcode it to be "about:blank". The final step could be completely remove the rest of the code, but it might be useful for the future Overview page (if we consider it the new "homepage"). https://bugzilla.gnome.org/show_bug.cgi?id=665469
* Remove UI to define a homepageXan Lopez2011-12-041-64/+11
| | | | | | Later we can remove all the internals to implement the feature. https://bugzilla.gnome.org/show_bug.cgi?id=665469
* Remove toolbar editorXan Lopez2011-12-036-474/+0
| | | | | | | The UI is gone, but the infrastructure still persists (EggToolbarModel, etc). Further cleanups are possible. https://bugzilla.gnome.org/show_bug.cgi?id=664260
* ephy-window: small cleanups, mostly code reorg.Xan Lopez2011-12-011-137/+129
|
* Don't ever show tabs when in application modeClaudio Saavedra2011-11-231-5/+8
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=663668
* Remove some deprecated GTK+ callsClaudio Saavedra2011-11-221-4/+7
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=664120
* Use GNetworkMonitor to monitor network statusXan Lopez2011-11-162-38/+14
| | | | | | We can now get rid of the NetworkManager custom code. https://bugzilla.gnome.org/show_bug.cgi?id=664096
* Remove g_thread_init callsXan Lopez2011-11-061-3/+0
| | | | They are not needed anymore.
* Show Webkit versionJuan A. Suarez Romero2011-11-021-1/+4
| | | | Shows which WebKit version is powering Epiphany.
* e-bookmark-properties: port to GtkGridDiego Escalante Urrelo2011-10-111-15/+19
| | | | | | GtkTable is deprecated. Bug #661347
* pdm-dialog: port cookie properties to GtkGridDiego Escalante Urrelo2011-10-111-91/+36
| | | | | | | Build the Cookie Properties dialog with GtkBuilder instead of handcraft from the past. Bug #661347
* Fixed Bug 660749. Call gtk_label_set_use_markup for the child of manual_buttonJiro Matsuzawa2011-10-071-0/+1
|
* fix string formatFunda Wang2011-09-281-2/+2
|
* Don't crash when network manager is not availableIonut Biru2011-09-271-4/+5
| | | | | | https://bugzilla.gnome.org/show_bug.cgi?id=659103 Signed-off-by: Ionut Biru <ibiru@archlinux.org>
* ephy-shell: chain to parent ::startup methodXan Lopez2011-09-171-0/+2
|
* ephy-shell: remove unused includesXan Lopez2011-09-111-4/+0
|
* ephy-shell: do not resume session in web app modeXan Lopez2011-09-111-5/+6
| | | | | | | | | | Session resume will ask to resume the session (opened pages, etc) if the previous instance crashed. We don't really want this in web app mode, so skip it. Note that this is not exactly the same than loading the session, which just restores the previous window sizes and states. We do want that, but the terminology here could be more clear. https://bugzilla.gnome.org/show_bug.cgi?id=658739
* ephy-shell: sort includes and remove duplicatesXan Lopez2011-09-111-29/+26
|
* ephy-main: sort includes (and remove duplicates!)Xan Lopez2011-09-111-14/+9
|
* ephy-window: disable unwanted actions in application modeXan Lopez2011-09-091-3/+36
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=657624
* ephy-toolbar: undo this hackXan Lopez2011-09-091-7/+4
| | | | We'll do things properly now.
* Display a notification if the web application saving failsClaudio Saavedra2011-09-061-9/+13
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=658060
* Ask the user for confirmation before overwriting web applicationsClaudio Saavedra2011-09-061-35/+87
| | | | | | | Show a confirmation dialog and, in case the user confirms, delete the old application before saving a new one. https://bugzilla.gnome.org/show_bug.cgi?id=658060
* Use EphyFileChooser filters usefullyDiego Escalante Urrelo2011-09-052-2/+2
| | | | | | | Don't use the filters combobox when it's not really needed nor meaningful. Specially for save dialogs. Bug #655713
* ephy-window: hide some irrelevant context menu actions when in app modeXan Lopez2011-09-041-0/+12
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=657624
* ephy-bookmarks-ui: we need to include the EphyNode headerXan Lopez2011-09-041-1/+2
| | | | | | Since it's used in the header file itself. This was working just because other files including this also were including ephy-node.h before.
* ephy-window: sort includesXan Lopez2011-09-041-28/+28
|
* ephy-web-app-utils: move the web app creation code hereXan Lopez2011-09-041-3/+4
|
* ephy-web-app-utils: rename ephy_delete_web_application to ↵Xan Lopez2011-09-031-1/+1
| | | | | | ephy_web_application_delete You know, use namespaces correctly and all that.
* Add --delete--application command line option to delete WebAppsXan Lopez2011-09-021-0/+16
| | | | | | Plus the necessary code to implement some sort of UI to do this for the 3.2 time frame. Hopefully for 3.4 we'll have a GNOME-wide system to deal with applications.
* EphyWindow: Fix location entry's load progressClaudio Saavedra2011-09-021-12/+24
| | | | | | | | The caching of the GtkEntry was broken, since the toolbar items are destroyed on switching to/from fullscreen. Update the cache right after toolbar is rebuilt. https://bugzilla.gnome.org/show_bug.cgi?id=657936
* ephy-window: same hack to allow ephy to launch itself from app modeXan Lopez2011-08-301-0/+4
|
* window-commands: make 'Enter' activate the default responseXan Lopez2011-08-301-0/+1
| | | | Which creates the corresponding Web App.