aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [l10n] Update Japanese translationTakayuki KUSANO2012-04-251-383/+282
|
* Updated Hungarian translationGabor Kelemen2012-04-221-278/+282
|
* Updated Hebrew translation.Yaron Shahrabani2012-04-221-497/+642
|
* e-file-helpers: improve ephy_file_tmp_filename commentDiego Escalante Urrelo2012-04-221-5/+8
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=673337
* e-web-app-utils: use LOG and g_warning instead of g_printDiego Escalante Urrelo2012-04-221-3/+3
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=673348
* ephy-shell: EPHY_NEW_TAB_DONT_SHOW_WINDOW means no realizeDiego Escalante Urrelo2012-04-221-1/+1
| | | | | | | | | If the user passed EPHY_NEW_TAB_DONT_SHOW_WINDOW do not call gtk_widget_realize and gtk_widget_grab_focus on the returned EphyEmbed since this is most likely against the intentions of EPHY_NEW_TAB_DONT_SHOW_WINDOW. https://bugzilla.gnome.org/show_bug.cgi?id=673683
* Also consider email inputs when looking for user/password formsGustavo Noronha Silva2012-04-211-1/+1
| | | | | | | | Some sites use email addresses for login purposes, and already adopted the email input type for the login forms. This means we should also consider email inputs as a possible username entry. https://bugzilla.gnome.org/show_bug.cgi?id=666326
* Updated Spanish translationDaniel Mustieles2012-04-201-2/+2
|
* Updated Galician translationsFran Diéguez2012-04-201-648/+814
|
* Updated Norwegian bokmål translationKjartan Maraas2012-04-191-472/+718
|
* ephy-window: remove additional spacing in the downloads barSebastian Keller2012-04-171-2/+0
| | | | | It was added to accomodate the window resize grip, which does not exist anymore in Adwaita.
* Updated Spanish translationDaniel Mustieles2012-04-161-357/+386
|
* ephy-notebook: disconnect settings signal handler on finalizeXan Lopez2012-04-161-0/+3
| | | | Otherwise we'll try to update dead notebooks if the setting changes.
* Add an option to never show the tabs barXan Lopez2012-04-163-8/+9
| | | | We'll use this when we land the Overview.
* window-commands: switch pages using the EphyNotebook APIXan Lopez2012-04-163-9/+73
| | | | | | The signal we were using does not work when the tabs bar is hidden, and we'll want the shortcuts to work in that state. Add new EphyNotebooks methods that do the right thing and use them.
* Create a new 'tabs-bar-visibility-policy' settingXan Lopez2012-04-165-12/+43
| | | | | | 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.
* Move resources to its own directory inside src/Xan Lopez2012-04-169-12/+12
|
* ephy-embed-single: introspection fixesXan Lopez2012-04-142-3/+3
|
* ephy-embed-event: introspection fixesXan Lopez2012-04-141-2/+2
|
* ephy-permission-manager: introspection fixesXan Lopez2012-04-141-5/+5
|
* ephy-embed-event: fix introspection warningXan Lopez2012-04-141-0/+6
|
* Move a few EphyShell methods to ephy-private.hXan Lopez2012-04-148-19/+28
| | | | These are clearly not meant to be used outside of Epiphany.
* ephy-web-view: fix a few gtk-doc warningsXan Lopez2012-04-141-8/+6
|
* Remove Help buttonsXan Lopez2012-04-134-33/+37
| | | | Since there's no Help for now.
* Remove Epiphany manualXan Lopez2012-04-1383-62867/+1
| | | | | | | | | The current manual is quite obsolete and uses and outdated technology, so it really just needs a full rewrite at this point. Hopefully this will motivate someone to do it, meanwhile we stop shipping misguiding documentation. https://bugzilla.gnome.org/show_bug.cgi?id=674047
* Updated Aragonese translationDaniel Martinez Cucalon2012-04-131-1362/+1174
|
* Add a 'crashed' option to the session restore policyXan Lopez2012-04-122-2/+3
| | | | | | | | | 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.
* ephy-prefs: use new coding styleXan Lopez2012-04-121-77/+78
|
* Add a setting to control whether the session is automatically restoredXan Lopez2012-04-124-52/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* ephy-session: remove unused variableXan Lopez2012-04-121-2/+0
|
* e-file-helpers: catch GErrors in switch_temp_fileDiego Escalante Urrelo2012-04-111-12/+41
| | | | | | | The GFile API provides useful error messages, print them when any operation fails to aid debugging. https://bugzilla.gnome.org/show_bug.cgi?id=673666
* e-file-helpers: remove old dirs from ephy_fileDiego Escalante Urrelo2012-04-111-6/+0
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=673665
* tests: use EPHY_EMBED_SHELL_MODE_PRIVATE not FALSEDiego Escalante Urrelo2012-04-113-3/+3
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=673684
* web-apps: s/StartupNotification/StartupNotify/ in desktop filesXan Lopez2012-04-111-1/+1
| | | | | | That's the correct name for the entry. https://bugzilla.gnome.org/show_bug.cgi?id=673865
* ephy-shell: respect the lockdown quit settingRudolfs2012-04-111-2/+5
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=673649
* Updated Traditional Chinese translation(Hong Kong and Taiwan)Cheng-Chia Tseng2012-04-112-964/+928
|
* [l10n]Updated Catalan (Valencian) translationCarles Ferrando2012-04-111-1581/+1511
|
* [l10n] Fixes on Catalan translationJordi Serratosa2012-04-111-214/+208
|
* ephy-embed-single-test: unref the created EphyShellDiego Escalante Urrelo2012-04-111-0/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=673273
* ephy-embed-single: do not handle ephy-embed-prefsDiego Escalante Urrelo2012-04-112-4/+3
| | | | | | | | | ephy-embed-prefs acts like a singleton. Instead of calling init and shutdown in EphyEmbedSingle instances handle it in ephy-main as a true init/shutdown API like ephy-file-helpers. https://bugzilla.gnome.org/show_bug.cgi?id=673273
* Updated Spanish translationDaniel Mustieles2012-04-081-73/+73
|
* e-file-helpers: prevent invalid enumerator and return valueDiego Escalante Urrelo2012-04-071-2/+2
| | | | | | | | | | Invalid enumerators can be returned even when no GError is set. Check if the enumerator is non-NULL before proceeding, and adjust the default return value so it is not TRUE when g_file_enumerate_children fails. https://bugzilla.gnome.org/show_bug.cgi?id=673337
* e-file-helpers: remove ephy_file_add_recent_itemDiego Escalante Urrelo2012-04-072-20/+0
| | | | | | It's a two-line save, and there are no users of this API. https://bugzilla.gnome.org/show_bug.cgi?id=673337
* Updated Spanish translationDaniel Mustieles2012-04-041-676/+814
|
* ephy-completion-model: normalize NULL strings to "" in ↵Xan Lopez2012-04-031-4/+4
| | | | | | | | | | should_add_bookmark_to_model Otherwise we can get false positives in the regexp, since the previous attempt at normalization would not properly take NULL strings into account. https://bugzilla.gnome.org/show_bug.cgi?id=673301
* ephy-download-test: correctly use fixture objectsDiego Escalante Urrelo2012-04-021-17/+2
| | | | | | | | Do not use adhoc EphyDownload objects that have no proper destination set, or your current user's downloads directory will be filled with test files. https://bugzilla.gnome.org/show_bug.cgi?id=673274
* HACKING: update with comment about castsXan Lopez2012-04-021-0/+5
|
* ephy-shell: fix whitespaceXan Lopez2012-04-021-3/+3
|
* Revert "e-web-app-utils: whitespace nitpicks in casts"Xan Lopez2012-04-021-5/+5
| | | | | | | This reverts commit 0b05e95f4aea0ab11ab11828e0bcc0b920d6230e. Our codebase is not completely consistent here, but as a rule we don't do whitespaces in casts.
* e-file-helpers: fix weird spacingDiego Escalante Urrelo2012-04-021-1/+1
|
* e-file-helpers: missing Returns: in commentDiego Escalante Urrelo2012-04-021-0/+2
|
* Updated Russian translationYuri Kozlov2012-04-011-801/+1021
|
* ephy-shell: whitespace nitpick in castDiego Escalante Urrelo2012-04-011-2/+2
|
* e-web-app-utils: whitespace nitpicks in castsDiego Escalante Urrelo2012-04-011-5/+5
|
* e-web-app-utils: update and fix gtk-doc commentsDiego Escalante Urrelo2012-03-311-3/+17
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=673022
* e-web-app-utils: sync var names in APIDiego Escalante Urrelo2012-03-312-10/+10
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=673021
* e-web-app-utils: remove ephy-web-view includeDiego Escalante Urrelo2012-03-312-3/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=673019
* e-web-app-utils: add ephy_web_application_existsAlexandre Mazari2012-03-313-8/+22
| | | | | | Signed-off-by: Diego Escalante Urrelo <diegoe@igalia.com> https://bugzilla.gnome.org/show_bug.cgi?id=658925
* window-commands: get app name only onceAlexandre Mazari2012-03-311-7/+8
| | | | | | | | Avoid multiple calls to gtk_entry_get_text. Signed-off-by: Diego Escalante Urrelo <diegoe@igalia.com> https://bugzilla.gnome.org/show_bug.cgi?id=658925
* ephy-toolbar: fix stop/reload button alignmentDiego Escalante Urrelo2012-03-311-0/+10
| | | | | | | | Add location entry and stop/reload button to a vertical GtkSizeGroup. This ensures that they have the same height, regardless of things like fonts. https://bugzilla.gnome.org/show_bug.cgi?id=668135
* e-location-entry: make aligment pixel-perfectDiego Escalante Urrelo2012-03-311-0/+59
| | | | | | | | | | | Align the elements of the GtkEntryCompletion popup with those in the location entry. The code comes with a detailed comment and a scheme of how the aligment is done now. Because of the unhandled pixels of GtkEntryCompletion, this code might need an update if anything in GTK+ or Adwaita changes. https://bugzilla.gnome.org/show_bug.cgi?id=672927
* e-location-entry: dim URL in completion rowsDiego Escalante Urrelo2012-03-311-2/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=672927
* e-location-entry: redundant ellipsize-setDiego Escalante Urrelo2012-03-311-4/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=672927
* e-location-entry: make bookmark icon follow-stateDiego Escalante Urrelo2012-03-311-0/+1
| | | | | | | Makes the symbolic-icon of the completion rows change its color accordingly to the selection state. With Adwaita: black -> white. https://bugzilla.gnome.org/show_bug.cgi?id=672927
* ephy-encodings: reorder includesXan Lopez2012-03-311-3/+3
|
* Makefile: silence epiphany resources generationXan Lopez2012-03-311-2/+2
|
* ephy-encoding-dialog: reorder includesXan Lopez2012-03-311-9/+8
|
* Updated Esperanto translationKristjan SCHMIDT2012-03-311-1426/+1119
|
* ephy-window: listen to org.gnome.Epiphany.ui.show-toolbarsXan Lopez2012-03-301-0/+30
| | | | We were not properly changing the UI if the key was changing at runtime.
* Remove the 'disable-menubar' optionXan Lopez2012-03-303-5/+0
| | | | Since we don't have one anymore.
* Remove 'show-boomkarks-bar' optionXan Lopez2012-03-303-6/+0
| | | | Since we don't have one anymore.
* ephy-session: use g_slice_new for SessionCommand structureXan Lopez2012-03-301-3/+2
|
* ephy-window: save the session when the last window is closed manuallyXan Lopez2012-03-301-1/+16
| | | | | | | | If the user closes the last window manually (pressing the [x] button in the window) she probably wants to save the session contents too, so do that. This is consistent with the behavior of Firefox and Chrome. https://bugzilla.gnome.org/show_bug.cgi?id=673122
* Fix compilation warningClaudio Saavedra2012-03-291-1/+1
|
* configure.ac: this Makefile does not exist anymoreXan Lopez2012-03-291-1/+0
|
* history-service: remove unnecessary type castClaudio Saavedra2012-03-291-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=672926
* history-service: remove unused variablesClaudio Saavedra2012-03-292-3/+0
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=672926
* Updated POTFILES.inPiotr Drąg2012-03-291-1/+1
|
* build: intltool 0.50 add proper support for gsettings schemasJavier Jardón2012-03-293-7/+4
| | | | | | Its not needed to use the .in hack anymore Fixes https://bugzilla.gnome.org/show_bug.cgi?id=672932
* ephy-web-app-utils: do not use the webview in the web app creation methodAlexandre Mazari2012-03-293-13/+11
| | | | | | | It's not really needed, will allow to reuse this code during profile migration. https://bugzilla.gnome.org/show_bug.cgi?id=658925
* ephy-shell: save the session state on QuitXan Lopez2012-03-291-0/+1
| | | | It will be automatically restored on startup.
* ephy-session: remove unused variableXan Lopez2012-03-291-1/+0
|
* ephy-session: rename session_crashed.xml to session_state.xmlXan Lopez2012-03-291-13/+13
| | | | We are going to use his all the time now, not only for crashes.
* ephy-session: it's not really possible to close while restoring anymoreXan Lopez2012-03-291-11/+0
|
* ephy-session: always auto-resume session on crashXan Lopez2012-03-291-178/+7
| | | | Don't ask, just do it.
* ephy-session: fix gtk-doc syntaxXan Lopez2012-03-291-1/+1
|
* Updated POTFILES.inPiotr Drąg2012-03-291-1/+0
|
* Rip out the EggSMClient codeXan Lopez2012-03-288-2647/+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-2811-21/+19
| | | | | | 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-2812-49/+95
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=672907
* ephy-hosts-store: listen to favicon changes in the wk databaseClaudio Saavedra2012-03-271-2/+66
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=672525
* Review translationKhaled Hosny2012-03-271-73/+72
|
* epiphany.h.in: remove ephy-history mentionDiego Escalante Urrelo2012-03-271-1/+0
| | | | It breaks ephy-extensions build.
* download-widget: use the "linked" style classCosimo Cecchi2012-03-271-0/+4
| | | | | | | Link the glow and the menu buttons together by using a "linked" style class on the box containing them. https://bugzilla.gnome.org/show_bug.cgi?id=672712
* configure.ac: bump version to 3.5.0Xan Lopez2012-03-271-4/+4
| | | | Let the 3.6.0 race begin!
* update Punjabi TranslationA S Alam2012-03-261-1382/+1192
|
* ui: remove unused fileXan Lopez2012-03-252-5/+0
|
* Added Telugu help TranslationsSasi Bhushan2012-03-252-1/+2631
|
* Updated Hebrew translation.Yaron Shahrabani2012-03-251-214/+208
|
* update Malayalam translationPraveen Arimbrathodiyil2012-03-241-178/+198
|
* small correctionPraveen Arimbrathodiyil2012-03-241-1/+1
|
* Malayalam translation updatedPraveen Arimbrathodiyil2012-03-241-2121/+1540
|
* Updated Arabic translationAbderrahim Kitouni2012-03-241-1323/+1135
|
* [l10n]Updated Turkish translationMuhammet Kara2012-03-241-117/+112
|
* Updated Telugu TranslationPraveen Illa2012-03-241-482/+413
|
* Updated Danish translationKenneth Nielsen2012-03-221-405/+404
|
* Updated Czech translationLucas Lommer2012-03-221-1354/+598
|
* Updated Vietnamese translationNguyễn Thái Ngọc Duy2012-03-221-41/+24
|
* po/vi: import from Damned LiesNguyễn Thái Ngọc Duy2012-03-221-1361/+1175
|
* Updated Russian translationYuri Myasoedov2012-03-221-160/+142
|
* Updated Finnish translation by Jiri GrönroosTimo Jyrinki2012-03-221-283/+389
|
* profile-migrator: do not freak out if the history is emptyXan Lopez2012-03-211-4/+6
| | | | | | | If the old history file exists but has no actual visits we'll enter into an infinite loop. https://bugzilla.gnome.org/show_bug.cgi?id=672547
* [release] 3.3.923.3.92Xan Lopez2012-03-212-1/+19
|
* ephy-hosts-store: -1 is not a valid insertion positionClaudio Saavedra2012-03-211-1/+1
|
* ephy-history-window: add back the faviconsClaudio Saavedra2012-03-213-5/+74
| | | | | | | | Use the new webkit favicon database for favicons here. This might not work perfectly, but that's a webkitgtk issue, see https://bugs.webkit.org/show_bug.cgi?id=81665 https://bugzilla.gnome.org/show_bug.cgi?id=672480
* 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
* Update Simplified Chinese translation.Automatic Mirroring2012-03-211-245/+235
|
* ephy-history-window: fix callback for new signal signatureXan Lopez2012-03-201-0/+1
|
* POTFILES.in: remove ephy-history.hXan Lopez2012-03-201-1/+0
|
* configure.ac: we require WebKitGTK+ 1.7.92 nowXan Lopez2012-03-201-1/+1
|
* doc: remove references to removed filesXan Lopez2012-03-201-2/+0
|
* Remove EphyHistory from the repository. It's unused now.Xan Lopez2012-03-209-1236/+1
|
* bookmarks: use the new favicon databaseXan Lopez2012-03-201-12/+13
|
* Replace EphyFaviconCache by WebKit's icon database cacheSergio Villar Senin2012-03-2016-1077/+130
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=648653
* Updated Lithuanian translationAurimas Černius2012-03-201-1393/+632
|
* Translations Updated with FUELKrishnababu Krothapalli2012-03-191-3/+3
|
* Updated Telugu TranslationsKrishnababu Krothapalli2012-03-191-127/+127
|
* Uploaded UkranianDaniel Korostil2012-03-181-206/+202
|
* [l10n] Update Japanese translationJiro Matsuzawa2012-03-181-25/+25
|
* Updated Portuguese translationDuarte Loreto2012-03-181-1362/+1193
|
* Updated French translationBruno Brouard2012-03-171-1320/+602
|
* [l10n]Updated Turkish translationMuhammet Kara2012-03-171-281/+270
|
* Updated Dutch translationWouter Bolsterlee2012-03-171-431/+447
|
* Updated British English translationBruce Cowan2012-03-161-196/+200
|
* Fix bookmarklet's titles when they are createdXan Lopez2012-03-163-45/+59
| | | | | | | | 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
* [l10n] Updated Italian translationGianvito Cavasoli2012-03-161-1263/+555
|
* Updated Hungarian translationGabor Kelemen2012-03-151-168/+164
|
* ephy-web-view: return an actual visit type instead of just '0'Xan Lopez2012-03-151-1/+1
|
* The security certificate code is a no-op, remove itXan Lopez2012-03-154-28/+0
|
* ephy-web-view: remove gtk-doc snippet for a private methodXan Lopez2012-03-151-7/+0
|
* ephy-web-view: use plain g_signal_connect alwaysXan Lopez2012-03-151-9/+9
| | | | I'm pretty sure there's no point in using the _object variant here.
* ephy-web-view: connect to WebView signals in just one placeXan Lopez2012-03-151-8/+12
|
* ephy-web-view: we already have a reference to the history serviceXan Lopez2012-03-151-1/+1
| | | | Don't request the global instance again.
* ephy-web-view: do not duplicate code for the uri->title fallbackXan Lopez2012-03-151-17/+14
|
* ephy-web-view: remove can_go_up/go_up codeXan Lopez2012-03-152-50/+2
| | | | We do not support this anymore in our UI.
* ephy-web-view: make ephy_web_view_clear_history privateXan Lopez2012-03-152-54/+47
| | | | It's only used by the class itself now.
* configure.ac: remove epiphany_branch defineXan Lopez2012-03-151-3/+0
| | | | It's not used anywhere that I can see.
* Updated Telugu TranslationsKrishnababu Krothapalli2012-03-151-304/+333
|
* updated Tamil translationDr.T.Vasudevan2012-03-151-174/+167
|
* updated Tamil translationDr.T.Vasudevan2012-03-151-1/+1
|
* Updated Latvian translation.Anita Reitere2012-03-151-1315/+1257
|
* Automatically prefix existing absolute paths with file://Gustavo Noronha Silva2012-03-145-5/+20
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=671792
* Revert "ephy-embed-single: remove some dead code"Xan Lopez2012-03-141-1/+53
| | | | | | | This reverts commit 08956cf8cd8040f8500c40b646a52b6f03ae5275. Bleh, the mostly useless popup code in EphyWebView needs this even if it's a no-op, so bring it back.
* Fix distcheckXan Lopez2012-03-143-12/+7
| | | | | | | | | | Most data files are listed through EXTRA_DIST, so they are left in the top srcdir during VPATH builds. The new EphyWebView unit test needs data/pages/error.html, so distcheck was broken because ephy_file ("error.html") was failing since it looked for them in $pwd/data. To fix this, look for files in the top srcdir instead of $pwd/data, which will lead to the builddir data data dir during distcheck.
* Run distcheck builds with debug enabledXan Lopez2012-03-141-0/+1
| | | | We are going to need this for ephy_file to pick up all the data paths.
* floating-bar: set a max-width to the labelCosimo Cecchi2012-03-141-1/+2
| | | | | | | | We don't want the floating bar to extend without boundaries in the available size, since some hyperlinks can be very long (and make the bar cover the whole screen). https://bugzilla.gnome.org/show_bug.cgi?id=671520
* ephy-embed-single: remove network statusXan Lopez2012-03-143-113/+0
| | | | We are not using it. Easy enough to bring it back if needed.
* 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.
* ephy-embed-single: remove some dead codeXan Lopez2012-03-141-56/+1
|
* ephy-embed: do not pull in string.h for strcmpXan Lopez2012-03-141-2/+1
|
* ephy-embed: remove a few useless includesXan Lopez2012-03-141-8/+0
|
* ephy-web-view: also reset page visit type on load failedXan Lopez2012-03-141-0/+3
|
* ephy-web-view: style fixesXan Lopez2012-03-141-82/+79
|
* ephy-embed: remove history serviceXan Lopez2012-03-141-5/+0
| | | | EphyEmbed does not use it anymore.
* ephy-web-view: move history management to EphyWebViewXan Lopez2012-03-142-26/+21
|
* ephy-web-view: move zoom handling to EphyWebViewXan Lopez2012-03-142-81/+82
| | | | | Again, this only interacts with the view, so it does not need to be in EphyEmbed.
* ephy-web-view: let EphyWebView clear its own historyXan Lopez2012-03-142-15/+15
| | | | No point in doing it from EphyEmbed.
* ephy-web-view: get a reference to the history serviceXan Lopez2012-03-141-0/+3
| | | | We are going to move stuff from embed to webview, so we'll need this.
* history: remember visit typesXan Lopez2012-03-1411-17/+95
| | | | | | | 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.
* history: generate gtypes for the history typesXan Lopez2012-03-141-0/+62
|
* lib: link to the internal libraries instead of copying source filesXan Lopez2012-03-141-22/+4
|
* ephy-private: add missing headerXan Lopez2012-03-131-0/+1
|
* ephy-web-view: fix indentationXan Lopez2012-03-131-18/+14
|
* ephy-web-view: remove useless includesXan Lopez2012-03-131-4/+0
|
* ephy-web-view: move header to the new coding styleXan Lopez2012-03-131-32/+34
|
* ephy-web-view: remove stale codeXan Lopez2012-03-131-43/+0
|
* ephy-embed: cancel the pending history queries during finalizeClaudio Saavedra2012-03-131-1/+8
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=671901
* ephy-history-service: make the async API cancellableClaudio Saavedra2012-03-139-68/+105
| | | | | | | | | | | 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-history-view: add row-middle-clicked signalClaudio Saavedra2012-03-132-0/+74
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=671635
* Updated Norwegian bokmål translationKjartan Maraas2012-03-131-232/+216
|
* Updated Swedish translationDaniel Nylander2012-03-131-193/+189
|
* Updated Brazilian Portuguese translationAntonio Fernandes C. Neto2012-03-091-946/+840
|
* Finnish translation update from http://l10n.laxstrom.name/wiki/Gnome_3.4 ↵Timo Jyrinki2012-03-121-2136/+486
| | | | translation sprint
* Updated Serbian translationМирослав Николић2012-03-112-432/+426
|
* tests: add ephy-web-view testDiego Escalante Urrelo2012-03-112-0/+274
| | | | | | Testing ephy_web_view_load_url and the internal GRegex of EphyWebView. https://bugzilla.gnome.org/show_bug.cgi?id=669548
* ephy-web-view: share non-search-regex for testingDiego Escalante Urrelo2012-03-113-9/+47
| | | | | | Add ephy-embed-private.h https://bugzilla.gnome.org/show_bug.cgi?id=669548
* 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
* Add initial Khmer translationKhoem Sokhem2012-03-102-0/+2814
|
* Updated Catalan translationGil Forcada2012-03-101-1316/+1125
|
* Updated Persian TranslationArash Mousavi2012-03-101-1337/+1162
|
* Updated Korean translationChangwoo Ryu2012-03-101-1309/+1133
|
* Updated Belarusian translation.Ihar Hrachyshka2012-03-101-38/+42
|
* [l10n] Updated Estonian translationMattias Põldaru2012-03-101-63/+64
|
* ephy-history-service: Give me a break!Priit Laes2012-03-091-0/+1
| | | | | Signed-off-by: Priit Laes <plaes@plaes.org> Reviewed-by: Xan Lopez <xan@igalia.com>
* Updated Bulgarian translationAlexander Shopov2012-03-091-113/+93
|
* [l10n] Updated German translationMario Blättermann2012-03-091-1301/+1117
|
* Updated Slovenian translationMatej Urbančič2012-03-081-40/+45
|
* Assamese translation completedNilamdyuti Goswami2012-03-081-1305/+1140
|
* Updated Spanish translationDaniel Mustieles2012-03-081-112/+107
|
* ephy-history-service: plug a few more leaksClaudio Saavedra2012-03-082-0/+4
|
* ephy-history-window: plug a couple of leaksClaudio Saavedra2012-03-082-2/+2
|
* Updated Traditional Chinese translation(Hong Kong and Taiwan)Chao-Hsiung Liao2012-03-082-402/+400
|
* Updated Polish translationPiotr Drąg2012-03-081-148/+152
|
* Updated Galician translationsFran Diéguez2012-03-081-66/+61
|
* Don't list deprecated gsettings keys in the .convertSébastien Bacher2012-03-081-2/+0
|
* [release] 3.3.913.3.91Xan Lopez2012-03-082-1/+20
|
* POTFILES.in: add missing fileXan Lopez2012-03-081-0/+1
|
* ephy-history-window: filter hosts with time range as wellClaudio Saavedra2012-03-081-2/+3
|
* ephy-history-service: add API to query for hostsClaudio Saavedra2012-03-084-2/+156
| | | | | By now, the public API only supports filtering by time range, but filtering by string matching is also possible.
* ephy-history-service: execute_get_hosts() should return TRUEClaudio Saavedra2012-03-081-1/+1
| | | | If there are no hosts, that's not a failure, so return TRUE instead.
* ephy-hosts-view: ensure "all hosts" is selected by defaultClaudio Saavedra2012-03-082-19/+31
| | | | | | 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-083-1/+15
| | | | | | | 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
* schema: default to 'All history' in history windowDiego Escalante Urrelo2012-03-081-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=671599
* Updated Polish translationPiotr Drąg2012-03-081-111/+87
|
* Updated Belarusian translation.Ihar Hrachyshka2012-03-081-166/+142
|
* ephy-history-service-hosts-table: init host to NULLDiego Escalante Urrelo2012-03-081-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=671594
* doc: fix distcheck, link to the new history libraryXan Lopez2012-03-081-0/+2
|
* ephy-embed: do not add the homepage (about:blank) to the historyXan Lopez2012-03-081-0/+3
| | | | | Don't do it when it's loaded automatically through NewTab or NewWindow, but do it if the user actually types the URI.
* ephy-web-view: remember when we are loading the homepageXan Lopez2012-03-082-11/+37
| | | | And add a getter for the information.
* 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.
* Updated Slovenian translationMatej Urbančič2012-03-081-184/+171
|
* 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.
* HACKING: we don't really do comment blocks like that anymore.Xan Lopez2012-03-081-6/+0
|
* ephy-history-view: remove unneeded unselect_all()Claudio Saavedra2012-03-081-2/+1
| | | | | This breaks selection in _BROWSE mode, and we don't really need it anyway.
* Updated Basque languageInaki Larranaga Murgoitio2012-03-081-115/+116
|
* 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-hosts-view: add a method to select a given hostClaudio Saavedra2012-03-082-0/+34
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=671559
* ephy-history-service: remove orphan hosts from databaseClaudio Saavedra2012-03-083-0/+27
| | | | | | | After removing all the urls in a host, we don't need that host anymore. https://bugzilla.gnome.org/show_bug.cgi?id=671559
* 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.
* ephy-web-view: protect against pages with NULL URIXan Lopez2012-03-071-4/+6
| | | | | | | Some pages (like those opened with javascript:...) can have a NULL URI according to WebKit, so protect against that. https://bugzilla.gnome.org/show_bug.cgi?id=671555
* ephy-history-service: validate parameters of public methodsXan Lopez2012-03-071-33/+77
|
* Updated Russian translationYuri Myasoedov2012-03-071-234/+241
|
* ephy-history-service-urls-table: do not g_assert on inputXan Lopez2012-03-071-4/+4
| | | | Simply bail out and don't crash the browser.
* about.ini: add myselfClaudio Saavedra2012-03-071-1/+1
| | | | Look ma', I'm in your browser
* ephy-hosts-store: sort the model by URLClaudio Saavedra2012-03-071-0/+3
| | | | | This puts "Others" to the beginning of the list and the rest alphanumerically sorted.
* Updated Galician translationsFran Diéguez2012-03-071-150/+151
|
* Updated Spanish translationDaniel Mustieles2012-03-071-7/+8
|
* 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.
* Updated Spanish translationDaniel Mustieles2012-03-071-148/+151
|
* ephy-history-window: change string for full history optionClaudio Saavedra2012-03-071-1/+1
|
* ephy-history-view: properly handle button-press-eventClaudio Saavedra2012-03-071-8/+6
| | | | | So that it doesn't trigger a double-click in the first press. Use a handler instead of connecting to the signal.
* Updated Bulgarian translationAlexander Shopov2012-03-071-149/+149
|
* Updated Polish translationPiotr Drąg2012-03-071-147/+147
|