aboutsummaryrefslogtreecommitdiffstats
path: root/data
Commit message (Collapse)AuthorAgeFilesLines
* Add gsettings key "extract-downloaded-archives"Ting-Wei Lan2013-07-071-0/+5
|
* Compile template pages as GResourcesCarlos Garcia Campos2013-04-054-255/+1
| | | | | | | | So that they are loaded from memory instead of disk every time they are needed. We also get rid of ephy_file searching for the files in the file system. https://bugzilla.gnome.org/show_bug.cgi?id=696792
* Show an error page when the WebProcess crashesXan Lopez2013-03-112-0/+75
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=693832
* ephy-about-handler: add a about:incognito handlerClaudio Saavedra2013-03-053-1/+28
| | | | | | | This shows a welcome message for incognito windows. Artwork by Jakub Steiner. https://bugzilla.gnome.org/show_bug.cgi?id=694200
* Add setting for delayed tab loading, and use it to fix the session testsGustavo Noronha Silva2013-02-241-0/+5
| | | | | | | | | | | | | The session tests were broken by the delayed tab loading feature - the restored embeds would not finish loading and thus the expectations for the URIs were not met. This change adds a setting that is now used by those tests to disable the feature temporarily. Also revert "ephy-session-test: make tests pass", which is no longer necessary. This reverts commit 75da5fff3f4489dacf4ded6f012daa06af306709. https://bugzilla.gnome.org/show_bug.cgi?id=694470
* Remove epiphany.pc leftoversXan Lopez2013-02-181-5/+0
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=694076
* Get rid of epiphany.pcXan Lopez2013-02-151-16/+0
| | | | Also not needed.
* support notification filteringNuno Araujo2013-02-141-0/+1
| | | | | | | This gives gnome-shell a change to apply notification filtering on this app. https://bugzilla.gnome.org/show_bug.cgi?id=690996
* Remove ability to open URIs in the clipboard through middle clickXan Lopez2013-01-182-6/+0
| | | | | This is disabled by default, pretty obscure, and problematic to port properly to WebKit2. So just drop the code.
* Add keywords to the desktop filesMatthias Clasen2012-11-281-0/+1
| | | | This makes the gnome-shell search more pleasant and useful.
* Remove extensions supportXan Lopez2012-10-085-86/+0
| | | | | | | This removes the old style extension support, you can read the rationale in the bug report. https://bugzilla.gnome.org/show_bug.cgi?id=685630
* Add adblock GSetting, use itXan Lopez2012-10-021-0/+5
| | | | | | | org.gnome.epiphany.web.enable-adblock, controls whether adblock is enabled (globally). https://bugzilla.gnome.org/show_bug.cgi?id=681657
* data: add artwork for the overviewClaudio Saavedra2012-09-013-0/+5
| | | | Thumbnail for missing snapshots and thumbnail frame by Jakub Steiner.
* Settings: add a enable-webaudio setting.Philippe Normand2012-08-021-0/+5
| | | | | | WebAudio support in WebKitGTK is not stable yet but it would be good to allow Epiphany users to test this feature nonetheless. The enable-webaudio gsetting is set to false by default.
* epiphany.pc.in: Use @PACKAGE@ instead of epiphanyMichael Biebl2012-07-311-2/+2
| | | | | | to avoid hard coding the package name. https://bugzilla.gnome.org/show_bug.cgi?id=672023
* Add support for 'Do Not Track'Xan Lopez2012-05-191-0/+5
| | | | | | | If the org.gnome.Epiphany.web.do-not-track setting is enabled, we'll send the DNT: 1 header with every outbound request we make. See http://donottrack.us/ for more details.
* epiphany-bookmarks-html.xsl: prioritize smart link URIs over regular linksWilliam Ting2012-05-021-4/+21
| | | | | | | | When exporting bookmarks to HTML, certain smart link metadata is lost that would otherwise be preserved in RDF / XML format. Now smart link URIs are used in place of regular link URIs if they exist. https://bugzilla.gnome.org/show_bug.cgi?id=534565
* Add an option to never show the tabs barXan Lopez2012-04-161-1/+1
| | | | We'll use this when we land the Overview.
* Create a new 'tabs-bar-visibility-policy' settingXan Lopez2012-04-161-2/+7
| | | | | | We need this to be an enum, since we'll a third option in the future for the Overview (to never show the tabs bar). For now just add the two values we have now and migrate the code and the user data.
* Add a 'crashed' option to the session restore policyXan Lopez2012-04-121-1/+1
| | | | | | | | | With this policy the session will only be restored if the application has exited unexpectedly, but not if the user manually closes it. There are no code changes needed for this to work, having a (valid) different value than always/never in the setting makes things just work.
* Add a setting to control whether the session is automatically restoredXan Lopez2012-04-121-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We add a new gsettings key, 'restore-session-policy', with two valid values: 'always' and 'never'. A brief explanation of our session state mechanism follows. There are three ways to exit Epiphany: 1) Activate 'Quit' in the application menu 2) Close the last application window 3) Kill the process manually, SIGSEGV, or other similar unexpected event. For 1) and 2), we'll now do the same thing: a) Call ephy_session_close b) Exit the application manually ephy_session_close will check the new restore-session-policy setting, and only save the session state if it's set to 'always'. Before it used to manually destroy all present windows. We now let EphyShell or EphyWindow do this, EphySession only manages the session state saving. For 3), the process will die with the state saved up to that point, there's nothing we can do. For that reason, on startup also check the new setting; if it's set to 'never' ignore the session state, open a window in the homepage, and delete the old state file. https://bugzilla.gnome.org/show_bug.cgi?id=673453
* Remove the 'disable-menubar' optionXan Lopez2012-03-302-4/+0
| | | | Since we don't have one anymore.
* Remove 'show-boomkarks-bar' optionXan Lopez2012-03-302-5/+0
| | | | Since we don't have one anymore.
* build: intltool 0.50 add proper support for gsettings schemasJavier Jardón2012-03-292-6/+3
| | | | | | Its not needed to use the .in hack anymore Fixes https://bugzilla.gnome.org/show_bug.cgi?id=672932
* Make the resources depend on the actual UI filesXan Lopez2012-03-289-2343/+1
| | | | | | 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-281-13/+7
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=672907
* ui: remove unused fileXan Lopez2012-03-252-5/+0
|
* Don't list deprecated gsettings keys in the .convertSébastien Bacher2012-03-081-2/+0
|
* schema: default to 'All history' in history windowDiego Escalante Urrelo2012-03-081-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=671599
* application-menu: fix accelerators for global actionsXan Lopez2012-03-071-1/+2
| | | | | | | Add accelerations for Preferences (Ctrl+e) and Personal Data Manager (Ctrl+m), and remove the one for About, Ctrl+a, since it's duplicated with Select All and having an accelerator for About does not seem very important in the first place.
* about.ini: add myselfClaudio Saavedra2012-03-071-1/+1
| | | | Look ma', I'm in your browser
* 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
* epiphany.css: add px unit to valuesDiego Escalante Urrelo2012-02-081-4/+4
| | | | | | Any integer above 0 should have a unit in CSS files now. https://bugzilla.gnome.org/show_bug.cgi?id=669602
* epiphany-ui.xml: enable accels in supermenu labelsDiego Escalante Urrelo2012-02-081-1/+1
| | | | | | The explicit accelerators="true" was missing in the <popup> element. https://bugzilla.gnome.org/show_bug.cgi?id=668325
* Allow toggling WebGL as a runtime GSettings switchMartin Robinson2012-02-031-0/+5
| | | | | | If WebGL is enabled in WebKitGTK+, this new GSettings switch disables and enables WebGL settings at runtime. WebGL is disabled by default currently because Epiphany may use Clutter in the future.
* Remove the Bookmarks Editor desktop fileXan Lopez2012-01-274-35/+2
| | | | There's really no much point in shipping it as a separate "application".
* And remove the last stock icon, bookmarksXan Lopez2012-01-2711-713/+1
| | | | We can kill data/icons now.
* Remove the history stock iconXan Lopez2012-01-279-981/+0
|
* Remove EPHY_STOCK_BOOKMARKXan Lopez2012-01-276-260/+0
| | | | | Use the symbolic icon for the completion entry, I'm sure Lapo will approve.
* Remove more unused stock iconsXan Lopez2012-01-279-747/+0
|
* Remove all the lock stock iconsXan Lopez2012-01-2725-7153/+0
| | | | | | At this point we were only using the #defines in EphyLocationEntry to decide which symbolic icon to use, so keep that and delete everything else.
* Remove unused stock iconsXan Lopez2012-01-277-2080/+0
| | | | | | | Both the icons themselves and the names in the header file. This just removes those without absolutely any reference to them in the entire source tree, but I suspect we can remove most of them since they are not actually used.
* The accel for Help should be F1, not Ctrl+hXan Lopez2012-01-261-1/+1
|
* Adapt to the new format form global menusXan Lopez2012-01-261-12/+41
| | | | This requires a GTK+ newer than eed30771.
* Remove the "Open Frame" functionalityXan Lopez2012-01-231-2/+0
| | | | | It's been #if 0-ed and broken forever too. If someone really wants it it should probably go into an extension.
* Remove mailto: specific menusXan Lopez2012-01-221-14/+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.
* Drop unused gtkbuilder filesPriit Laes2012-01-214-1432/+1
| | | | Signed-off-by: Xan Lopez <xan@gnome.org>
* [l10n] No need to translate dummy textPriit Laes2012-01-211-4/+4
| | | | Signed-off-by: Diego Escalante Urrelo <descalante@igalia.com>
* Remove Print Setup item from the super menu and embed it into print dialogCarlos Garcia Campos2012-01-181-1/+0
|
* Remove "Send link by mail..." from the super menuXan Lopez2012-01-181-1/+2
| | | | | | | What we need is an actual "Share with..." functionality, integrated with GNOME, that also groks Facebook, Twitter, etc. Meanwhile I honestly think having this in the super menu is overblown, but we can move it to the Document context menu.
* Remove Print Preview item from the super menuXan Lopez2012-01-181-1/+0
| | | | | It's already accessible from the Print dialog itself, so there's really no need to duplicate it.
* Remove Find Next/Previous from page menuXan Lopez2012-01-171-2/+0
| | | | | The actions are already in the find toolbar, which is accessible from the menu, so there's no need to have them there.
* Stop using GtkUIManager to create the toolbarXan Lopez2012-01-171-8/+0
| | | | Otherwise it's difficult to get the right layout for theming.
* Make the visible name of the application 'Web'Xan Lopez2012-01-141-1/+1
| | | | | | | 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
* Drop menubar and create an actions menu button in the toolbarXan Lopez2012-01-141-60/+34
| | | | | | 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-143-10/+25
| | | | And remove them from the existing menubar.
* epiphany-ui.xml: kill ToolbarPopup, it's unused nowXan Lopez2012-01-111-9/+0
|
* epiphany.css: use 'transparent' instead of 'none' for background colorXan Lopez2012-01-111-1/+1
| | | | Required by newest GTK+.
* schema: remove toolbar editing schemaXan Lopez2011-12-201-3/+0
|
* Remove option to hide toolbarsXan Lopez2011-12-201-9/+0
| | | | We don't want this either for 3.4, remove it.
* Remove the "Hide menubar" optionXan Lopez2011-12-201-2/+0
| | | | The menubar will be gone for 3.4, so this will be useless.
* Combine the Reload and Stop toolbar buttons into oneClaudio Saavedra2011-12-181-2/+1
| | | | | | | | 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
* about.css: make memory table a bit widerXan Lopez2011-12-151-1/+1
| | | | Otherwise big memory usage numbers are easily cut off.
* data/ui/Makefile.am: fix typoXan Lopez2011-12-151-1/+1
|
* Move GtkBuilder files to data/uiXan Lopez2011-12-158-12/+11
| | | | | There's not much point in having two UI files (glade/ and ui/), and besides the files were not actually in glade format anymore.
* epiphany-bookmark-editor-ui.xml: ShowOnToolbar was nukedXan Lopez2011-12-151-4/+0
|
* Remove custom EphyToolbar in favor of a vanilla GtkToolbarXan Lopez2011-12-144-54/+8
| | | | | | | | | | | | | 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-0/+28
| | | | | | The theming was done by Lapo Calamandrei. https://bugzilla.gnome.org/show_bug.cgi?id=665470
* epiphany.css: kill left/right padding in the main toolbarXan Lopez2011-12-101-0/+5
| | | | | | | That way buttons can be used at the edge of the screen when ephy is maximized. https://bugzilla.gnome.org/show_bug.cgi?id=665518
* preferences: turn on new-windows-in-tabs by defaultMartin Robinson2011-12-101-1/+1
| | | | | | | It's consistent with what every other browser is doing and with our future design. https://bugzilla.gnome.org/show_bug.cgi?id=656091
* Remove "Go" menuXan Lopez2011-12-051-12/+0
| | | | Last of the toplevel menus without equivalent in the new design.
* Remove last traces of dummy certificate managerXan Lopez2011-12-051-1/+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: remove the tabs menuXan Lopez2011-12-051-14/+0
| | | | | | 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 homepage preference from GSettingsXan Lopez2011-12-041-5/+0
| | | | | | | | 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-134/+22
| | | | | | 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-031-4/+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
* Redesign of about:pagesTom Tryfonidis2011-12-011-45/+60
| | | | | | | The patch changes the design of about:plugins/memory pages making them similar to about:applications. https://bugzilla.gnome.org/show_bug.cgi?id=665136
* Properties dialog layout fixesClaudio Saavedra2011-11-231-99/+91
| | | | | | | In the languages tab, replace the GtkTable with a GtkGrid and allow the languages treeview to expand vertically. https://bugzilla.gnome.org/show_bug.cgi?id=662252
* Use GNetworkMonitor to monitor network statusXan Lopez2011-11-162-10/+0
| | | | | | We can now get rid of the NetworkManager custom code. https://bugzilla.gnome.org/show_bug.cgi?id=664096
* pdm: use a stock button for the "Clear All" actionXan Lopez2011-11-041-52/+2
| | | | | | | Really no need to do our own thing, which does not follow the system-wide icon settings. https://bugzilla.gnome.org/show_bug.cgi?id=663159
* pdm-dialog: port cookie properties to GtkGridDiego Escalante Urrelo2011-10-111-236/+496
| | | | | | | Build the Cookie Properties dialog with GtkBuilder instead of handcraft from the past. Bug #661347
* Make about:applications prettierXan Lopez2011-09-071-0/+40
| | | | Thanks to Lapo Calamandrei for the CSS.
* e-web-view: fix error pages for RTL localesVinicius Depizzol2011-09-052-58/+86
| | | | | | | | Remove hardcoded directions in the CSS definitions and make them simpler. Bug #314205 Signed-off-by: Diego Escalante Urrelo <descalante@igalia.com>
* data/glade: remove unneeded markupDiego Escalante Urrelo2011-09-053-111/+238
| | | | | | | Use attributes instead of hardcoding the markup on the translatable string. Bug #102382
* prefs-dialog: remove unused underline propertyDiego Escalante Urrelo2011-09-051-2/+0
| | | | Bug #102382
* Add basic support for Web ApplicationsXan Lopez2011-08-291-0/+1
| | | | | | | | Allow to save any page as a "Web Application". A new .desktop file will be created, and added to the Shell as a new application. It will launch epiphany in application mode, with its own private profile (inheriting some data from the main profile, like the relevant domain cookies) and in a new process.
* e-window: use a css file for widget stylingAlexandre Mazari2011-07-302-1/+22
| | | | | | | | | | | | Replace local styling (used for the tab close button and embed's status frame) by a global css sheet loaded at window construction. This allows tweaking style properties without rebuilding. The css file is installed in $(pkgdatadir)/epiphany.css. Signed-off-by: Diego Escalante Urrelo <descalante@igalia.com> Bug #644805
* data/gschema: remove useless newlineDiego Escalante Urrelo2011-07-301-2/+1
|
* Implement about:memoryXan Lopez2011-06-281-0/+33
| | | | | Gives an estimate of how much memory the browser process is using, extracted from /proc/$PID/smaps. Only works in GNU/Linux systems.
* Use a gdbus-codegen generated GDBusProxy to monitor NM stateClaudio Saavedra2011-06-242-0/+10
| | | | | | | | | | Get rid of the EphyNetMonitor code and instead generate a GDBusProxy subclass that monitors the StateChanged signal and State property in org.gnome.NetworkManager. This proxy exports these features as standard GObject signal and property, respectively, so we can use it directly through the relevant accessors. https://bugzilla.gnome.org/show_bug.cgi?id=622903
* Tweak the "Hide Menubar" UI options slightly.Martin Robinson2011-06-141-3/+3
| | | | | | Remove the menubar visibility options from the content context menu and adds them to the chrome context menu. Invert the meaning of the option and update the option text.
* about.css: add comments to indicate which pages the css snippets belong toXan Lopez2011-06-101-0/+4
|
* Blast from the pastXan Lopez2011-06-101-1/+13
|
* Add suggestions to correct misspellings to the context menuXan Lopez2011-06-091-0/+5
| | | | | | When the user right-clicks on a misspelled word a number of possible corrections will be offered by Epiphany. Selecting one of them will replace the misspelled word by the suggestion.
* Added about:plugins support.Sergio Villar Senin2011-06-012-1/+36
| | | | | | We are now able to show a page with the list of installed plugins. Bug #575498
* prefs-dialog: add spacing between font selection comboboxesXan Lopez2011-05-241-0/+4
| | | | Bug #650702
* Add optional spell checking, enabled by defaultXan Lopez2011-05-232-245/+435
| | | | | | | Depends on WebKitGTK+ being built with spell check support, otherwise it won't do anything. Based on a patch by Diego Escalante.
* prefs-dialog: rename "automatically open downloads"Diego Escalante Urrelo2011-04-191-1/+1
| | | | | | | Change "automatically download and open files" to "automatically open downloaded files", which is what actually happens. Bug #646453
* Add a preference to force internal view-sourceDiego Escalante Urrelo2011-04-191-0/+4
| | | | | | | | | | | Using the view-source feature provided by WebKitGTK+ can be handier than opening gedit or the default text/html application in your system. This adds "internal-view-source" to org.gnome.Epiphany to force the internal-viewer always. Based on Ole Laursen's patch. Bug #597156
* Add UI options to hide the menubarXan Lopez2011-04-181-0/+3
| | | | | In the future Web-app like windows will have this hidden by default, but for now we can also add an option to hide it elsewhere.
* Use /org/gnome as starting path for schemasLuca Ferretti2011-03-251-5/+5
|
* Use the web-browser icon from the GNOME icon themeWilliam Jon McCann2011-03-2513-3976/+3
| | | | | | Instead of the low res version shipped internally. https://bugzilla.gnome.org/show_bug.cgi?id=645713
* Remove minimum font size setting from UIXan Lopez2011-03-102-38/+1
| | | | | | | | | This just breaks the layout from too many sites, and we can get reasonable readability through the new font size settings available and/or zooming. For those so inclined, the value can still be tweaked through the gsettings command line or dconf-editor. Bug #644247
* ephy-window: add new downloads UIDiego Escalante Urrelo2011-03-081-0/+1
| | | | | | | | | Downloads are shown per-window, imitating Chromium's bottom bar. If the window being closed has active downloads, a warning dialog will be shown just as when forms have been modified but not sent. An active download is any download that is not yet 100% complete. Bug #618443
* ephy-download: add the new EphyDownload objectDiego Escalante Urrelo2011-03-081-80/+0
| | | | | | | | | | | | | | | | | EphyDownload is a wrapper object around WebKitDownload that handles common behavior in downloads: auto-destination, default action for the MIME type. It can be used to wrap a WebKitDownload coming from a WebKitView or to download a url: ephy_download_new_for_uri and ephy_download_new_for_download are provided. Its lifetime is not automagic like EphyEmbedPersist, so you have to unref it when you no longer need it. This new object replaces EphyEmbedPersist and enables us to use a single codepath for downloads in all Epiphany. Bug #618443
* prefs-dialog: use GtkBuildable id instead of nameDiego Escalante Urrelo2011-02-251-5/+5
| | | | | Using the widget name is error prone because Glade removes the name property of objects. This makes cookie configuration work again.
* epiphany.convert: Fix cache-size schema locationYanko Kaneti2010-12-151-1/+1
| | | | | | Bug #634969 Signed-off-by: Diego Escalante Urrelo <descalante@igalia.com>
* prefs-dialog: enhance Fonts tab layoutDiego Escalante Urrelo2010-12-121-80/+187
| | | | | We need labels next to the buttons or after setting a custom font you won't know what setting are you configuring.
* prefs-dialog: fix General tab sizingDiego Escalante Urrelo2010-12-121-2/+4
|
* ephy-web-view: use custom error pagesDiego Escalante Urrelo2010-12-114-1/+153
| | | | | | Show nice error pages instead of WebKitGTK+'s defaults. Bug #592667
* prefs: remove broken preferences from UIXan Lopez2010-12-091-30/+0
| | | | | | | Allow pages to use their own colors/fonts preferences have never really worked in WebKit. I'm not even sure we want this in the UI, but at the very least remove them until there's a setting in the engine to control this.
* prefs-dialog: new custom font selection UIDiego Escalante Urrelo2010-12-082-4/+102
| | | | | | | | Allow users to set custom sans, serif and monospace fonts if they don't want the defaults, which are the desktop wide settings in the org.gnome.desktop.interface schema. Bug #636761
* data/glade: update orientation property of GtkBox widgetsDiego Escalante Urrelo2010-12-085-5/+57
|
* Always enable Web InspectorXan Lopez2010-10-243-59/+0
| | | | | I don't think it makes any sense to make this optional, much less to have a UI preference for it.
* epiphany.desktop: declare ability to handle http and httpsDiego Escalante Urrelo2010-10-111-1/+1
| | | | Bug #631450
* gsettings: port epiphany to gsettingsDiego Escalante Urrelo2010-10-087-683/+321
| | | | | | Adds our own schemas, a migration file and removes old gconf API and files. Bug #624485
* GtkDialog separators are gone in GTK+ 3.xXan Lopez2010-09-054-7/+0
|
* about.ini: reality checkXan Lopez2010-08-301-3/+3
|
* prefs-dialog.ui: fix capitalization of "Enable Plugins"Xan Lopez2010-08-301-1/+1
| | | | Bug #627496
* schemas: remove old and unused font preferencesDiego Escalante Urrelo2010-08-031-12/+0
| | | | Bug #625922
* epiphany.pc.in: use 3.0 not 2.0 versionsDiego Escalante Urrelo2010-07-021-1/+1
|
* Removed encoding breaking translation of … stringsDiego Escalante Urrelo2010-05-292-2/+2
| | | | | | | | Glade caused the … character to be escaped in ui files, bug #596205. This makes messages including such character to not be caught by translations in the UI so you get untranslated labels. Bug #613119
* Use a chromium-like status bar by defaultXan Lopez2010-05-191-1/+0
| | | | | | | | | | Get rid of our statusbar for good and switch to something like what Chromium uses, since it takes less vertical space. The only regression is that we lose the resize grip, but that should be re-added to GtkWindow soon. Bug #609713
* Remove smooth scrolling pref from the UIXan Lopez2010-05-121-16/+0
| | | | | We'll add it back whenever we manage to add support for it in WebKitGTK+.
* Version the extensions dir with EPIPHANY_API_VERSIONXan Lopez2010-04-081-1/+1
| | | | | We were using our normal release version, which is not where they are installed.
* Change 'Enable Java' setting to 'Enable Plugins'Xan Lopez2010-02-202-5/+5
| | | | | There's really no way to completely disable Java support alone, and I think enabling/disabling plugins in general is much more useful.
* Default to one toolbar with less buttonsGustavo Noronha Silva2010-02-061-9/+1
| | | | | | | | | | | | | | This change follows from the GNOME decision to default to "Text besides icons", which makes the first toolbar smaller horizontally. With the woohoo bar the need for history and bookmark buttons is also diminished, given that you can easily search them using the location bar itself. Zoom buttons are kept, but moved to the other side of the toolbar, after the location bar, to clearly distinguish them from navigation operations. Bug #412385
* extensions-manager: remove legacy XML format supportDiego Escalante Urrelo2010-01-262-53/+1
| | | | | | | This has been long gone and anything still using it probably doesn't work with the API changes in the last year anyway. Bug #607881
* Fix syntax error in the GConf schemaSebastian Dröge2010-01-131-1/+1
|
* Add custom user-agent supportVincent Untz2009-12-191-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | We default to the WebKitGTK+ user agent with Epiphany and the version appended to it. This can be overriden/modified in two ways: - The gconf key /apps/epiphany/general/user_agent has the maximum priority, and if it's set it will be always used. - If the gconf key is not set, vendors can still customize the UA by placing a branding.conf file in the share data directory. One example would be: [User Agent] Vendor=SUSE VendorSub=11.2 VendorComment=2.29.94-1 And the result would be: Mozilla/5.0 (X11; U; Linux i686; fr-fr) AppleWebKit/531.2+ (KHTML, like Gecko) Safari/531.2+ SUSE/11.2 (2.29.94-1) Epiphany/2.29.94 Bug #580903 Signed-off-by: Xan Lopez <xan@gnome.org>
* Add gconf key to control the search engine used in auto-searchCarl van Tonder2009-12-091-0/+11
| | | | | | | | Defaults to Google, like it used to. Bug #604087 Signed-off-by: Xan Lopez <xan@gnome.org>
* prefs-dialog: restore Close and Help buttonsIain Nicol2009-11-231-478/+233
| | | | | | Bug #590387 Signed-off-by: Xan Lopez <xan@gnome.org>
* Provide the Inspect Element menu item againGustavo Noronha Silva2009-10-301-0/+8
| | | | | | | WebKit now provides API to start the web inspector, so we can restore the menu item. Bug #599473
* Makefile.am: add missing EXTRA_DISTXan Lopez2009-10-271-0/+2
|
* Open/Save all ui files once with gladeBenjamin Otte2009-10-025-1654/+604
| | | | | | | | | Reduces file size and ensures files will continue working properly when edited. Bug #590387 Signed-off-by: Xan Lopez <xan@gnome.org>
* Replace .glade files with .ui filesBenjamin Otte2009-10-0211-4605/+4326
| | | | | | | | | | | | Glade does support editing gtk-builder generated files by now so there is no need to keep the old Glade files around. Also, gtk-builder-convert is supposed to be a one-time conversion tool and not supposed to be run by a build system, see http://mail.gnome.org/archives/desktop-devel-list/2009-July/msg00102.html Bug #590387 Signed-off-by: Xan Lopez <xan@gnome.org>
* prefs-dialog: disable smoothscroll buttonDiego Escalante Urrelo2009-09-061-0/+1
| | | | | It is useless right now since we need WebKit support for this. Bug 587470 - Smooth scrolling preference doesn't work
* Fix .desktop file (GNOME bug 588979)Javier Jardón2009-08-311-1/+2
| | | | Signed-off-by: Xan Lopez <xan@gnome.org>
* Move default bookmarks to separate rdf file instead of hard-coded valuesVincent Untz2009-07-302-1/+37
| | | | Bug #300190
* mime-types-permission.xml: add gEDA mime types as safe.Sha Liu2009-07-211-0/+8
| | | | Bug #565346
* mime-types-permissions.xml: add 7z to the known/safe types list.Xan Lopez2009-07-211-0/+1
| | | | Bug #582905
* Remove Python support.Xan Lopez2009-06-061-13/+0
| | | | | The supported language for extensions other than C/C++ is now JavaScript through Seed.
* Add option to open new windows in tabs.Xan Lopez2009-02-161-0/+12
| | | | | | | | | | | Only available as a gconf key for now, /apps/epiphany/general/open_new_windows_in_tab. Patch by Alejandro G. Castro. Bug #571593 svn path=/trunk/; revision=8783
* Make help buttons ids unique in glade file, so that the generatedGustavo Noronha Silva2009-02-061-2/+2
| | | | | | GtkBuilder file doesn't cause problems when loading svn path=/trunk/; revision=8753
* Remove unused fonts languages and autodetectors stuff. Bug #558407.Christian Persch2009-01-265-180/+1
| | | | svn path=/trunk/; revision=8731
* It's CLEANFILES, not CLEAN_FILES.Xan Lopez2009-01-221-1/+1
| | | | svn path=/trunk/; revision=8717
* Add the original files to EXTRA_DIST, not the generated ones.Xan Lopez2009-01-221-1/+1
| | | | svn path=/trunk/; revision=8716
* Port to use GtkBuilder.Xan Lopez2009-01-121-1/+7
| | | | | | | | | | Bug #567490 We keep the old glade files as master source and convert them to GtkBuilder format at compile-time because glade-3 is not ready yet for day-to-day edition of GtkBuilder files. svn path=/trunk/; revision=8678
* Renamed the web inspector checkbutton widget's ID, so that it will beGustavo Noronha Silva2008-12-241-1/+1
| | | | | | | | found by the preferences dialog code. Bug #562446 is related svn path=/trunk/; revision=8642
* Enable Web Inspector.Xan Lopez2008-12-122-0/+95
| | | | | | Bug #562446 svn path=/trunk/; revision=8634
* Add translator comment for ISO-8859-1 default value (bug #351163).Claude Paroz2008-11-161-1/+1
| | | | svn path=/trunk/; revision=8609
* Fix for GTK+ adjustment policy enforcement:Vincent Untz2008-09-221-2/+2
| | | | | | | | | | 2008-09-22 Vincent Untz <vuntz@gnome.org> * data/glade/prefs-dialog.glade: Fix for GTK+ adjustment policy enforcement: http://mail.gnome.org/archives/desktop-devel-list/2008-September/msg00148.html svn path=/trunk/; revision=8525
* Remove deprecated Encoding line.RELEASE_2_23_91Christian Persch2008-09-012-2/+0
| | | | svn path=/trunk/; revision=8448
* Add webkit-1.0 dependency to out .pc file. Fixes build breakage of Maciej Katafiasz2008-07-041-1/+1
| | | | | | | epiphany-extensions caused by the recent surgery introducing WebKit as public dep. svn path=/trunk/; revision=8334
* Even though an inappropriate metaphor, update the lock graphics toJakub Steiner2008-07-0124-0/+7141
| | | | | | | comply with the tango style guidelines. svn path=/trunk/; revision=8325
* Reimplement tabs detaching and tabs DND.Christian Persch2008-06-131-1/+1
| | | | svn path=/trunk/; revision=8278
* Make the properties button in the Cookies tab of Personal Data dialog notDiego Escalante Urrelo2008-05-191-0/+1
| | | | | | | sensitive by default. Patch by Michael Wolf, closes: #504136. svn path=/trunk/; revision=8237
* Remove detailed font prefs, they're obsolete on webkit.Christian Persch2008-04-074-1888/+32
| | | | | | Remove the epiphany-pango schemas file, same reason. svn path=/trunk/; revision=8191
* Exorcise gecko configure & build stuffChristian Persch2008-04-049-353/+2
| | | | svn path=/trunk/; revision=8183
* Remove the useless "Get me out of here!" button.Christian Persch2008-03-271-1/+0
| | | | svn path=/trunk/; revision=8137
* Add thisChristian Persch2008-03-181-0/+10
| | | | svn path=/trunk/; revision=8116
* Add netError overrides for the cert exception dialogue.Christian Persch2008-03-152-0/+5
| | | | svn path=/trunk/; revision=8109
* Fix the branding bundle registration by providing the app chrome manifest in ↵Christian Persch2008-03-142-1/+1
| | | | | | the right directory, and set that directory as the component directory with gtk_moz_embed_set_comp_path. svn path=/trunk/; revision=8103
* Mark "Clear All" string in Personal Data dialog forLuca Ferretti2008-03-041-1/+1
| | | | | | | translation (bug 519908) svn path=/trunk/; revision=8013
* Remove cruftChristian Persch2008-02-272-536/+1
| | | | svn path=/trunk/; revision=7990
* Disable about:config warning page.Christian Persch2008-02-181-1/+1
| | | | svn path=/trunk/; revision=7955
* GConf option to disable messagebox about unsubmitted form data. (#516170)Xan Lopez2008-02-151-0/+11
| | | | | | | | | Left undocumented on schema because we are in string freeze, will document for 2.24. Patch by Jake Nelson svn path=/trunk/; revision=7944
* Remove internal library dependencies from pc file.Xan Lopez2008-02-151-1/+1
| | | | svn path=/trunk/; revision=7941
* Update dependencies in epiphany.pc.in, remove bonobo leftovers.Xan Lopez2008-02-141-1/+1
| | | | svn path=/trunk/; revision=7938
* 2008-02-13 Reinout van Schouwen Reinout van Schouwen2008-02-131-1/+1
| | | | | | * Add KiBi and cosimoc to about.ini svn path=/trunk/; revision=7933
* Make ViewZoomNormal button available from the toolbar editor.Wouter Bolsterlee2008-01-241-0/+1
| | | | | | (It's not on the default toolbar, though). svn path=/trunk/; revision=7884
* download-dialog hidden state is now saved to gconf. New downloads started while Diego Escalante Urrelo2007-12-242-0/+14
| | | | | | | | | | the dialog is hidden pop-up a notification (as in libnotify). We now require libnotify to build. Fixes bug #311209. svn path=/trunk/; revision=7802
* Adds a "Clear All" dialog to clear all the privacy information, and a helpCosimo Cecchi2007-12-211-151/+75
| | | | | | section explaining its usage. Close bug #148314. svn path=/trunk/; revision=7793
* Readd "Add to Bookmark" entry to the document context menu.Cosimo Cecchi2007-12-191-0/+2
| | | | | | Bug #332968. svn path=/trunk/; revision=7786
* Add comment.Christian Persch2007-12-161-0/+1
| | | | svn path=/trunk/; revision=7775
* Update epiphany.schemas.in according to the changes in bug #380156.Cosimo Cecchi2007-12-031-2/+2
| | | | | | Fix bug #132808. svn path=/trunk/; revision=7746
* Sets page header and footer margins to a reasonable value when printing.Cosimo Cecchi2007-11-121-0/+7
| | | | | | Workaround for bug #346110. Patch by Dale Parquette. svn path=/trunk/; revision=7670
* 2007-11-12 Reinout van Schouwen <reinouts@gnome.org>Reinout van Schouwen2007-11-121-0/+39
| | | | | | | | | | * 2007-11-12 Reinout van Schouwen <reinouts@gnome.org> - glade/prefs-dialog.glade: add explanation label to "Only from sites you visit" radio button. Fixes bug 493422. svn path=/trunk/; revision=7669
* Add a "Remove all" button to the Personal Data Manager for both the cookies andCyril Brulebois2007-11-091-2/+151
| | | | | | the passwords. A confirmation dialogue is used. Addresses bug #148314. svn path=/trunk/; revision=7652
* Adds a column in the history window showing the date and the time of theCosimo Cecchi2007-11-071-1/+1
| | | | | | | | visit, substitutes radiobuttons with checkboxes in the View menu of the window. Also, adds lib/ephy-time-helpers that contains a strftime() implementation. Fix bug #380156. svn path=/trunk/; revision=7641
* Add uncrustify kr-gnome-indent.cfg file.Xan Lopez2007-11-061-0/+100
| | | | | | File used to convert source files with uncrustify to new indentation style. svn path=/trunk/; revision=7633
* Store the engine in the .pc file.Cosimo Cecchi2007-11-021-0/+1
| | | | | | Bug #463956, patch by Cyril Brulebois. svn path=/trunk/; revision=7615
* Add more mime typesChristian Persch2007-09-251-0/+1
| | | | svn path=/trunk/; revision=7488
* Consistent spacing.Christian Persch2007-09-161-1/+1
| | | | svn path=/trunk/; revision=7446
* More mime types.Christian Persch2007-08-301-0/+1
| | | | | | | | | | 2007-08-28 Christian Persch <chpe@gnome.org> * data/mime-types-permissions.xml: More mime types. svn path=/trunk/; revision=7324
* More mime types.Christian Persch2007-08-291-0/+1
| | | | | | | | | | 2007-08-28 Christian Persch <chpe@gnome.org> * data/mime-types-permissions.xml: More mime types. svn path=/trunk/; revision=7316
* More mime types.Christian Persch2007-08-291-0/+1
| | | | | | | | | | 2007-08-28 Christian Persch <chpe@gnome.org> * data/mime-types-permissions.xml: More mime types. svn path=/trunk/; revision=7314
* More mime types.Christian Persch2007-08-261-0/+2
| | | | | | | | | | 2007-08-25 Christian Persch <chpe@gnome.org> * data/mime-types-permissions.xml: More mime types. svn path=/trunk/; revision=7296
* Add low contrast app icon.Christian Persch2007-08-132-0/+2
| | | | | | | | | | 2007-08-12 Christian Persch <chpe@gnome.org> * data/icons/Makefile.am: Add low contrast app icon. svn path=/trunk/; revision=7263
* Fix icons install paths.Christian Persch2007-08-101-16/+35
| | | | | | | | | | 2007-08-09 Christian Persch <chpe@gnome.org> * data/icons/Makefile.am: Fix icons install paths. svn path=/trunk/; revision=7260
* Fix icon cache update command.Christian Persch2007-08-091-1/+1
| | | | | | | | | | 2007-08-09 Christian Persch <chpe@gnome.org> * data/icons/Makefile.am: Fix icon cache update command. svn path=/trunk/; revision=7258
* Add a11y theme icons for our apps icon.Christian Persch2007-08-093-0/+4
| | | | | | | | | | | 2007-08-09 Christian Persch <chpe@gnome.org> * data/icons/Makefile.am: * data/icons/HighColorLargePrint{,Inverse}_apps_48x48_gnome-web-browser.png: Add a11y theme icons for our apps icon. svn path=/trunk/; revision=7257
* A data/icons/*: R data/icons/*/*/*:Christian Persch2007-08-0982-324/+102
| | | | | | | | | | | | 2007-08-09 Christian Persch <chpe@gnome.org> * configure.ac: A data/icons/*: R data/icons/*/*/*: Reorganise icons. svn path=/trunk/; revision=7256
* Direct bugs coming in from bb to their own Component, for easy filtering.Christian Persch2007-08-072-2/+2
| | | | | | | | | | | | 2007-08-06 Christian Persch <chpe@gnome.org> * data/bme.desktop.in.in: * data/epiphany.desktop.in.in: Direct bugs coming in from bb to their own Component, for easy filtering. svn path=/trunk/; revision=7251
* Remove "Add bookmark" and "Save as" from the document context menu. PatchDiego Escalante Urrelo2007-08-031-3/+0
| | | | | | | | | | | | | | 2007-08-02 Diego Escalante Urrelo <diegoe@gnome.org> * data/ui/epiphany-ui.xml: * src/ephy-window.c: * src/ephy-lockdown.c: Remove "Add bookmark" and "Save as" from the document context menu. Patch by Cosimo Cecchi. Part of bug #332968. svn path=/trunk/; revision=7239
* Remove misleading text from hide menu bar lockdown. Fixes bug #321989.Diego Escalante Urrelo2007-08-011-2/+1
| | | | | | | | | | | 2007-08-01 Diego Escalante Urrelo <diegoe@gnome.org> * data/epiphany-lockdown.schemas.in: Remove misleading text from hide menu bar lockdown. Fixes bug #321989. svn path=/trunk/; revision=7231
* Added a checkbox for smooth scrolling. Fixes bug #162489.Diego Escalante Urrelo2007-07-261-0/+20
| | | | | | | | | | | | 2007-07-25 Diego Escalante Urrelo <diegoe@gnome.org> * src/prefs-dialog.c: * data/glade/prefs-dialog.glade: Added a checkbox for smooth scrolling. Fixes bug #162489. svn path=/trunk/; revision=7195
* More prefs fixesChristian Persch2007-07-151-0/+3
| | | | svn path=/trunk/; revision=7164
* Use the right icon name. Bug #385872.Christian Persch2007-07-151-1/+1
| | | | | | | | | | | | | | | | | 2007-07-15 Christian Persch <chpe@gnome.org> * data/chrome/about.xhtml: * data/epiphany.desktop.in.in: * data/icons/16x16/apps/Makefile.am: * data/icons/22x22/apps/Makefile.am: * data/icons/24x24/apps/Makefile.am: * data/icons/32x32/apps/Makefile.am: * data/icons/scalable/apps/Makefile.am: * lib/ephy-stock-icons.h: Use the right icon name. Bug #385872. svn path=/trunk/; revision=7163
* Use the right icon name. Bug #385872.Christian Persch2007-07-152-1/+1
| | | | | | | | | | | | | | | | | 2007-07-15 Christian Persch <chpe@gnome.org> * data/chrome/about.xhtml: * data/epiphany.desktop.in.in: * data/icons/16x16/apps/Makefile.am: * data/icons/22x22/apps/Makefile.am: * data/icons/24x24/apps/Makefile.am: * data/icons/32x32/apps/Makefile.am: * data/icons/scalable/apps/Makefile.am: * lib/ephy-stock-icons.h: Use the right icon name. Bug #385872. svn path=/trunk/; revision=7162
* Use the right icon name. Bug #385872.Christian Persch2007-07-151-1/+1
| | | | | | | | | | | | | | | | 2007-07-15 Christian Persch <chpe@gnome.org> * data/chrome/about.xhtml: * data/epiphany.desktop.in.in: * data/icons/16x16/apps/Makefile.am: * data/icons/22x22/apps/Makefile.am: * data/icons/24x24/apps/Makefile.am: * data/icons/32x32/apps/Makefile.am: * lib/ephy-stock-icons.h: Use the right icon name. Bug #385872. svn path=/trunk/; revision=7161
* Use the right icon name. Bug #385872.Christian Persch2007-07-1511-7/+7
| | | | | | | | | | | | | | | 2007-07-15 Christian Persch <chpe@gnome.org> * data/chrome/about.xhtml: * data/epiphany.desktop.in.in: * data/icons/16x16/apps/Makefile.am: * data/icons/22x22/apps/Makefile.am: * data/icons/32x32/apps/Makefile.am: * lib/ephy-stock-icons.h: Use the right icon name. Bug #385872. svn path=/trunk/; revision=7160
* Use the right prefs to disable CUPS.Christian Persch2007-07-111-3/+3
| | | | | | | | | | 2007-07-11 Christian Persch <chpe@gnome.org> * data/default-prefs-common.js: Use the right prefs to disable CUPS. svn path=/trunk/; revision=7149
* Use new "epiphany" icon here (thanks to Rodney Dawes).Luca Ferretti2007-07-114-3/+1087
| | | | | | | | | | | | | | | | | 2007-07-11 Luca Ferretti <elle.uca@libero.it> * data/chrome/about.xhtml: Use new "epiphany" icon here (thanks to Rodney Dawes). * data/icons/32x32/apps/Makefile.am: * data/icons/32x32/apps/epiphany.svg: * data/icons/32x32/apps/epiphany.svg: Add 32x32 pixel icon (thanks to Andreas Nilsson). svn path=/trunk/; revision=7148
* Use new icon here tooLuca Ferretti2007-07-101-1/+1
| | | | | | | | | | | 2007-07-10 Luca Ferretti <elle.uca@libero.it> * data/epiphany.desktop.in.in: Use new icon here too svn path=/trunk/; revision=7133
* Add 32x32/apps to build. But currently there are no icons.Luca Ferretti2007-07-102-1/+15
| | | | | | | | | | | | 2007-07-10 Luca Ferretti <elle.uca@libero.it> * data/icons/32x32/apps/Makefile.am: * data/icons/32x32/Makefile.am: Add 32x32/apps to build. But currently there are no icons. svn path=/trunk/; revision=7131
* Add more info about previous commit in ChangeLog and Luca Ferretti2007-07-106-0/+0
| | | | | | | fix image names (epiphany, not epiphnay)... svn path=/trunk/; revision=7130
* Install under hicolor and use "epiphany" named icon as application iconLuca Ferretti2007-07-1015-1/+2915
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2007-07-10 Luca Ferretti <elle.uca@libero.it> * configure.ac: * data/icons/16x16/Makefile.am: * data/icons/16x16/apps/Makefile.am: * data/icons/16x16/apps/epiphnay.svg: * data/icons/16x16/apps/epiphnay.png: * data/icons/22x22/Makefile.am: * data/icons/22x22/apps/Makefile.am: * data/icons/22x22/apps/epiphnay.svg: * data/icons/22x22/apps/epiphnay.png: * data/icons/24x24/Makefile.am: * data/icons/24x24/apps/Makefile.am: * data/icons/24x24/apps/epiphnay.png: * data/icons/scalable/Makefile.am: * data/icons/scalable/apps/Makefile.am: * data/icons/scalable/apps/epiphnay.svg: * lib/ephy-stock-icons.h: Install under hicolor and use "epiphany" named icon as application icon * data/icons/Makefile.am: Update gtk icon cache for hicolor on install and uninstall svn path=/trunk/; revision=7129
* Kill old "download" icon. Fix bug 450904Luca Ferretti2007-07-1013-1975/+0
| | | | | | | | | | | | | | | | 2007-07-10 Luca Ferretti <elle.uca@libero.it> * data/icons/16x16/actions/Makefile.am: * data/icons/22x22/actions/Makefile.am: * data/icons/24x24/actions/Makefile.am: * data/icons/32x32/actions/Makefile.am: * data/icons/scalable/actions/Makefile.am: * data/icons/*/action/download.*: Kill old "download" icon. Fix bug 450904 svn path=/trunk/; revision=7128
* Copy the lock icons from g-i-t 2.16 into epiphany, since the new ones inChristian Persch2007-07-1017-0/+26
| | | | | | | | | | | | | | | | | | 2007-07-09 Christian Persch <chpe@gnome.org> * configure.ac: * data/icons/16x16/status/Makefile.am: * data/icons/24x24/status/Makefile.am: * data/icons/48x48/Makefile.am: * data/icons/48x48/status/Makefile.am: * data/icons/Makefile.am: * lib/ephy-stock-icons.c: (ephy_stock_icons_init): * lib/ephy-stock-icons.h: Copy the lock icons from g-i-t 2.16 into epiphany, since the new ones in g-i-t are broken (see bug #348350 comment 93 ff). svn path=/trunk/; revision=7119
* A data/weasel-ua-pref.js.in:Christian Persch2007-06-282-0/+11
| | | | | | | | | | | | | | | 2007-06-28 Christian Persch <chpe@gnome.org> * configure.ac: * data/Makefile.am: A data/weasel-ua-pref.js.in: Make UA ff-compatible. This fixes https://bugzilla.mozilla.org/show_bug.cgi?id=334967 . See also Camino bug https://bugzilla.mozilla.org/show_bug.cgi?id=384721 and https://bugzilla.mozilla.org/show_bug.cgi?id=385999 for discussion. svn path=/trunk/; revision=7100
* Disable PAPI too.Christian Persch2007-06-111-1/+3
| | | | | | | | | | 2007-06-10 Christian Persch <chpe@gnome.org> * data/default-prefs-common.js: Disable PAPI too. svn path=/trunk/; revision=7078
* src/ephy-history-window.c src/bookmarks/ephy-bookmarks-editor.cDiego Escalante Urrelo2007-06-062-3/+5
| | | | | | | | | | | | | | | 2007-06-05 Diego Escalante Urrelo <diegoe@gnome.org> * src/ephy-history-window.c * src/bookmarks/ephy-bookmarks-editor.c * data/ui/epiphany-history-window-ui.xml * data/ui/epiphany-bookmark-editor-ui.xml: Assign control+T as default delete shortcut. Also move the Delete item to Edit menu. Bug #351100. svn path=/trunk/; revision=7076
* Shameless plug: added Reinout van Schouwen and myself.Wouter Bolsterlee2007-06-051-1/+1
| | | | | | | | | | 2007-06-05 Wouter Bolsterlee <wbolster@svn.gnome.org> * data/about.ini: Shameless plug: added Reinout van Schouwen and myself. svn path=/trunk/; revision=7069
* Reviewed by: Christian Persch <chpe@gnome.org> Committed by: WouterJared Moore2007-06-051-0/+2
| | | | | | | | | | | | | 2007-06-05 Jared Moore <cornflake.pirate@gmail.com> Reviewed by: Christian Persch <chpe@gnome.org> Committed by: Wouter Bolsterlee <wbolster@gnome.org> * data/ui/epiphany-ui.xml: Added 'select all' to context menu for text input areas. Bug #336739. svn path=/trunk/; revision=7068
* Make "Show Passwords" plural. Bug #437798.Christian Persch2007-05-201-50/+50
| | | | | | | | | | 2007-05-19 Christian Persch <chpe@gnome.org> * data/glade/epiphany.glade: Make "Show Passwords" plural. Bug #437798. svn path=/trunk/; revision=7039
* Add pref for smooth scroll, bug #162489. Use GSlice to allocate the prefsChristian Persch2007-05-201-0/+10
| | | | | | | | | | | | | | 2007-05-19 Christian Persch <chpe@gnome.org> * data/epiphany.schemas.in: * embed/ephy-embed-prefs.h: * embed/mozilla/mozilla-notifiers.cpp: Add pref for smooth scroll, bug #162489. Use GSlice to allocate the prefs notifier data. Check the pref type. svn path=/trunk/; revision=7038
* Add "application/x-quicktimeplayer" andBastien Nocera2007-04-201-0/+2
| | | | | | | | | | | 2007-04-20 Bastien Nocera <hadess@hadess.net> * data/mime-types-permissions.xml: Add "application/x-quicktimeplayer" and "application/x-quicktime-media-link" to the safe mime-types (Closes: #431665) svn path=/trunk/; revision=7005
* Fix printing of frames.Christian Persch2007-04-091-1/+2
| | | | | | | | | | | | | 2007-04-09 Christian Persch <chpe@gnome.org> * data/glade/print.glade: * embed/mozilla/EphyBrowser.cpp: * embed/mozilla/GeckoPrintService.cpp: * embed/mozilla/GeckoPrintService.h: Fix printing of frames. svn path=/trunk/; revision=6985
* Correct FSF address. Bug #409075, patch by John Millikin.RELEASE_2_18_0GNOME_2_18_BRANCHPOINTChristian Persch2007-03-124-4/+4
| | | | | | | | | | 2007-03-11 Christian Persch <chpe@gnome.org> * *: Correct FSF address. Bug #409075, patch by John Millikin. svn path=/trunk/; revision=6952
* "Application" is not a valid category in the freedesktop specification.Christian Kirbach2007-03-082-2/+2
| | | | | | | | | | * data/bme.desktop.in.in: * data/epiphany.desktop.in.in: "Application" is not a valid category in the freedesktop specification. svn path=/trunk/; revision=6944
* Add .bz2.Christian Persch2007-03-021-0/+1
| | | | | | | | | | 2007-03-02 Christian Persch <chpe@svn.gnome.org> * data/mime-types-permissions.xml: Add .bz2. svn path=/trunk/; revision=6929
* === Release 2.17.91 ===RELEASE_2_17_91Christian Persch2007-02-131-0/+1
| | | | | | | | | | | 2007-02-12 Christian Persch <chpe@svn.gnome.org> === Release 2.17.91 === * configure.ac: * data/mime-types-permissions.xml: svn path=/trunk/; revision=6904
* Set the new pwdmgr pref.Christian Persch2007-02-081-0/+1
| | | | | | | | | | 2007-02-07 Christian Persch <chpe@svn.gnome.org> * data/default-prefs-common.js: Set the new pwdmgr pref. svn path=/trunk/; revision=6893
* More mime types.Christian Persch2007-02-021-0/+2
| | | | | | | | | | 2007-02-02 Christian Persch <chpe@svn.gnome.org> * data/mime-types-permissions.xml: More mime types. svn path=/trunk/; revision=6885
* More mime types.Christian Persch2007-02-021-0/+1
| | | | | | | | | | 2007-02-02 Christian Persch <chpe@svn.gnome.org> * data/mime-types-permissions.xml: More mime types. svn path=/trunk/; revision=6883
* Add video/x-theora+ogg to list of known mime types.Christian Persch2007-01-301-0/+1
| | | | | | | | | | 2007-01-30 Christian Persch <chpe@svn.gnome.org> * data/mime-types-permissions.xml: Add video/x-theora+ogg to list of known mime types. svn path=/trunk/; revision=6878
* Set bidi caret movement pref to mimick gtk widgets.Christian Persch2007-01-291-0/+11
| | | | | | | | | | 2007-01-28 Christian Persch <chpe@svn.gnome.org> * data/default-prefs-common.js: Set bidi caret movement pref to mimick gtk widgets. svn path=/trunk/; revision=6864
* Add more mime types.Christian Persch2007-01-291-0/+1
| | | | | | | | | | 2007-01-28 Christian Persch <chpe@svn.gnome.org> * data/mime-types-permissions.xml: Add more mime types. svn path=/trunk/; revision=6860
* Fix schemas install command.Christian Persch2007-01-291-1/+1
| | | | | | | | | | 2007-01-28 Christian Persch <chpe@svn.gnome.org> * data/Makefile.am: Fix schemas install command. svn path=/trunk/; revision=6852
* Add another safe mime type.Christian Persch2007-01-231-0/+1
| | | | | | | | | | 2007-01-23 Christian Persch <chpe@svn.gnome.org> * data/mime-types-permissions.xml: Add another safe mime type. svn path=/trunk/; revision=6842
* Puts OpenInWindow over OpenInTab in the Bookmarks Editor so we meet theDiego Escalante Urrelo2007-01-181-2/+2
| | | | | | | | | | | | 2007-01-18 Diego Escalante Urrelo <diegoe@svn.gnome.org> * data/ui/epiphany-bookmark-editor-ui.xml: Puts OpenInWindow over OpenInTab in the Bookmarks Editor so we meet the HIG. Fixes bug #340775. svn path=/trunk/; revision=6831
* configure.acLuca Ferretti2007-01-1811-3/+305
| | | | | | | | | | | | | | | | | | | | | | | 2007-01-18 Luca Ferretti <elle.uca@libero.it> * data/icons/*/places/bookmark-web.*: * data/icons/*/places/Makefile.am: * data/icons/*/Makefile.am: * configure.ac Add to build new "bookmark-web" custom named icon at 16, 22 and 24 pixels - under new places directory. * lib/ephy-stock-icons.c: * lib/ephy-stock-icons.h: * src/bookmarks/ephy-bookmark-properties.c: * src/bookmarks/ephy-bookmark-action.c: Remove STOCK_BOOKMARK and add EPHY_STOCK_BOOKMARK using new "bookmark-web" custom named icon. svn path=/trunk/; revision=6830
* Update for 2007.Christian Persch2007-01-101-1/+1
| | | | | | | | | | | 2007-01-10 Christian Persch <chpe@svn.gnome.org> * data/chrome/about.xhtml: * src/window-commands.c: (window_cmd_help_about): Update for 2007. svn path=/trunk/; revision=6816
* Fix for autoconf 2.60 (datarootdir).Christian Persch2007-01-101-0/+2
| | | | | | | | | | 2007-01-10 Christian Persch <chpe@svn.gnome.org> * data/epiphany.pc.in: Fix for autoconf 2.60 (datarootdir). svn path=/trunk/; revision=6815
* Changes "..." for the ellipsis character "…". Bug #324380. Patch byDiego Escalante Urrelo2007-01-092-3/+3
| | | | | | | | | | | | | | | | | | | 2007-01-09 Diego Escalante Urrelo <diegoe@svn.gnome.org> * src/ephy-history-window.c: * src/ephy-main.c: * src/bookmarks/ephy-bookmarks-editor.c: * src/ephy-tab.c: * src/ephy-encoding-menu.c: * src/ephy-window.c: * data/glade/form-signing-dialog.glade: * data/glade/prefs-dialog.glade: Changes "..." for the ellipsis character "…". Bug #324380. Patch by Diego Escalante Urrelo. svn path=/trunk/; revision=6810
* Added myself as a Contributor. :).Diego Escalante Urrelo2007-01-091-1/+1
| | | | | | | | | | | 2007-01-09 Diego Escalante Urrelo <diegoe@svn.gnome.org> * data/about.ini: Added myself as a Contributor. :). svn path=/trunk/; revision=6809
* === Release 2.17.5 ===RELEASE_2_17_5Christian Persch2007-01-091-0/+3
| | | | | | | | | | | | | 2007-01-09 Christian Persch <chpe@svn.gnome.org> === Release 2.17.5 === * NEWS: * configure.ac: * data/default-prefs-common.js: * doc/reference/tmpl/ephy-embed.sgml: svn path=/trunk/; revision=6806
* Added "icondir" variable ( == $datadir/$package/icons ). The purpose isLuca Ferretti2007-01-091-0/+1
| | | | | | | | | | | | | | 2007-01-08 Luca Ferretti <elle.uca@libero.it> * data/epiphany.pc.in: Added "icondir" variable ( == $datadir/$package/icons ). The purpose is allow extensions to install custom themeable icons in this directory, so they can use named icons without add a new icon search path. svn path=/trunk/; revision=6794
* Removed the hardcoded invisible char, note that this might readd itself toDiego Escalante Urrelo2007-01-082-2/+0
| | | | | | | | | | | | | | 2007-01-08 Diego Escalante Urrelo <diegoe@svn.gnome.org> * data/glade/form-signing-dialog.glade: * data/glade/prefs-dialog.glade: Removed the hardcoded invisible char, note that this might readd itself to the file if someone edits it. It has been suggested that we move over to glade-3. Patch by Vitali Ischenko. Bug #393910. svn path=/trunk/; revision=6793
* Corrects the expand of the Privacy tab in the Preferences window. Patch byDiego Escalante Urrelo2007-01-031-2/+2
| | | | | | | | | | | | 2007-01-03 Diego Escalante Urrelo <diegoe@svn.gnome.org> * data/glade/prefs-dialog.glade: Corrects the expand of the Privacy tab in the Preferences window. Patch by Baptiste Mille-Mathias. svn path=/trunk/; revision=6782
* Added text/csv as a safe type (note that the aliasDiego Escalante Urrelo2007-01-031-0/+1
| | | | | | | | | | | | | 2007-01-03 Diego Escalante Urrelo <diegoe@svn.gnome.org> * data/mime-types-permissions.xml: Added text/csv as a safe type (note that the alias text/x-comma-separate-values is also present). Patch by Gaëtan Podevijn. svn path=/trunk/; revision=6779
* .cvsignore files are obsoleteChristian Persch2006-12-3021-52/+0
| | | | svn path=/trunk/; revision=6768
* Fix orderingChristian Persch2006-12-201-1/+1
|
* Invert MoveToolItem and RemoveToolItem order, matchingh same feature forLuca Ferretti2006-12-201-1/+1
| | | | | | | | | | | | | | | | 2006-12-19 Luca Ferretti <elle.uca@libero.it> * data/ui/epiphany-ui.xml: Invert MoveToolItem and RemoveToolItem order, matchingh same feature for panel applets. * lib/egg/egg-editable-toolbar.c: (egg_editable_toolbar_set_ui_manager): * lib/ephy-stock-icons.c: (ephy_stock_icons_init): * lib/ephy-stock-icons.h: Remove STOCK_DRAG_MODE and STOCK_VIEW_SOURCE.
* Add Tango style location-entry named icon.Luca Ferretti2006-12-1910-5/+2084
| | | | | | | | | | | | | | | | | 2006-12-19 Luca Ferretti <elle.uca@libero.it> * data/icons/16x16/actions/Makefile.am: * data/icons/16x16/actions/location-entry.png: * data/icons/22x22/actions/Makefile.am: * data/icons/22x22/actions/location-entry.png: * data/icons/24x24/actions/location-entry.png: * data/icons/32x32/actions/Makefile.am: * data/icons/32x32/actions/location-entry.png: * data/icons/32x32/actions/location-entry.svg: * data/icons/scalable/actions/Makefile.am: * data/icons/scalable/actions/location-entry.svg: Add Tango style location-entry named icon.
* Load about data from file.Christian Persch2006-12-181-0/+6
| | | | | | | | | | 2006-12-17 Christian Persch <chpe@cvs.gnome.org> * data/Makefile.am: * src/Makefile.am: * src/window-commands.c: (window_cmd_help_about): Load about data from file.
* Fix bookmarks export to HTML. Bug #345925, patch by Stefan Stuhr.Christian Persch2006-12-181-15/+11
| | | | | | | | 2006-12-17 Christian Persch <chpe@cvs.gnome.org> * data/epiphany-bookmarks-html.xsl: Fix bookmarks export to HTML. Bug #345925, patch by Stefan Stuhr.
* Load about data from file.Christian Persch2006-12-181-0/+4
| | | | | | | | | | 2006-12-17 Christian Persch <chpe@cvs.gnome.org> * data/Makefile.am: * src/Makefile.am: * src/window-commands.c: (window_cmd_help_about): Load about data from file.
* Don't warn before launching rtsp and mms[h] handlers.Chhristian Persch2006-12-151-0/+5
| | | | | | | | 2006-12-14 Chhristian Persch <chpe@cvs.gnome.org> * data/default-prefs-common.js: Don't warn before launching rtsp and mms[h] handlers.